/* ═══════════════════════════════════════════════════
   xHireAI — Production-Match Design System
   Pixel-identical to xhireai.com (Next.js production)
   ═══════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── Container ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* ── Background gradient ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 10% 0%, rgba(34,211,238,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 90% 0%, rgba(99,102,241,0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ── Scroll Reveal ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; transition-delay: var(--delay, 0s); }
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ═══════════════════════════════════
   NAVIGATION — Floating pill navbar
   ═══════════════════════════════════ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 1rem 2rem;
    transition: padding 0.3s;
}
.nav.scrolled { padding: 0.5rem 2rem; }
.nav-pill {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0.6rem 1.2rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 9999px;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}
.nav-logo {
    display: flex; align-items: center; gap: 0.4rem;
    font-weight: 700; font-size: 1rem;
    margin-right: auto;
    white-space: nowrap;
}
.nav-logo-accent { color: #22d3ee; }
.nav-links {
    display: flex; gap: 0.1rem;
}
.nav-links a {
    padding: 0.4rem 0.75rem;
    font-size: 0.82rem; font-weight: 500;
    color: rgba(255,255,255,0.6);
    border-radius: 9999px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-actions {
    display: flex; align-items: center; gap: 0.5rem;
    margin-left: auto;
}
.btn-nav-dash {
    padding: 0.4rem 0.9rem;
    font-size: 0.82rem; font-weight: 500;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 9999px;
    transition: border-color 0.2s;
}
.btn-nav-dash:hover { border-color: rgba(255,255,255,0.3); }
.nav-link-login {
    font-size: 0.82rem; font-weight: 500;
    color: rgba(255,255,255,0.6);
    padding: 0.4rem 0.5rem;
    white-space: nowrap;
}
.btn-nav-signup {
    padding: 0.4rem 1rem;
    font-size: 0.82rem; font-weight: 600;
    background: #fff;
    color: #000;
    border-radius: 9999px;
    transition: background 0.2s;
    white-space: nowrap;
}
.btn-nav-signup:hover { background: #e5e5e5; }

/* Mobile burger */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.menu-toggle span { display: block; width: 20px; height: 2px; background: #fff; margin: 4px 0; transition: transform 0.3s; }
.menu-toggle.active span:first-child { transform: rotate(45deg) translate(3px,4px); }
.menu-toggle.active span:last-child { transform: rotate(-45deg) translate(3px,-4px); }


/* ═══════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════ */
.hero-section {
    position: relative;
    padding: 10rem 0 6rem;
    z-index: 1;
}
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 9999px;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
}
.badge-dot {
    width: 8px; height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot { 0%,100% { opacity:1; } 50% { opacity:0.4; } }

.hero h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}
.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2rem;
}
.btn-primary {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 1rem 2rem;
    background: #fff;
    color: #000;
    font-size: 0.95rem; font-weight: 600;
    border-radius: 1rem;
    border: none; cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,255,255,0.1); }
.btn-lg { padding: 1.2rem 2.5rem; font-size: 1rem; }

.hero-trust {
    display: flex; gap: 1.5rem; margin-top: 2rem;
    flex-wrap: wrap;
}
.hero-trust span {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
}
.hero-trust svg { opacity: 0.4; }

/* ── Phone Mockup ── */
.hero-phone {
    position: relative;
    display: flex; justify-content: center; align-items: center;
}
.phone-frame {
    width: 320px;
    background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 2.5rem;
    padding: 1.5rem 1rem 1rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}
.phone-notch {
    width: 120px; height: 28px;
    background: #000;
    border-radius: 0 0 1rem 1rem;
    margin: -1.5rem auto 1rem;
}
.phone-time {
    text-align: center;
    font-size: 2.5rem; font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.2rem;
}
.phone-date {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.5rem;
}
.phone-notifications {
    display: flex; flex-direction: column; gap: 0.6rem;
}
.phone-notif {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1rem;
    padding: 0.8rem 1rem;
}
.notif-header {
    display: flex; align-items: center; gap: 0.4rem;
    margin-bottom: 0.3rem;
}
.notif-source {
    font-size: 0.65rem; font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.5);
}
.notif-icon { font-size: 0.9rem; }
.notif-time {
    margin-left: auto;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.35);
}
.notif-title { font-size: 0.82rem; font-weight: 700; margin-bottom: 0.2rem; }
.notif-body { font-size: 0.75rem; color: rgba(255,255,255,0.5); line-height: 1.4; }
.phone-home-bar {
    width: 100px; height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    margin: 1.2rem auto 0;
}

/* Floating stat cards */
.phone-stat-card-msg {
    position: absolute; top: 10%; left: -60px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1rem;
    padding: 0.8rem 1.2rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}
.phone-stat-card-avg {
    position: absolute; bottom: 15%; right: -50px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1rem;
    padding: 0.8rem 1.2rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 3;
    animation: float 6s ease-in-out 3s infinite;
}
.stat-label { font-size: 0.6rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); font-weight: 600; }
.stat-value { font-size: 1.3rem; font-weight: 800; }
.stat-label-accent { font-size: 0.6rem; letter-spacing: 0.1em; color: #22d3ee; font-weight: 600; }
.stat-value-accent { font-size: 1.8rem; font-weight: 800; color: #22d3ee; }

@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}


/* ═══════════════════════════════════
   SECTION UTILITIES
   ═══════════════════════════════════ */
.section { position: relative; padding: 6rem 0; z-index: 1; }
.section-alt { background: rgba(255,255,255,0.01); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2, .section h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}
.text-dim { color: rgba(255,255,255,0.3); }
.section-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.45);
    max-width: 520px;
    margin: 1rem auto 0;
    line-height: 1.6;
}
.section-sub-left {
    font-size: 1rem;
    color: rgba(255,255,255,0.45);
    max-width: 520px;
    margin: 1rem 0 0;
    line-height: 1.6;
}
.section-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.3);
    margin-bottom: 0.8rem;
}
.accent { color: #22d3ee; }


/* ═══════════════════════════════════
   INDUSTRY TEMPLATE GRID
   ═══════════════════════════════════ */
.template-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.8rem;
}
.template-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 1rem;
    padding: 1.2rem;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s, transform 0.2s;
}
.template-card:hover {
    border-color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.04);
    transform: translateY(-2px);
}
.template-card.active {
    border-color: rgba(34,211,238,0.4);
    background: rgba(34,211,238,0.05);
}
.template-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }
.template-name { font-size: 0.88rem; font-weight: 600; margin-bottom: 0.3rem; }
.template-tagline { font-size: 0.72rem; color: rgba(255,255,255,0.35); line-height: 1.3; }


/* ═══════════════════════════════════
   VOICE AGENT — SPLIT LAYOUT
   ═══════════════════════════════════ */
.voice-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.voice-left h2 { text-align: left; margin-bottom: 0.5rem; }
.voice-badges {
    display: flex; gap: 0.6rem; margin: 1.5rem 0 2rem;
    flex-wrap: wrap;
}
.badge-pill {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.78rem; font-weight: 500;
    background: transparent;
}
.badge-pill.green { border: 1px solid rgba(34,197,94,0.3); color: #22c55e; }
.badge-pill.pink { border: 1px solid rgba(236,72,153,0.3); color: #ec4899; }
.badge-pill.cyan { border: 1px solid rgba(34,211,238,0.3); color: #22d3ee; }

/* Feature stack (vertical list) */
.feature-stack { display: flex; flex-direction: column; gap: 0; }
.feature-row {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1.2rem;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 1rem;
    background: rgba(255,255,255,0.02);
    margin-bottom: -1px;
}
.feature-row:first-child { border-radius: 1rem 1rem 0 0; }
.feature-row:last-child { border-radius: 0 0 1rem 1rem; }
.feature-icon {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.05);
    border-radius: 0.5rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.feature-row h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.2rem; }
.feature-row p { font-size: 0.8rem; color: rgba(255,255,255,0.4); line-height: 1.4; }


/* ═══════════════════════════════════
   VOICE DEMO PANEL (Right side)
   ═══════════════════════════════════ */
.voice-demo-panel {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
}
.voice-agent-header { margin-bottom: 1.5rem; }
.voice-agent-icon {
    width: 60px; height: 60px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 0.8rem;
}
.voice-agent-name { font-size: 1.2rem; font-weight: 700; }
.voice-agent-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-top: 0.2rem; }
.voice-agent-status {
    font-size: 0.68rem; font-weight: 600;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.3);
    margin-top: 0.8rem;
}

/* Waveform */
.voice-waveform {
    padding: 1.5rem 0;
    display: flex; justify-content: center;
}
.waveform-dots { display: flex; gap: 3px; align-items: center; }
.wdot {
    display: inline-block;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: #22d3ee;
    opacity: 0.5;
    animation: wdot-pulse 2s ease-in-out infinite;
}
@keyframes wdot-pulse { 0%,100% { opacity:0.3; transform:scale(1); } 50% { opacity:1; transform:scale(1.3); } }

/* Transcript */
.sample-transcript {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 1rem;
    padding: 1.2rem;
    text-align: left;
    margin-bottom: 1.5rem;
}
.transcript-label {
    font-size: 0.65rem; font-weight: 600;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.3);
    margin-bottom: 0.8rem;
}
.transcript-row {
    display: flex; gap: 0.8rem; align-items: flex-start;
    margin-bottom: 0.6rem;
}
.transcript-role {
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
    flex-shrink: 0;
    min-width: 48px;
    padding-top: 2px;
}
.transcript-role.accent { color: #22d3ee; }
.transcript-text { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.5; }

/* Mic Button */
.voice-mic-btn {
    width: 64px; height: 64px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #22d3ee 0%, #10b981 100%);
    color: #fff;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 0.8rem;
    transition: transform 0.2s, box-shadow 0.3s;
    animation: mic-glow 3s ease-in-out infinite;
}
.voice-mic-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(34,211,238,0.4);
}
@keyframes mic-glow {
    0%,100% { box-shadow: 0 0 20px rgba(34,211,238,0.2); }
    50% { box-shadow: 0 0 40px rgba(34,211,238,0.35); }
}
.voice-demo-status { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.voice-demo-indicator { font-size: 0.72rem; color: rgba(255,255,255,0.25); margin-top: 0.4rem; }

/* Choose Voice */
.choose-voice { margin-top: 1.5rem; }
.choose-voice-label {
    font-size: 0.65rem; font-weight: 600;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.3);
    margin-bottom: 0.8rem;
}
.voice-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.voice-pill {
    padding: 0.4rem 0.9rem;
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    font-family: inherit;
}
.voice-pill strong { font-weight: 600; color: rgba(255,255,255,0.8); margin-right: 0.3rem; }
.voice-pill:hover { border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.7); }
.voice-pill.active { border-color: rgba(34,211,238,0.5); background: rgba(34,211,238,0.08); color: #22d3ee; }
.voice-pill.active strong { color: #22d3ee; }


/* ═══════════════════════════════════
   CHAT AGENT — SPLIT LAYOUT
   ═══════════════════════════════════ */
.chat-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.chat-right h2 { text-align: left; margin-bottom: 0.5rem; }

/* Chat Demo Panel */
.chat-demo-panel {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 600px;
}
.chat-demo-header {
    display: flex; align-items: center; gap: 0.8rem;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.chat-avatar {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.chat-demo-name { font-size: 0.88rem; font-weight: 600; }
.chat-demo-desc { font-size: 0.72rem; color: rgba(255,255,255,0.35); }
.chat-demo-badge {
    margin-left: auto;
    font-size: 0.6rem; font-weight: 600;
    color: #22c55e;
    letter-spacing: 0.08em;
}

/* Messages */
.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    min-height: 300px;
    max-height: 380px;
}
.chat-msg {
    max-width: 85%;
    padding: 0.8rem 1rem;
    border-radius: 1rem;
    font-size: 0.85rem;
    line-height: 1.5;
}
.chat-msg.agent {
    align-self: flex-start;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1rem 1rem 1rem 0.25rem;
}
.chat-msg.user {
    align-self: flex-end;
    background: rgba(34,211,238,0.1);
    border: 1px solid rgba(34,211,238,0.2);
    border-radius: 1rem 1rem 0.25rem 1rem;
}
.chat-msg-label {
    display: block;
    font-size: 0.65rem; font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 0.3rem;
}
.chat-msg.user .chat-msg-label { text-align: right; }
.chat-msg-content {
    display: block;
    white-space: pre-line;
    color: rgba(255,255,255,0.8);
}

/* Typing indicator */
.chat-typing {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    display: none;
}
.chat-typing.show { display: block; }
.typing-dots span {
    animation: typing-dot 1.4s infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-dot { 0%,100% { opacity:0.2; } 50% { opacity:1; } }

/* Quick replies */
.chat-quick-replies {
    display: flex; gap: 0.4rem; padding: 0.5rem 1rem;
    flex-wrap: wrap;
}
.quick-reply {
    padding: 0.35rem 0.8rem;
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: transparent;
    color: rgba(255,255,255,0.6);
    font-size: 0.72rem;
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
}
.quick-reply:hover { border-color: rgba(34,211,238,0.4); color: #22d3ee; }

/* Chat input */
.chat-input-row {
    display: flex;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 0.6rem;
    gap: 0.5rem;
}
.chat-input-row input {
    flex: 1;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 9999px;
    padding: 0.6rem 1rem;
    color: #fff;
    font-size: 0.85rem;
    font-family: inherit;
    outline: none;
}
.chat-input-row input::placeholder { color: rgba(255,255,255,0.25); }
.chat-input-row input:focus { border-color: rgba(34,211,238,0.3); }
.chat-input-row button {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: color 0.2s;
    flex-shrink: 0;
}
.chat-input-row button:hover { color: #22d3ee; }


/* ═══════════════════════════════════
   PRICING SECTION
   ═══════════════════════════════════ */
.pricing-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 1.5rem;
    align-items: start;
}
.pricing-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1.5rem;
    padding: 2.5rem;
}
.pricing-badge {
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.12em;
    color: #22d3ee;
    margin-bottom: 1.2rem;
}
.pricing-amount {
    font-size: 3.5rem; font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.3rem;
}
.pricing-amount span { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.4); }
.pricing-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 2rem;
}
.pricing-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem 2rem;
    margin-bottom: 2rem;
}
.pricing-features li {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}
.pricing-features svg { color: #22c55e; flex-shrink: 0; }
.pricing-note {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    margin-top: 0.8rem;
}
.pricing-header { text-align: left; margin-bottom: 3rem; }
.btn-price-cta { width: 100%; justify-content: center; }

.pricing-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.pricing-alt-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1rem;
    padding: 1.5rem;
}
.pricing-alt-label {
    font-size: 0.65rem; font-weight: 600;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.3);
    margin-bottom: 1rem;
}
.pricing-alt-row {
    display: flex; align-items: center; justify-content: space-between;
}
.pricing-alt-name { font-size: 0.95rem; font-weight: 600; }
.pricing-alt-sub { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 0.1rem; }
.pricing-alt-price { font-size: 1.5rem; font-weight: 800; }
.pricing-alt-price span { font-size: 0.75rem; font-weight: 400; color: rgba(255,255,255,0.4); }
.pricing-alt-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 1rem 0; }
.pricing-byok { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.pricing-byok strong { color: #22d3ee; }
.pricing-compare-link {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.85rem; color: rgba(255,255,255,0.5);
    margin-top: 0.5rem;
    transition: color 0.2s;
}
.pricing-compare-link:hover { color: #fff; }


/* ═══════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════ */
.cta-section { padding: 4rem 0 6rem; }
.cta-block {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 2rem;
    padding: 5rem 3rem;
    text-align: center;
}
.cta-block h2 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    font-style: italic;
}
.cta-block p {
    color: rgba(255,255,255,0.4);
    font-size: 1rem;
    margin-bottom: 2rem;
}


/* ═══════════════════════════════════
   FOOTER
   ═══════════════════════════════════ */
footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 2rem 0;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-brand {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }


/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .btn-nav-dash { display: none; }
    .nav-link-login { display: none; }
    .menu-toggle { display: flex; flex-direction: column; }

    .hero { grid-template-columns: 1fr; gap: 3rem; }
    .hero-phone { order: -1; }
    .phone-stat-card-msg { left: 0; }
    .phone-stat-card-avg { right: 0; }

    .template-grid { grid-template-columns: repeat(3, 1fr); }
    .voice-split { grid-template-columns: 1fr; }
    .chat-split { grid-template-columns: 1fr; }
    .chat-left { order: -1; }
    .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .container { padding: 0 1rem; }
    .hero-section { padding: 8rem 0 3rem; }
    .hero h1 { font-size: 2rem; }
    .template-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-features { grid-template-columns: 1fr; }
    .cta-block { padding: 3rem 1.5rem; }
    .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
}
