:root {
    --primary: #0A2E2B;
    /* Emerald Night - Deep, rich, luxurious */
    --primary-light: #16423C;
    --accent: #D1E231;
    /* Pear Glow - Fresh, citrusy, energetic */
    --accent-hover: #BED12A;
    --secondary: #6A9C89;
    /* Sage Mist */
    --background: #FFFFFF;
    /* Pure White for maximum readability */
    --light-bg: #F8FAF9;
    --text: #0A1A19;
    /* Darker text for contrast */
    --text-muted: #4A5D5B;
    --white: #FFFFFF;
    --shadow: 0 15px 35px rgba(10, 46, 43, 0.08);
    --shadow-hover: 0 25px 50px rgba(10, 46, 43, 0.12);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --container-width: 1200px;
    --header-height: 80px;
    /* Reduced from 90px for better split on mobile */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--background);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.bg-light {
    background-color: var(--light-bg);
}

/* Utilities */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(10, 46, 43, 0.2);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--primary);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(209, 226, 49, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    color: var(--primary);
}

.section-header.dark-mode h2 {
    color: var(--white);
}

.section-header.dark-mode p {
    color: rgba(255, 255, 255, 0.8);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.accent-text {
    color: var(--accent) !important;
}

/* Checklist Preview (Redesigned - Dark Ops Mode) */
.checklist-preview {
    background-color: var(--primary) !important;
    /* Force dark background */
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 10rem 0;
    /* Breathing room */
}

/* Background flourish for checklist */
.checklist-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(209, 226, 49, 0.05) 0%, transparent 60%);
    z-index: 1;
}

.checklist-content {
    position: relative;
    z-index: 2;
}

.checklist-content h2 {
    color: var(--white);
    font-size: 3rem;
}

.checklist-content .lead {
    color: rgba(255, 255, 255, 0.9);
}

/* High-Vis Badge */
.badge-highlight {
    background-color: var(--accent);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(209, 226, 49, 0.4);
    /* Glow effect */
}

.feature-list li {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-list li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    border-color: var(--accent);
}

.feature-list i {
    color: var(--accent);
    background: rgba(209, 226, 49, 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
}

/* The Image/Card Visual */
.checklist-image {
    position: relative;
    z-index: 2;
    background: transparent !important;
    /* Override inline */
    box-shadow: none !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    /* Center vertically if needed */
}

.audit-card {
    background: var(--white);
    color: var(--text);
    /* Explicitly set dark text color */
    padding: 3rem;
    /* More breathing room */
    border-radius: 32px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    position: relative;
    border: 4px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.audit-card strong {
    color: var(--primary);
    /* Ensure titles are visible */
    font-size: 1.1rem;
}

.audit-row {
    margin-bottom: 2rem;
    /* More space between rows */
}

.audit-row:last-child {
    margin-bottom: 0;
}

/* "Live" Pulse Animation for PASS status */
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

.status-pass {
    color: #28a745;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(40, 167, 69, 0.1);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
}

.status-pass.pulse {
    animation: pulse-green 2s infinite;
}

.highlight {
    background: linear-gradient(120deg, rgba(209, 226, 49, 0.6) 0%, rgba(209, 226, 49, 0.6) 100%);
    /* Sharper highlight */
    background-repeat: no-repeat;
    background-size: 100% 0.3em;
    background-position: 0 88%;
}

/* Header */
.header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(253, 251, 247, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    height: 70px;
    box-shadow: 0 10px 30px rgba(10, 46, 43, 0.05);
    background-color: rgba(253, 251, 247, 0.95);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    color: var(--accent);
}

.nav-list {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
    opacity: 0.8;
}

.nav-link:hover {
    opacity: 1;
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: calc(var(--header-height) + 6rem);
    padding-bottom: 0;
    background: radial-gradient(circle at top right, rgba(209, 226, 49, 0.05) 0%, transparent 40%),
        radial-gradient(circle at bottom left, rgba(10, 46, 43, 0.03) 0%, transparent 40%);
}

/* Social Proof Marquee */
.social-proof {
    background-color: var(--primary);
    padding: 3rem 0;
    color: var(--white);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

/* Unified Animation Sequence */
.logo-item {
    font-weight: 900;
    font-size: 2.5rem;
    opacity: 0;
    /* Default invisible */
    letter-spacing: 0.1em;
    display: inline-block;
    color: var(--white);
    /* Base color */
}

/* The magic class that runs the whole show */
.logo-item.animating {
    animation: social-sequence 3s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes social-sequence {

    /* 0% - Start: Invisible, Right Side */
    0% {
        opacity: 0;
        transform: translateX(40px) scale(0.95);
        color: rgba(255, 255, 255, 0.5);
        text-shadow: none;
    }

    /* 20% - The "Uni-Pop": Slides in AND glows in one single swoosh */
    20% {
        opacity: 1;
        transform: translateX(0) scale(1.05);
        /* Land slightly larger immediately */
        color: var(--accent);
        /* Land fully colored */
        text-shadow: 0 0 30px rgba(209, 226, 49, 0.6);
        /* Land glowing */
    }

    /* 35% - Settle: Gently relax into position */
    35% {
        transform: scale(1.0);
        text-shadow: 0 0 15px rgba(209, 226, 49, 0.3);
    }

    /* 80% - Hold: Stay visible */
    80% {
        opacity: 1;
        transform: scale(1.0);
        color: var(--accent);
        text-shadow: 0 0 15px rgba(209, 226, 49, 0.3);
    }

    /* 100% - Exit: Slide out Left smooth */
    100% {
        opacity: 0;
        transform: translateX(-40px) scale(0.95);
        color: var(--accent);
        text-shadow: none;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.badge i {
    color: var(--accent);
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 90%;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.sms-guarantee {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.sms-guarantee i {
    color: #28a745;
}

.hero-image-container {
    position: relative;
    padding: 20px;
}

.hero-image {
    border-radius: 40px;
    box-shadow: var(--shadow-hover);
    transform: rotate(2deg);
    transition: var(--transition);
}

/* Mobile-only elements - hidden on desktop */
.mobile-stats-overlay {
    display: none;
}

.mobile-audit-badge {
    display: none;
}

.hero-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.experience-card {
    position: absolute;
    bottom: 20px;
    left: -40px;
    background: rgba(10, 46, 43, 0.9);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.exp-count {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Social Proof Band */
.social-proof {
    padding: 4rem 0;
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
}

.proof-label {
    text-align: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--white);
    opacity: 0.5;
    margin-bottom: 2.5rem;
}

.logo-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.logo-item {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--white);
    opacity: 0.2;
    transition: var(--transition);
}

.logo-item:hover {
    opacity: 0.8;
}

/* Services */
.services {
    padding: 10rem 0;
}

/* Services Styles Refined */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3rem;
    align-items: center;
    /* Integrate center alignment for popular card pop */
}

.service-card {
    background-color: var(--white);
    padding: 4rem 3rem;
    border-radius: 32px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(10, 46, 43, 0.05);
    overflow: hidden;
}

.service-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-hover);
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    font-weight: 800;
    font-size: 0.8rem;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 80px rgba(10, 46, 43, 0.15);
    border-color: var(--accent);
}

.service-card.popular:hover {
    transform: translateY(-15px) scale(1.07);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-bg);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--accent);
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 2rem;
    display: block;
}

.price-tag strong {
    font-size: 2rem;
    color: var(--primary);
    margin-left: 0.5rem;
}

/* Founders/Problem Section Specifics */
.founders-section {
    padding: 8rem 0;
    background-color: var(--primary);
    /* Maintain dark background */
}

.founders-dossier {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    /* Subtle backdrop */
    border-radius: 40px;
    overflow: hidden;
    /* Ensures image respects the rounded corners */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.founders-img-col {
    width: 45%;
    /* Substantial visual weight */
    position: relative;
}

.founders-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures no distortion, fills the space */
    display: block;
}

.founders-info-col {
    width: 55%;
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Vertically center the story */
}

/* Solution Grid within the card (smaller/tighter) */
.founders-dossier .solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.founders-dossier .solution-item {
    background: rgba(255, 255, 255, 0.05);
    /* Slightly lighter than card */
    padding: 1.5rem;
    /* Tighter padding */
    border: none;
    margin-bottom: 0;
}

.founders-dossier .solution-item h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.founders-dossier .solution-item p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.founders-dossier .sol-icon {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

@media (max-width: 968px) {
    .founders-dossier {
        flex-direction: column;
    }

    .founders-img-col,
    .founders-info-col {
        width: 100%;
    }

    .founders-info-col {
        padding: 3rem 1.5rem;
    }

    .founders-img-col {
        height: 350px;
    }

    .founders-dossier .solution-grid {
        grid-template-columns: 1fr;
    }
}

.founders-info-col h2 {
    color: var(--white);
    /* Fix legibility on dark background */
}

/* Sticky Mobile CTA (High Conversion) */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    transform: translateY(150%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.sticky-cta.visible {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .sticky-cta {
        bottom: 1.5rem;
        right: 1.5rem;
        left: 1.5rem;
        /* Full width on mobile */
    }

    .sticky-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 1.2rem;
        font-size: 1.1rem;
    }
}

.founders-wrapper {
    display: block;
    /* Override flex/grid */
    position: relative;
}

.founders-float-img {
    float: left;
    width: 45%;
    margin-right: 4rem;
    margin-bottom: 1rem;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    shape-outside: margin-box;
    /* Optional: shape-outside if we wanted exact contour, but margin-box is safe for rounded rects */
}

@media (max-width: 900px) {
    .founders-float-img {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 2rem;
    }
}

.problem-solution {
    padding: 10rem 0;
    background-color: var(--primary);
    color: var(--white);
}

.problem-solution h2 {
    color: var(--white);
    font-size: 3.5rem;
}

.problem-solution .lead {
    color: rgba(255, 255, 255, 0.9);
}

.solution-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 24px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    color: var(--white);
}

.solution-item h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.solution-item p {
    color: rgba(255, 255, 255, 0.85);
}

.solution-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.sol-icon {
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.rounded-image {
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* How It Works & Testimonials Styles */
.how-it-works,
.testimonials {
    padding: 10rem 0;
}

/* How It Works Refined */
.steps-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Vertically align arrows */
    gap: 2rem;
}

.step {
    flex: 1;
    text-align: center;
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(10, 46, 43, 0.05);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-bottom: 5px solid var(--accent);
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 900;
    margin: 0 auto 2rem;
    font-size: 1.5rem;
    box-shadow: 0 0 0 8px rgba(209, 226, 49, 0.2);
    transition: var(--transition);
}

.step:hover .step-num {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 0 12px rgba(209, 226, 49, 0.4);
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.5;
}

@media (max-width: 768px) {
    .steps-grid {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    .service-card.popular {
        transform: scale(1);
    }

    .service-card.popular:hover {
        transform: scale(1.02);
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 4rem;
    border-radius: 32px;
    position: relative;
}

.testimonial-card-v2 {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(10, 46, 43, 0.05);
}

/* Footer */
.footer {
    padding: 8rem 0 4rem;
    background-color: var(--primary);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
    margin-top: 5rem;
}

/* Trust Badges - Footer Signal */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    opacity: 0.7;
    transition: var(--transition);
}

.trust-item:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.trust-item i {
    font-size: 2rem;
    color: var(--accent);
}

.trust-item span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Homepage FAQ Styles */
.faq-home {
    padding: 6rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(10, 46, 43, 0.1);
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding-right: 2rem;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
}

.faq-item.active .faq-question {
    color: var(--primary-light);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }

    .hero-content h1 {
        font-size: 3rem;
        word-break: break-word;
    }

    .hero-btns {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-large {
        width: 100%;
        max-width: 400px;
    }

    .experience-card {
        display: none;
        /* Removed for better flow */
    }

    .hero-image-container {
        padding: 0;
    }

    .hero-image {
        transform: rotate(0deg);
        border-radius: 24px;
    }
}

@media (max-width: 768px) {
    .header .header-actions {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        /* Slightly smaller for mobile comfort */
    }

    .lead {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--primary);
        z-index: 2000;
        transition: var(--transition);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 4rem;
    }

    .nav-active {
        right: 0;
    }

    .nav-link {
        color: var(--white);
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .menu-toggle {
        display: block;
        z-index: 2100;
        color: var(--primary);
    }

    .nav-active+.menu-toggle {
        color: var(--white);
    }

    .stats-bar {
        display: none;
        /* Hide on mobile, using overlay instead */
    }

    /* Disable hover effect on mobile to keep overlay synced */
    .hero-image:hover {
        transform: rotate(0deg) scale(1);
    }

    .hero-image {
        transform: rotate(0deg);
        border-radius: 24px;
    }

    /* Mobile Stats Overlay - Glassmorphism on Image */
    .mobile-stats-overlay {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(10, 46, 43, 0.9);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 1rem 0.75rem;
        border-radius: 0 0 24px 24px;
    }

    .overlay-stat {
        text-align: center;
        flex: 1;
    }

    .overlay-value {
        display: block;
        font-size: 1.1rem;
        font-weight: 800;
        color: var(--accent);
        line-height: 1.2;
    }

    .overlay-label {
        font-size: 0.6rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: rgba(255, 255, 255, 0.7);
    }

    /* Mobile Audit Badge - Top Right Corner */
    .mobile-audit-badge {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: rgba(10, 46, 43, 0.9);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 0.6rem 1rem;
        border-radius: 50px;
        z-index: 5;
    }

    .mobile-audit-dot {
        width: 8px;
        height: 8px;
        background: #28a745;
        border-radius: 50%;
        box-shadow: 0 0 8px #28a745;
        animation: pulse-dot 2s infinite;
    }

    .mobile-audit-text {
        font-size: 0.85rem;
        font-weight: 700;
        color: #28a745;
        letter-spacing: 0.5px;
    }

    /* Stack testimonial cards vertically on mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-card-v2 {
        padding: 2rem;
    }

    .testimonials {
        padding: 6rem 0 !important;
    }
}

/* FINAL POLISH: Stats Bar & Audit Animations */
.stats-bar {
    background-color: var(--primary);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
    margin-top: 0;
    /* fused on mobile */
    width: 100%;
}

.stats-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
    padding: 0.5rem;
}

.highlight-stat .stat-value {
    font-size: 2.2rem;
    color: var(--accent);
}

.highlight-stat .status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--accent);
    animation: pulse-dot 2s infinite;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.8);
    /* Increased contrast */
}

.stat-divider {
    height: 40px;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.audit-animated-row {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.audit-animated-row.checked-off {
    opacity: 1;
    transform: translateX(0);
}

.audit-animated-row .status-pass {
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.audit-animated-row.checked-off .status-pass {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 768px) {
    .stats-bar {
        margin-top: 0;
        padding: 3rem 0;
    }

    .stat-divider {
        display: none;
    }

    .stats-flex {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}