/* ═══════════════════════════════════════════
       BASE & VARIABLES
    ═══════════════════════════════════════════ */
:root {
    --teal: #4AC3F9;
    --teal-dark: #2a9fd8;
    --green: #06e1a2;
    --blue-mid: #4c96d7;
    --text-dark: #1a2540;
    --text-mid: #4a5568;
    --text-light: #718096;
    --bg-white: #ffffff;
    --bg-light: #f0f8ff;
    --bg-lighter: #f7fbff;
    --bg-section: #e8f4fc;
    --card-border: #d4eaf7;
    --shadow-sm: 0 2px 12px rgba(74,195,249,0.1);
    --shadow-md: 0 8px 30px rgba(74,195,249,0.15);
    --shadow-lg: 0 20px 60px rgba(44,120,200,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --font: 'Sora', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --nav-h: 72px;
    --voice-purple: #7c5cfc;
    --voice-purple-light: #a78bfa;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.65;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(74,195,249,0.15);
    transition: box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(74,195,249,0.15); }
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 1.65rem;
    letter-spacing: 0.05em;
    color: var(--blue-mid);
    flex-shrink: 0;
}
.logo-icon { display: flex; align-items: center; }
.logo-text { color: var(--teal); }
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link {
    font-family: var(--font);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--teal);
    padding: 8px 14px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.02em;
}
.nav-link:hover { background: rgba(74,195,249,0.08); color: var(--teal-dark); }
.nav-btn {
    font-family: var(--font);
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, var(--teal), var(--green));
    padding: 10px 20px;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.02em;
}
.nav-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(74,195,249,0.4); }
.nav-dropdown { position: relative; }
.dropdown-trigger svg { transition: transform 0.2s; }
.nav-dropdown:hover .dropdown-trigger svg { transform: rotate(180deg); }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 280px;
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
    margin-top: 0;
}
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%; left: 0; right: 0;
    height: 12px;
    background: transparent;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(12px);
}
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    transition: background 0.15s;
    color: var(--text-dark);
}
.dropdown-item:hover { background: var(--bg-light); }
.dropdown-item strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); font-family: var(--font); }
.dropdown-item small { display: block; font-size: 0.75rem; color: var(--text-light); margin-top: 2px; }
.di-icon { font-size: 1.4rem; flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--teal); border-radius: 2px; transition: 0.3s; }

/* ═══════════════════════════════════════════
   SHARED UTILITIES
═══════════════════════════════════════════ */
.section-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.section-title {
    font-family: var(--font);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.04em;
}
.section-title.teal { color: var(--blue-mid); }
.section-divider {
    width: 56px; height: 3px;
    background: linear-gradient(90deg, var(--voice-purple), var(--teal));
    margin: 16px auto 48px;
    border-radius: 2px;
}

/* ═══════════════════════════════════════════
   HERO — WHITE BACKGROUND
═══════════════════════════════════════════ */
.voice-hero {
    padding-top: var(--nav-h);
    min-height: 92vh;
    background: linear-gradient(160deg, #ffffff 0%, #f4fbff 50%, #edf8fd 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.voice-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
            linear-gradient(rgba(74,195,249,0.06) 1px, transparent 1px),
            linear-gradient(90deg, rgba(74,195,249,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridScroll 20s linear infinite;
}
@keyframes gridScroll {
    0%   { transform: translateY(0); }
    100% { transform: translateY(60px); }
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(124,92,252,0.1), transparent 70%); top: -100px; right: -100px; }
.orb-2 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(74,195,249,0.12), transparent 70%); bottom: -80px; left: 5%; }
.orb-3 { width: 280px; height: 280px; background: radial-gradient(circle, rgba(6,225,162,0.1), transparent 70%); top: 40%; right: 15%; }

.voice-hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}
.voice-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124,92,252,0.08);
    border: 1px solid rgba(124,92,252,0.25);
    color: var(--voice-purple);
    font-family: var(--font);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.badge-dot {
    width: 7px; height: 7px;
    background: var(--voice-purple);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}
.voice-hero-title {
    font-family: var(--font);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--text-dark);
    margin-bottom: 20px;
}
.voice-hero-title .accent {
    background: linear-gradient(135deg, var(--voice-purple), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.voice-hero-sub {
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 520px;
}
.voice-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary-voice {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--voice-purple), #5b3fd4);
    color: white;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 6px 28px rgba(124,92,252,0.35);
    text-decoration: none;
}
.btn-primary-voice:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(124,92,252,0.5); }
.btn-outline-voice {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text-mid);
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 50px;
    border: 1px solid var(--card-border);
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s;
    text-decoration: none;
}
.btn-outline-voice:hover { background: var(--bg-light); border-color: var(--teal); }

.hero-stats { display: flex; gap: 28px; margin-top: 44px; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num {
    font-family: var(--font);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--blue-mid);
    line-height: 1;
}
.hero-stat-label { font-size: 0.78rem; color: var(--text-light); margin-top: 4px; }
.stat-divider { width: 1px; background: var(--card-border); align-self: stretch; }

/* Live call widget */
.voice-hero-visual { display: flex; align-items: center; justify-content: center; }
.voice-widget {
    background: white;
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 36px;
    width: 100%;
    max-width: 480px;
    box-shadow: var(--shadow-lg);
}
.widget-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.widget-agent-info { display: flex; align-items: center; gap: 12px; }
.agent-avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--voice-purple), var(--teal));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
}
.agent-name { font-family: var(--font); font-size: 0.9rem; font-weight: 600; color: var(--text-dark); }
.agent-status { font-size: 0.75rem; color: #06b87d; display: flex; align-items: center; gap: 5px; margin-top: 2px; }
.status-dot { width: 6px; height: 6px; background: #06b87d; border-radius: 50%; animation: pulse 1.5s ease-in-out infinite; }
.call-timer { font-family: var(--font); font-size: 0.85rem; color: var(--text-light); background: var(--bg-lighter); padding: 5px 12px; border-radius: 50px; }

.waveform { display: flex; align-items: center; justify-content: center; gap: 4px; height: 72px; margin-bottom: 24px; }
.wave-bar { width: 4px; border-radius: 4px; background: linear-gradient(to top, var(--voice-purple), var(--teal)); animation: waveAnim 1.2s ease-in-out infinite; }
.wave-bar:nth-child(1)  { height: 20%; animation-delay: 0s; }
.wave-bar:nth-child(2)  { height: 45%; animation-delay: 0.1s; }
.wave-bar:nth-child(3)  { height: 70%; animation-delay: 0.2s; }
.wave-bar:nth-child(4)  { height: 90%; animation-delay: 0.15s; }
.wave-bar:nth-child(5)  { height: 100%; animation-delay: 0.05s; }
.wave-bar:nth-child(6)  { height: 75%; animation-delay: 0.25s; }
.wave-bar:nth-child(7)  { height: 55%; animation-delay: 0.1s; }
.wave-bar:nth-child(8)  { height: 85%; animation-delay: 0.35s; }
.wave-bar:nth-child(9)  { height: 60%; animation-delay: 0.2s; }
.wave-bar:nth-child(10) { height: 40%; animation-delay: 0.3s; }
.wave-bar:nth-child(11) { height: 72%; animation-delay: 0.12s; }
.wave-bar:nth-child(12) { height: 95%; animation-delay: 0.22s; }
.wave-bar:nth-child(13) { height: 80%; animation-delay: 0.08s; }
.wave-bar:nth-child(14) { height: 50%; animation-delay: 0.18s; }
.wave-bar:nth-child(15) { height: 30%; animation-delay: 0.28s; }
.wave-bar:nth-child(16) { height: 65%; animation-delay: 0.14s; }
.wave-bar:nth-child(17) { height: 88%; animation-delay: 0.32s; }
.wave-bar:nth-child(18) { height: 42%; animation-delay: 0.06s; }
.wave-bar:nth-child(19) { height: 58%; animation-delay: 0.24s; }
.wave-bar:nth-child(20) { height: 25%; animation-delay: 0.16s; }
@keyframes waveAnim {
    0%, 100% { transform: scaleY(0.4); opacity: 0.5; }
    50%       { transform: scaleY(1);   opacity: 1; }
}

.transcript-box { background: var(--bg-lighter); border: 1px solid var(--card-border); border-radius: 12px; padding: 16px; margin-bottom: 20px; }
.transcript-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--voice-purple); margin-bottom: 10px; }
.transcript-line { display: flex; gap: 10px; margin-bottom: 8px; font-size: 0.82rem; line-height: 1.5; }
.transcript-line:last-child { margin-bottom: 0; }
.t-speaker { font-weight: 700; flex-shrink: 0; font-family: var(--font); }
.t-speaker.agent { color: var(--teal-dark); }
.t-speaker.customer { color: var(--text-light); }
.t-text { color: var(--text-mid); }

.sentiment-row { display: flex; align-items: center; justify-content: space-between; }
.sentiment-label { font-size: 0.75rem; color: var(--text-light); }
.sentiment-bar { flex: 1; height: 4px; background: var(--card-border); border-radius: 4px; margin: 0 12px; overflow: hidden; }
.sentiment-fill { height: 100%; width: 78%; background: linear-gradient(90deg, var(--green), var(--teal)); border-radius: 4px; animation: fillAnim 2s ease-out forwards; }
@keyframes fillAnim { from { width: 0%; } to { width: 78%; } }
.sentiment-score { font-family: var(--font); font-size: 0.8rem; font-weight: 700; color: #06b87d; }

/* ═══════════════════════════════════════════
   USE CASES STRIP
═══════════════════════════════════════════ */
.use-cases-strip { background: var(--bg-lighter); padding: 22px 0; border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); }
.use-cases-inner { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; flex-wrap: wrap; justify-content: center; }
.use-case-pill { display: flex; align-items: center; gap: 8px; padding: 8px 22px; font-family: var(--font); font-size: 0.82rem; font-weight: 500; color: var(--text-mid); border-right: 1px solid var(--card-border); white-space: nowrap; }
.use-case-pill:last-child { border-right: none; }
.use-case-pill i { color: var(--voice-purple); }

/* ═══════════════════════════════════════════
   PROBLEM SECTION
═══════════════════════════════════════════ */
.problem-section { background: white; padding: 88px 0; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.problem-card { background: var(--bg-lighter); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 32px 28px; text-align: center; transition: transform 0.25s, box-shadow 0.25s; }
.problem-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.problem-icon { font-size: 2.4rem; margin-bottom: 18px; }
.problem-card h3 { font-family: var(--font); font-size: 1.05rem; font-weight: 600; color: var(--text-dark); margin-bottom: 12px; }
.problem-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }

/* ═══════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════ */
.voice-features { background: linear-gradient(160deg, #ffffff 0%, #f4fbff 50%, #edf8fd 100%); padding: 88px 0 60px; }
.voice-feature-rows { margin-top: 56px; }
.vf-row { max-width: 1400px; margin: 0 auto 64px; padding: 0 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.vf-row.reverse .vf-visual { order: -1; }
.vf-tag { display: inline-block; background: rgba(124,92,252,0.1); color: var(--voice-purple); font-family: var(--font); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border-radius: 50px; margin-bottom: 14px; }
.vf-heading { font-family: var(--font); font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; color: var(--text-dark); line-height: 1.25; margin-bottom: 16px; }
.vf-heading span { color: var(--voice-purple); }
.vf-text p { font-size: 0.97rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; }
.vf-checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.vf-checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--text-mid); }
.vf-checklist li i { color: var(--green); margin-top: 2px; flex-shrink: 0; }
.vf-visual { display: flex; align-items: center; justify-content: center; }
.vf-card { background: white; border: 1px solid var(--card-border); border-radius: 20px; padding: 28px; width: 100%; max-width: 420px; box-shadow: var(--shadow-md); }
.vf-card-title { font-family: var(--font); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 20px; }

.metric-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(74,195,249,0.08); }
.metric-row:last-child { border-bottom: none; }
.metric-label { font-size: 0.85rem; color: var(--text-mid); }
.metric-value { font-family: var(--font); font-size: 1rem; font-weight: 700; color: var(--blue-mid); }
.metric-value.green { color: #06b87d; }
.metric-value.purple { color: var(--voice-purple); }

.progress-item { margin-bottom: 16px; }
.progress-item:last-child { margin-bottom: 0; }
.progress-header { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 0.82rem; }
.progress-name { color: var(--text-mid); }
.progress-pct { font-family: var(--font); font-weight: 700; color: var(--blue-mid); }
.progress-bar { height: 6px; background: rgba(74,195,249,0.12); border-radius: 4px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--voice-purple), var(--teal)); }

.lang-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.lang-chip { background: rgba(74,195,249,0.1); border: 1px solid rgba(74,195,249,0.2); color: var(--blue-mid); font-family: var(--font); font-size: 0.75rem; font-weight: 600; padding: 5px 12px; border-radius: 50px; }

.call-flow { display: flex; flex-direction: column; }
.cf-step { display: flex; gap: 14px; align-items: flex-start; padding-bottom: 18px; position: relative; }
.cf-step:last-child { padding-bottom: 0; }
.cf-step::before { content: ''; position: absolute; left: 15px; top: 32px; bottom: 0; width: 2px; background: linear-gradient(to bottom, rgba(124,92,252,0.25), transparent); }
.cf-step:last-child::before { display: none; }
.cf-dot { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--voice-purple), var(--teal)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.75rem; color: white; font-weight: 700; font-family: var(--font); }
.cf-content { flex: 1; }
.cf-title { font-family: var(--font); font-size: 0.88rem; font-weight: 600; color: var(--text-dark); margin-bottom: 3px; }
.cf-desc { font-size: 0.8rem; color: var(--text-mid); line-height: 1.5; }

/* ═══════════════════════════════════════════
   WHY CHOOSE
═══════════════════════════════════════════ */
.why-voice { background: white; padding: 88px 0; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { background: var(--bg-lighter); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 32px 28px; transition: transform 0.25s, box-shadow 0.25s; }
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.why-icon { font-size: 1.8rem; margin-bottom: 16px; }
.why-card h3 { font-family: var(--font); font-size: 1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }

/* ═══════════════════════════════════════════
   INDUSTRIES
═══════════════════════════════════════════ */
.industries-section { background: linear-gradient(160deg, #ffffff 0%, #f4fbff 50%, #edf8fd 100%); padding: 88px 0; }
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.industry-card { background: white; border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 28px 22px; text-align: center; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.industry-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(124,92,252,0.3); }
.industry-icon { font-size: 2rem; margin-bottom: 14px; }
.industry-card h3 { font-family: var(--font); font-size: 0.95rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.industry-card p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; }

/* ═══════════════════════════════════════════
   REQUEST PRICING — reuses main site styles
═══════════════════════════════════════════ */
.pricing-section {
    background: linear-gradient(135deg, #2a7dc9 0%, #1a5fa8 40%, #0d4a8a 100%);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
}
.pricing-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E") repeat;
    pointer-events: none;
}
.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.pricing-title { font-family: var(--font); font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; color: white; letter-spacing: 0.04em; margin-bottom: 20px; }
.pricing-desc { font-size: 0.97rem; color: rgba(255,255,255,0.82); line-height: 1.75; margin-bottom: 10px; }
.pricing-desc i { color: var(--green); margin-right: 6px; }
.pricing-form-wrap { background: white; border-radius: var(--radius-lg); padding: 40px 36px; box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.form-title { font-family: var(--font); font-size: 1.3rem; font-weight: 700; color: var(--blue-mid); text-align: center; margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group input,
.form-group textarea { width: 100%; border: none; border-bottom: 1.5px solid #d4e8f5; padding: 10px 4px; font-family: var(--font-body); font-size: 0.92rem; color: var(--text-dark); background: transparent; outline: none; transition: border-color 0.2s; resize: none; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aac4d8; }
.form-group input:focus,
.form-group textarea:focus { border-bottom-color: var(--teal); }
.form-status { font-size: 0.85rem; margin-bottom: 12px; min-height: 20px; text-align: center; }
.form-status.success { color: #06d6a0; }
.form-status.error { color: #ef4444; }
.form-submit-btn { width: 100%; background: linear-gradient(135deg, var(--blue-mid), var(--teal)); color: white; border: none; padding: 14px; border-radius: 8px; font-family: var(--font); font-size: 0.95rem; font-weight: 600; cursor: pointer; letter-spacing: 0.04em; transition: transform 0.2s, box-shadow 0.2s; }
.form-submit-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(74,195,249,0.4); }

/* ═══════════════════════════════════════════
   CTA BANNER — WHITE
═══════════════════════════════════════════ */
.cta-banner {
    background: linear-gradient(160deg, #ffffff 0%, #f4fbff 50%, #edf8fd 100%);
    padding: 88px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
            radial-gradient(ellipse 60% 60% at 20% 50%, rgba(124,92,252,0.06), transparent),
            radial-gradient(ellipse 50% 50% at 80% 50%, rgba(74,195,249,0.08), transparent);
}
.cta-banner-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-banner h2 { font-family: var(--font); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: var(--text-dark); line-height: 1.2; margin-bottom: 18px; }
.cta-banner h2 span { background: linear-gradient(135deg, var(--voice-purple), var(--teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-banner p { font-size: 1rem; color: var(--text-mid); margin-bottom: 36px; line-height: 1.7; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer { background: #0f2040; padding: 24px 0; }
.footer-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-container span { color: rgba(255,255,255,0.55); font-size: 0.85rem; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--teal); }

/* ═══════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════ */
.cookie-banner { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); background: #1a2540; color: rgba(255,255,255,0.85); padding: 14px 20px; border-radius: 12px; display: flex; align-items: center; gap: 16px; box-shadow: 0 8px 32px rgba(0,0,0,0.25); font-size: 0.85rem; z-index: 2000; max-width: 580px; width: calc(100% - 48px); opacity: 0; pointer-events: none; transition: opacity 0.4s, transform 0.4s; }
.cookie-banner.show { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.cookie-accept { flex-shrink: 0; background: var(--teal); color: white; border: none; padding: 8px 18px; border-radius: 6px; font-size: 0.82rem; font-weight: 600; cursor: pointer; }
.cookie-close { flex-shrink: 0; background: none; border: none; color: rgba(255,255,255,0.5); cursor: pointer; font-size: 1rem; padding: 4px; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .voice-hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
    .voice-hero-sub { max-width: 100%; }
    .voice-hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; }
    .problem-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .vf-row { grid-template-columns: 1fr; gap: 36px; }
    .vf-row.reverse .vf-visual { order: 0; }
    .pricing-container { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links { position: fixed; top: var(--nav-h); left: 0; right: 0; background: white; flex-direction: column; align-items: flex-start; padding: 20px 24px 28px; gap: 4px; border-bottom: 1px solid var(--card-border); box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-120%); opacity: 0; pointer-events: none; transition: transform 0.3s ease, opacity 0.3s ease; }
    .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
    .nav-links li { width: 100%; }
    .nav-link { width: 100%; padding: 12px 8px; }
    .nav-btn { width: 100%; text-align: center; margin-top: 8px; padding: 12px 20px; }
    .dropdown-menu { position: static; transform: none !important; box-shadow: none; border: none; background: var(--bg-light); padding: 8px; border-radius: var(--radius); margin-top: 4px; display: none; opacity: 1; }
    .nav-dropdown.open .dropdown-menu { display: block; pointer-events: all; }
    .why-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .industry-grid { grid-template-columns: 1fr 1fr; }
    .vf-row { padding: 0 24px; }
    .voice-hero-inner { padding: 60px 24px; }
    .pricing-form-wrap { padding: 28px 20px; }
}
@media (max-width: 480px) {
    .industry-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
    .use-case-pill { border-right: none; border-bottom: 1px solid var(--card-border); width: 100%; justify-content: center; }
}