@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    /* Brand Guide Colors */
    --white: #FFFFFF;
    --anti-flash-white: #F8F9FA;
    --grey-light: #F2F3F4;
    --grey-dark: #D9D9D9;
    --brand-green: #1DBA9B;
    --brand-black: #0B0B0B;
    --midnight-blue: #020035;
    --brand-blue: #02066F;
    --deep-sea: #2000B1;
    
    /* Semantic — Light Theme */
    --bg-main: var(--white);
    --bg-alt: var(--anti-flash-white);
    --bg-alt-2: var(--grey-light);
    --bg-card: var(--white);

    --primary: var(--deep-sea);
    --primary-glow: rgba(32, 0, 177, 0.15);
    --accent: var(--brand-green);
    --accent-glow: rgba(29, 186, 155, 0.2);

    --text-main: var(--midnight-blue);
    --text-headings: var(--brand-black);
    --text-muted: #52525B;
    --text-dark: #71717A;

    --success: var(--brand-green);
    --error: #EF4444;
    --border: var(--grey-dark);
    --border-light: rgba(0, 0, 0, 0.06);

    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Space Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Layout */
    --max-width: 1200px;
    --border-radius: 12px;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
   RESET & BASE
   ============================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    line-height: 1.6;
    background-color: var(--bg-main);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-headings);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

img {
    max-width: 100%;
    height: auto;
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 38px;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.section-header p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =============================================
   EYEBROW TAG
   ============================================= */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(29, 186, 155, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(29, 186, 155, 0.2);
    margin-bottom: 16px;
}

.tag {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(32, 0, 177, 0.06);
    padding: 4px 10px;
    border-radius: 4px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-primary:hover {
    background: var(--brand-blue);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(2, 6, 111, 0.25);
}

.btn-secondary {
    background-color: var(--white);
    border: 1px solid var(--border);
    color: var(--text-main);
}

.btn-secondary:hover {
    background-color: var(--bg-alt);
    border-color: var(--text-dark);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* =============================================
   HEADER
   ============================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    background-color: rgba(255, 255, 255, 0.88);
    transition: var(--transition);
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(2, 0, 53, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo img {
    width: 170px;
    height: 44px;
    display: block;
}

.cta-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* =============================================
   HERO — Centered Layout
   ============================================= */
.hero {
    padding: 160px 0 100px 0;
    position: relative;
    background: linear-gradient(180deg, var(--white) 0%, var(--anti-flash-white) 100%);
    border-bottom: 1px solid var(--border-light);
    text-align: center;
}

.hero .container {
    max-width: 820px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin: 16px 0 24px 0;
    color: var(--text-headings);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.65;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* =============================================
   TRUST LOGOS BAND — Light background
   ============================================= */
.trust-logos {
    padding: 50px 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-light);
}

.trust-logos p {
    text-align: center;
    font-size: 11px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
    font-weight: 600;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.logos-grid img {
    height: 36px;
    width: auto;
    opacity: 0.7;
    transition: var(--transition);
    /* No invert filter — logos are pre-made for light backgrounds */
}

.logos-grid img:hover {
    opacity: 1;
    transform: scale(1.08);
}

/* =============================================
   COMPARISON SECTION — Pillar Cards
   ============================================= */
.comparison-grid {
    padding: 100px 0;
    background-color: var(--bg-alt);
}

.comp-dashboard {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}

.comp-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 12px rgba(2, 0, 53, 0.03);
    overflow: hidden;
    transition: var(--transition);
}

.comp-card:hover {
    box-shadow: 0 8px 30px rgba(2, 0, 53, 0.06);
    transform: translateY(-2px);
}

.comp-card-header {
    background-color: var(--bg-alt-2);
    border-bottom: 1px solid var(--border);
    padding: 18px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.comp-card-header h3 {
    font-size: 19px;
    color: var(--text-headings);
    margin: 0;
}

.comp-sides {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.comp-side-left {
    padding: 28px;
    border-right: 1px solid var(--border-light);
    background-color: var(--white);
}

.comp-side-right {
    padding: 28px;
    background-color: rgba(29, 186, 155, 0.02);
}

.comp-label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comp-side-left .comp-label {
    color: var(--text-dark);
}

.comp-side-right .comp-label {
    color: var(--accent);
}

.comp-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-headings);
    margin-bottom: 8px;
}

.comp-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =============================================
   VISUAL BREAK — Targeting Showcase Grid
   ============================================= */
.visual-break {
    padding: 100px 0;
    background-color: var(--white);
    text-align: center;
}

.visual-break-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.visual-break-inner h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.visual-break-inner p {
    color: var(--text-muted);
    font-size: 17px;
    margin-bottom: 48px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.targeting-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.targeting-card {
    background: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(2, 0, 53, 0.03);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.targeting-card:hover {
    box-shadow: 0 15px 35px rgba(2, 0, 53, 0.08);
    transform: translateY(-4px);
    border-color: var(--primary);
}

.targeting-card-img {
    flex-grow: 1;
    display: flex;
    align-items: center;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border-light);
    padding: 4px;
}

.targeting-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: calc(var(--border-radius) - 8px);
}

.targeting-card-caption {
    padding: 20px;
    text-align: left;
    background: var(--white);
}

.targeting-card-caption h4 {
    font-size: 16px;
    color: var(--text-headings);
    margin-bottom: 4px;
}

.targeting-card-caption p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .targeting-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* =============================================
   ROI / DIFFERENTIATOR — 2-Column Split
   ============================================= */
.roi-split {
    padding: 100px 0;
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border-light);
}

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-headings);
}

.split-content > p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.65;
}

.success-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.point {
    display: flex;
    gap: 16px;
}

.point-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(29, 186, 155, 0.08);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    font-family: var(--font-heading);
    border: 1px solid rgba(29, 186, 155, 0.2);
}

.point-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--text-headings);
}

.point-text p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.split-visual {
    background: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    padding: 8px;
    box-shadow: 0 15px 40px rgba(2, 0, 53, 0.06);
}

.split-visual img {
    width: 100%;
    height: auto;
    border-radius: calc(var(--border-radius) - 4px);
    display: block;
}

/* =============================================
   CASE STUDIES — Metric Cards
   ============================================= */
.case-studies {
    padding: 100px 0;
    background-color: var(--white);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.case-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(2, 0, 53, 0.02);
}

.case-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(2, 0, 53, 0.06);
}

.case-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.case-logo img {
    height: 32px;
    width: auto;
}

.case-metric {
    margin: 16px 0;
}

.case-metric .num {
    font-size: 44px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1;
}

.case-metric .label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.case-card p.desc {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
    padding: 100px 0;
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: 0 2px 12px rgba(2, 0, 53, 0.02);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(2, 0, 53, 0.05);
}

.test-body {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
}

.test-body::before {
    content: '\201C';
    font-size: 48px;
    color: rgba(29, 186, 155, 0.15);
    position: absolute;
    top: -24px;
    left: -8px;
    font-family: var(--font-heading);
    line-height: 1;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.test-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bg-alt-2);
}

.test-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-headings);
}

.test-info p {
    font-size: 13px;
    color: var(--text-dark);
}

/* =============================================
   BOTTOM CTA
   ============================================= */
.cta-block {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-alt) 100%);
}

.cta-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 64px 48px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(2, 0, 53, 0.04);
    position: relative;
    overflow: hidden;
}

/* Decorative accent stripe */
.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-blue) 0%, var(--primary) 100%);
}

.cta-card h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--text-headings);
}

.cta-card p {
    color: var(--text-muted);
    font-size: 17px;
    max-width: 560px;
    margin: 0 auto 36px auto;
    line-height: 1.6;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    padding: 48px 0 32px 0;
    border-top: 1px solid var(--border-light);
    background-color: var(--bg-alt);
}

/* =============================================
   FOOTER (REDESIGNED)
   ============================================= */
footer {
    padding: 80px 0 40px 0;
    border-top: 1px solid var(--border-light);
    background-color: var(--bg-alt);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand-logo {
    width: 170px;
    height: 44px;
    display: block;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    color: var(--text-dark);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
}

.footer-socials a:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(2, 0, 53, 0.05);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-headings);
    margin-bottom: 8px;
}

.footer-column a {
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary);
    padding-left: 2px;
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom .copyright {
    font-size: 13px;
    color: var(--text-dark);
    text-align: left;
    margin: 0;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-brand {
        grid-column: span 1;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}

/* =============================================
   MODAL & SURVEY
   ============================================= */
.lead-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 0, 53, 0.45);
    backdrop-filter: blur(6px);
}

.modal-content {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 540px;
    padding: 40px;
    position: relative;
    z-index: 2001;
    box-shadow: 0 20px 50px rgba(2, 0, 53, 0.15);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lead-modal.active {
    display: flex;
}

.lead-modal.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.close-btn:hover {
    color: var(--text-headings);
}

/* Step Wizard Progress */
.survey-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.survey-progress::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--grey-light);
    z-index: 1;
}

.progress-bar-fill {
    position: absolute;
    top: 8px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    z-index: 2;
    transition: var(--transition);
}

.progress-step {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border);
    z-index: 3;
    transition: var(--transition);
}

.progress-step.active {
    border-color: var(--primary);
    background: var(--primary);
}

.progress-step.completed {
    border-color: var(--primary);
    background: var(--primary);
}

/* Survey Steps */
.survey-step {
    display: none;
}

.survey-step.active {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.survey-step h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-headings);
}

.survey-step p.subtitle {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

/* Selection cards */
.selection-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.select-card {
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 14px 18px;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.select-card:hover {
    background: var(--bg-alt);
    border-color: var(--text-dark);
}

.select-card.selected {
    border-color: var(--primary);
    background: rgba(32, 0, 177, 0.03);
}

.card-label {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-main);
}

.card-radio {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.select-card.selected .card-radio {
    border-color: var(--primary);
}

.select-card.selected .card-radio::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary);
}

/* Form inputs */
.form-group {
    margin-bottom: 16px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 12px 16px;
    color: var(--text-headings);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
}

.form-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(32, 0, 177, 0.1);
}

.modal-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 28px;
    gap: 12px;
}

.modal-actions button {
    flex: 1;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .hero {
        padding: 130px 0 70px 0;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 16px;
    }

    .split-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cases-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .comp-sides {
        grid-template-columns: 1fr;
    }

    .comp-side-left {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 12px;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .cta-header .btn-secondary {
        display: none;
    }

    .header-container {
        padding: 0 16px;
    }

    .cta-card {
        padding: 40px 20px;
    }

    .cta-card h2 {
        font-size: 28px;
    }

    .split-content h2 {
        font-size: 28px;
    }

    .logos-grid {
        gap: 24px;
    }

    .logos-grid img {
        height: 28px;
    }
}

/* =============================================
   HUBSPOT MEETING SCHEDULER & PRELOADER
   ============================================= */
.scheduler-modal {
    max-width: 760px !important;
    padding: 0 !important;
    overflow: hidden;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.scheduler-modal .close-btn {
    top: 15px;
    right: 15px;
    color: #64748B;
    z-index: 10002;
    background: #F8F9FA;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.scheduler-modal .close-btn:hover {
    background: var(--grey-light);
    color: var(--text-headings);
}

.bca-aqv {
    --aqv-border: var(--border);
    --aqv-bg: var(--white);
    max-width: 100%;
    margin: 0 auto;
    font-family: inherit;
    -webkit-font-smoothing: antialiased;
}

.bca-aqv-card {
    background: var(--aqv-bg);
    border: 1px solid var(--aqv-border);
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(15,27,45,.08);
    overflow: hidden;
    position: relative;
}

.scheduler-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    background-color: var(--white);
}

.meetings-iframe-container {
    min-height: 700px;
}

.meetings-iframe-container iframe {
    width: 100%;
    border: none;
    min-height: 700px;
}

@media (max-width: 768px) {
    .meetings-iframe-container { min-height: 560px; }
    .meetings-iframe-container iframe { min-height: 560px; }
    .scheduler-modal {
        max-width: 100% !important;
        margin: 10px !important;
    }
}

.preloader {
    position: absolute;
    inset: 0;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    padding: 32px 24px;
    text-align: center;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-container {
    position: relative;
    width: 80px;
    height: 80px;
}

.circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
}

.circle-1 { border-top-color: var(--primary); animation: spin 1.5s linear infinite; }
.circle-2 { border-right-color: var(--brand-blue); animation: spin 2s linear infinite; }
.circle-3 { border-bottom-color: var(--accent); animation: spin 2.5s linear infinite; }

@keyframes spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-message {
    margin-top: 28px;
    color: var(--text-headings);
    font-size: 18px;
    font-weight: 700;
    max-width: 360px;
    line-height: 1.4;
    font-family: var(--font-heading);
}

.benefits {
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 13.5px;
    max-width: 420px;
}

.benefit-item {
    margin: 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.countdown {
    margin-top: 16px;
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

.countdown-label {
    margin-top: 4px;
    color: var(--text-dark);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-bar {
    width: 200px;
    height: 4px;
    background: var(--grey-light);
    border-radius: 2px;
    margin-top: 24px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--brand-blue), var(--accent));
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
}

/* =============================================
   SOLUTIONS SECTION
   ============================================= */
.solutions-section {
    padding: 100px 0;
    background-color: var(--white);
    border-top: 1px solid var(--border-light);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px;
}

.solution-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.solution-card:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(2, 0, 53, 0.06);
}

.solution-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(32, 0, 177, 0.06);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.solution-card:hover .solution-icon-wrap {
    background: var(--primary);
    color: var(--white);
}

.solution-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-headings);
}

.solution-card h4.solution-tagline {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 16px;
    font-family: var(--font-body);
}

.solution-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* =============================================
   MOCK UIs FOR SOLUTION CARDS
   ============================================= */
.mock-ui {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(2, 0, 53, 0.02);
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.solution-card:hover .mock-ui {
    border-color: rgba(32, 0, 177, 0.15);
    box-shadow: 0 8px 24px rgba(32, 0, 177, 0.04);
}

/* User Acquisition (UA) Mockup */
.mock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mock-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(32, 0, 177, 0.06);
    padding: 2px 8px;
    border-radius: 4px;
}

.mock-growth {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    background: rgba(29, 186, 155, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.mock-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.mock-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mock-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-headings);
    font-family: var(--font-heading);
}

.mock-progress-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.mock-progress-row {
    font-size: 11px;
    color: var(--text-muted);
}

.mock-progress-bar {
    width: 100%;
    height: 4px;
    background: var(--grey-light);
    border-radius: 2px;
    margin-top: 4px;
    overflow: hidden;
}

.mock-progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
}

/* Brand Visibility Mockup */
.mock-banner-item {
    background: var(--bg-alt);
    border: 1px dashed var(--border);
    border-radius: 6px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mock-size-tag {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-dark);
    background: var(--white);
    border: 1px solid var(--border);
    padding: 1px 4px;
    border-radius: 3px;
    font-family: ui-monospace, monospace;
}

.mock-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
}

.mock-campaign-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-headings);
}

.mock-cta-pill {
    font-size: 9px;
    font-weight: 700;
    background: var(--primary);
    color: var(--white);
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
}

/* Managed Campaigns Mockup */
.mock-check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mock-check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mock-check {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(29, 186, 155, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    flex-shrink: 0;
}

.mock-list-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    font-size: 12px;
    color: var(--text-main);
    font-weight: 500;
}

.mock-tag {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 1px 5px;
    border-radius: 3px;
}

.mock-tag.green {
    background: rgba(29, 186, 155, 0.1);
    color: var(--accent);
}

.mock-tag.blue {
    background: rgba(32, 0, 177, 0.06);
    color: var(--primary);
}

@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}


