/* ============================================
   REVAYA SERVICE - Clean Light Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f7f8fa;
    --bg-elevated: #ffffff;
    --bg-card: #ffffff;
    --bg-dark: #0c0f1a;
    --text-primary: #0c0f1a;
    --text-secondary: #4a5068;
    --text-muted: #8b90a0;
    --accent: #2d5bff;
    --accent-light: #5b7fff;
    --accent-ultra-light: rgba(45, 91, 255, 0.06);
    --accent-glow: rgba(45, 91, 255, 0.1);
    --accent-warm: #6c3bff;
    --accent-rose: #8b5cf6;
    --accent-green: #25D366;
    --gradient-primary: linear-gradient(135deg, #2d5bff 0%, #6c3bff 100%);
    --gradient-text: linear-gradient(135deg, #0c0f1a 0%, #2d5bff 100%);
    --border: rgba(12, 15, 26, 0.08);
    --border-hover: rgba(12, 15, 26, 0.15);
    --shadow-sm: 0 1px 3px rgba(12, 15, 26, 0.04);
    --shadow-md: 0 4px 20px rgba(12, 15, 26, 0.06);
    --shadow-lg: 0 12px 40px rgba(12, 15, 26, 0.08);
    --shadow-xl: 0 24px 60px rgba(12, 15, 26, 0.1);
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --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: 24px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

/* ---- Grain Overlay (subtle on light) ---- */
.grain-overlay {
    position: fixed;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.018;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
}

.cursor-glow {
    position: fixed;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 91, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, opacity 0.3s;
    opacity: 0;
}

body:hover .cursor-glow { opacity: 1; }

/* ---- Scroll Reveal ---- */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Animations ---- */
@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-4px); }
}

@keyframes meshShift {
    0% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.05) translate(-2%, 1%); }
    100% { transform: scale(1) translate(1%, -1%); }
}

/* ============================================
   HEADER
   ============================================ */
#mainHeader {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    padding: 0 clamp(20px, 4vw, 60px);
    z-index: 1000;
    transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s, box-shadow 0.4s;
    border-bottom: 1px solid transparent;
}

#mainHeader.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

/* Header over dark hero */
#mainHeader.over-hero .nav-menu li a {
    color: rgba(255, 255, 255, 0.7);
}

#mainHeader.over-hero .nav-menu li a:hover,
#mainHeader.over-hero .nav-menu li a.active {
    color: #ffffff;
}

#mainHeader.over-hero .mobile-toggle span {
    background: #ffffff;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    height: 72px;
}

.logo img {
    height: 28px;
    width: auto;
    display: block;
    transition: opacity 0.3s;
}

.logo:hover img { opacity: 0.7; }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}

.nav-menu li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.2px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--accent);
    border-radius: 1px;
    transition: width 0.4s var(--ease-out-expo);
}

.nav-menu li a:hover,
.nav-menu li a.active { color: var(--text-primary); }

.nav-menu li a:hover::after,
.nav-menu li a.active::after { width: 100%; }

/* Mobile toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px; height: 24px;
    position: relative;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 100%; height: 2px;
    background: var(--text-primary);
    position: absolute;
    left: 0;
    transition: all 0.3s var(--ease-out-expo);
    border-radius: 1px;
}

.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-toggle span:nth-child(3) { bottom: 0; }

.mobile-toggle.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 6px;
    align-items: center;
}

.language-switcher button {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
}

.language-switcher button:hover { opacity: 0.8; transform: scale(1.1); }
.language-switcher button.active { opacity: 1; }

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-out-expo);
    box-shadow: var(--shadow-lg);
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li { list-style: none; }

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    color: var(--accent);
    background: var(--accent-ultra-light);
    padding-left: 24px;
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
section {
    padding: 140px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent);
    margin-bottom: 16px;
    padding: 6px 18px;
    border: 1px solid rgba(45, 91, 255, 0.2);
    border-radius: 100px;
    background: var(--accent-ultra-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    line-height: 1.15;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Buttons */
.btn {
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(45, 91, 255, 0.25);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 91, 255, 0.35);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span,
.btn-primary {
    position: relative;
    z-index: 1;
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-ultra-light);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    position: relative;
    padding: 140px clamp(20px, 5vw, 80px) 80px;
    background: var(--bg-dark);
    color: #ffffff;
}

.hero-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 10%, rgba(45, 91, 255, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 10% 80%, rgba(108, 59, 255, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 90% 90%, rgba(45, 91, 255, 0.06) 0%, transparent 50%);
    z-index: 0;
    animation: meshShift 20s ease-in-out infinite alternate;
}

.hero-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.h-line {
    position: absolute;
    left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.h-line:nth-child(1) { top: 30%; }
.h-line:nth-child(2) { top: 60%; }
.h-line:nth-child(3) { top: 90%; }

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 860px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid rgba(45, 91, 255, 0.35);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--accent-light);
    margin-bottom: 32px;
    background: rgba(45, 91, 255, 0.1);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, #5b7fff 0%, #a78bfa 50%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 40px;
    line-height: 1.75;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.hero .btn-ghost {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero .btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
}

/* ---- Hero Showcase (GIF) ---- */
.hero-showcase {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 64px auto 0;
    padding: 0 clamp(0px, 2vw, 20px);
}

.hero-showcase-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.5),
        0 8px 32px rgba(45, 91, 255, 0.12);
}

.hero-showcase-frame::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 17px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.03) 50%, rgba(45, 91, 255, 0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.hero-showcase-img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .hero-showcase {
        margin-top: 40px;
    }

    .hero-showcase-frame {
        border-radius: 12px;
    }

    .hero-showcase-frame::before {
        border-radius: 13px;
    }
}

/* ============================================
   PAIN POINTS
   ============================================ */
.pain-points {
    background: var(--bg-secondary);
    position: relative;
}

.pain-points::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

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

.pain-card {
    display: flex;
    gap: 20px;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: var(--shadow-sm);
}

.pain-card:hover {
    border-color: rgba(139, 92, 246, 0.25);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.pain-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(139, 92, 246, 0.2);
    line-height: 1;
    flex-shrink: 0;
}

.pain-card:hover .pain-number {
    color: rgba(139, 92, 246, 0.35);
}

.pain-content h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.pain-content p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
    font-weight: 400;
}

.pain-transition {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 72px;
    padding: 0 20px;
}

.pain-transition-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(45, 91, 255, 0.3), transparent);
}

.pain-transition-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    text-align: center;
    max-width: 500px;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

/* ============================================
   AI AGENT
   ============================================ */
.ai-agent {
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}

.ai-agent::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.agent-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: center;
}

/* ---- WhatsApp Mockup ---- */
.whatsapp-mockup { position: relative; }

.phone-frame {
    background: #111b21;
    border-radius: 28px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(12, 15, 26, 0.1),
        0 30px 80px rgba(12, 15, 26, 0.15),
        0 0 80px rgba(45, 91, 255, 0.04);
}

.phone-notch {
    height: 28px;
    background: #0b141a;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.wa-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: #1f2c34;
}

.wa-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-header-left > i {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.wa-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #ffffff;
}

.wa-header-info { display: flex; flex-direction: column; }

.wa-header-name {
    font-size: 15px;
    font-weight: 500;
    color: #e9edef;
}

.wa-header-status {
    font-size: 12px;
    color: var(--accent-green);
}

.wa-header-right {
    display: flex;
    gap: 20px;
    color: rgba(255,255,255,0.4);
    font-size: 16px;
}

.wa-chat {
    padding: 12px 14px;
    background:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.012'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
        #0b141a;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wa-date {
    text-align: center;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.05);
    padding: 4px 14px;
    border-radius: 8px;
    align-self: center;
    margin-bottom: 8px;
}

.wa-message {
    max-width: 85%;
    padding: 8px 12px 4px;
    border-radius: 8px;
    font-size: 13.5px;
    line-height: 1.45;
}

.wa-message p {
    margin-bottom: 2px;
    color: #e9edef;
}

.wa-time {
    font-size: 10.5px;
    color: rgba(255,255,255,0.35);
    float: right;
    margin-top: 2px;
    margin-left: 8px;
}

.wa-time i {
    color: #53bdeb;
    font-size: 11px;
}

.wa-incoming {
    background: #1f2c34;
    align-self: flex-start;
    border-top-left-radius: 0;
}

.wa-outgoing {
    background: #005c4b;
    align-self: flex-end;
    border-top-right-radius: 0;
}

.wa-typing-bubble { padding: 12px 18px !important; }

.typing-dots {
    display: flex;
    gap: 4px;
    align-items: center;
}

.typing-dots span {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    animation: typingBounce 1.4s infinite;
}

.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

.wa-input-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: #1f2c34;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.wa-input-bar > i {
    color: rgba(255,255,255,0.35);
    font-size: 20px;
}

.wa-input-field {
    flex: 1;
    background: #2a3942;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    color: rgba(255,255,255,0.3);
}

.wa-send-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.wa-ai-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
    padding: 10px 20px;
    background: rgba(37, 211, 102, 0.06);
    border: 1px solid rgba(37, 211, 102, 0.15);
    border-radius: 100px;
    font-size: 13px;
    color: var(--accent-green);
    font-weight: 500;
}

/* ---- Agent Benefits ---- */
.agent-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.agent-benefit {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: all 0.4s var(--ease-out-expo);
}

.agent-benefit:hover {
    background: var(--bg-card);
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.agent-benefit-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-md);
    background: var(--accent-ultra-light);
    border: 1px solid rgba(45, 91, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

.agent-benefit-content h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.agent-benefit-content p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
    font-weight: 400;
}

/* ============================================
   CRM SECTION
   ============================================ */
.crm-section {
    background: var(--bg-secondary);
    position: relative;
}

.crm-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.crm-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.crm-feature {
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: var(--shadow-sm);
}

.crm-feature:hover {
    border-color: rgba(45, 91, 255, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.crm-feature-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-md);
    background: var(--accent-ultra-light);
    border: 1px solid rgba(45, 91, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--accent);
    margin-bottom: 20px;
}

.crm-feature h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.crm-feature p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    font-weight: 400;
}

/* ============================================
   ASSISTANT (INTERNAL AI)
   ============================================ */
.assistant-section {
    position: relative;
    background: var(--bg-primary);
    overflow: hidden;
}

.assistant-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.assistant-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 400px at 15% 20%, rgba(45, 91, 255, 0.05), transparent 60%),
        radial-gradient(ellipse 500px 400px at 85% 80%, rgba(108, 59, 255, 0.04), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.assistant-section .container { position: relative; z-index: 1; }

/* ---- Hero: hub diagram + pitch ---- */
.assistant-hero {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 96px;
}

/* Hub diagram */
.assistant-hub {
    position: relative;
    width: 460px;
    height: 460px;
    margin: 0 auto;
}

.hub-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: hubRotate 80s linear infinite;
    transform-origin: center;
}

@keyframes hubRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hub-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 3;
}

.hub-orb {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 36px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.5) inset,
        0 20px 60px rgba(45, 91, 255, 0.35),
        0 0 80px rgba(108, 59, 255, 0.25);
    position: relative;
    z-index: 2;
}

.hub-pulse {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 92px; height: 92px;
    border-radius: 50%;
    border: 2px solid rgba(45, 91, 255, 0.5);
    animation: hubPulse 2.6s ease-out infinite;
    z-index: 1;
}

.hub-pulse-2 { animation-delay: 1.3s; }

@keyframes hubPulse {
    0%   { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    80%  { transform: translate(-50%, -50%) scale(2.2); opacity: 0; }
    100% { transform: translate(-50%, -50%) scale(2.2); opacity: 0; }
}

.hub-label {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    background: var(--bg-elevated);
    padding: 5px 14px;
    border-radius: 100px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    text-transform: uppercase;
}

/* Hub satellites: 8 positions at 45deg intervals */
.hub-satellite {
    position: absolute;
    width: 78px; height: 78px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-out-expo);
    z-index: 2;
    cursor: default;
}

.hub-satellite i {
    font-size: 22px;
    color: var(--accent);
    transition: transform 0.4s var(--ease-out-expo);
}

.hub-satellite span {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.2px;
    text-align: center;
    line-height: 1.1;
}

.hub-satellite:hover {
    border-color: rgba(45, 91, 255, 0.35);
    box-shadow: var(--shadow-md), 0 0 30px rgba(45, 91, 255, 0.15);
    transform: translate(var(--tx, 0), var(--ty, 0)) scale(1.06);
}

.hub-satellite:hover i { transform: scale(1.15); }

/* radius ~ 175px from center (230,230) */
.hub-pos-1 { top: 16px;  left: 50%; transform: translateX(-50%); }                /* top */
.hub-pos-2 { top: 56px;  right: 16px; }                                            /* top-right */
.hub-pos-3 { top: 50%;   right: 0; transform: translateY(-50%); }                  /* right */
.hub-pos-4 { bottom: 56px; right: 16px; }                                          /* bottom-right */
.hub-pos-5 { bottom: 16px; left: 50%; transform: translateX(-50%); }               /* bottom */
.hub-pos-6 { bottom: 56px; left: 16px; }                                           /* bottom-left */
.hub-pos-7 { top: 50%;   left: 0; transform: translateY(-50%); }                   /* left */
.hub-pos-8 { top: 56px;  left: 16px; }                                             /* top-left */

/* Restore hover transform on positioned satellites */
.hub-pos-1:hover { transform: translateX(-50%) scale(1.06); }
.hub-pos-3:hover { transform: translateY(-50%) scale(1.06); }
.hub-pos-5:hover { transform: translateX(-50%) scale(1.06); }
.hub-pos-7:hover { transform: translateY(-50%) scale(1.06); }

/* Pitch side */
.assistant-pitch {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.pitch-quote {
    position: relative;
    padding: 28px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.pitch-quote i {
    color: var(--accent);
    font-size: 16px;
    margin-bottom: 10px;
    opacity: 0.6;
}

.pitch-quote p {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.pitch-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pitch-point {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: all 0.3s var(--ease-out-expo);
}

.pitch-point:hover {
    background: var(--bg-card);
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.pitch-point-icon {
    width: 40px; height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--accent-ultra-light);
    border: 1px solid rgba(45, 91, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 16px;
}

.pitch-point > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pitch-point strong {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.pitch-point span {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* ---- Categories grid ---- */
.assistant-categories-intro {
    text-align: center;
    margin-bottom: 36px;
}

.assistant-categories-intro p {
    font-size: 1.02rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto;
}

.assistant-categories-intro strong {
    color: var(--text-primary);
    font-weight: 700;
}

.assistant-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 56px;
}

.cap-card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-out-expo);
}

.cap-card:hover {
    border-color: rgba(45, 91, 255, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.cap-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 60px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px dashed var(--border);
}

.cap-card-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--accent-ultra-light);
    border: 1px solid rgba(45, 91, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 15px;
}

.cap-card-title {
    flex: 1;
    margin: 0;
    padding: 0;
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.015em;
    line-height: 1.3;
}

.cap-card-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 16px;
}

.cap-card-bubbles {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cap-card-bubbles li {
    position: relative;
    padding: 8px 12px 8px 28px;
    background: var(--accent-ultra-light);
    border: 1px solid rgba(45, 91, 255, 0.08);
    border-radius: 10px;
    font-size: 0.84rem;
    color: var(--text-primary);
    line-height: 1.4;
    transition: all 0.25s var(--ease-out-expo);
}

.cap-card-bubbles li::before {
    content: '';
    position: absolute;
    left: 11px; top: 50%;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    transform: translateY(-50%);
    box-shadow: 0 0 0 3px rgba(45, 91, 255, 0.12);
}

.cap-card-bubbles li:hover {
    background: rgba(45, 91, 255, 0.1);
    border-color: rgba(45, 91, 255, 0.18);
}

/* ---- Combine callout ---- */
.assistant-combine {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 36px;
    background: linear-gradient(135deg, rgba(45, 91, 255, 0.06), rgba(108, 59, 255, 0.04));
    border: 1px solid rgba(45, 91, 255, 0.18);
    border-radius: var(--radius-lg);
    margin-bottom: 56px;
    box-shadow: var(--shadow-sm);
}

.combine-icon {
    width: 56px; height: 56px;
    flex-shrink: 0;
    border-radius: 14px;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 8px 24px rgba(45, 91, 255, 0.25);
}

.combine-body strong {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.combine-body p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* ---- "Not a CRM" differentiator ---- */
.assistant-differentiator {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
    padding: 40px;
    background: var(--bg-dark);
    border-radius: var(--radius-lg);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.assistant-differentiator::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 500px 300px at 80% 50%, rgba(45, 91, 255, 0.18), transparent 60%),
        radial-gradient(ellipse 400px 300px at 20% 50%, rgba(108, 59, 255, 0.1), transparent 60%);
    pointer-events: none;
}

.diff-side {
    position: relative;
    z-index: 1;
}

.diff-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.diff-no .diff-tag {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.diff-yes .diff-tag {
    background: var(--accent-ultra-light);
    color: var(--accent-light);
    border: 1px solid rgba(91, 127, 255, 0.4);
}

.diff-side h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.diff-no h3 {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 255, 255, 0.2);
    text-decoration-thickness: 1px;
}

.diff-yes h3 {
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #b9c8ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.diff-side p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.diff-yes p { color: rgba(255, 255, 255, 0.8); }

.diff-arrow {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 12px 32px rgba(45, 91, 255, 0.45);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

/* ============================================
   DISCOVERY
   ============================================ */
.discovery {
    position: relative;
    background: var(--bg-primary);
}

.discovery::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

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

.discovery-card {
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: var(--shadow-sm);
}

.discovery-card:hover {
    border-color: rgba(45, 91, 255, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.discovery-card-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--accent-ultra-light);
    border: 1px solid rgba(45, 91, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 22px;
    color: var(--accent);
}

.discovery-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.discovery-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
    font-weight: 400;
}

/* Discovery Flow */
.discovery-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 14px;
}

.flow-number {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
    flex-shrink: 0;
}

.flow-step p {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
    max-width: 200px;
}

.flow-arrow {
    color: var(--text-muted);
}

/* ============================================
   RESULTS
   ============================================ */
.results {
    background: var(--bg-secondary);
    padding: 100px 0;
    position: relative;
}

.results::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

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

.result-card {
    text-align: center;
    padding: 44px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: var(--shadow-sm);
}

.result-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.result-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 14px;
}

.result-label {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
    font-weight: 400;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.faq-impact-box {
    position: sticky;
    top: 100px;
}

.faq-impact-phrase {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.faq-impact-phrase .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.faq-impact-phrase .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0.3;
}

.faq-impact-subtext {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 400;
}

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s var(--ease-out-expo);
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    border-color: rgba(45, 91, 255, 0.15);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: background 0.3s;
    letter-spacing: -0.01em;
}

.faq-question:hover {
    background: var(--accent-ultra-light);
}

.faq-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-ultra-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 16px;
    transition: all 0.3s var(--ease-out-expo);
}

.faq-icon {
    color: var(--accent);
    font-size: 14px;
    transition: transform 0.3s var(--ease-out-expo);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-question[aria-expanded="true"] .faq-icon-wrap {
    background: var(--accent);
}

.faq-question[aria-expanded="true"] .faq-icon {
    color: #ffffff;
}

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

.faq-answer.active {
    max-height: 500px;
    padding: 0 28px 24px 28px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 400;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
    color: #ffffff;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.cta-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 50%, rgba(45, 91, 255, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 20% 80%, rgba(108, 59, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.cta-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 550px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-section .btn-primary {
    background: #ffffff;
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-primary::before {
    display: none;
}

.cta-section .btn-primary:hover {
    background: #f0f2f5;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.cta-section .btn-ghost {
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-section .btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--bg-dark);
    padding: 72px 0 40px 0;
    color: rgba(255, 255, 255, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

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

.footer-logo img {
    height: 32px;
    width: auto;
    opacity: 0.85;
}

.footer-nav {
    padding-right: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-nav h4 {
    font-family: var(--font-display);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-nav-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav ul li a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s var(--ease-out-expo);
    display: inline-block;
}

.footer-nav ul li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-separator {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 40px 0 24px 0;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
    font-weight: 400;
}

.footer-addresses {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 30px;
}

.footer-office {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 400;
}

.footer-office i {
    color: var(--accent-light);
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 12px;
    opacity: 0.7;
}

.footer-office strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.footer-office a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-office a:hover { color: var(--accent-light); }

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-icon {
    width: 42px; height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: all 0.4s var(--ease-out-expo);
    font-size: 16px;
}

.footer-social-icon:hover {
    color: #ffffff;
    border-color: rgba(45, 91, 255, 0.4);
    background: rgba(45, 91, 255, 0.15);
    transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .agent-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .whatsapp-mockup {
        max-width: 380px;
        margin: 0 auto;
    }

    .crm-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .faq-impact-box {
        position: relative;
        top: 0;
    }

    .assistant-hero {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .assistant-hub {
        margin: 0 auto;
    }

    .assistant-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-toggle { display: block; }

    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; max-width: 320px;
        height: 100vh;
        background: var(--bg-elevated);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 60px 40px;
        gap: 28px;
        transition: right 0.5s var(--ease-out-expo);
        border-left: 1px solid var(--border);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.08);
    }

    .nav-menu.active { right: 0; }

    .nav-menu li a {
        font-size: 16px;
        color: var(--text-primary) !important;
    }

    .dropdown-menu {
        position: relative;
        top: 0; left: 0;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 8px 0 0 16px;
        min-width: 0;
    }

    section { padding: 100px 0; }

    .hero { padding: 140px 20px 80px; }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .hero-stat-divider {
        display: none;
    }

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

    .crm-features { grid-template-columns: 1fr; }

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

    .discovery-flow {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }

    .flow-arrow { transform: rotate(90deg); }

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

    .result-number { font-size: 2.2rem; }

    .pain-transition {
        flex-direction: column;
        gap: 20px;
    }

    .pain-transition-line { display: none; }

    .faq-section { padding: 80px 0; }

    .faq-impact-phrase { font-size: 1.4rem; }

    .faq-question {
        font-size: 1rem;
        padding: 20px;
    }

    .faq-answer.active {
        padding: 0 20px 20px 20px;
    }

    .section-title { font-size: 1.8rem; }

    .cta-title { font-size: 1.6rem; }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-nav {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding-bottom: 32px;
    }

    .footer-addresses { padding-left: 0; }

    .assistant-hub {
        width: 360px;
        height: 360px;
    }

    .hub-orb {
        width: 76px; height: 76px;
        font-size: 28px;
    }

    .hub-pulse { width: 76px; height: 76px; }

    .hub-satellite {
        width: 64px; height: 64px;
        border-radius: 14px;
    }

    .hub-satellite i { font-size: 18px; }
    .hub-satellite span { font-size: 9px; }

    .hub-pos-2, .hub-pos-4 { right: 8px; }
    .hub-pos-6, .hub-pos-8 { left: 8px; }
    .hub-pos-1 { top: 8px; }
    .hub-pos-5 { bottom: 8px; }

    .assistant-categories {
        grid-template-columns: 1fr;
    }

    .assistant-combine {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 24px;
        gap: 16px;
    }

    .assistant-differentiator {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 20px;
    }

    .diff-arrow {
        transform: rotate(90deg);
        margin: 0 auto;
    }

    .pitch-quote p { font-size: 1.05rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .whatsapp-mockup { max-width: 100%; }

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