﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:      #0c1a3e;
    --blue-mid:  #1d3d8f;
    --blue-hi:   #2a64d6;
    --accent:    #2a64d6;
    --accent2:   #1d3d8f;
    --white:     #ffffff;
    --gold:      #f59e0b;
    --red:       #dc2626;
    --page-bg:   #f1f5f9;
    --card-bg:   #ffffff;
    --border:    rgba(148,163,184,.18);
    --text:      #1e293b;
    --muted:     #64748b;
    --r:         14px;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--page-bg);
    color: var(--text);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* ── NAV ─────────────────────────────────────────────────────────── */
nav {
    position: relative;
    z-index: 10;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}
/* Hero: nav sits on dark background, not sticky */
.hero .hero-nav {
    position: relative;
    flex-shrink: 0;
    background: rgba(6, 18, 55, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.hero .hero-nav .logo-main { color: #fff; }
.hero .hero-nav .logo-main span { color: #93c5fd; }
.hero .hero-nav .logo-sub {
    color: rgba(226,232,240,.75);
    border-top-color: #60a5fa;
}
.hero .hero-nav .nav-links a {
    color: rgba(255,255,255,.92);
}
.hero .hero-nav .nav-links a:hover { color: #fff; }
.hero .hero-nav .nav-hamburger span { background: #fff; }
@media (max-width: 680px) {
    .hero .hero-nav .nav-links {
        border-top-color: rgba(255,255,255,.15);
        background: rgba(6, 18, 55, 0.92);
    }
    .hero .hero-nav .nav-links a {
        color: #fff;
        border-bottom-color: rgba(255,255,255,.12);
    }
}
.nav-inner {
    max-width: 1160px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: .85rem 1.5rem; gap: 1.5rem; flex-wrap: wrap;
}
.logo-wrap { display: flex; flex-direction: column; text-decoration: none; }
.logo-main {
    font-size: 1.05rem; font-weight: 800;
    letter-spacing: .04em; text-transform: uppercase;
    color: var(--navy); line-height: 1;
}
.logo-main span { color: var(--blue-hi); }
.logo-sub {
    font-size: .62rem; font-weight: 600; letter-spacing: .25em;
    text-transform: uppercase; color: var(--muted);
    border-top: 2px solid var(--blue-hi);
    padding-top: 2px; margin-top: 2px;
    line-height: 1;
}
.nav-links {
    display: flex; align-items: center; gap: 2rem; list-style: none;
}
.nav-links a {
    font-size: .72rem; font-weight: 600;
    letter-spacing: .06em; text-transform: uppercase;
    color: var(--navy); text-decoration: none;
    transition: color .15s;
}
.nav-links a:hover { color: var(--blue-hi); }
/* hamburger */
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: .4rem; flex-direction: column; gap: 5px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .25s, opacity .2s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 680px) {
    .nav-hamburger { display: flex; }
    .nav-links { display: none; flex-direction: column; align-items: flex-start; width: 100%; gap: 0; padding: .5rem 0 .75rem; border-top: 1px solid var(--border); }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: .75rem 0; font-size: .85rem; border-bottom: 1px solid var(--border); }
    .nav-links li:last-child a { border-bottom: none; }
}

/* ── HERO ────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    overflow: hidden;
    padding: 0;
    height: 100dvh;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    /* Photo + blue wash */
    background-color: #0c1a4a;
    background-image:
        linear-gradient(
            100deg,
            rgba(8, 32, 88, 0.88) 0%,
            rgba(12, 55, 130, 0.76) 38%,
            rgba(18, 72, 155, 0.58) 68%,
            rgba(25, 85, 175, 0.42) 100%
        ),
        url('assets/hero-bg.webp');
    background-size: cover;
    background-position: center 22%;
    background-repeat: no-repeat;
}
.hero-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.5rem 1.5rem 2rem;
}
/* faint grid on top of overlay (keeps depth without fighting the photo) */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    position: relative;
    z-index: 1;
    max-width: 1160px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 340px;
    grid-template-rows: auto auto;
    gap: 0 3rem;
    align-items: center;
}
@media (max-width: 860px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-right { display: none; }
}

/* left col */
.hero-left {}
.hero-tag {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .8rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
    color: #93c5fd;
    background: rgba(147,197,253,.1);
    border: 1px solid rgba(147,197,253,.2);
    border-radius: 20px; padding: .3rem .9rem;
    margin-bottom: 1.25rem;
}
.hero-tag-dot {
    width: 6px; height: 6px; border-radius: 50%; background: #34d399; flex-shrink: 0;
    box-shadow: 0 0 6px #34d399;
}
.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800; color: var(--white);
    line-height: 1.12; letter-spacing: -.03em;
    margin-bottom: 1.15rem;
}
.hero-sub {
    font-size: 1.15rem; color: #e2e8f0;
    line-height: 1.65; max-width: 480px;
    margin-bottom: 2rem;
}

/* CTA */
.hero-cta {
    display: inline-flex; align-items: center; gap: .65rem;
    font-size: .95rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
    color: var(--navy);
    background: var(--white);
    border: none; border-radius: 8px;
    padding: .85rem 1.75rem;
    text-decoration: none; cursor: pointer;
    transition: transform .15s, box-shadow .15s;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    margin-bottom: 1.5rem;
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.3); }
.hero-cta-icon { font-size: 1rem; }

/* stars + count */
.hero-rating {
    display: flex; align-items: center; gap: .65rem;
    margin-bottom: 2.25rem;
}
.stars { color: var(--gold); font-size: 1.15rem; letter-spacing: .05em; }
.rating-text { font-size: .9rem; color: #cbd5e1; }

/* logo strip */
.logos-label {
    font-size: .72rem; font-weight: 600; letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
    margin-bottom: .9rem;
}
.logos-strip {
    display: flex; align-items: center; flex-wrap: wrap; gap: 1.5rem 2rem;
    margin-bottom: 2.25rem;
}
.logos-strip img {
    height: 22px; width: auto;
    filter: brightness(0) invert(1);
    opacity: .4;
    transition: opacity .2s;
}
.logos-strip img:hover { opacity: .75; }

/* social proof row: 2-col — people left, flags right */
.hero-trust-row {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    align-items: start;
    gap: 0 1.5rem;
    margin-top: 1.75rem;
    width: 100%;
    max-width: 100%;
}
.faces-wrap { display: flex; flex-direction: column; gap: .55rem; }
.faces-row { display: flex; }
.face-img {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.5);
    object-fit: cover;
    margin-left: -10px;
    flex-shrink: 0;
}
.face-img:first-child { margin-left: 0; }
.faces-text { font-size: .88rem; color: #cbd5e1; line-height: 1.4; }
.faces-text strong { color: var(--white); display: block; }

/* right col: price badge */
.hero-right {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 1.5rem;
}
.price-badge {
    position: relative;
    width: 280px; height: 280px; border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #ff4d4d 0%, var(--red) 50%, #b91c1c 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transform: rotate(-8deg);
    box-shadow:
        0 0 0 6px rgba(255,255,255,.12),
        0 16px 60px rgba(185,28,28,.55),
        0 4px 20px rgba(0,0,0,.25);
    flex-shrink: 0;
    animation: badge-pulse 3s ease-in-out infinite;
}
@keyframes badge-pulse {
    0%, 100% { transform: rotate(-8deg) scale(1); }
    50% { transform: rotate(-8deg) scale(1.03); }
}
.price-badge::before {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 2px dashed rgba(255,255,255,.2);
    pointer-events: none;
}
.price-badge-from {
    font-size: .85rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: .1em; color: rgba(255,255,255,.7);
    text-decoration: line-through;
    margin-bottom: .15rem;
}
.price-badge-num {
    font-size: 4.6rem; font-weight: 900; color: var(--white);
    line-height: .9; letter-spacing: -.04em;
    text-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.price-badge-unit {
    font-size: .9rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .08em; color: rgba(255,255,255,.9);
    margin-top: .2rem;
}

/* flags — right column, icon-only single row */
.hero-flags-inline {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0 0 0 1.35rem;
    box-sizing: border-box;
    border-left: 1px solid rgba(255,255,255,.12);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.flags-label {
    font-size: .62rem; font-weight: 600; letter-spacing: .08em;
    text-transform: uppercase; color: rgba(255,255,255,.55);
    margin-bottom: .45rem;
}
.flags-groups {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
}
.flags-group { margin: 0; }
.flags-group-title { display: none; }
.flags-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: .35rem;
}
.flag-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: none;
    border: none;
    border-radius: 3px;
    padding: 0;
    cursor: default;
    transition: transform .15s, opacity .15s;
    opacity: .85;
}
.flag-item:hover {
    opacity: 1;
    transform: scale(1.15);
}
.flag-item .flag-img-wrap {
    flex-shrink: 0;
    width: 24px;
    height: 16px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,.25);
    display: flex;
    align-items: center;
    justify-content: center;
}
.flag-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.flag-item .flag-name { display: none; }

/* ── MAIN / GENERATOR ─────────────────────────────────────────── */
main.generator-section {
    position: relative;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 60%, #f1f5f9 100%);
    border-top: 1px solid rgba(148,163,184,.22);
    max-width: 100%;
    padding: 0 0 4.5rem;
}
main.generator-section::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 35%, var(--accent2) 65%, transparent 100%);
    opacity: .6;
}
.gen-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2.5rem 0;
}
@media (max-width: 680px) {
    .gen-inner { padding: 2.5rem 1.25rem 0; }
}

/* ── SECTION LEAD ──────────────────────────────────────────────── */
.section-lead {
    text-align: center;
    margin-bottom: 2.5rem;
}
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(42,100,214,.08);
    border: 1px solid rgba(42,100,214,.14);
    border-radius: 999px;
    padding: .35rem .95rem;
    margin-bottom: .9rem;
}
.section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.03em;
    line-height: 1.2;
}
.section-sub {
    font-size: .95rem;
    color: var(--muted);
    margin-top: .55rem;
    line-height: 1.55;
}

/* ── GENERATOR CARD ─────────────────────────────────────────────── */
.generator-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(148,163,184,.2);
    box-shadow: 0 2px 4px rgba(15,23,42,.04), 0 20px 50px -12px rgba(15,23,42,.1);
    overflow: hidden;
}

/* progress bar at the very top of the card */
.gen-progress {
    height: 3px;
    background: #e2e8f0;
    position: relative;
    overflow: hidden;
}
.gen-progress-bar {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    width: 0%;
    transition: width .4s ease;
    border-radius: 0 3px 3px 0;
}

.gen-body { padding: 2rem 2.5rem 2.25rem; }
@media (max-width: 680px) { .gen-body { padding: 1.5rem 1.35rem 1.75rem; } }

/* ── STEP HEADER ────────────────────────────────────────────────── */
.step-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.35rem;
}
.step-badge {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}
.step-title {
    font-weight: 700;
    font-size: .95rem;
    color: var(--navy);
    letter-spacing: -.01em;
}
.step-optional {
    margin-left: .4rem;
    font-size: .7rem;
    font-weight: 500;
    color: var(--muted);
}

/* ── FORM SECTIONS ──────────────────────────────────────────────── */
.gen-section { margin-bottom: 2rem; }
.gen-section:last-of-type { margin-bottom: 0; }

.field-hint {
    font-size: .76rem;
    color: var(--muted);
    margin-top: .45rem;
    line-height: 1.4;
}

/* ── TEXTAREA ───────────────────────────────────────────────────── */
.textarea-wrap { position: relative; }
textarea {
    width: 100%;
    min-height: 140px;
    padding: .95rem 1.1rem 2.5rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: .95rem;
    line-height: 1.55;
    font-family: inherit;
    color: var(--text);
    background: #f8fafc;
    resize: vertical;
    transition: border-color .2s, background .2s, box-shadow .2s;
}
textarea::placeholder { color: #94a3b8; }
textarea:hover:not(:focus) { border-color: #cbd5e1; background: #fff; }
textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(42,100,214,.1);
}
.char-counter {
    position: absolute;
    bottom: .7rem; right: .9rem;
    font-size: .7rem;
    color: var(--muted);
    pointer-events: none;
    transition: color .2s;
}
.char-counter.warn { color: #f59e0b; }
.char-counter.over { color: #ef4444; }

/* ── FORM ROW (2-col on wide screens) ──────────────────────────── */
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
@media (max-width: 640px) {
    .form-row-2 { grid-template-columns: 1fr; }
}

/* ── VOICE CUSTOM DROPDOWN ──────────────────────────────────────── */
#voice { display: none; }
.voice-dropdown { position: relative; }
.voice-trigger {
    display: flex;
    align-items: center;
    gap: .75rem;
    width: 100%;
    padding: .6rem .9rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    text-align: left;
    transition: border-color .2s, box-shadow .2s;
    font-family: inherit;
    font-size: .93rem;
}
.voice-trigger:hover { border-color: #cbd5e1; }
.voice-trigger.open,
.voice-trigger:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(42,100,214,.1);
}
.voice-trigger-avatar {
    width: 34px; height: 34px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #e2e8f0;
}
.voice-trigger-avatar.placeholder {
    display: flex; align-items: center; justify-content: center;
    color: var(--muted); font-size: 1rem;
}
.voice-trigger-text { flex: 1; min-width: 0; }
.voice-trigger-name { font-weight: 600; color: var(--navy); }
.voice-trigger-gender { font-size: .78rem; color: var(--muted); }
.voice-trigger-placeholder { color: #94a3b8; }
.voice-trigger-chevron {
    flex-shrink: 0; color: var(--muted); font-size: .75rem;
    transition: transform .2s;
}
.voice-trigger.open .voice-trigger-chevron { transform: rotate(180deg); }

.voice-panel {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0; right: 0;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(15,23,42,.13);
    z-index: 200;
    overflow: hidden;
    max-height: 320px;
    overflow-y: auto;
}
.voice-panel.open { display: block; }
.voice-option {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .6rem .9rem;
    cursor: pointer;
    transition: background .12s;
    border-bottom: 1px solid #f1f5f9;
}
.voice-option:last-child { border-bottom: none; }
.voice-option:hover { background: #f8fafc; }
.voice-option.selected { background: #eff6ff; }
.voice-option-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1.5px solid #e2e8f0;
}
.voice-option-name { font-weight: 600; font-size: .9rem; color: var(--navy); }
.voice-option-gender { font-size: .75rem; color: var(--muted); }
.voice-option-badge {
    margin-left: auto;
    flex-shrink: 0;
    font-size: .62rem; font-weight: 700; letter-spacing: .04em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(90deg, #f59e0b, #f97316);
    border-radius: 999px;
    padding: .2rem .5rem;
}
.voice-option.selected::after {
    content: '\2713';
    color: var(--accent);
    font-weight: 700;
    font-size: .9rem;
    margin-left: auto;
    flex-shrink: 0;
}

/* ── MUSIC SELECT + PREVIEW ─────────────────────────────────────── */
.music-select-row {
    display: flex;
    gap: .55rem;
    align-items: stretch;
}
select {
    flex: 1;
    padding: .68rem 2.4rem .68rem .9rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: .93rem;
    font-family: inherit;
    color: var(--text);
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' viewBox='0 0 24 24' stroke='%2364748b' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .65rem center;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s;
}
select:hover { border-color: #cbd5e1; }
select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(42,100,214,.1);
}
.btn-preview {
    flex-shrink: 0;
    width: 48px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    color: var(--accent);
    font-size: .95rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .15s, border-color .15s, transform .1s;
}
.btn-preview:hover:not(:disabled) { background: #eff6ff; border-color: var(--accent); transform: scale(1.04); }
.btn-preview:active:not(:disabled) { transform: scale(.97); }
.btn-preview:disabled { opacity: .38; cursor: not-allowed; }
.btn-preview.playing { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ── SECTION DIVIDER ────────────────────────────────────────────── */
.gen-divider {
    margin: 1.75rem 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(148,163,184,.3), transparent);
}

/* ── INFO BOX ───────────────────────────────────────────────────── */
.info-box {
    display: flex;
    gap: .85rem;
    align-items: flex-start;
    background: linear-gradient(135deg, #eff6ff 0%, #f5f3ff 100%);
    border: 1px solid rgba(129,140,248,.3);
    border-radius: 12px;
    padding: .95rem 1.1rem;
    margin-bottom: 1.25rem;
}
.info-box-icon {
    flex-shrink: 0;
    font-size: 1.1rem;
    line-height: 1;
    margin-top: .1rem;
}
.info-box p {
    font-size: .82rem;
    color: #1d3d8f;
    line-height: 1.55;
}

/* ── GENERATE BUTTON ────────────────────────────────────────────── */
.btn-submit {
    width: 100%;
    padding: 1.05rem 1.35rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #2a64d6 0%, #1d3d8f 100%);
    color: #fff;
    font-family: inherit;
    font-weight: 700;
    font-size: 1.02rem;
    letter-spacing: -.01em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(42,100,214,.38), 0 0 0 1px rgba(255,255,255,.1) inset;
    transition: transform .15s, box-shadow .2s, opacity .15s;
}
.btn-submit::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.12) 0%, transparent 50%);
    pointer-events: none;
}
.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(42,100,214,.45), 0 0 0 1px rgba(255,255,255,.14) inset;
}
.btn-submit:active:not(:disabled) { transform: translateY(0); }
.btn-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.btn-submit-inner {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: center; gap: .6rem;
}
.spinner {
    display: none;
    width: 18px; height: 18px;
    border: 2.5px solid rgba(255,255,255,.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .65s linear infinite;
    flex-shrink: 0;
}
.btn-submit.loading .spinner { display: block; }
.btn-submit.loading .btn-label { opacity: .8; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── LOADING STEPS ──────────────────────────────────────────────── */
.loading-steps {
    display: none;
    margin-top: 1.1rem;
    gap: .55rem;
    flex-direction: column;
}
.loading-steps.visible { display: flex; }
.loading-step {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .82rem;
    color: var(--muted);
    transition: color .3s;
}
.loading-step.active { color: var(--accent); font-weight: 600; }
.loading-step.done   { color: #16a34a; }
.step-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #e2e8f0;
    flex-shrink: 0;
    transition: background .3s;
}
.loading-step.active .step-dot {
    background: var(--accent);
    box-shadow: 0 0 0 3px rgba(42,100,214,.2);
    animation: pulse-dot 1s ease infinite;
}
.loading-step.done .step-dot { background: #16a34a; animation: none; }
@keyframes pulse-dot {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.4); }
}

/* ── ERROR ──────────────────────────────────────────────────────── */
.err {
    display: none;
    margin-top: 1rem;
    padding: .85rem 1rem .85rem .9rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-left: 3px solid #ef4444;
    border-radius: 10px;
    color: #991b1b;
    font-size: .875rem;
    line-height: 1.45;
    display: none;
    align-items: flex-start;
    gap: .6rem;
}
.err.visible { display: flex; }
.err-icon { flex-shrink: 0; font-size: 1rem; line-height: 1; margin-top: .05rem; }

/* ── RESULT ─────────────────────────────────────────────────────── */
.result {
    display: none;
    margin-top: 1.5rem;
}
.result.visible { display: block; }
/* ── CUSTOM PLAYER ──────────────────────────────────────────────── */
@keyframes waveBar {
    0%,100% { transform: scaleY(1); }
    50%      { transform: scaleY(.35); }
}
.wm-player {
    background: linear-gradient(145deg, #0c1a3e 0%, #1d3d8f 60%, #0c1a3e 100%);
    border-radius: 18px;
    padding: 1.4rem 1.6rem 1.25rem;
    box-shadow: 0 8px 40px rgba(42,100,214,.28);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.wm-player::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 80% 20%, rgba(42,100,214,.35) 0%, transparent 65%);
    pointer-events: none;
}
/* top row */
.wmp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.1rem;
    position: relative;
}
.wmp-title {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #93bbf8;
}
.wmp-ready {
    display: flex; align-items: center; gap: .35rem;
    font-size: .7rem; font-weight: 700;
    color: #34d399;
    background: rgba(52,211,153,.12);
    border: 1px solid rgba(52,211,153,.25);
    border-radius: 999px;
    padding: .22rem .7rem;
}
.wmp-ready-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #34d399;
    flex-shrink: 0;
    box-shadow: 0 0 6px #34d399;
}
/* waveform bars */
.wmp-waveform {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 48px;
    margin-bottom: 1rem;
    position: relative;
    cursor: pointer;
    user-select: none;
}
.wmp-bar {
    flex: 1;
    border-radius: 2px;
    background: rgba(165,180,252,.3);
    transition: background .2s;
    transform-origin: center;
}
.wmp-bar.played { background: rgba(165,180,252,.9); }
.wm-player.is-playing .wmp-bar {
    animation: waveBar 1.1s ease-in-out infinite;
}
/* controls row */
.wmp-controls {
    display: flex;
    align-items: center;
    gap: .9rem;
}
.wmp-play {
    width: 44px; height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #2a64d6, #1d3d8f);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(42,100,214,.5);
    transition: transform .12s, box-shadow .12s;
    padding: 0;
}
.wmp-play:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(42,100,214,.65); }
.wmp-play:active { transform: scale(.95); }
.wmp-seek-wrap {
    flex: 1;
    position: relative;
    height: 4px;
}
.wmp-seek-track {
    position: absolute; inset: 0;
    background: rgba(255,255,255,.15);
    border-radius: 99px;
    overflow: hidden;
}
.wmp-seek-fill {
    height: 100%;
    background: linear-gradient(90deg, #60a5fa, #93bbf8);
    border-radius: 99px;
    width: 0%;
    transition: width .1s linear;
    pointer-events: none;
}
.wmp-seek {
    position: absolute;
    inset: -8px 0;
    width: 100%;
    opacity: 0;
    cursor: pointer;
    margin: 0;
}
.wmp-time {
    font-size: .75rem;
    font-weight: 600;
    color: rgba(248,250,252,.78);
    white-space: nowrap;
    min-width: 80px;
    text-align: right;
    font-variant-numeric: tabular-nums;
}
/* watermark notice */
.wmp-notice {
    display: flex;
    align-items: center;
    gap: .45rem;
    margin-top: 1rem;
    padding-top: .85rem;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: .72rem;
    color: rgba(226,232,240,.78);
}
.wmp-notice-icon { flex-shrink: 0; font-size: .82rem; }
/* buy row */
.wmp-buy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: .85rem;
    padding: 1rem 1.15rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    flex-wrap: wrap;
}
.wmp-buy-info { flex: 1; min-width: 0; }
.wmp-buy-label {
    display: block;
    font-size: .82rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: .2rem;
}
.wmp-buy-sub {
    font-size: .72rem;
    color: rgba(226,232,240,.72);
}
.wmp-buy-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .7rem 1.35rem;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 4px 18px rgba(34,197,94,.35);
    transition: transform .13s, box-shadow .13s;
}
.wmp-buy-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(34,197,94,.5); }
.wmp-buy-btn:active { transform: translateY(0); }
.wmp-buy-price {
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: -.02em;
}
.wmp-buy-cta {
    font-size: .82rem;
    font-weight: 700;
    opacity: .9;
}
/* ── FOOTER ─────────────────────────────────────────────────────── */
/* ── CTA STRIP ──────────────────────────────────────────────────── */
.cta-strip {
    background: linear-gradient(135deg, #0c1a3e 0%, #1d3d8f 50%, #0c1a3e 100%);
    padding: 5rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 55% at 20% 50%, rgba(42,100,214,.3) 0%, transparent 70%),
        radial-gradient(ellipse 50% 55% at 80% 50%, rgba(42,100,214,.2) 0%, transparent 70%);
    pointer-events: none;
}
.cta-inner {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
}
.cta-tag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #e0f2fe;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(191,219,254,.38);
    border-radius: 999px;
    padding: .35rem 1rem;
    margin-bottom: 1.4rem;
}
.cta-headline {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -.04em;
    line-height: 1.15;
    margin-bottom: .75rem;
    text-shadow: 0 1px 2px rgba(0,0,0,.35);
}
.cta-headline em {
    font-style: normal;
    color: #7dd3fc;
    text-shadow: 0 1px 3px rgba(0,0,0,.4);
}
.cta-sub {
    font-size: 1.05rem;
    color: #e2e8f0;
    line-height: 1.65;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .95rem 2.4rem;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    box-shadow: 0 4px 24px rgba(42,100,214,.45);
    transition: transform .15s, box-shadow .15s;
}
.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(42,100,214,.55);
}
.cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .55rem 1.5rem;
    margin-top: 2.5rem;
}
.cta-feature {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    color: #f1f5f9;
}
.cta-feature-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #38bdf8;
    box-shadow: 0 0 0 1px rgba(255,255,255,.35);
    flex-shrink: 0;
}
.cta-footnote {
    margin-top: 1.25rem;
    font-size: .82rem;
    line-height: 1.55;
    color: #cbd5e1;
}
.cta-footnote a {
    color: #93c5fd;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(147,197,253,.55);
}
.cta-footnote a:hover {
    color: #e0f2fe;
    text-decoration-color: #e0f2fe;
}

/* ── PROSE STRIP ─────────────────────────────────────────────────── */
.prose-strip {
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 4rem 2.5rem;
}
.prose-inner {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 4rem;
    align-items: start;
}
@media (max-width: 640px) {
    .prose-inner { grid-template-columns: 1fr; gap: 2rem; }
    .cta-strip { padding: 3.5rem 1.5rem; }
}
.prose-label {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: .6rem;
}
.prose-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.025em;
    line-height: 1.3;
    margin-bottom: .75rem;
}
.prose-body {
    font-size: .92rem;
    color: #475569;
    line-height: 1.7;
}
.prose-body p { margin: 0 0 .65rem; }
.prose-body p:last-child { margin-bottom: 0; }

/* ── FAQ ────────────────────────────────────────────────────────── */
.faq-strip {
    background: var(--page-bg);
    padding: 4rem 2.5rem 5rem;
    border-top: 1px solid var(--border);
}
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 2.5rem; }
.faq-title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800; color: var(--navy);
    letter-spacing: -.03em; margin-top: .5rem;
}
.faq-grid {
    display: flex; flex-direction: column; gap: .75rem;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow .2s;
}
.faq-item[open] {
    box-shadow: 0 4px 20px rgba(42,100,214,.1);
    border-color: rgba(42,100,214,.3);
}
.faq-q {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.35rem;
    font-size: .95rem; font-weight: 700; color: var(--navy);
    cursor: pointer;
    list-style: none;
    user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
    content: '+';
    flex-shrink: 0;
    font-size: 1.2rem; font-weight: 400; color: var(--accent);
    transition: transform .2s;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
    padding: 0 1.35rem 1.1rem;
    font-size: .9rem; color: var(--muted); line-height: 1.7;
    border-top: 1px solid var(--border);
    padding-top: .85rem;
}
@media (max-width: 600px) {
    .faq-strip { padding: 3rem 1.25rem 4rem; }
}

/* ── VOICEMAIL GREETING TYPES ───────────────────────────────────── */
.types-strip {
    background: #fff;
    padding: 5rem 2.5rem;
    border-top: 1px solid var(--border);
}
.types-inner { max-width: 1100px; margin: 0 auto; }
.types-header { text-align: center; margin-bottom: 2.75rem; }
.types-title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800; color: var(--navy);
    letter-spacing: -.03em; margin-top: .4rem; margin-bottom: .6rem;
}
.types-sub { font-size: .95rem; color: var(--muted); max-width: 520px; margin: 0 auto; line-height: 1.65; }
.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.type-card {
    background: var(--page-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem 1.4rem;
    transition: box-shadow .2s, transform .2s, border-color .2s;
}
.type-card:hover {
    box-shadow: 0 6px 28px rgba(42,100,214,.1);
    border-color: rgba(42,100,214,.25);
    transform: translateY(-2px);
}
.type-icon {
    font-size: 1.75rem; line-height: 1;
    margin-bottom: .9rem;
}
.type-name {
    font-size: .97rem; font-weight: 700; color: var(--navy);
    margin-bottom: .5rem; line-height: 1.3;
}
.type-desc { font-size: .85rem; color: var(--muted); line-height: 1.65; }
@media (max-width: 860px) {
    .types-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .types-strip { padding: 3.5rem 1.25rem; }
    .types-grid { grid-template-columns: 1fr; }
}

/* ── WHY IT MATTERS ─────────────────────────────────────────────── */
.why-strip {
    background: var(--page-bg);
    padding: 5rem 2.5rem;
    border-top: 1px solid var(--border);
}
.why-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 380px;
    gap: 4rem; align-items: center;
}
.why-title {
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 800; color: var(--navy);
    letter-spacing: -.03em; line-height: 1.2;
    margin-top: .4rem; margin-bottom: 1rem;
}
.why-body {
    font-size: .93rem; color: var(--muted); line-height: 1.75;
    margin-bottom: 1.4rem;
}
.why-list {
    list-style: none; display: flex; flex-direction: column; gap: .65rem;
}
.why-list li {
    font-size: .88rem; color: var(--text); line-height: 1.5;
    padding-left: 1.4rem; position: relative;
}
.why-list li::before {
    content: '✓'; position: absolute; left: 0;
    color: var(--accent); font-weight: 700;
}
.why-stats {
    display: flex; flex-direction: column; gap: 1.1rem;
}
.why-stat {
    background: #fff; border: 1px solid var(--border);
    border-radius: 16px; padding: 1.4rem 1.5rem;
    border-left: 4px solid var(--accent);
}
.why-stat-num {
    display: block;
    font-size: 2.2rem; font-weight: 900; color: var(--navy);
    letter-spacing: -.04em; line-height: 1; margin-bottom: .35rem;
}
.why-stat-label {
    display: block;
    font-size: .8rem; color: var(--muted); line-height: 1.55;
}
@media (max-width: 900px) {
    .why-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .why-stats { flex-direction: row; flex-wrap: wrap; }
    .why-stat { flex: 1 1 calc(50% - .6rem); }
}
@media (max-width: 540px) {
    .why-strip { padding: 3.5rem 1.25rem; }
    .why-stats { flex-direction: column; }
    .why-stat { flex: none; }
}

/* ── RESPONSIVE ─────────────────────────────────────────────────── */

/* Tablet: grid collapses, right col hidden — tighten hero spacing */
@media (max-width: 860px) {
    .hero {
        padding: 3.5rem 1.5rem 4rem;
        min-height: auto;
    }
    .hero h1 { font-size: clamp(1.9rem, 6vw, 2.8rem); }
    .hero-sub { font-size: .97rem; margin-bottom: 1.5rem; }
    .hero-cta { margin-bottom: 1.1rem; }
    .hero-rating { margin-bottom: 1.5rem; }
    .logos-strip { gap: 1rem 1.5rem; margin-bottom: 1.5rem; }
    .hero-trust-row { margin-top: 1.5rem; gap: 0 1.25rem; }
}

/* Mobile: full layout overhaul */
@media (max-width: 600px) {
    .hero {
        padding: 2.5rem 1.25rem 3rem;
        min-height: auto;
    }

    /* tag pill */
    .hero-tag { font-size: .67rem; padding: .28rem .75rem; margin-bottom: .9rem; }

    /* H1 */
    .hero h1 {
        font-size: clamp(1.75rem, 8vw, 2.2rem);
        line-height: 1.15;
        margin-bottom: .85rem;
        /* prevent forced line-break looking odd at narrow widths */
        word-break: break-word;
    }
    .hero h1 br { display: none; }

    /* subheading */
    .hero-sub {
        font-size: .92rem;
        line-height: 1.6;
        margin-bottom: 1.35rem;
        max-width: 100%;
    }

    /* CTA — full width, easier tap target */
    .hero-cta {
        display: flex;
        justify-content: center;
        width: 100%;
        font-size: .82rem;
        padding: .9rem 1.25rem;
        margin-bottom: 1rem;
    }

    /* rating */
    .hero-rating { margin-bottom: 1.25rem; gap: .5rem; }
    .stars { font-size: .95rem; }
    .rating-text { font-size: .78rem; }

    /* logos — hide on very small phones */
    .logos-label { display: none; }
    .logos-strip {
        gap: .75rem 1.1rem;
        margin-bottom: 1.25rem;
    }
    .logos-strip img { height: 17px; opacity: .3; }

    /* hide feature pills and social proof on mobile */
    .hero-feature-pills { display: none; }
    .faces-wrap { display: none; }

    /* center everything in the left col */
    .hero-left {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-sub { max-width: 100%; }
    .hero-rating { justify-content: center; }
    .logos-strip { justify-content: center; }
    .logos-label { text-align: center; }

    .hero-trust-row {
        margin-top: 1.25rem;
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .hero-flags-inline {
        border-left: none;
        padding-left: 0;
        text-align: left;
    }
    /* flags — wrap pills, readable on small screens */
    .flags-label {
        font-size: .6rem;
        margin-bottom: .55rem;
        text-align: center;
    }
    .flags-groups { gap: .95rem; align-items: stretch; }
    .flags-group-title {
        margin-bottom: .4rem;
        text-align: center;
        border-bottom: none;
        padding-bottom: 0;
    }
    .flags-row {
        justify-content: center;
        gap: .35rem .4rem;
    }
    .flag-item {
        padding: .2rem;
        border-radius: 4px;
    }
    .flag-item .flag-img-wrap {
        width: 22px;
        height: 15px;
    }

    /* generator */
    .gen-inner { padding: 2rem 1rem 0; }
}

/* Very small phones */
@media (max-width: 380px) {
    .hero { padding: 2rem 1rem 2.5rem; }
    .hero h1 { font-size: 1.7rem; }
    .logos-strip { display: none; }
}

/* ── STATS BAR ───────────────────────────────────────────────────────── */
.stats-bar {
    background: #0f172a;
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.stats-bar-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.hstat {
    padding: 1.75rem 2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.1rem;
    border-right: 1px solid rgba(255,255,255,.07);
    transition: background .2s;
}
.hstat:last-child { border-right: none; }
.hstat:hover { background: rgba(255,255,255,.03); }
.hstat-num {
    font-size: 2.1rem;
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1;
    color: #fff;
    flex-shrink: 0;
    min-width: 3.8rem;
}
.hstat-text {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}
.hstat-label {
    font-size: .78rem;
    color: rgba(255,255,255,.78);
    line-height: 1.4;
}
.hstat-label a {
    color: #93c5fd;
    text-decoration: none;
    border-bottom: 1px solid rgba(147,197,253,.3);
    transition: color .15s, border-color .15s;
}
.hstat-label a:hover { color: #bfdbfe; border-color: rgba(191,219,254,.6); }
.hstat-source {
    font-size: .65rem;
    color: rgba(255,255,255,.42);
    font-style: italic;
}
@media (max-width: 860px) {
    .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
    .hstat { padding: 1.25rem 1.25rem; }
    .hstat:nth-child(2) { border-right: none; }
}
@media (max-width: 480px) {
    .stats-bar { display: none; }
}

/* ── VOICE PREVIEW SECTION ──────────────────────────────────────── */
.voices-strip {
    background: #f8fafc;
    padding: 5rem 1.5rem;
}
.voices-inner {
    max-width: 1080px;
    margin: 0 auto;
}
.voices-header {
    text-align: center;
    margin-bottom: 3rem;
}
.voices-title {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--navy);
    margin: .35rem 0 .75rem;
    letter-spacing: -.02em;
}
.voices-sub {
    color: var(--muted);
    font-size: 1rem;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.65;
}

/* grid */
.vc-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}
@media (max-width: 900px) { .vc-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .vc-grid { grid-template-columns: repeat(2, 1fr); gap: .85rem; } }

/* card */
.vc {
    background: #fff;
    border-radius: 18px;
    border: 1.5px solid #e8edf4;
    padding: 1.4rem 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .75rem;
    transition: box-shadow .2s, transform .2s, border-color .2s;
    cursor: pointer;
}
.vc:hover {
    box-shadow: 0 8px 32px rgba(15,23,42,.1);
    transform: translateY(-3px);
    border-color: #c7d7f0;
}
.vc.vc-playing {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(42,100,214,.12), 0 8px 32px rgba(42,100,214,.15);
}

/* avatar ring */
.vc-avatar-wrap {
    position: relative;
    width: 88px;
    height: 88px;
    flex-shrink: 0;
}
.vc-ring {
    position: absolute;
    inset: 0;
    width: 88px;
    height: 88px;
    transform: rotate(-90deg);
    pointer-events: none;
}
.vc-ring-track {
    fill: none;
    stroke: #e2e8f0;
    stroke-width: 4;
}
.vc-ring-fill {
    fill: none;
    stroke: var(--accent);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 251.3;
    stroke-dashoffset: 251.3;
    transition: stroke-dashoffset .1s linear;
}
.vc-img {
    position: absolute;
    inset: 7px;
    width: calc(100% - 14px);
    height: calc(100% - 14px);
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
}
.vc-play-btn {
    position: absolute;
    inset: 7px;
    width: calc(100% - 14px);
    height: calc(100% - 14px);
    border-radius: 50%;
    border: none;
    background: rgba(15,23,42,.45);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity .18s;
    color: #fff;
}
.vc:hover .vc-play-btn,
.vc.vc-playing .vc-play-btn { opacity: 1; }
.vc-play-btn svg { width: 26px; height: 26px; }

/* body */
.vc-name {
    font-weight: 700;
    font-size: .95rem;
    color: var(--navy);
    letter-spacing: -.01em;
}
.vc-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    flex-wrap: wrap;
}
.vc-gender {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: .18rem .55rem;
}
.vc-gender-female { background: #fce7f3; color: #be185d; }
.vc-gender-male   { background: #dbeafe; color: #1d4ed8; }
.vc-popular {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    background: linear-gradient(90deg,#f59e0b,#f97316);
    color: #fff;
    border-radius: 999px;
    padding: .18rem .5rem;
}
.vc-use-btn {
    background: none;
    border: 1.5px solid #c7d7f0;
    border-radius: 8px;
    color: var(--accent);
    font-size: .78rem;
    font-weight: 600;
    padding: .38rem .75rem;
    cursor: pointer;
    transition: background .15s, border-color .15s, color .15s;
    font-family: inherit;
    width: 100%;
}
.vc-use-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

@media (max-width: 560px) {
    .voices-strip { padding: 3rem 1rem; }
    .vc { padding: 1.1rem .7rem .9rem; }
    .vc-avatar-wrap { width: 74px; height: 74px; }
    .vc-ring { width: 74px; height: 74px; }
}

/* ── HOW IT WORKS ─────────────────────── */
.hiw-strip {
    padding: 5rem 2rem;
    background: #fff;
    border-top: 1px solid var(--border);
}
.hiw-inner { max-width: 1100px; margin: 0 auto; }
.hiw-title {
    font-size: 2rem; font-weight: 800; text-align: center; margin: .5rem 0;
    color: var(--navy);
}
.hiw-sub {
    text-align: center; color: var(--muted); max-width: 600px;
    margin: .5rem auto 2.5rem;
}
.hiw-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.hiw-step {
    text-align: center; padding: 2rem 1.5rem;
    background: var(--page-bg); border-radius: 16px;
    border: 1px solid var(--border);
    transition: box-shadow .2s, transform .2s;
}
.hiw-step:hover {
    box-shadow: 0 6px 28px rgba(42,100,214,.1);
    transform: translateY(-2px);
}
.hiw-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff;
    font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem;
}
.hiw-step h3 { font-size: 1.15rem; margin: 0 0 .6rem; color: var(--navy); }
.hiw-step p { color: var(--muted); font-size: .95rem; line-height: 1.5; }
@media (max-width: 700px) {
    .hiw-grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .hiw-strip { padding: 3.5rem 1.25rem; }
}

/* ── TESTIMONIALS ─────────────────────── */
.reviews-strip {
    padding: 5rem 2rem;
    background: var(--page-bg);
    border-top: 1px solid var(--border);
}
.reviews-inner { max-width: 1100px; margin: 0 auto; }
.reviews-title {
    font-size: 2rem; font-weight: 800; text-align: center; margin: .5rem 0;
    color: var(--navy);
}
.reviews-rating-summary {
    text-align: center; margin: .75rem 0 2.5rem;
    color: var(--muted); font-size: 1rem;
}
.reviews-rating-summary .stars { color: var(--gold); font-size: 1.3rem; margin-right: .5rem; }
.reviews-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem;
}
.review-card {
    padding: 1.8rem; border-radius: 14px;
    background: #fff;
    border: 1px solid var(--border);
    transition: box-shadow .2s, transform .2s;
}
.review-card:hover {
    box-shadow: 0 6px 28px rgba(42,100,214,.1);
    transform: translateY(-2px);
}
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: .75rem; }
.review-text {
    font-style: italic; color: #475569;
    line-height: 1.6; margin: 0 0 1rem; font-size: .95rem;
}
.review-author { color: var(--muted); font-size: .85rem; font-style: normal; font-weight: 600; }

/* ── GREETING EXAMPLES ────────────────── */
.examples-strip {
    padding: 5rem 2rem;
    background: #fff;
    border-top: 1px solid var(--border);
}
.examples-inner { max-width: 1100px; margin: 0 auto; }
.examples-title {
    font-size: 2rem; font-weight: 800; text-align: center; margin: .5rem 0;
    color: var(--navy);
}
.examples-sub {
    text-align: center; color: var(--muted); max-width: 600px;
    margin: .5rem auto 2.5rem;
}
.examples-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem;
}
.example-card {
    padding: 1.8rem; border-radius: 14px;
    background: var(--page-bg);
    border: 1px solid var(--border);
}
.example-card h3 {
    font-size: 1.05rem; margin: 0 0 .8rem; color: var(--accent);
}
.example-script {
    font-size: .92rem; color: #475569;
    line-height: 1.65; padding: 1rem 1.2rem;
    background: #fff; border-radius: 10px;
    border: 1px dashed rgba(148,163,184,.3);
}
@media (max-width: 600px) {
    .examples-strip { padding: 3.5rem 1.25rem; }
}

/* ── MINI PRICING ─────────────────────── */
.pricing-strip {
    padding: 5rem 2rem;
    background: var(--page-bg);
    border-top: 1px solid var(--border);
}
.pricing-inner { max-width: 900px; margin: 0 auto; }
.pricing-title {
    font-size: 2rem; font-weight: 800; text-align: center; margin: .5rem 0;
    color: var(--navy);
}
.pricing-sub {
    text-align: center; color: var(--muted); max-width: 520px;
    margin: .5rem auto 2.5rem;
}
.pricing-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
}
.pricing-card {
    position: relative; padding: 2.5rem 2rem; border-radius: 16px;
    background: #fff;
    border: 1px solid var(--border);
    text-align: center;
    transition: box-shadow .2s, transform .2s;
}
.pricing-card:hover {
    box-shadow: 0 6px 28px rgba(42,100,214,.1);
    transform: translateY(-2px);
}
.pricing-card-popular {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(42,100,214,.12);
}
.pricing-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; font-size: .75rem;
    padding: .3rem .9rem; border-radius: 20px; font-weight: 600;
    text-transform: uppercase; letter-spacing: .03em;
}
.pricing-card h3 { font-size: 1.2rem; margin: 0 0 .5rem; color: var(--navy); }
.pricing-price {
    font-size: 3.5rem; font-weight: 800; line-height: 1;
    margin: .5rem 0 .25rem; color: var(--navy);
}
.pricing-currency { font-size: 1.8rem; vertical-align: top; }
.pricing-period { color: var(--muted); font-size: .85rem; margin: 0 0 1.5rem; }
.pricing-features {
    list-style: none; padding: 0; margin: 0 0 1.5rem;
    text-align: left; font-size: .9rem;
}
.pricing-features li {
    padding: .45rem 0; border-bottom: 1px solid var(--border);
    color: var(--text);
}
.pricing-features li::before { content: "\2713  "; color: var(--accent); font-weight: 700; }
.pricing-cta {
    display: inline-block; padding: .7rem 2rem; border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; text-decoration: none;
    font-weight: 600; font-size: .95rem; transition: transform .15s, box-shadow .15s;
    box-shadow: 0 4px 18px rgba(42,100,214,.35);
}
.pricing-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(42,100,214,.45); }
.pricing-footer-note { text-align: center; margin-top: 2rem; font-size: .9rem; }
.pricing-footer-note a { color: var(--accent); text-decoration: none; font-weight: 600; }
@media (max-width: 600px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-strip { padding: 3.5rem 1.25rem; }
}

/* ── FOOTER ───────────────────────────── */
.site-footer {
    background: #0c1a3e; color: #cbd5e1;
    padding: 3rem 2rem 0;
}
.footer-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem;
}
.footer-brand {
    font-size: 1.2rem; font-weight: 700; margin: 0 0 .6rem; color: #fff;
}
.footer-brand span { color: #93c5fd; }
.footer-desc { color: #94a3b8; font-size: .87rem; line-height: 1.6; margin: 0 0 .8rem; }
.footer-updated { color: #94a3b8; font-size: .78rem; opacity: .7; }
.footer-col h4 {
    font-size: .85rem; text-transform: uppercase; letter-spacing: .05em;
    color: rgba(255,255,255,.5); margin: 0 0 .8rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: .3rem 0; font-size: .88rem; color: #94a3b8; }
.footer-col a {
    color: #cbd5e1; text-decoration: none; transition: color .15s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
    max-width: 1100px; margin: 2.5rem auto 0; padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,.1);
    text-align: center; color: #94a3b8; font-size: .82rem;
}
@media (max-width: 768px) {
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
    .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
}
