/* ============================================
   ARMING-MONT — Conversion-Optimized Landing
   Design System: Trust & Authority + Conversion
   Brand Colors: Red #E5202E + Dark #3D3D3D
   ============================================ */

/* ---- CSS Variables / Design Tokens ---- */
:root {
    /* Brand Colors from Logo */
    --color-primary: #E5202E;
    --color-primary-dark: #C41A25;
    --color-primary-light: #FF4D58;
    --color-secondary: #3D3D3D;
    --color-secondary-light: #5A5A5A;

    /* Functional Colors */
    --color-cta: #E5202E;
    --color-cta-hover: #C41A25;
    --color-background: #FAFBFC;
    --color-surface: #FFFFFF;
    --color-text: #1A1A2E;
    --color-text-muted: #5E6278;
    --color-text-light: #8B8FA3;
    --color-border: #E8ECF1;
    --color-success: #059669;
    --color-warning: #F59E0B;

    /* Typography */
    --font-heading: 'Rubik', sans-serif;
    --font-body: 'Nunito Sans', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 28px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.16);
    --shadow-red: 0 8px 24px rgba(229, 32, 46, 0.3);
    --shadow-red-lg: 0 16px 40px rgba(229, 32, 46, 0.35);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 100px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-background);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: all 0.25s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ---- Utility Classes ---- */
.icon-xs {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.icon-sm {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-light {
    background: linear-gradient(135deg, #FFB3B8, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-padding {
    padding: var(--space-4xl) 0;
}

/* ---- Section Headers ---- */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(229, 32, 46, 0.08);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-top: var(--space-md);
    color: var(--color-text);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 580px;
    margin: var(--space-md) auto 0;
}

/* ---- Animations ---- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-up {
    opacity: 0;
    animation: fadeUp 0.7s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
    .animate-fade-up,
    .hero-floating-card,
    .shield-pulse,
    .hero-shape {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ============================================
   NAVBAR
   ============================================ */
#mainNav {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1050;
    transition: all 0.35s ease;
}

#mainNav.scrolled {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.03);
}

.navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--color-secondary);
    padding: 8px 16px !important;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-primary);
    background: rgba(229, 32, 46, 0.06);
}

.nav-cta-btn {
    font-size: 0.88rem !important;
    padding: 8px 20px !important;
    border-radius: var(--radius-full) !important;
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
}

.navbar-toggler {
    border: 1px solid var(--color-border);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(229, 32, 46, 0.15);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    background: linear-gradient(165deg, #FFFFFF 0%, #FFF5F5 30%, #FEF2F2 60%, #FAFBFC 100%);
    overflow: hidden;
    min-height: 100vh;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-primary), transparent 70%);
    top: -200px;
    right: -150px;
    animation: float 8s ease-in-out infinite;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-primary), transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite 2s;
}

.hero-shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--color-secondary), transparent 70%);
    top: 40%;
    left: 45%;
    animation: float 7s ease-in-out infinite 1s;
}

.hero-content {
    padding-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229, 32, 46, 0.08);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
    border: 1px solid rgba(229, 32, 46, 0.12);
}

.hero-title {
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 900;
    color: var(--color-text);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: var(--space-xl);
}

.hero-cta-group {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.btn-cta {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #FFFFFF;
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-red);
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

.btn-cta:hover {
    background: linear-gradient(135deg, var(--color-primary-dark), #A01520);
    color: #FFFFFF;
    box-shadow: var(--shadow-red-lg);
    transform: translateY(-2px);
}

.btn-cta:active {
    transform: translateY(0);
}

.btn-outline-hero {
    background: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-border);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-hero:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background: rgba(229, 32, 46, 0.04);
    transform: translateY(-2px);
}

/* Hero Trust Strip */
.hero-trust-strip {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

.trust-item strong {
    color: var(--color-text);
    font-weight: 700;
}

.text-warning {
    color: var(--color-warning) !important;
}

.trust-divider {
    width: 1px;
    height: 24px;
    background: var(--color-border);
}

/* Hero Visual / Card Stack */
.hero-visual {
    padding-top: 80px;
}

.hero-card-stack {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-visual {
    width: 280px;
    height: 280px;
    background: linear-gradient(145deg, #1A1A2E, #2D2D44);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    position: absolute;
    inset: 30px;
    opacity: 0.15;
}

.grid-cell {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.grid-cell.active {
    background: rgba(229, 32, 46, 0.3);
    animation: pulse-ring 3s ease-in-out infinite;
}

.visual-center-shield {
    position: relative;
    z-index: 2;
}

.shield-icon {
    width: 72px;
    height: 72px;
    color: var(--color-primary);
    filter: drop-shadow(0 4px 12px rgba(229, 32, 46, 0.4));
}

.shield-pulse {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 2px solid rgba(229, 32, 46, 0.3);
    animation: pulse-ring 2.5s ease-in-out infinite;
}

.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 14px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 5;
    transition: transform 0.3s ease;
}

.hero-floating-card:hover {
    transform: translateY(-4px);
}

.hero-floating-card.card-1 {
    top: 40px;
    right: 10px;
    animation: float 6s ease-in-out infinite;
}

.hero-floating-card.card-2 {
    bottom: 60px;
    left: -10px;
    animation: float 7s ease-in-out infinite 1.5s;
}

.hero-floating-card.card-3 {
    bottom: 150px;
    right: -20px;
    animation: float 5s ease-in-out infinite 0.8s;
}

.hf-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hf-icon svg {
    width: 22px;
    height: 22px;
}

.bg-success-soft { background: rgba(5, 150, 105, 0.12); }
.bg-danger-soft { background: rgba(229, 32, 46, 0.12); }
.bg-warning-soft { background: rgba(245, 158, 11, 0.12); }

.text-success { color: var(--color-success) !important; }
.text-danger { color: var(--color-primary) !important; }

.hf-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text);
}

.hf-sub {
    font-size: 0.78rem;
    color: var(--color-text-light);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar-section {
    background: var(--color-surface);
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.trust-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-secondary);
    transition: color 0.25s ease;
}

.trust-bar-item:hover {
    color: var(--color-primary);
}

.trust-bar-icon {
    width: 22px;
    height: 22px;
    color: var(--color-primary);
}

/* ============================================
   SERVICES
   ============================================ */
.services-section {
    background: var(--color-background);
}

.service-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    height: 100%;
    transition: all 0.35s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.service-card:hover {
    border-color: rgba(229, 32, 46, 0.15);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    border-color: rgba(229, 32, 46, 0.2);
    background: linear-gradient(180deg, rgba(229, 32, 46, 0.03), var(--color-surface));
}

.service-card.featured::before {
    transform: scaleX(1);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-icon-wrap {
    position: relative;
    width: 56px;
    height: 56px;
    margin-bottom: var(--space-lg);
}

.service-icon {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
    position: relative;
    z-index: 2;
    margin: 14px;
}

.service-icon-bg {
    position: absolute;
    inset: 0;
    background: rgba(229, 32, 46, 0.08);
    border-radius: var(--radius-md);
    transition: all 0.35s ease;
}

.service-card:hover .service-icon-bg {
    background: rgba(229, 32, 46, 0.14);
    transform: rotate(6deg);
}

.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.service-desc {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-lg);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--color-text-muted);
    padding: 5px 0;
}

.service-features li .icon-xs {
    color: var(--color-success);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
}

.service-link:hover {
    color: var(--color-primary-dark);
    gap: 10px;
}

/* ============================================
   WHY US
   ============================================ */
.why-us-section {
    background: linear-gradient(160deg, #1A1A2E 0%, #16213E 50%, #0F3460 100%);
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(229, 32, 46, 0.15), transparent 70%);
    top: -200px;
    right: -100px;
    border-radius: 50%;
}

.why-us-text {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.why-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    height: 100%;
    backdrop-filter: blur(10px);
    transition: all 0.35s ease;
    cursor: pointer;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(229, 32, 46, 0.3);
    transform: translateY(-4px);
}

.why-card-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
    line-height: 1;
}

.why-card h4 {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.why-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   STATS
   ============================================ */
.stats-section {
    background: var(--color-surface);
    padding: var(--space-3xl) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: var(--color-border);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--color-primary);
    display: inline;
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 700;
    color: var(--color-primary);
    display: inline;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-top: var(--space-xs);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    background: var(--color-background);
}

.testimonial-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    height: 100%;
    transition: all 0.35s ease;
    cursor: pointer;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(229, 32, 46, 0.12);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: var(--space-md);
}

.star-filled {
    width: 18px;
    height: 18px;
    color: var(--color-warning);
    fill: var(--color-warning);
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: var(--space-lg);
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    flex-shrink: 0;
}

.author-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--color-text);
}

.author-role {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

/* ============================================
   CTA / FORM SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(165deg, #FFF5F5 0%, #FAFBFC 100%);
}

.cta-wrapper {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light), var(--color-warning));
}

.cta-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.cta-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--color-text);
    font-weight: 500;
}

.cta-benefit svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.cta-form {
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.cta-form .form-control,
.cta-form .form-select {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    transition: all 0.25s ease;
    background: var(--color-surface);
}

.cta-form .form-control:focus,
.cta-form .form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(229, 32, 46, 0.1);
}

.cta-form .form-floating > label {
    font-size: 0.92rem;
    color: var(--color-text-light);
}

.form-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: var(--space-md);
    font-size: 0.78rem;
    color: var(--color-text-light);
}

/* ============================================
   PROCESS
   ============================================ */
.process-section {
    background: var(--color-surface);
}

.process-card {
    text-align: center;
    position: relative;
    padding: var(--space-xl) var(--space-md);
}

.process-step {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(229, 32, 46, 0.08);
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    border: 2px solid rgba(229, 32, 46, 0.15);
    transition: all 0.35s ease;
}

.process-step.active,
.process-card:hover .process-step {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-red);
}

.process-line {
    position: absolute;
    top: 48px;
    right: -20%;
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-border), rgba(229, 32, 46, 0.2));
}

.process-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.process-card p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-section {
    background: #1A1A2E;
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-logo {
    height: 38px;
    margin-bottom: var(--space-md);
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.25s ease;
    cursor: pointer;
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.footer-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: #FFFFFF;
    margin-bottom: var(--space-lg);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    transition: all 0.25s ease;
    cursor: pointer;
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 4px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
}

.contact-row svg {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-row a {
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.contact-row a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   FLOATING CTA
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    padding: 14px 24px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-red-lg);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.35s ease;
    transform: translateY(100px);
    opacity: 0;
}

.floating-cta.visible {
    transform: translateY(0);
    opacity: 1;
}

.floating-cta:hover {
    background: linear-gradient(135deg, var(--color-primary-dark), #A01520);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(229, 32, 46, 0.45);
}

.floating-cta svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 991.98px) {
    .hero-visual {
        display: none;
    }

    .hero-content {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-trust-strip {
        justify-content: center;
    }

    .process-line {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2xl);
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .cta-wrapper {
        padding: var(--space-xl);
    }

    .trust-bar {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .section-padding {
        padding: var(--space-2xl) 0;
    }

    .hero-section {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: var(--space-2xl);
    }

    .hero-content {
        padding-top: 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .hero-trust-strip {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .trust-divider {
        display: none;
    }

    .trust-bar {
        flex-direction: column;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .cta-wrapper {
        padding: var(--space-lg);
    }

    .cta-form {
        padding: var(--space-lg);
    }

    .floating-cta span {
        display: none;
    }

    .floating-cta {
        padding: 14px;
        border-radius: 50%;
    }

    .why-us-section .section-title {
        color: #fff;
    }

    .footer-section .row > div:not(:first-child) {
        text-align: left;
    }
}

/* Large Desktop */
@media (min-width: 1400px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-card-stack {
        height: 520px;
    }

    .hero-main-visual {
        width: 320px;
        height: 320px;
    }
}

/* ============================================
   SCROLL REVEAL (JS adds .revealed class)
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.7s ease;
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.7s ease;
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}
