:root {
    /* ── Brand Manual v2.0 — Light Mode ───────────────────────── */
    --electric-blue: #38B6FF;
    --violet:        #7B4FFF;
    --purple:        #9B30D9;
    --dark-navy:     #0D0F1A;

    --bg-dark:      #FFFFFF;
    --bg-darker:    #F1F5F9;
    --bg-card:      #FFFFFF;
    --border-color: rgba(0, 0, 0, 0.08);

    --primary:       #7B4FFF;
    --primary-hover: #6a3de8;
    --secondary:     #38B6FF;
    --accent:        #9B30D9;

    --text-main:  #0D0F1A;
    --text-muted: #64748B;

    /* Glow */
    --glow-primary:   rgba(123, 79, 255, 0.22);
    --glow-secondary: rgba(56, 182, 255, 0.18);
    --glow-purple:    rgba(155, 48, 217, 0.18);

    /* Brand gradient */
    --brand-gradient: linear-gradient(135deg, #38B6FF 0%, #7B4FFF 50%, #9B30D9 100%);

    /* Card shadow for light mode */
    --card-shadow: 0 2px 16px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
    --card-shadow-hover: 0 8px 32px rgba(123,79,255,0.14), 0 2px 8px rgba(0,0,0,0.06);

    --font-heading: 'Outfit', sans-serif;
    --font-body:    'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--dark-navy); }
a { color: var(--text-main); text-decoration: none; transition: all 0.3s ease; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.text-gradient {
    background: var(--brand-gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text-red { color: #ef4444; }
.text-orange { color: #f97316; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-4 { margin-top: 1.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.center-text { text-align: center; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.75rem 1.5rem; border-radius: 9999px; font-weight: 500;
    font-family: var(--font-body); cursor: pointer; transition: all 0.3s ease; border: none; font-size: 0.95rem;
}
.btn-large { padding: 1rem 2rem; font-size: 1.1rem; }
.btn-primary {
    background: var(--brand-gradient);
    color: white !important; box-shadow: 0 4px 20px var(--glow-primary);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px var(--glow-primary); color: white !important; }
.btn-secondary {
    background: transparent;
    border: 1.5px solid rgba(123,79,255,0.35);
    color: var(--primary);
    font-weight: 600;
}
.btn-secondary:hover { background: rgba(123,79,255,0.06); border-color: var(--primary); }

/* Badges */
.badge {
    display: inline-block; padding: 0.25rem 0.75rem; border-radius: 9999px;
    font-size: 0.875rem; font-weight: 500; background: rgba(123,79,255,0.07);
    border: 1px solid rgba(123,79,255,0.2); margin-bottom: 1rem; color: var(--primary);
}
.badge-accent { background: rgba(155,48,217,0.08); color: var(--accent); border-color: rgba(155,48,217,0.2); }

/* Card base */
.glassmorphism {
    background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 24px;
    box-shadow: var(--card-shadow);
}

/* ── Navbar — white with gradient accent ─────────────────── */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    padding: 0.4rem 0;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: none;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 1px 0 0 rgba(0,0,0,0.06);
}
.navbar::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2.5px;
    background: var(--brand-gradient);
    opacity: 0.7;
}
.navbar.scrolled {
    padding: 0.3rem 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.navbar.scrolled::after { opacity: 1; }

.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px; display: flex; align-items: center; }
.logo-highlight { color: var(--primary); }
.logo-img { height: 36px; width: auto; display: block; }
.nav-logo-img { height: 56px; width: auto; display: block; }

@media (max-width: 768px) {
    .nav-logo-img { height: 36px; }
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a:not(.btn) { color: #3D4555; font-weight: 500; }
.nav-links a:not(.btn):hover { color: var(--primary); }
.nav-active { color: var(--primary) !important; }
/* Keep white text on gradient buttons even when they're also marked nav-active */
.btn-primary.nav-active { color: white !important; }

/* ── Agents dropdown ──────────────────────────────── */
.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #3D4555;
    font-weight: 500;
    cursor: pointer;
}
.nav-dropdown-trigger:hover { color: var(--primary); }
.nav-dd-arrow {
    transition: transform 0.22s ease;
    flex-shrink: 0;
    opacity: 0.55;
    margin-top: 1px;
}
.nav-dropdown:hover .nav-dd-arrow { transform: rotate(180deg); opacity: 1; }

.nav-dropdown-menu {
    position: absolute;
    top: 100%;          /* NO gap — bridge handles the visual spacing */
    left: 50%;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    padding: 8px;
    min-width: 180px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-4px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index: 200;
    /* invisible top bridge so cursor crossing gap keeps hover alive */
    margin-top: 8px;
}
/* Pseudo-element fills the gap above the menu so hovering it keeps the dropdown open */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dd-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 9px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #3D4555;
    white-space: nowrap;
    transition: background 0.15s;
    cursor: pointer;
}
.nav-dd-item:hover { background: rgba(123,79,255,0.05); color: var(--primary); }
.nav-dd-item--soon { color: #94A3B8; }
.nav-dd-item--soon:hover { background: rgba(148,163,184,0.05); color: #64748B; }

/* Online / soon dots */
.agent-online-dot,
.agent-soon-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}
.agent-online-dot {
    background: #10B981;
    box-shadow: 0 0 0 2px rgba(16,185,129,0.2);
    animation: pulse-online 2s infinite;
}
.agent-soon-dot { background: #CBD5E1; }

@keyframes pulse-online {
    0%, 100% { box-shadow: 0 0 0 2px rgba(16,185,129,0.2); }
    50%       { box-shadow: 0 0 0 4px rgba(16,185,129,0.12); }
}

/* Status badges */
.agent-status-badge {
    margin-left: auto;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}
.badge-online {
    background: rgba(16,185,129,0.1);
    color: #059669;
    border: 1px solid rgba(16,185,129,0.2);
}
.badge-soon {
    background: rgba(148,163,184,0.12);
    color: #94A3B8;
    border: 1px solid rgba(148,163,184,0.2);
}

/* ── Mobile agent sub-links ───────────────────────── */
.mobile-agent-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.45rem 0 0.45rem 1.2rem;
    font-size: 0.85rem;
    color: #3D4555;
    font-weight: 500;
}
.mobile-agent-link:hover { color: var(--primary); }
.mobile-agent-link--soon {
    color: #94A3B8;
}


/* ── Language Toggle Switch ──────────────────────────────── */
.lang-toggle-wrap {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: 0.75rem;
}
.lang-flag {
    font-size: 1.25rem;
    line-height: 1;
    opacity: 0.45;
    transition: opacity 0.25s;
    user-select: none;
    cursor: pointer;
}
.lang-flag.active {
    opacity: 1;
}
/* The pill track */
.lang-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #38B6FF, #7B4FFF);
    cursor: pointer;
    border: none;
    padding: 0;
    box-shadow: 0 2px 8px rgba(123,79,255,0.25);
    transition: background 0.3s;
    flex-shrink: 0;
}
/* The white knob */
.lang-toggle::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.18);
    transition: transform 0.28s cubic-bezier(.4,0,.2,1);
}
/* When English is active, slide knob to the right */
body.lang-en .lang-toggle::after {
    transform: translateX(20px);
}
body.lang-en .lang-toggle {
    background: linear-gradient(135deg, #7B4FFF, #9B30D9);
}

/* ── Data-lang visibility rules (global) ────────────────── */
[data-lang="en"] { display: none; }
body.lang-en [data-lang="es"] { display: none; }
body.lang-en [data-lang="en"] { display: inline; }
/* Block-level overrides */
body.lang-en p[data-lang="en"],
body.lang-en h1[data-lang="en"],
body.lang-en h2[data-lang="en"],
body.lang-en h3[data-lang="en"],
body.lang-en h4[data-lang="en"],
body.lang-en h5[data-lang="en"],
body.lang-en div[data-lang="en"],
body.lang-en li[data-lang="en"] {
    display: block;
}
/* Span stays inline */
body.lang-en span[data-lang="en"] { display: inline; }

.mobile-menu-btn {
    display: none; background: none; border: none; color: #0D0F1A;
    cursor: pointer; padding: 0.5rem;
    position: relative; z-index: 200;
    min-width: 44px; min-height: 44px;
    align-items: center; justify-content: center;
}
.mobile-menu-btn svg { width: 24px; height: 24px; stroke: currentColor; display: block; }
.mobile-menu {
    display: none; flex-direction: column; gap: 1rem; padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-color); background: #fff;
}
.mobile-menu a { color: #3D4555; font-weight: 500; }
.mobile-menu.open { display: flex; }

/* Sections */
.section { padding: 7rem 0; }
.bg-darker { background-color: var(--bg-darker); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 1rem; color: var(--dark-navy); }
.section-header p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* Hero */
.hero { position: relative; padding: 12rem 0 6rem; min-height: 100vh; display: flex; align-items: center; }
.hero-bg-glow {
    position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
    width: 900px; height: 900px;
    background:
        radial-gradient(ellipse 60% 55% at 35% 40%, rgba(56,182,255,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 55% 50% at 65% 60%, rgba(155,48,217,0.10) 0%, transparent 70%);
    filter: blur(80px); z-index: -1; opacity: 1;
}
.hero-container { text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero-content { max-width: 800px; }
.hero-title { font-size: 3.8rem; margin-bottom: 1.25rem; letter-spacing: -1px; }

/* Brand slogan */
.hero-slogan {
    display: flex; align-items: center; justify-content: center;
    gap: 0.15em; flex-wrap: wrap;
    font-family: var(--font-heading); font-weight: 800;
    font-size: 1.55rem; letter-spacing: -0.02em;
    margin-bottom: 1.75rem; line-height: 1;
}
.slogan-tech {
    background: var(--brand-gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.slogan-human {
    color: var(--text-muted);
    position: relative;
}
/* subtle separator dot that sits between the two phrases */
.slogan-tech::after {
    content: '';
    display: inline-block;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--text-muted);
    opacity: 0.4;
    vertical-align: middle;
    margin: 0 0.35em;
    -webkit-text-fill-color: initial;
}

.hero-subtitle { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 2.5rem; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.social-proof { margin-top: 3rem; color: var(--text-muted); font-size: 0.95rem; }
.social-proof strong { color: var(--text-main); }

/* Calculator */
.calculator-card { padding: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.calc-inputs { display: flex; flex-direction: column; gap: 2rem; }
.calc-field label { display: block; font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.calc-slider {
    width: 100%; -webkit-appearance: none; appearance: none; height: 6px;
    background: #CBD5E1; border-radius: 3px; outline: none;
}
.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%;
    background: var(--primary); cursor: pointer; box-shadow: 0 0 10px var(--glow-primary);
}
.calc-value { display: inline-block; margin-left: 0.5rem; font-weight: 600; color: var(--primary); }
.calc-input {
    width: 100%; padding: 0.75rem 1rem; background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color); border-radius: 12px; color: var(--text-main);
    font-size: 1rem; font-family: var(--font-body); outline: none;
}
.calc-input:focus { border-color: var(--primary); }
.calc-result { text-align: center; }
.calc-label { color: var(--text-muted); font-size: 1rem; }
.calc-amount { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 800; margin: 0.5rem 0; }
.calc-sublabel { color: var(--text-muted); font-size: 0.95rem; }
.calc-note { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.5rem; font-style: italic; }

/* About Section */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.about-story h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.about-story p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }
.about-story em { color: var(--accent); font-style: italic; }
.about-principles { display: flex; flex-direction: column; gap: 1rem; }
.principle-card {
    display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem 1.5rem;
    transition: transform 0.3s;
}
.principle-card:hover { transform: translateX(6px); }
.principle-icon { width: 24px; height: 24px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.principle-card h4 { font-size: 1rem; margin-bottom: 0.15rem; }
.principle-card p { color: var(--text-muted); font-size: 0.85rem; }
.about-roadmap {
    text-align: center; padding: 2rem; border: 1px solid var(--border-color);
    border-radius: 16px; background: rgba(99,102,241,0.03);
}
.roadmap-label {
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px;
    color: var(--primary); font-weight: 700; margin-bottom: 0.5rem;
}
.roadmap-text { color: var(--text-muted); font-size: 1rem; }
.roadmap-text strong { color: var(--text-main); }

/* Steps Grid */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.step-card { padding: 2rem; text-align: center; position: relative; }
.step-number {
    position: absolute; top: 1rem; left: 1.5rem; font-size: 0.8rem; font-weight: 700;
    color: var(--primary); background: rgba(99,102,241,0.15); width: 28px; height: 28px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.step-icon { color: var(--primary); margin-bottom: 1rem; }
.step-icon svg { width: 36px; height: 36px; }
.step-card h4 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.step-card p { color: var(--text-muted); font-size: 0.9rem; }
.steps-punchline { text-align: center; margin-top: 3rem; font-style: italic; color: var(--text-muted); font-size: 1.1rem; }

/* Comparison Table */
.comparison-table { overflow: hidden; max-width: 900px; margin: 0 auto; }
.comp-row { display: grid; grid-template-columns: 1fr 1fr; }
.comp-row:not(:last-child) { border-bottom: 1px solid var(--border-color); }
.comp-header .comp-cell { font-weight: 700; font-family: var(--font-heading); font-size: 1.1rem; padding: 1.5rem 2rem; }
.comp-cell { padding: 1.2rem 2rem; display: flex; align-items: center; gap: 0.75rem; font-size: 0.95rem; color: var(--text-muted); }
.comp-highlight { background: rgba(99,102,241,0.05); color: var(--text-main); }
.comp-icon-bad { width: 18px; height: 18px; color: #ef4444; flex-shrink: 0; }
.comp-icon-good { width: 18px; height: 18px; color: #10b981; flex-shrink: 0; }
.comp-footer { text-align: center; margin-top: 2.5rem; color: var(--text-muted); font-size: 1rem; font-style: italic; }

/* Feature Cards */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.feature-card { padding: 2rem; text-align: center; transition: transform 0.3s ease; }
.feature-card:hover { transform: translateY(-4px); }
.feature-icon {
    width: 64px; height: 64px; margin: 0 auto 1.5rem;
    background: rgba(99,102,241,0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: var(--primary);
}
.feature-card h4 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; }
.loop-line { text-align: center; margin-top: 3rem; font-style: italic; color: var(--text-muted); font-size: 1rem; }

/* Setup Steps */
.setup-steps { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 2rem; }
.setup-step {
    display: flex; align-items: flex-start; gap: 2rem; padding: 2rem;
    border: 1px solid var(--border-color); border-radius: 16px;
    background: var(--bg-card); transition: transform 0.3s;
}
.setup-step:hover { transform: translateX(8px); }
.setup-num { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--primary); line-height: 1; }
.setup-step h4 { margin-bottom: 0.25rem; }
.setup-step p { color: var(--text-muted); font-size: 0.9rem; }

/* Verticals Grid */
.verticals-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.vertical-card { padding: 2rem; text-align: center; position: relative; transition: transform 0.3s; }
.vertical-card:hover { transform: translateY(-4px); }
.vertical-card.featured { border-color: rgba(99,102,241,0.3); }
.vertical-badge {
    position: absolute; top: 1rem; right: 1rem; font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; color: var(--accent);
    background: rgba(236,72,153,0.1); padding: 0.2rem 0.6rem; border-radius: 6px;
}
.vertical-icon { color: var(--primary); margin-bottom: 1rem; }
.vertical-icon svg { width: 32px; height: 32px; }
.vertical-card h4 { margin-bottom: 0.5rem; font-size: 1rem; }
.vertical-card p { color: var(--text-muted); font-size: 0.85rem; }

/* Metrics */
.metrics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.metric-card { padding: 2.5rem; text-align: center; display: flex; flex-direction: column; gap: 0.5rem; }
.metric-number { font-family: var(--font-heading); font-size: 3rem; font-weight: 800; }
.metric-label { font-weight: 600; font-size: 1rem; }
.metric-detail { color: var(--text-muted); font-size: 0.85rem; }
.metrics-footnote { text-align: center; margin-top: 2rem; color: var(--text-muted); font-size: 0.8rem; font-style: italic; }

/* Testimonial */
.testimonial-block {
    text-align: center; max-width: 750px; margin: 0 auto 4rem; padding: 3rem;
}
.testimonial-quote-icon { width: 40px; height: 40px; color: var(--primary); margin-bottom: 1.5rem; opacity: 0.5; }
.testimonial-block blockquote { font-size: 1.3rem; font-style: italic; line-height: 1.7; margin-bottom: 1.5rem; }
.testimonial-block cite { color: var(--text-muted); font-size: 0.9rem; }

/* Cases */
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.case-card { padding: 2rem; text-align: center; transition: transform 0.3s; }
.case-card:hover { transform: translateY(-3px); }
.case-sector { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); font-weight: 600; }
.case-card h4 { margin: 0.5rem 0; font-size: 1.2rem; }
.case-metric { color: var(--text-muted); font-size: 0.9rem; }
.case-metric strong { color: var(--text-main); }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.pricing-card { padding: 2.5rem 2rem; display: flex; flex-direction: column; position: relative; transition: transform 0.3s; }
.pricing-card:hover { transform: translateY(-4px); }
.pricing-featured { border-color: var(--primary); box-shadow: 0 0 30px rgba(99,102,241,0.15); }
.pricing-ribbon {
    position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white; font-size: 0.75rem; font-weight: 700; padding: 0.3rem 1rem;
    border-radius: 0 0 8px 8px;
}
.pricing-card h4 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.pricing-price { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; margin-bottom: 0.25rem; }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.pricing-custom { font-size: 1.8rem; }
.pricing-volume { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0.5rem; }
.pricing-roi { color: var(--accent); font-size: 0.8rem; font-weight: 500; margin-bottom: 1rem; }
.pricing-features { list-style: none; margin-bottom: 1.5rem; flex-grow: 1; }
.pricing-features li { display: flex; align-items: center; gap: 0.5rem; color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0.5rem; }
.pricing-features li svg { width: 16px; height: 16px; color: #10b981; }
.pricing-footnote { text-align: center; margin-top: 2rem; color: var(--text-muted); font-size: 0.85rem; }

/* CTA Final */
.cta-final { text-align: center; padding: 4rem 3rem; }
.cta-final h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.cta-final p { color: var(--text-muted); max-width: 600px; margin: 0 auto 2rem; }

/* Footer */
.footer { padding: 4rem 0 2rem; border-top: 1px solid var(--border-color); background-color: var(--bg-darker); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col h5 { margin-bottom: 0.5rem; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; color: #94A3B8; font-weight: 600; }
.footer-col a { color: #64748B; font-size: 0.9rem; }
.footer-col a:hover { color: var(--primary); }
.footer-col p { color: #64748B; font-size: 0.85rem; margin-top: 0.5rem; }

/* Animations */
.fade-in { opacity: 0; transition: opacity 0.8s ease; }
.fade-in.visible { opacity: 1; }
.fade-in-up { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.slide-in-left { opacity: 0; transform: translateX(-50px); transition: all 0.8s ease; }
.slide-in-left.visible { opacity: 1; transform: translateX(0); }
.slide-in-right { opacity: 0; transform: translateX(50px); transition: all 0.8s ease; }
.slide-in-right.visible { opacity: 1; transform: translateX(0); }
.stagger-fade { opacity: 0; transform: translateY(20px); transition: all 0.5s ease; }
.stagger-fade.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .verticals-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 3rem; }
    .about-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .hero-title { font-size: 2.2rem; }
    .hero-slogan { font-size: 1.2rem; }
    .hero-cta { flex-direction: column; }
    .section { padding: 4rem 0; }
    .section-header h2 { font-size: 1.8rem; }
    .calculator-card { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
    .calc-amount { font-size: 2.5rem; }
    .steps-grid { grid-template-columns: 1fr; }
    .comparison-table { border-radius: 16px; }
    .comp-row { grid-template-columns: 1fr 1fr; }
    .comp-cell { padding: 0.85rem 0.75rem; font-size: 0.8rem; gap: 0.4rem; }
    .comp-header .comp-cell { padding: 1rem 0.75rem; font-size: 0.9rem; }
    .comp-icon-bad, .comp-icon-good { width: 14px; height: 14px; flex-shrink: 0; }

    .verticals-grid { grid-template-columns: 1fr; }
    .metrics-grid { grid-template-columns: 1fr; }
    .cases-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 0.75rem; }
    .footer { padding: 1.25rem 0 0.75rem; }
    .footer-col { gap: 0.3rem; }
    .footer-col h5 { margin-bottom: 0.2rem; margin-top: 0.4rem; }
    .footer-col > div { margin-bottom: 0 !important; }
    .footer-col p { margin-top: 0 !important; }
    .cta-final { padding: 2.5rem 1.5rem; }
    .cta-final h2 { font-size: 1.6rem; }
}
