:root {
    --dark-950: #030b18;
    --dark-900: #060f1e;
    --dark-850: #0a1628;
    --dark-800: #0e1f3a;
    --dark-700: #162d52;
    --dark-600: #1e3a5f;
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --accent-light: #60a5fa;
    --accent-dim: rgba(59,130,246,0.15);
    --accent-glow: rgba(59,130,246,0.25);
    --teal: #0ea5e9;
    --green: #22c55e;
    --green-dim: rgba(34,197,94,0.12);
    --green-border: rgba(34,197,94,0.2);
    --red: #ef4444;
    --text-white: #ffffff;
    --text-light: #e2e8f0;
    --text-gray: #94a3b8;
    --text-muted: #64748b;
    --border: rgba(255,255,255,0.07);
    --border-md: rgba(255,255,255,0.1);
    --border-lg: rgba(255,255,255,0.14);
    --card-bg: rgba(255,255,255,0.035);
    --card-bg-hover: rgba(255,255,255,0.06);
    --glass: rgba(14,31,58,0.7);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --shadow: 0 8px 32px rgba(0,0,0,0.45);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.55);
    --shadow-blue: 0 8px 32px rgba(59,130,246,0.2);
    --transition: 0.22s ease;
    --transition-slow: 0.4s ease;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, sans-serif;
    background: var(--dark-950);
    color: var(--text-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* FLOATING CTAs */
.floating-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.float-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: var(--shadow);
    white-space: nowrap;
}

.float-btn svg { width: 15px; height: 15px; }

.float-talk {
    background: var(--dark-800);
    color: var(--text-light);
    border: 1px solid var(--border-md);
}

.float-talk:hover { background: var(--dark-700); transform: translateY(-2px) scale(1.02); }

.float-demo {
    background: var(--accent);
    color: white;
    border: 1px solid transparent;
    box-shadow: var(--shadow), 0 0 20px var(--accent-glow);
}

.float-demo:hover {
    background: var(--accent-hover);
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow), 0 0 30px rgba(59,130,246,0.4);
}

/* HEADER */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(3, 11, 24, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition-slow);
}

.header.scrolled {
    background: rgba(3, 11, 24, 0.97);
    border-bottom-color: var(--border-md);
    box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    gap: 20px;
}

.nav-logo { text-decoration: none; display: flex; align-items: baseline; gap: 4px; flex-shrink: 0; }

.logo-mark { font-size: 21px; font-weight: 800; color: var(--text-white); letter-spacing: 2px; }
.logo-sub { font-size: 12px; font-weight: 400; color: var(--accent-light); letter-spacing: 1px; }

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 7px 11px;
    border-radius: 7px;
    transition: all var(--transition);
}

.nav-links a:hover { color: var(--text-light); background: var(--card-bg); }

.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.nav-link-secondary {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color var(--transition);
}

.nav-link-secondary:hover { color: var(--text-light); }

.nav-cta {
    background: var(--accent);
    color: white;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: all var(--transition);
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--accent-glow);
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-light); border-radius: 2px; transition: all var(--transition); }

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
    background: var(--dark-950);
}

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

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0;
    animation: orbAppear 2s forwards;
}

@keyframes orbAppear { to { opacity: 0.3; } }

.hero-orb-1 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, #1d4ed8 0%, transparent 70%);
    top: -150px; right: -100px;
    animation-delay: 0.2s;
    animation: orbAppear 2s 0.2s forwards, floatOrb 10s 2s ease-in-out infinite;
}

.hero-orb-2 {
    width: 450px; height: 450px;
    background: radial-gradient(circle, #0c4a6e 0%, transparent 70%);
    bottom: -50px; left: -80px;
    animation-delay: 0.5s;
    animation: orbAppear 2s 0.5s forwards, floatOrb 12s 2s ease-in-out infinite reverse;
}

.hero-orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, #1e3a5f 0%, transparent 70%);
    top: 50%; left: 40%;
    opacity: 0;
    animation: orbAppear 2s 1s forwards, floatOrb2 15s 2s ease-in-out infinite;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -40px); }
}

@keyframes floatOrb2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, 25px) scale(1.1); }
}

.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(59,130,246,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59,130,246,0.03) 1px, transparent 1px);
    background-size: 64px 64px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-badge-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(59,130,246,0.09);
    border: 1px solid rgba(59,130,246,0.2);
    color: var(--accent-light);
    font-size: 12px;
    font-weight: 500;
    padding: 5px 13px;
    border-radius: 100px;
}

.hero-badge-alt {
    background: rgba(34,197,94,0.08);
    border-color: rgba(34,197,94,0.2);
    color: #86efac;
}

.badge-dot {
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--green);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px var(--green); }
    50% { opacity: 0.7; transform: scale(1.4); box-shadow: 0 0 14px var(--green); }
}

.hero-title {
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 800;
    line-height: 1.08;
    color: var(--text-white);
    margin-bottom: 18px;
    letter-spacing: -1.5px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--teal) 60%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-gray);
    max-width: 480px;
    line-height: 1.72;
    margin-bottom: 18px;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.hero-proof svg { width: 14px; height: 14px; stroke: var(--green); flex-shrink: 0; }
.hero-proof strong { color: var(--text-light); }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.stat { text-align: center; }

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

.stat-divider { width: 1px; height: 36px; background: var(--border-md); }

/* Hero AI Card */
.hero-visual { display: flex; justify-content: center; align-items: center; }

.ai-card {
    background: var(--glass);
    border: 1px solid var(--border-lg);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 380px;
    box-shadow: var(--shadow-lg), 0 0 80px rgba(59,130,246,0.08);
    overflow: hidden;
    backdrop-filter: blur(20px);
    animation: heroCardFloat 7s ease-in-out infinite;
}

@keyframes heroCardFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(0.3deg); }
    66% { transform: translateY(-6px) rotate(-0.2deg); }
}

.ai-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
}

.ai-avatar {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--accent), var(--teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 16px rgba(59,130,246,0.3);
}

.ai-avatar svg { width: 20px; height: 20px; stroke: white; }

.ai-card-info { flex: 1; }

.ai-name { display: block; font-size: 13.5px; font-weight: 600; color: var(--text-white); }

.ai-status { display: flex; align-items: center; gap: 5px; font-size: 11.5px; color: var(--green); }

.status-dot {
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 6px var(--green);
    animation: pulseDot 2s infinite;
}

.ai-voice-bars {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 20px;
}

.ai-voice-bars span {
    width: 3px;
    background: var(--accent-light);
    border-radius: 2px;
    opacity: 0.6;
    animation: voiceBar 1.2s ease-in-out infinite;
}

.ai-voice-bars span:nth-child(1) { height: 8px; animation-delay: 0s; }
.ai-voice-bars span:nth-child(2) { height: 14px; animation-delay: 0.1s; }
.ai-voice-bars span:nth-child(3) { height: 20px; animation-delay: 0.2s; }
.ai-voice-bars span:nth-child(4) { height: 12px; animation-delay: 0.3s; }
.ai-voice-bars span:nth-child(5) { height: 6px; animation-delay: 0.4s; }

@keyframes voiceBar {
    0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
    50% { transform: scaleY(1); opacity: 1; }
}

.ai-chat {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 180px;
}

.chat-msg { max-width: 85%; }

.chat-ai {
    align-self: flex-start;
    background: rgba(59,130,246,0.1);
    border: 1px solid rgba(59,130,246,0.18);
    border-radius: 3px 12px 12px 12px;
    padding: 10px 14px;
}

.chat-user {
    align-self: flex-end;
    background: var(--accent);
    border-radius: 12px 3px 12px 12px;
    padding: 10px 14px;
    box-shadow: 0 4px 12px rgba(59,130,246,0.25);
}

.chat-msg p { font-size: 13px; line-height: 1.55; color: var(--text-light); }

.chat-typing {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    background: rgba(59,130,246,0.08);
    border: 1px solid rgba(59,130,246,0.12);
    border-radius: 3px 12px 12px 12px;
}

.chat-typing span {
    width: 6px; height: 6px;
    background: var(--accent-light);
    border-radius: 50%;
    animation: typingBounce 1.3s infinite;
}

.chat-typing span:nth-child(2) { animation-delay: 0.18s; }
.chat-typing span:nth-child(3) { animation-delay: 0.36s; }

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-7px); opacity: 1; }
}

.ai-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 20px;
    border-top: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
}

.footer-tag { font-size: 11px; color: var(--text-muted); }

.footer-live {
    font-size: 11px;
    font-weight: 600;
    color: var(--green);
    background: var(--green-dim);
    border: 1px solid var(--green-border);
    padding: 2px 9px;
    border-radius: 100px;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-indicator {
    width: 24px; height: 40px;
    border: 2px solid var(--border-md);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 6px; left: 50%;
    transform: translateX(-50%);
    width: 3px; height: 8px;
    background: var(--accent-light);
    border-radius: 2px;
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0% { top: 6px; opacity: 1; }
    100% { top: 22px; opacity: 0; }
}

/* TRUST BAR */
.trust-bar {
    background: rgba(255,255,255,0.015);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
}

.trust-bar .container { display: flex; align-items: center; gap: 20px; justify-content: center; flex-wrap: wrap; }

.trust-bar-label { font-size: 12.5px; color: var(--text-muted); white-space: nowrap; }

.trust-industries { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; justify-content: center; }

.trust-industries span { font-size: 13px; font-weight: 500; color: var(--text-gray); }

.trust-industries .sep { color: var(--text-muted); font-size: 10px; }

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn svg { width: 15px; height: 15px; flex-shrink: 0; }

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59,130,246,0.3);
}

.btn-glow:hover { box-shadow: 0 8px 28px rgba(59,130,246,0.45), 0 0 0 1px rgba(59,130,246,0.2); }

.btn-secondary {
    background: var(--card-bg);
    color: var(--text-light);
    border: 1px solid var(--border-md);
}

.btn-secondary:hover {
    background: var(--card-bg-hover);
    border-color: var(--border-lg);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-md);
}

.btn-outline:hover { background: var(--card-bg); border-color: var(--border-lg); transform: translateY(-2px); }

.btn-ghost {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-ghost:hover { background: rgba(255,255,255,0.06); transform: translateY(-2px); }

.btn-full { width: 100%; justify-content: center; }

/* SECTIONS */
section { padding: 96px 0; }

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

.section-tag {
    display: inline-block;
    background: rgba(59,130,246,0.09);
    border: 1px solid rgba(59,130,246,0.18);
    color: var(--accent-light);
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.12;
    margin-bottom: 16px;
    letter-spacing: -0.75px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.72;
}

/* TECH SECTION */
.tech-section { background: var(--dark-900); }

.tech-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.tech-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    transition: all var(--transition);
    cursor: default;
}

.tech-card:hover {
    background: var(--card-bg-hover);
    border-color: rgba(59,130,246,0.22);
    transform: translateY(-3px);
}

.tech-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-icon svg { width: 22px; height: 22px; }

.tech-openai { background: rgba(16,163,127,0.1); border: 1px solid rgba(16,163,127,0.2); }
.tech-openai svg { fill: #10a37f; stroke: none; }
.tech-gpt { background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2); stroke: var(--accent-light); }
.tech-gpt svg { stroke: var(--accent-light); }
.tech-claude { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.2); }
.tech-claude svg { stroke: #fbbf24; }
.tech-elevenlabs { background: rgba(168,85,247,0.1); border: 1px solid rgba(168,85,247,0.2); }
.tech-elevenlabs svg { stroke: #c084fc; }
.tech-twilio { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2); }
.tech-twilio svg { stroke: #f87171; }
.tech-whatsapp { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2); }
.tech-whatsapp svg { stroke: #4ade80; }
.tech-zapier { background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.2); }
.tech-zapier svg { stroke: #fb923c; }
.tech-hubspot { background: rgba(249,115,22,0.08); border: 1px solid rgba(249,115,22,0.15); }
.tech-hubspot svg { stroke: #fdba74; }
.tech-gcal { background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.15); }
.tech-gcal svg { stroke: var(--accent-light); }
.tech-stripe { background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.2); }
.tech-stripe svg { stroke: #a5b4fc; }

.tech-card span { font-size: 12px; font-weight: 500; color: var(--text-gray); }

/* SERVICES */
.services { background: var(--dark-850); }

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

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59,130,246,0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover {
    background: var(--card-bg-hover);
    border-color: rgba(59,130,246,0.25);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(59,130,246,0.12);
}

.service-card:hover::before { opacity: 1; }

.service-icon-wrap {
    width: 46px; height: 46px;
    background: rgba(59,130,246,0.1);
    border: 1px solid rgba(59,130,246,0.18);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon-wrap {
    background: rgba(59,130,246,0.18);
    border-color: rgba(59,130,246,0.35);
    box-shadow: 0 0 16px rgba(59,130,246,0.2);
}

.service-icon-wrap svg { width: 21px; height: 21px; stroke: var(--accent-light); }

.service-card h3 { font-size: 16.5px; font-weight: 700; color: var(--text-white); position: relative; z-index: 1; }

.service-card p { font-size: 13.5px; color: var(--text-gray); line-height: 1.65; flex: 1; position: relative; z-index: 1; }

.service-link {
    color: var(--accent-light);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all var(--transition);
    margin-top: auto;
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.service-link:hover { color: var(--text-white); gap: 8px; }

/* RESULTS */
.results-section { background: var(--dark-900); }

.results-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.result-stat {
    background: linear-gradient(135deg, rgba(59,130,246,0.08) 0%, rgba(14,165,233,0.04) 100%);
    border: 1px solid rgba(59,130,246,0.15);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: all var(--transition);
}

.result-stat:hover { transform: translateY(-4px); border-color: rgba(59,130,246,0.3); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }

.result-number {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-light), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.result-label { font-size: 14px; font-weight: 700; color: var(--text-white); margin-bottom: 4px; }

.result-desc { font-size: 12px; color: var(--text-muted); }

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

.result-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.result-card:hover { background: var(--card-bg-hover); border-color: rgba(59,130,246,0.2); transform: translateY(-3px); }

.result-card-icon {
    width: 40px; height: 40px;
    background: rgba(59,130,246,0.1);
    border: 1px solid rgba(59,130,246,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-card-icon svg { width: 18px; height: 18px; stroke: var(--accent-light); }

.result-card h4 { font-size: 15px; font-weight: 700; color: var(--text-white); }

.result-card p { font-size: 13px; color: var(--text-gray); line-height: 1.6; }

/* HOW IT WORKS */
.how-it-works { background: var(--dark-950); }

.steps-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: start;
    margin-bottom: 48px;
    gap: 0;
}

.step {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    text-align: center;
    transition: all var(--transition);
}

.step:hover { background: var(--card-bg-hover); border-color: rgba(59,130,246,0.22); transform: translateY(-4px); }

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    padding-top: 36px;
}

.step-connector svg { width: 40px; height: 2px; }

.step-number {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid rgba(59,130,246,0.2);
    width: 34px; height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    letter-spacing: 0.5px;
}

.step-content h3 { font-size: 14.5px; font-weight: 700; color: var(--text-white); margin-bottom: 8px; }

.step-content p { font-size: 13px; color: var(--text-gray); line-height: 1.6; }

.steps-cta { text-align: center; }

/* VOICE SECTION */
.voice-section { background: var(--dark-900); }

.voice-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.voice-content { display: flex; flex-direction: column; gap: 18px; }

.voice-content p { font-size: 15px; color: var(--text-gray); line-height: 1.72; }

.voice-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.voice-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
}

.voice-features li svg { width: 15px; height: 15px; stroke: var(--green); flex-shrink: 0; }

.voice-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Voice Card */
.voice-card {
    background: var(--glass);
    border: 1px solid var(--border-lg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
    max-width: 380px;
    width: 100%;
}

.voice-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--border);
}

.voice-avatar {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 16px rgba(124,58,237,0.35);
}

.voice-avatar svg { width: 20px; height: 20px; stroke: white; }

.voice-card-name { font-size: 13.5px; font-weight: 600; color: var(--text-white); display: block; }

.voice-card-status { display: flex; align-items: center; gap: 5px; font-size: 11.5px; color: var(--green); }

.voice-call-time {
    margin-left: auto;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
    font-variant-numeric: tabular-nums;
    background: rgba(34,197,94,0.1);
    border: 1px solid var(--green-border);
    padding: 3px 10px;
    border-radius: 6px;
}

.voice-waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 20px;
    height: 80px;
}

.wave-bar {
    width: 4px;
    background: linear-gradient(to top, var(--accent), var(--teal));
    border-radius: 2px;
    animation: waveAnim 1s ease-in-out infinite;
}

.wave-bar:nth-child(1) { height: 20px; animation-delay: 0s; }
.wave-bar:nth-child(2) { height: 35px; animation-delay: 0.07s; }
.wave-bar:nth-child(3) { height: 50px; animation-delay: 0.14s; }
.wave-bar:nth-child(4) { height: 40px; animation-delay: 0.21s; }
.wave-bar:nth-child(5) { height: 60px; animation-delay: 0.28s; }
.wave-bar:nth-child(6) { height: 45px; animation-delay: 0.35s; }
.wave-bar:nth-child(7) { height: 55px; animation-delay: 0.42s; }
.wave-bar:nth-child(8) { height: 38px; animation-delay: 0.49s; }
.wave-bar:nth-child(9) { height: 60px; animation-delay: 0.56s; }
.wave-bar:nth-child(10) { height: 42px; animation-delay: 0.63s; }
.wave-bar:nth-child(11) { height: 52px; animation-delay: 0.7s; }
.wave-bar:nth-child(12) { height: 36px; animation-delay: 0.77s; }
.wave-bar:nth-child(13) { height: 48px; animation-delay: 0.84s; }
.wave-bar:nth-child(14) { height: 30px; animation-delay: 0.91s; }
.wave-bar:nth-child(15) { height: 20px; animation-delay: 0.98s; }
.wave-bar:nth-child(16) { height: 14px; animation-delay: 1.05s; }

@keyframes waveAnim {
    0%, 100% { transform: scaleY(0.3); opacity: 0.5; }
    50% { transform: scaleY(1); opacity: 1; }
}

.voice-transcript {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 20px 16px;
}

.transcript-line {
    font-size: 12px;
    line-height: 1.5;
    padding: 8px 12px;
    border-radius: 8px;
}

.ai-line {
    background: rgba(59,130,246,0.09);
    border: 1px solid rgba(59,130,246,0.12);
    color: var(--text-light);
    border-radius: 3px 8px 8px 8px;
}

.user-line {
    background: rgba(124,58,237,0.09);
    border: 1px solid rgba(124,58,237,0.15);
    color: var(--text-light);
    border-radius: 8px 3px 8px 8px;
    align-self: flex-end;
}

.ai-typing-line { opacity: 0; animation: fadeInLine 0.5s 1.5s forwards; }

@keyframes fadeInLine { to { opacity: 1; } }

.voice-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
}

.voice-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.voice-btn svg { width: 18px; height: 18px; }

.voice-mute { background: rgba(255,255,255,0.08); color: var(--text-light); }
.voice-mute:hover { background: rgba(255,255,255,0.14); }

.voice-end { background: rgba(239,68,68,0.15); color: #f87171; border: 1px solid rgba(239,68,68,0.2); }
.voice-end:hover { background: rgba(239,68,68,0.25); transform: scale(1.05); }

.voice-hold { background: rgba(245,158,11,0.1); color: #fbbf24; border: 1px solid rgba(245,158,11,0.2); }
.voice-hold:hover { background: rgba(245,158,11,0.18); }

/* FEATURES GRID */
.features-section { background: var(--dark-850); }

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 13.5px;
    color: var(--text-light);
    font-weight: 500;
    transition: all var(--transition);
}

.feature-item:hover { background: var(--card-bg-hover); border-color: rgba(59,130,246,0.18); }

.feature-check {
    width: 20px; height: 20px;
    background: var(--green-dim);
    border: 1px solid var(--green-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-check svg { width: 10px; height: 10px; stroke: var(--green); }

/* USE CASES */
.use-cases { background: var(--dark-950); }

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

.use-case-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px;
    transition: all var(--transition);
}

.use-case-card:hover {
    background: var(--card-bg-hover);
    border-color: rgba(59,130,246,0.22);
    transform: translateY(-4px);
}

.use-case-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.use-case-icon {
    width: 44px; height: 44px;
    background: rgba(59,130,246,0.1);
    border: 1px solid rgba(59,130,246,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.use-case-icon svg { width: 20px; height: 20px; stroke: var(--accent-light); }

.use-case-card h3 { font-size: 15px; font-weight: 700; color: var(--text-white); }

.use-case-card ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }

.use-case-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text-gray);
}

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

/* DEMO */
.demo-section { background: var(--dark-900); }

.demo-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.demo-content p { font-size: 15px; color: var(--text-gray); line-height: 1.72; }

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

.demo-points li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-light); }

.demo-points li svg { width: 15px; height: 15px; stroke: var(--green); flex-shrink: 0; }

/* Chat Widget */
.chat-widget {
    background: rgba(6,15,30,0.9);
    border: 1px solid var(--border-lg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(59,130,246,0.06);
    max-width: 420px;
    width: 100%;
    backdrop-filter: blur(16px);
}

.chat-widget-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid var(--border);
}

.chat-widget-avatar {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, var(--accent), var(--teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 14px rgba(59,130,246,0.3);
}

.chat-widget-avatar svg { width: 18px; height: 18px; stroke: white; }

.chat-widget-name { font-size: 13.5px; font-weight: 600; color: var(--text-white); display: block; }

.chat-widget-status { display: flex; align-items: center; gap: 5px; font-size: 11.5px; color: var(--green); }

.chat-widget-badge {
    margin-left: auto;
    background: rgba(59,130,246,0.12);
    border: 1px solid rgba(59,130,246,0.22);
    color: var(--accent-light);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: 0.8px;
}

.chat-widget-body {
    padding: 16px 20px;
    min-height: 200px;
    max-height: 260px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.chat-bubble {
    max-width: 85%;
    padding: 9px 13px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.55;
}

.ai-bubble {
    background: rgba(59,130,246,0.09);
    border: 1px solid rgba(59,130,246,0.14);
    border-radius: 3px 12px 12px 12px;
    align-self: flex-start;
    color: var(--text-light);
}

.user-bubble {
    background: var(--accent);
    border-radius: 12px 3px 12px 12px;
    align-self: flex-end;
    color: white;
    box-shadow: 0 4px 12px rgba(59,130,246,0.25);
}

.bubble-time { display: block; font-size: 10px; color: var(--text-muted); margin-top: 4px; }

.typing-indicator {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 9px 13px;
    background: rgba(59,130,246,0.07);
    border: 1px solid rgba(59,130,246,0.1);
    border-radius: 3px 12px 12px 12px;
    align-self: flex-start;
    width: 52px;
}

.typing-indicator span { width: 6px; height: 6px; background: var(--accent-light); border-radius: 50%; animation: typingBounce 1.3s infinite; }
.typing-indicator span:nth-child(2) { animation-delay: 0.18s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.36s; }

.chat-widget-suggestions {
    display: flex;
    gap: 6px;
    padding: 0 16px 10px;
    flex-wrap: wrap;
}

.suggestion-btn {
    background: rgba(59,130,246,0.07);
    border: 1px solid rgba(59,130,246,0.18);
    color: var(--accent-light);
    font-size: 11.5px;
    font-weight: 500;
    padding: 5px 11px;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}

.suggestion-btn:hover {
    background: rgba(59,130,246,0.16);
    border-color: rgba(59,130,246,0.35);
    color: var(--text-white);
    transform: translateY(-1px);
}

.chat-widget-input {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-top: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
}

.chat-mic {
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    flex-shrink: 0;
}

.chat-mic:hover { background: rgba(255,255,255,0.1); }

.chat-mic svg { width: 13px; height: 13px; stroke: var(--text-muted); }

.chat-widget-input input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 13px;
    color: var(--text-light);
    font-size: 13px;
    outline: none;
    transition: border-color var(--transition);
    font-family: inherit;
}

.chat-widget-input input::placeholder { color: var(--text-muted); }
.chat-widget-input input:focus { border-color: rgba(59,130,246,0.4); }

.chat-send {
    width: 34px; height: 34px;
    background: var(--accent);
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    flex-shrink: 0;
}

.chat-send:hover { background: var(--accent-hover); transform: scale(1.06); box-shadow: 0 4px 12px rgba(59,130,246,0.35); }
.chat-send svg { width: 14px; height: 14px; stroke: white; }

/* PRICING */
.pricing { background: var(--dark-850); }

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

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: all var(--transition);
    position: relative;
}

.pricing-card:hover { transform: translateY(-5px); border-color: rgba(59,130,246,0.2); }

.pricing-featured {
    background: rgba(59,130,246,0.06);
    border-color: rgba(59,130,246,0.3);
    box-shadow: 0 0 50px rgba(59,130,246,0.08), var(--shadow);
}

.pricing-featured:hover { box-shadow: 0 0 60px rgba(59,130,246,0.12), var(--shadow-lg); }

.pricing-popular {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 4px 14px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(59,130,246,0.4);
}

.pricing-tier { font-size: 22px; font-weight: 800; color: var(--text-white); }

.pricing-desc { font-size: 13.5px; color: var(--text-gray); line-height: 1.65; }

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }

.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--text-light); }

.pricing-features li svg { width: 15px; height: 15px; stroke: var(--green); flex-shrink: 0; }

/* FAQ */
.faq-section { background: var(--dark-900); }

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

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.open { border-color: rgba(59,130,246,0.25); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 14.5px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}

.faq-question:hover { background: rgba(255,255,255,0.03); color: var(--text-white); }

.faq-icon {
    width: 18px; height: 18px;
    stroke: var(--text-muted);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(180deg); stroke: var(--accent-light); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
}

.faq-item.open .faq-answer { max-height: 200px; }

.faq-answer p {
    padding: 0 22px 18px;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* WHY US */
.why-us { background: var(--dark-950); }

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

.why-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition);
}

.why-card:hover { background: var(--card-bg-hover); border-color: rgba(59,130,246,0.18); transform: translateY(-3px); }

.why-icon {
    width: 48px; height: 48px;
    background: rgba(59,130,246,0.09);
    border: 1px solid rgba(59,130,246,0.14);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all var(--transition);
}

.why-card:hover .why-icon { background: rgba(59,130,246,0.16); border-color: rgba(59,130,246,0.28); box-shadow: 0 0 16px rgba(59,130,246,0.15); }

.why-icon svg { width: 21px; height: 21px; stroke: var(--accent-light); }

.why-card h3 { font-size: 15.5px; font-weight: 700; color: var(--text-white); margin-bottom: 10px; }

.why-card p { font-size: 13.5px; color: var(--text-gray); line-height: 1.65; }

/* CTA BANNER */
.cta-banner { background: var(--dark-900); padding: 80px 0; }

.cta-banner-inner {
    background: linear-gradient(135deg, rgba(59,130,246,0.1) 0%, rgba(14,165,233,0.06) 50%, rgba(99,102,241,0.06) 100%);
    border: 1px solid rgba(59,130,246,0.2);
    border-radius: 26px;
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(59,130,246,0.12) 0%, transparent 60%);
    pointer-events: none;
}

.cta-banner-inner h2 {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 16px;
    letter-spacing: -0.75px;
    position: relative;
}

.cta-banner-inner p {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.72;
    position: relative;
}

.cta-banner-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; position: relative; }

.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    position: relative;
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.cta-trust span svg { width: 13px; height: 13px; }

/* CONTACT */
.contact { background: var(--dark-850); }

.contact-inner {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 22px; }

.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }

.contact-info-icon {
    width: 42px; height: 42px;
    background: rgba(59,130,246,0.09);
    border: 1px solid rgba(59,130,246,0.14);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg { width: 17px; height: 17px; stroke: var(--accent-light); }

.contact-info-label { display: block; font-size: 10.5px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 2px; font-weight: 600; }

.contact-info-item a, .contact-info-item span { font-size: 14.5px; color: var(--text-light); text-decoration: none; transition: color var(--transition); }
.contact-info-item a:hover { color: var(--accent-light); }

.contact-response-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--green);
    background: var(--green-dim);
    border: 1px solid var(--green-border);
    padding: 11px 15px;
    border-radius: 10px;
}

.contact-response-note svg { width: 13px; height: 13px; stroke: var(--green); flex-shrink: 0; }

.contact-trust-badges { display: flex; flex-direction: column; gap: 8px; }

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--text-muted);
    padding: 9px 14px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-weight: 500;
}

.trust-badge svg { width: 14px; height: 14px; stroke: var(--accent-light); flex-shrink: 0; }

.contact-form {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 34px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-group { display: flex; flex-direction: column; gap: 6px; position: relative; }

.form-group label { font-size: 12.5px; font-weight: 600; color: var(--text-gray); letter-spacing: 0.3px; }

.form-group input, .form-group textarea, .form-group select {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-md);
    border-radius: 9px;
    padding: 10px 14px;
    color: var(--text-light);
    font-size: 13.5px;
    font-family: inherit;
    outline: none;
    transition: all var(--transition);
    -webkit-appearance: none;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-group select option { background: var(--dark-800); color: var(--text-light); }

.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: rgba(59,130,246,0.45); background: rgba(59,130,246,0.04); }

.form-group input.input-error, .form-group textarea.input-error { border-color: var(--red); }

.error-message { font-size: 11.5px; color: var(--red); display: none; }
.error-message.visible { display: block; }

.form-confirmation {
    display: none;
    align-items: center;
    gap: 10px;
    background: var(--green-dim);
    border: 1px solid var(--green-border);
    border-radius: 10px;
    padding: 13px 17px;
    color: var(--green);
    font-size: 13.5px;
    font-weight: 500;
}

.form-confirmation.visible { display: flex; }
.form-confirmation svg { width: 17px; height: 17px; stroke: var(--green); flex-shrink: 0; }

/* FOOTER */
.footer { background: var(--dark-950); border-top: 1px solid var(--border); padding: 64px 0 32px; }

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

.footer-logo { display: flex; align-items: baseline; gap: 4px; text-decoration: none; margin-bottom: 12px; }

.footer-tagline { font-size: 13px; color: var(--text-gray); line-height: 1.6; margin-bottom: 10px; }

.footer-mission { font-size: 12.5px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; max-width: 280px; }

.footer-social { display: flex; gap: 10px; margin-bottom: 14px; }

.social-link {
    width: 36px; height: 36px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--transition);
}

.social-link:hover { background: rgba(59,130,246,0.12); border-color: rgba(59,130,246,0.25); transform: translateY(-2px); }

.social-link svg { width: 15px; height: 15px; stroke: var(--text-gray); }
.social-link:hover svg { stroke: var(--accent-light); }

.footer-location { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--text-muted); }
.footer-location svg { width: 13px; height: 13px; stroke: var(--accent-light); }

.footer-links-group h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-white); margin-bottom: 14px; }

.footer-links-group ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }

.footer-links-group a { font-size: 13.5px; color: var(--text-muted); text-decoration: none; transition: color var(--transition); }
.footer-links-group a:hover { color: var(--text-light); }

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

.footer-bottom p { font-size: 12.5px; color: var(--text-muted); }

.footer-bottom a { color: var(--text-muted); text-decoration: none; transition: color var(--transition); }
.footer-bottom a:hover { color: var(--text-light); }

/* FADE IN */
.fade-in {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

/* APPS SECTION */
.apps-section { background: var(--dark-850); }

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

.app-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.app-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.app-card-live::before { background: linear-gradient(135deg, rgba(34,197,94,0.04) 0%, transparent 60%); }
.app-card-soon::before { background: linear-gradient(135deg, rgba(59,130,246,0.04) 0%, transparent 60%); }
.app-card-service::before { background: linear-gradient(135deg, rgba(99,102,241,0.05) 0%, transparent 60%); }

.app-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.35); }
.app-card:hover::before { opacity: 1; }

.app-card-live:hover { border-color: rgba(34,197,94,0.25); }
.app-card-soon:hover { border-color: rgba(59,130,246,0.25); }
.app-card-service:hover { border-color: rgba(99,102,241,0.3); }

.app-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.app-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
}

.app-icon svg { width: 26px; height: 26px; }

.app-icon-math {
    background: linear-gradient(135deg, rgba(34,197,94,0.15) 0%, rgba(16,185,129,0.1) 100%);
    border: 1px solid rgba(34,197,94,0.25);
}
.app-icon-math svg { stroke: #4ade80; }
.app-card-live:hover .app-icon-math { box-shadow: 0 0 20px rgba(34,197,94,0.2); }

.app-icon-soon {
    background: rgba(59,130,246,0.1);
    border: 1px solid rgba(59,130,246,0.18);
}
.app-icon-soon svg { stroke: var(--accent-light); }

.app-icon-dev {
    background: linear-gradient(135deg, rgba(99,102,241,0.12) 0%, rgba(139,92,246,0.08) 100%);
    border: 1px solid rgba(99,102,241,0.22);
}
.app-icon-dev svg { stroke: #a5b4fc; }
.app-card-service:hover .app-icon-dev { box-shadow: 0 0 20px rgba(99,102,241,0.2); }

.app-meta { display: flex; align-items: flex-start; }

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10.5px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    white-space: nowrap;
}

.app-badge-live {
    background: var(--green-dim);
    border: 1px solid var(--green-border);
    color: #4ade80;
}

.app-badge-soon {
    background: rgba(59,130,246,0.1);
    border: 1px solid rgba(59,130,246,0.2);
    color: var(--accent-light);
}

.app-badge-service {
    background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.22);
    color: #a5b4fc;
}

.app-name {
    font-size: 19px;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.3px;
    position: relative;
    z-index: 1;
}

.app-desc {
    font-size: 13.5px;
    color: var(--text-gray);
    line-height: 1.68;
    flex: 1;
    position: relative;
    z-index: 1;
}

.app-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.app-tag {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    padding: 3px 9px;
    border-radius: 100px;
}

.app-store-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    margin-top: 4px;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: 9px;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    flex: 1;
    justify-content: center;
}

.store-btn svg { width: 14px; height: 14px; flex-shrink: 0; }

.store-google {
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.22);
    color: #4ade80;
}
.store-google:hover {
    background: rgba(34,197,94,0.18);
    border-color: rgba(34,197,94,0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(34,197,94,0.15);
}

.store-apple {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-md);
    color: var(--text-light);
}
.store-apple:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--border-lg);
    transform: translateY(-2px);
}

.app-notify {
    position: relative;
    z-index: 1;
    margin-top: 4px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
    border-radius: 8px;
}

.apps-footer-note { margin-top: 8px; }

.apps-brand-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(59,130,246,0.05);
    border: 1px solid rgba(59,130,246,0.12);
    border-radius: var(--radius);
    padding: 18px 22px;
    max-width: 700px;
    margin: 0 auto;
}

.apps-brand-note svg {
    width: 18px; height: 18px;
    stroke: var(--accent-light);
    flex-shrink: 0;
    margin-top: 1px;
}

.apps-brand-note p {
    font-size: 13.5px;
    color: var(--text-gray);
    line-height: 1.65;
}

.apps-brand-note strong { color: var(--text-light); font-weight: 600; }

/* ── BRAND PILLARS SECTION ── */
.brand-pillars-section {
    background: var(--dark-900);
    padding: 96px 0;
    position: relative;
}
.brand-pillars-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(59,130,246,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.pillar-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.pillar-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59,130,246,0.04) 0%, transparent 60%);
    border-radius: inherit;
    pointer-events: none;
}
.pillar-card:hover {
    border-color: rgba(59,130,246,0.35);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.pillar-card-active {
    border-color: rgba(34,197,94,0.4);
    box-shadow: 0 8px 32px rgba(34,197,94,0.08);
}
.pillar-card-active::before {
    background: linear-gradient(135deg, rgba(34,197,94,0.06) 0%, transparent 60%);
}
.pillar-card-active:hover {
    border-color: rgba(34,197,94,0.55);
}
.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(59,130,246,0.12);
    border: 1px solid rgba(59,130,246,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pillar-card-active .pillar-icon {
    background: rgba(34,197,94,0.12);
    border-color: rgba(34,197,94,0.25);
}
.pillar-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent-blue);
}
.pillar-card-active .pillar-icon svg {
    stroke: #22c55e;
}
.pillar-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}
.pillar-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}
.pillar-link {
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--accent-blue);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.2s;
    margin-top: auto;
}
.pillar-link:hover { color: var(--accent-teal); }
.pillar-card-active .pillar-link { color: #22c55e; }

/* ── APP FEATURES LIST ── */
.app-features-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 12px 0;
}
.app-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.825rem;
    color: var(--text-secondary);
}
.app-feature svg {
    width: 14px;
    height: 14px;
    stroke: #22c55e;
    flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .tech-grid { grid-template-columns: repeat(5, 1fr); }
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .steps-container { grid-template-columns: 1fr 1fr; gap: 16px; }
    .step-connector { display: none; }
    .pillars-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}

@media (max-width: 960px) {
    .nav-links, .nav-right { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(3,11,24,0.99);
        border-bottom: 1px solid var(--border);
        padding: 12px 24px;
        gap: 2px;
        z-index: 999;
    }
    .nav-links.open li { width: 100%; }
    .nav-links.open a { display: block; padding: 10px 12px; width: 100%; }
    .nav-toggle { display: flex; }

    .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
    .hero-badge-row { justify-content: center; }
    .hero-subtitle { margin: 0 auto; }
    .hero-proof { justify-content: center; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { order: -1; }
    .ai-card { max-width: 340px; }

    .pillars-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .results-stats { grid-template-columns: 1fr 1fr; }
    .results-grid { grid-template-columns: 1fr 1fr; }
    .tech-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .use-cases-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .voice-inner { grid-template-columns: 1fr; gap: 48px; }
    .demo-inner { grid-template-columns: 1fr; gap: 48px; }
    .contact-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .floating-cta { right: 16px; bottom: 16px; }
}

@media (max-width: 640px) {
    section { padding: 64px 0; }
    .hero { padding: 100px 24px 64px; }
    .pillars-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .results-stats { grid-template-columns: 1fr 1fr; }
    .results-grid { grid-template-columns: 1fr; }
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .use-cases-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .steps-container { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .cta-banner-inner { padding: 40px 24px; }
    .cta-trust { gap: 16px; }
    .float-talk { display: none; }
}
