/* ============================================================
   FOLLOW UP ACE — Redesigned Landing Page
   The Intelligence Layer for Follow Up Boss
   ============================================================ */

/* --- CSS Variables --- */
:root {
    --ace-navy: #0a0e1a;
    --ace-navy-mid: #111827;
    --ace-navy-light: #1a2035;
    --ace-surface: #161b2e;
    --ace-border: rgba(255, 255, 255, 0.06);
    --ace-border-light: #e2e5ea;
    --ace-text: #f0f2f5;
    --ace-text-dim: rgba(255, 255, 255, 0.55);
    --ace-text-dark: #1a1a2e;
    --ace-text-body: #4a5568;
    --ace-white: #ffffff;
    --ace-light: #f7f8fa;
    --ace-light-alt: #eef0f4;

    --ace-amber: #d4a574;
    --ace-amber-bright: #efbf77;
    --ace-coral: #e27638;
    --ace-pink: #d14f6b;
    --ace-purple: #a57dd6;
    --ace-blue: #69aed5;
    --ace-teal: #10a37f;
    --ace-claude: #d4a574;
    --ace-gpt: #10a37f;

    --gradient-warm: linear-gradient(135deg, #efbf77, #e27638 30%, #d14f6b 60%, #a57dd6 85%, #69aed5);
    --gradient-warm-text: linear-gradient(90deg, #efbf77, #e27638 20%, #d14f6b 40%, #a57dd6 60%, #69aed5 80%, #efbf77);

    --font-display: 'Satoshi', 'DM Sans', system-ui, -apple-system, sans-serif;
    --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
    --font-mono: 'Space Mono', 'SF Mono', 'Fira Code', monospace;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
}


/* ============================================================
   RESET & BASE
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    background: var(--ace-light);
    color: var(--ace-text-body);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color 0.2s ease; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

p { margin: 0; }

ul { list-style: none; padding: 0; margin: 0; }

.skip-link {
    position: absolute;
    top: -50px;
    left: 0;
    background: var(--ace-pink);
    color: white;
    padding: 8px 16px;
    z-index: 1000;
    font-size: 0.85rem;
}
.skip-link:focus { top: 0; }


/* ============================================================
   LAYOUT
   ============================================================ */

.page-wrapper { width: 100%; overflow-x: hidden; }

.section-container {
    width: 100%;
    max-width: 800px;
    padding: 0 24px;
    margin: 0 auto;
}

.section-container-wide {
    width: 100%;
    max-width: 1060px;
    padding: 0 24px;
    margin: 0 auto;
}


/* ============================================================
   GRADIENT TEXT
   ============================================================ */

.gradient-text {
    background: var(--gradient-warm-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradient-shift 6s ease-in-out infinite;
}

.gradient-text-light {
    background: linear-gradient(135deg, #ffffff, #d4a574, #d14f6b, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease-in-out infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


/* ============================================================
   SECTION LABELS
   ============================================================ */

.section-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(209, 79, 107, 0.08));
    color: var(--ace-coral);
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.section-label-light {
    background: rgba(255, 255, 255, 0.06);
    color: var(--ace-amber);
    border-color: rgba(255, 255, 255, 0.1);
}


/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .gradient-text { animation: none; }
    .gradient-text-light { animation: none; }
    .btn-primary { animation: none; }
    .demo-live-dot::before { animation: none; }
    .wave-bar { animation: none; }
    .phone-live-dot { animation: none; }
}


/* ============================================================
   SECTION 01 — STICKY NAV
   ============================================================ */

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: all 0.35s var(--ease-out-quart);
    background: transparent;
}

.site-nav.nav-scrolled {
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid var(--ace-border);
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 32px;
    transition: opacity 0.2s;
}
.nav-logo:hover img { opacity: 0.8; }

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--ace-white); }

.nav-cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ace-white) !important;
    padding: 8px 20px;
    border-radius: 8px;
    background: var(--gradient-warm);
    background-size: 200% auto;
    transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(209, 79, 107, 0.3);
}

.nav-signin {
    color: var(--ace-text-body, #6b7280);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s;
    margin-right: 12px;
}
.nav-signin:hover {
    color: var(--ace-text-dark, #1a1a2e);
}

/* Nav Actions + Demo Button */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-demo-btn {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-demo-btn:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 0;
    transition: color 0.2s;
}

.nav-dropdown-trigger:hover {
    color: #ffffff;
}

.nav-dropdown-trigger svg {
    transition: transform 0.2s;
}

.nav-dropdown-open .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}

.nav-dropdown-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 14px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
}

.nav-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 101;
}

.nav-hamburger span {
    width: 22px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s;
}

.hamburger-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-active span:nth-child(2) {
    opacity: 0;
}

.hamburger-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
}

.mobile-menu.mobile-menu-open {
    display: flex;
    flex-direction: column;
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(20px);
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-menu a:hover {
    color: #ffffff;
}

.mobile-menu-ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
}

.btn-mobile {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
}


/* ============================================================
   SECTION 02 — HERO
   ============================================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ace-navy);
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.25) 0%, transparent 70%);
    top: -10%;
    right: -5%;
}

.hero-orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(209, 79, 107, 0.15) 0%, transparent 70%);
    bottom: -20%;
    left: -10%;
}

.hero-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(105, 174, 213, 0.12) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 80%);
}

/* Hero Split Layout */
.hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1 1 55%;
    max-width: 720px;
    text-align: left;
}

.hero-visual {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-badge-row { margin-bottom: 20px; }

.hero-pill {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(212, 165, 116, 0.1);
    color: var(--ace-amber);
    border: 1px solid rgba(212, 165, 116, 0.25);
}

.hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    font-weight: 900;
    color: var(--ace-white);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--ace-text-dim);
    max-width: 580px;
    margin-bottom: 28px;
    line-height: 1.7;
}

/* Hero Platforms (badge row) */
.hero-platforms {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.platform-divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    user-select: none;
}

/* Platform badges */
.hero-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
}

.badge-claude { border-color: rgba(212, 165, 116, 0.3); }
.badge-gpt { border-color: rgba(16, 163, 127, 0.3); }
.badge-fub { border-color: rgba(105, 174, 213, 0.3); }

.platform-badge svg { opacity: 0.7; }

.platform-badge-divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 300;
}

/* Hero Trust Line */
.hero-trust-line {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 16px;
    line-height: 1.4;
}

/* Hero CTA */
.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-warm);
    background-size: 200% auto;
    color: var(--ace-white) !important;
    padding: 16px 36px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(209, 79, 107, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s ease;
    animation: gradient-shift 6s ease-in-out infinite;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 8px 32px rgba(209, 79, 107, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.btn-primary:active { transform: translateY(-1px); }

.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-primary-lg {
    padding: 18px 40px;
    font-size: 1.15rem;
}

.hero-cta-note {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

.btn-secondary-light {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    transition: all 0.2s;
}

.btn-secondary-light:hover {
    color: var(--ace-white);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

/* Ghost Button */
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease;
    text-decoration: none;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.4);
}


/* ============================================================
   PHONE MOCKUP
   ============================================================ */

.phone-mockup {
    width: 280px;
    border-radius: 36px;
    background: #0d1117;
    border: 3px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 0 40px rgba(99, 102, 241, 0.12),
        0 20px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    flex-shrink: 0;
}

.phone-mockup.phone-hero {
    width: 300px;
}

.phone-mockup.phone-sm {
    width: 240px;
}

.phone-notch {
    height: 28px;
    background: #0d1117;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.phone-notch::after {
    content: "";
    display: block;
    width: 80px;
    height: 22px;
    background: #000;
    border-radius: 0 0 14px 14px;
}

.phone-screen {
    padding: 0 12px 16px;
    background: #0d1117;
}

.phone-app-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 4px;
    gap: 8px;
}

.phone-app-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
}

.phone-app-icon.app-gpt {
    background: #10a37f;
}

.phone-app-icon.app-claude {
    background: #d4a574;
}

.phone-app-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

.phone-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(34, 197, 94, 0);
    }
}

.phone-chat {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 4px;
}

.chat-bubble {
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 0.8rem;
    line-height: 1.5;
    max-width: 92%;
}

.chat-bubble.chat-user {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-bubble.chat-ai {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom-left-radius: 4px;
}

.chat-bubble.chat-ai-success {
    background: rgba(16, 163, 127, 0.06);
    color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid #10a37f;
    border-bottom-left-radius: 4px;
}

.chat-tool-call {
    display: block;
    font-family: "SF Mono", "Fira Code", "Consolas", monospace;
    font-size: 0.65rem;
    color: #10a37f;
    margin-bottom: 6px;
    opacity: 0.7;
}


/* ============================================================
   DESKTOP MOCKUP
   ============================================================ */

.desktop-mockup {
    border-radius: 12px;
    background: #0d1117;
    border: 2px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    box-shadow:
        0 0 30px rgba(99, 102, 241, 0.08),
        0 16px 48px rgba(0, 0, 0, 0.35);
}

.desktop-bar {
    height: 32px;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.desktop-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.desktop-dot:nth-child(1) {
    background: #ff5f57;
}

.desktop-dot:nth-child(2) {
    background: #febc2e;
}

.desktop-dot:nth-child(3) {
    background: #28c840;
}

.desktop-title {
    margin-left: auto;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.3);
}

.desktop-screen {
    padding: 12px;
}


/* ============================================================
   SECTION 03 — INTEGRATION TRUST BAR
   ============================================================ */

.trust-bar {
    background: #f7f8fa;
    padding: 48px 0 40px;
    border-bottom: 1px solid #e2e5ea;
}

.trust-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.trust-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 20px;
    display: block;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.trust-logo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1a1a2e;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.trust-logo-item:hover {
    opacity: 1;
}

.trust-logo-item svg {
    color: #4a5568;
}

.trust-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    max-width: 700px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.trust-stat {
    text-align: center;
}

.trust-stat-num {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #1a1a2e;
    line-height: 1;
}

.trust-stat-plus {
    font-size: 1.1rem;
    font-weight: 700;
    color: #d14f6b;
}

.trust-stat-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #4a5568;
    margin-top: 4px;
}

.trust-stat-divider {
    width: 1px;
    height: 36px;
    background: #e2e5ea;
}


/* ============================================================
   SECTION 04 — AGENTIC AI ON THE GO
   ============================================================ */

.agentic-section {
    padding: 80px 0;
    background: #ffffff;
}

.agentic-header {
    text-align: center;
    margin-bottom: 56px;
}

.agentic-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 14px;
}

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

.agentic-card {
    text-align: center;
    padding: 24px 16px;
    background: #f7f8fa;
    border: 1px solid #e2e5ea;
    border-radius: 16px;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.agentic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.agentic-card-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #e27638;
    margin-bottom: 16px;
}

.agentic-card-desc {
    font-size: 0.85rem;
    color: #4a5568;
    line-height: 1.55;
    margin-top: 16px;
}

.agentic-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: #f7f8fa;
    border: 1px solid #e2e5ea;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 0.85rem;
    color: #4a5568;
}

.agentic-security svg {
    color: #10a37f;
    flex-shrink: 0;
}

.section-cta {
    text-align: center;
    margin-top: 32px;
}

.btn-section-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    border: 2px solid #e2e5ea;
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-section-cta:hover {
    border-color: #d14f6b;
    color: #d14f6b;
    transform: translateY(-2px);
}


/* ============================================================
   SECTION 05 — MCP DEEP DIVE
   ============================================================ */

.mcp-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--ace-navy) 0%, #0d1221 50%, var(--ace-navy-mid) 100%);
    color: var(--ace-text);
    position: relative;
    overflow: hidden;
}

.mcp-header {
    text-align: center;
    margin-bottom: 56px;
}

.mcp-section h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--ace-white);
    margin-bottom: 16px;
}

.section-sub-light {
    font-size: 1.1rem;
    color: var(--ace-text-dim);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--ace-text-body);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* MCP Split Layout */
.mcp-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.mcp-cap-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.mcp-cap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mcp-cap-card {
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: border-color 0.2s, background 0.2s;
}

.mcp-cap-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

.mcp-cap-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 165, 116, 0.1);
    color: #d4a574;
    margin-bottom: 10px;
}

.mcp-cap-card h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.mcp-cap-card p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.45;
}

/* MCP Demo Cards */
.mcp-demos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.mcp-demo-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s var(--ease-out-expo), border-color 0.3s;
}

.mcp-demo-card:hover {
    transform: translateY(-3px);
}

.demo-claude { border-color: rgba(212, 165, 116, 0.15); }
.demo-claude:hover { border-color: rgba(212, 165, 116, 0.35); }
.demo-gpt { border-color: rgba(16, 163, 127, 0.15); }
.demo-gpt:hover { border-color: rgba(16, 163, 127, 0.35); }

.demo-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.demo-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--ace-white);
}

.demo-icon-claude { background: linear-gradient(135deg, var(--ace-claude), #c4956a); }
.demo-icon-gpt { background: linear-gradient(135deg, var(--ace-teal), #0d8a6a); }

.demo-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ace-white);
    display: block;
    line-height: 1.2;
}

.demo-sub {
    font-size: 0.72rem;
    color: var(--ace-text-dim);
    display: block;
}

.demo-live-dot {
    margin-left: auto;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ace-teal);
    position: relative;
}

.demo-live-dot::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--ace-teal);
    opacity: 0.3;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.8); opacity: 0; }
}

.demo-terminal {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.demo-prompt, .demo-response {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    line-height: 1.6;
}

.demo-prompt {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.demo-response {
    background: rgba(255, 255, 255, 0.02);
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.demo-prompt-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 6px;
}

.demo-label-ai { color: var(--ace-amber); }
.demo-gpt .demo-label-ai { color: var(--ace-teal); }

.demo-prompt-text {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.demo-response-text {
    color: rgba(255, 255, 255, 0.65);
}

/* MCP Proof Row */
.mcp-proof-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 32px 0;
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex-wrap: wrap;
}

.mcp-proof-stat {
    text-align: center;
}

.mcp-proof-num {
    display: block;
    font-family: 'Satoshi', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.mcp-proof-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 6px;
}

.mcp-proof-highlight .mcp-proof-num {
    background: linear-gradient(90deg, #efbf77, #e27638 20%, #d14f6b 40%, #a57dd6 60%, #69aed5 80%, #efbf77);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* MCP Features Grid */
.mcp-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.mcp-feature {
    text-align: center;
    padding: 20px 16px;
}

.mcp-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--ace-amber);
}

.mcp-feature h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ace-white);
    margin-bottom: 8px;
}

.mcp-feature p {
    font-size: 0.82rem;
    color: var(--ace-text-dim);
    line-height: 1.55;
}


/* ============================================================
   SECTION 06 — ZILLOW SPEED-TO-LEAD
   ============================================================ */

.zillow-section {
    padding: 80px 0;
    background: var(--ace-white);
}

.zillow-header {
    text-align: center;
    margin-bottom: 48px;
}

.zillow-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--ace-text-dark);
    margin-bottom: 14px;
}

/* Zillow Stat Bar */
.zillow-stat-bar {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    padding: 24px;
    background: #f7f8fa;
    border: 1px solid #e2e5ea;
    border-radius: 12px;
}

.zillow-stat {
    text-align: center;
}

.zillow-stat-num {
    display: block;
    font-family: 'Satoshi', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: #1a1a2e;
    line-height: 1;
}

.zillow-stat-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #4a5568;
    margin-top: 4px;
}

/* Zillow Timeline */
.zillow-timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto 48px;
    padding-left: 100px;
}

.zillow-timeline::before {
    content: '';
    position: absolute;
    left: 89px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--ace-coral), var(--ace-pink), var(--ace-purple));
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
    position: relative;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-time {
    position: absolute;
    left: -100px;
    width: 80px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--ace-pink);
    text-align: right;
    padding-top: 2px;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--ace-light);
    border: 3px solid var(--ace-pink);
    flex-shrink: 0;
    position: relative;
    left: -10px;
    top: 4px;
}

.dot-active {
    background: var(--ace-pink);
    box-shadow: 0 0 0 4px rgba(209, 79, 107, 0.2);
}

.timeline-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ace-text-dark);
    margin-bottom: 4px;
}

.timeline-content p {
    font-size: 0.85rem;
    color: var(--ace-text-body);
    line-height: 1.5;
}

/* Zillow Features Grid */
.zillow-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.zillow-feature-card {
    padding: 24px;
    background: var(--ace-light);
    border: 1px solid var(--ace-border-light);
    border-radius: var(--radius-lg);
    border-left: 3px solid;
    border-image: var(--gradient-warm) 1;
    border-image-slice: 1;
    border-top: 1px solid var(--ace-border-light);
    border-right: 1px solid var(--ace-border-light);
    border-bottom: 1px solid var(--ace-border-light);
    transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s;
}

.zillow-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.zf-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-warm);
    color: var(--ace-white);
    margin-bottom: 12px;
}

.zillow-feature-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ace-text-dark);
    margin-bottom: 8px;
}

.zillow-feature-card p {
    font-size: 0.85rem;
    color: var(--ace-text-body);
    line-height: 1.55;
}

/* Zillow ROI Callout */
.zillow-roi {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.06), rgba(209, 79, 107, 0.04));
    border: 1px solid rgba(209, 79, 107, 0.15);
    border-radius: 12px;
    margin: 40px 0 32px;
}

.zillow-roi-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #efbf77, #e27638 30%, #d14f6b 60%, #a57dd6);
    color: #ffffff;
    flex-shrink: 0;
}

.zillow-roi-content {
    font-size: 0.92rem;
    color: #4a5568;
    line-height: 1.6;
}

.zillow-roi-content strong {
    color: #1a1a2e;
}


/* ============================================================
   SECTION 07 — THE ACE SUITE
   ============================================================ */

.suite-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #111827, #0a0e1a);
    color: #f0f2f5;
}

.suite-header {
    text-align: center;
    margin-bottom: 48px;
}

.suite-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
}

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

.suite-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px 20px;
    position: relative;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.25s,
                background 0.25s;
}

.suite-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

.suite-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.suite-icon-pro {
    background: rgba(212, 165, 116, 0.1);
    border-color: rgba(212, 165, 116, 0.2);
    color: #d4a574;
}

.suite-pro-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 8px;
    border-radius: 4px;
    background: linear-gradient(135deg, #efbf77, #d14f6b);
    color: #ffffff;
}

.suite-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.suite-card-tier {
    display: block;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 10px;
}

.suite-card p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.55;
}


/* ============================================================
   SECTION 08 — BEFORE / AFTER COMPARISON
   ============================================================ */

.compare-section {
    padding: 80px 0;
    background: #f7f8fa;
}

.compare-header {
    text-align: center;
    margin-bottom: 40px;
}

.compare-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: #1a1a2e;
}

.compare-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 760px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e5ea;
}

.compare-col {
    padding: 0;
}

.compare-before {
    background: linear-gradient(180deg, rgba(192, 57, 43, 0.03) 0%, rgba(192, 57, 43, 0.06) 100%);
}

.compare-after {
    background: linear-gradient(180deg, rgba(16, 163, 127, 0.03) 0%, rgba(16, 163, 127, 0.06) 100%);
}

.compare-col-header {
    padding: 18px 24px;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 2px solid;
}

.compare-before .compare-col-header {
    color: #c0392b;
    border-color: rgba(192, 57, 43, 0.2);
}

.compare-after .compare-col-header {
    color: #10a37f;
    border-color: rgba(16, 163, 127, 0.2);
}

.compare-row {
    padding: 14px 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    color: #4a5568;
}

.compare-row:last-child {
    border-bottom: none;
}

.compare-icon {
    flex-shrink: 0;
    font-weight: 700;
    font-size: 1rem;
}

.compare-x {
    color: #c0392b;
}

.compare-check {
    color: #10a37f;
}


/* ============================================================
   SECTION 09 — PRICING
   ============================================================ */

.pricing-section {
    padding: 80px 0;
    background: var(--ace-light-alt);
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--ace-text-dark);
    margin-bottom: 14px;
}

/* Competitor Comparison Bar */
.competitor-bar {
    background: var(--ace-white);
    border: 1px solid var(--ace-border-light);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.comp-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ace-text-body);
    white-space: nowrap;
}

.comp-items {
    display: flex;
    gap: 16px;
    flex: 1;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.comp-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 8px;
    background: var(--ace-light);
}

.comp-name {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--ace-text-body);
}

.comp-price {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 800;
    color: #c0392b;
    text-decoration: line-through;
    text-decoration-color: rgba(192, 57, 43, 0.4);
}

.comp-price span {
    font-size: 0.7rem;
    font-weight: 500;
}

.comp-item-ace {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.08), rgba(209, 79, 107, 0.06));
    border: 1px solid rgba(209, 79, 107, 0.15);
}

.comp-price-ace {
    color: var(--ace-teal) !important;
    text-decoration: none !important;
    font-size: 1.1rem;
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.pricing-card {
    background: var(--ace-white);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    border: 1px solid var(--ace-border-light);
    transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.pricing-card-free {
    border-color: var(--ace-teal, #2dd4bf);
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.03) 0%, var(--ace-white) 100%);
}

.pricing-card-free .pricing-amount {
    color: var(--ace-teal, #2dd4bf);
}

.pricing-card-free .pricing-cta {
    background: var(--ace-teal, #2dd4bf);
    color: var(--ace-white, #fff);
}

.pricing-card-free .pricing-cta:hover {
    background: #14b8a6;
    transform: translateY(-2px);
}

.pricing-card-pro {
    border-color: var(--ace-pink);
    box-shadow: 0 4px 24px rgba(209, 79, 107, 0.08);
    transform: scale(1.02);
}

.pricing-card-pro:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0 16px 40px rgba(209, 79, 107, 0.12);
}

.pricing-pro-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-warm);
    background-size: 200% auto;
    color: var(--ace-white);
    padding: 6px 20px;
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
    animation: gradient-shift 6s ease-in-out infinite;
}

.pricing-card-top {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-card-top h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--ace-text-dark);
    margin-bottom: 8px;
}

.pricing-price { margin-bottom: 8px; }

.pricing-amount {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--ace-text-dark);
    line-height: 1;
}

.pricing-period {
    font-size: 0.88rem;
    color: var(--ace-text-body);
}

.pricing-tagline {
    font-size: 0.85rem;
    color: var(--ace-text-body);
}

.pricing-features {
    margin-bottom: 24px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.88rem;
    color: var(--ace-text-body);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.45;
}

.pricing-features li::before {
    content: '\2713';
    font-weight: 700;
    color: var(--ace-teal);
    flex-shrink: 0;
    font-size: 0.85rem;
}

.feature-highlight {
    font-weight: 600;
    color: var(--ace-text-dark) !important;
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 14px 24px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.25s var(--ease-out-expo);
    background: var(--ace-light);
    color: var(--ace-text-dark);
    border: 2px solid var(--ace-border-light);
}

.pricing-cta:hover {
    background: var(--ace-text-dark);
    color: var(--ace-white);
    transform: translateY(-2px);
}

.pricing-cta-pro {
    background: var(--gradient-warm);
    background-size: 200% auto;
    color: var(--ace-white) !important;
    border: none;
    animation: gradient-shift 6s ease-in-out infinite;
    box-shadow: 0 4px 16px rgba(209, 79, 107, 0.2);
}

.pricing-cta-pro:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(209, 79, 107, 0.3);
    color: var(--ace-white) !important;
}

/* Pricing Extras */
.pricing-extras {
    max-width: 760px;
    margin: 24px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-team {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: #ffffff;
    border: 1px solid #e2e5ea;
    border-radius: 12px;
    font-size: 0.88rem;
    color: #4a5568;
}

.pricing-team svg {
    color: #d14f6b;
    flex-shrink: 0;
}

.pricing-team a {
    color: #d14f6b;
    font-weight: 600;
    transition: opacity 0.2s;
    text-decoration: none;
}

.pricing-team a:hover {
    opacity: 0.7;
}

.pricing-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 20px;
    background: linear-gradient(135deg, rgba(16, 163, 127, 0.04), rgba(16, 163, 127, 0.08));
    border: 1px solid rgba(16, 163, 127, 0.15);
    border-radius: 12px;
    font-size: 0.85rem;
    color: #4a5568;
    line-height: 1.55;
}

.pricing-guarantee svg {
    color: #10a37f;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Pricing Layer Labels */
.pricing-layer-label {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 1100px;
    margin: 40px auto 16px;
    padding: 0 4px;
}

.pricing-layer-num {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--ace-pink);
    background: rgba(209, 79, 107, 0.08);
    border: 1px solid rgba(209, 79, 107, 0.2);
    border-radius: 8px;
    padding: 4px 10px;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.pricing-layer-num-engine {
    color: #a57dd6;
    background: rgba(165, 125, 214, 0.08);
    border-color: rgba(165, 125, 214, 0.2);
}

.pricing-layer-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--ace-text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pricing-layer-optional {
    font-size: 0.72rem;
    font-weight: 600;
    color: #a57dd6;
    background: rgba(165, 125, 214, 0.08);
    border: 1px solid rgba(165, 125, 214, 0.2);
    border-radius: 20px;
    padding: 2px 10px;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.pricing-layer-desc {
    display: block;
    font-size: 0.83rem;
    color: #6c757d;
    margin-top: 2px;
    line-height: 1.45;
}

/* AI Engine Section */
.ai-engine-section {
    max-width: 1100px;
    margin: 0 auto 8px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 24px;
    align-items: start;
}

.ai-engine-features {
    background: var(--ace-white);
    border: 1px solid var(--ace-border-light);
    border-radius: var(--radius-xl);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ai-engine-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.ai-engine-feature-icon {
    font-size: 1.4rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.ai-engine-feature strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ace-text-dark);
    margin-bottom: 2px;
}

.ai-engine-feature span {
    font-size: 0.82rem;
    color: #6c757d;
    line-height: 1.5;
}

.ai-engine-tiers {
    background: var(--ace-white);
    border: 1px solid rgba(165, 125, 214, 0.25);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.ai-engine-tiers-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(165, 125, 214, 0.06);
    border-bottom: 1px solid rgba(165, 125, 214, 0.15);
    font-size: 0.72rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ai-engine-tier-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 12px;
    padding: 11px 20px;
    border-bottom: 1px solid #f1f3f5;
    transition: background 0.15s;
}

.ai-engine-tier-row:last-child {
    border-bottom: none;
}

.ai-engine-tier-row:hover {
    background: rgba(165, 125, 214, 0.03);
}

.ai-tier-range {
    font-size: 0.85rem;
    color: #4a5568;
}

.ai-tier-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #a57dd6;
    background: rgba(165, 125, 214, 0.08);
    border-radius: 20px;
    padding: 2px 10px;
    text-align: center;
    white-space: nowrap;
}

.ai-tier-price {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    color: var(--ace-text-dark);
    text-align: right;
    white-space: nowrap;
}

.ai-tier-price span {
    font-size: 0.72rem;
    font-weight: 500;
    color: #9ca3af;
}

.ai-tier-price a {
    font-size: 0.85rem;
    font-weight: 600;
    color: #a57dd6;
    text-decoration: none;
}

.ai-tier-price a:hover {
    text-decoration: underline;
}

.ai-tier-custom .ai-tier-range,
.ai-tier-custom .ai-tier-label {
    color: #9ca3af;
}

.ai-tier-custom .ai-tier-label {
    background: #f1f3f5;
    color: #9ca3af;
}

.ai-engine-note {
    grid-column: 1 / -1;
    font-size: 0.8rem;
    color: #9ca3af;
    line-height: 1.6;
    text-align: center;
    margin: 4px 0 0;
    padding: 0 8px;
}

@media (max-width: 860px) {
    .ai-engine-section {
        grid-template-columns: 1fr;
    }
    .ai-engine-note {
        grid-column: 1;
    }
}


/* ============================================================
   SECTION 10 — TESTIMONIALS
   ============================================================ */

.testimonials-section {
    padding: 80px 0;
    background: var(--ace-light);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--ace-text-dark);
}

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

.testimonial-card {
    background: var(--ace-white);
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--ace-border-light);
    transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s;
}

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

.testimonial-metric {
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    color: #10a37f;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
    padding: 6px 12px;
    background: rgba(16, 163, 127, 0.06);
    border-radius: 6px;
    display: inline-block;
}

.testimonial-stars {
    color: #f5a623;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testimonial-text {
    font-size: 0.92rem;
    font-style: italic;
    color: var(--ace-text-body);
    line-height: 1.65;
    margin-bottom: 18px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ace-white);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ace-text-dark);
}

.testimonial-role {
    font-size: 0.75rem;
    color: var(--ace-text-body);
}

/* Brokerage Bar */
.brokerage-bar {
    text-align: center;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #e2e5ea;
}

.brokerage-label {
    font-size: 0.82rem;
    color: #4a5568;
    margin-bottom: 16px;
    display: block;
}

.brokerage-logos {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.brokerage-logo {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1a2e;
    opacity: 0.35;
    letter-spacing: 0.02em;
    transition: opacity 0.2s;
}

.brokerage-logo:hover {
    opacity: 0.6;
}


/* ============================================================
   SECTION 11 — ROI MATH
   ============================================================ */

.roi-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #111827, #0a0e1a);
    color: #f0f2f5;
}

.roi-header {
    text-align: center;
    margin-bottom: 48px;
}

.roi-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.roi-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 28px 24px;
    backdrop-filter: blur(12px);
    transition: transform 0.25s, border-color 0.25s;
}

.roi-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.12);
}

.roi-card-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #d4a574;
    margin-bottom: 20px;
}

.roi-card-body {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
}

.roi-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.roi-line:last-child {
    border-bottom: none;
}

.roi-val {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    color: #ffffff;
}

.roi-val-highlight {
    background: linear-gradient(90deg, #efbf77, #e27638 20%, #d14f6b 40%, #a57dd6 60%, #69aed5 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.1rem;
}

.roi-val-struck {
    color: #c0392b;
    text-decoration: line-through;
    text-decoration-color: rgba(192, 57, 43, 0.4);
}

.roi-line-result {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4px;
    padding-top: 14px;
}

.roi-card-kicker {
    font-size: 0.85rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}


/* ============================================================
   SECTION 12 — HOW IT WORKS (STEPS)
   ============================================================ */

.steps-section {
    padding: 80px 0;
    background: var(--ace-white);
}

.steps-header {
    text-align: center;
    margin-bottom: 48px;
}

.steps-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--ace-text-dark);
    margin-bottom: 12px;
}

.steps-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
}

.step-card {
    flex: 1;
    max-width: 240px;
    text-align: center;
    padding: 24px 20px;
}

.step-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    background: var(--gradient-warm-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 14px;
}

.step-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ace-text-dark);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.85rem;
    color: var(--ace-text-body);
    line-height: 1.55;
}

.step-arrow {
    display: flex;
    align-items: center;
    padding-top: 36px;
    color: var(--ace-border-light);
}


/* ============================================================
   SECTION 13 — FAQ
   ============================================================ */

.faq-section {
    padding: 80px 0;
    background: var(--ace-white);
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--ace-text-dark);
}

.faq-list {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--ace-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--ace-border-light);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--ace-text-dark);
    text-align: left;
    gap: 16px;
    line-height: 1.4;
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--ace-text-body);
    transition: transform 0.3s var(--ease-out-expo);
}

.faq-open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out-expo), padding 0.3s;
    padding: 0 22px;
}

.faq-open .faq-answer {
    max-height: 300px;
    padding: 0 22px 18px;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--ace-text-body);
    line-height: 1.65;
}


/* ============================================================
   SECTION 14 — FINAL CTA
   ============================================================ */

.final-cta {
    padding: 100px 0;
    background: var(--ace-navy);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.final-cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.final-cta-content {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--ace-white);
    margin-bottom: 14px;
}

.final-cta p {
    font-size: 1.1rem;
    color: var(--ace-text-dim);
    margin-bottom: 32px;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.final-cta-dual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.final-cta-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.final-cta-divider {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.85rem;
}

.final-cta-demo-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
    text-decoration: none;
}

.final-cta-demo-link:hover {
    color: #d4a574;
}


/* ============================================================
   SECTION 15 — FOOTER
   ============================================================ */

footer {
    padding: 48px 0 32px;
    background: var(--ace-navy-mid);
    border-top: 1px solid var(--ace-border);
}

.footer-inner {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
    text-align: left;
}

.footer-logo {
    height: 24px;
    opacity: 0.5;
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-col h4 {
    font-family: 'Satoshi', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.footer-col nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col nav a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s;
    text-decoration: none;
}

.footer-col nav a:hover {
    color: #ffffff;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
}

.footer-badge svg {
    color: #10a37f;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.25);
}

/* Legacy footer links (fallback) */
.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--ace-white); }


/* ============================================================
   RESPONSIVE: TABLET (max-width: 768px)
   ============================================================ */

@media (max-width: 768px) {
    .hero { padding: 100px 24px 60px; min-height: auto; }
    .hero h1 { font-size: 2.2rem; }

    .nav-links { display: none; }
    .nav-hamburger { display: flex; }

    .hero-split {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
        padding: 0 1.25rem;
    }
    .hero-content {
        text-align: center;
        max-width: 100%;
        flex: 1 1 auto;
    }
    .hero-visual { flex: 1 1 auto; }
    .hero-platforms { justify-content: center; }
    .hero-trust-line { text-align: center; }
    .hero-cta-group { align-items: center; }
    .hero-badges { flex-direction: column; }
    .platform-badge-divider { display: none; }

    /* Agentic */
    .agentic-grid { grid-template-columns: 1fr; }

    /* MCP */
    .mcp-split { grid-template-columns: 1fr; }
    .mcp-demos { gap: 16px; }
    .mcp-features { grid-template-columns: 1fr 1fr; gap: 16px; }

    /* Zillow */
    .zillow-timeline { padding-left: 80px; }
    .zillow-timeline::before { left: 69px; }
    .timeline-time { left: -80px; width: 60px; }
    .zillow-features { grid-template-columns: 1fr; }

    /* Suite */
    .suite-grid { grid-template-columns: repeat(2, 1fr); }

    /* Compare */
    .compare-table { grid-template-columns: 1fr; }
    .compare-before { border-bottom: 1px solid #e2e5ea; }

    /* Pricing */
    .competitor-bar { flex-direction: column; align-items: flex-start; }
    .comp-items { justify-content: flex-start; }
    .pricing-cards { grid-template-columns: 1fr; max-width: 440px; }
    .pricing-card-free { order: -2; }
    .pricing-card-pro { transform: none; order: -1; }
    .pricing-card-pro:hover { transform: translateY(-4px); }

    /* Steps */
    .steps-row { flex-direction: column; align-items: center; }
    .step-arrow { display: none; }

    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr; }

    /* ROI */
    .roi-grid { grid-template-columns: 1fr; max-width: 400px; }

    /* Trust bar */
    .trust-stats { gap: 20px; }
    .trust-stat-divider { display: none; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}


/* ============================================================
   RESPONSIVE: MOBILE SMALL (max-width: 480px)
   ============================================================ */

@media (max-width: 480px) {
    .hero { padding: 90px 16px 48px; }
    .hero h1 { font-size: 1.8rem; }
    .hero-sub { font-size: 0.95rem; }

    .section-container, .section-container-wide { padding: 0 16px; }

    .phone-mockup { width: 260px; }
    .phone-mockup.phone-hero { width: 270px; }
    .phone-mockup.phone-sm { width: 220px; }

    .mcp-cap-grid { grid-template-columns: 1fr; }
    .mcp-features { grid-template-columns: 1fr; }
    .mcp-demo-card { padding: 18px; }

    .zillow-timeline { padding-left: 70px; }
    .zillow-timeline::before { left: 59px; }
    .timeline-time { left: -70px; width: 52px; font-size: 0.65rem; }

    .suite-grid { grid-template-columns: 1fr; }

    .pricing-amount { font-size: 2.2rem; }
    .pricing-card { padding: 28px 20px; }

    .btn-primary { padding: 14px 28px; font-size: 1rem; width: 100%; max-width: 320px; justify-content: center; }

    .comp-items { flex-direction: column; }
    .comp-item { justify-content: space-between; width: 100%; }

    .footer-grid { grid-template-columns: 1fr; }

    .trust-stats { flex-direction: column; gap: 12px; }
}
