/* ============================================================
   Voxx2 design system — Style 3: Clean & Editorial
   extracted from storyboard/storyboard-03-clean-editorial.png
   Lots of white space, thin type, hairline rules, minimal.
   One token set + component library every voxx2 page links.
   ============================================================ */

:root {
  /* Palette — editorial: white paper, cool hairlines, restrained blue */
  --bg-warm:      #FFFFFF;   /* page / hero — pure white paper */
  --bg-warm-2:    #FAFAFA;   /* faint grey alt sections */
  --bg-tint:      #F6F8FB;   /* whisper-cool band (Call Summary / CTA) */
  --card:         #FFFFFF;
  --ink:          #111827;   /* headings — near-black */
  --ink-soft:     #4B5563;   /* body */
  --ink-mute:     #9CA3AF;   /* captions / meta */
  --brand:        #2563EB;   /* Voxx blue — accent only */
  --brand-strong: #1D4ED8;
  --brand-ink:    #1E3A8A;   /* wordmark / summary title */
  --success:      #22C55E;
  --star:         #F59E0B;
  --line:         #E5E7EB;   /* hairline */
  --line-cool:    #E5E7EB;

  --radius-card: 6px;
  --radius-btn:  4px;
  --radius-pill: 999px;
  --shadow-sm:   0 1px 2px rgba(17,24,39,.04);
  --shadow-md:   0 8px 28px rgba(17,24,39,.06);
  --wrap:        1080px;
  --font:        'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink-soft);
  background: var(--bg-warm);
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { color: var(--ink); line-height: 1.2; margin: 0; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 300; letter-spacing: -.6px; }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); font-weight: 300; letter-spacing: -.3px; }
h3 { font-size: 1.1rem; font-weight: 600; }
p  { margin: 0 0 1rem; }

.wrap    { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }
.center  { text-align: center; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; font-family: var(--font); font-weight: 500; font-size: .98rem;
  padding: .72rem 1.6rem; border-radius: var(--radius-btn);
  cursor: pointer; border: 1px solid transparent; transition: .15s ease;
  white-space: nowrap; letter-spacing: .2px;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-strong); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.wordmark { font-weight: 700; font-size: 1.55rem; color: var(--brand-ink); letter-spacing: -.5px; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-weight: 400; color: var(--ink-soft); font-size: .95rem; }
.nav-links a:hover { color: var(--brand); }
.nav-links a.btn-primary { color: #fff; }
.nav-links a.btn-primary:hover { color: #fff; }
.nav-links a.btn-ghost { color: var(--ink); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; color: var(--ink); cursor: pointer; }

/* ── Hero ────────────────────────────────────────────────── */
.hero { background: var(--bg-warm); border-bottom: 1px solid var(--line); }
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding-top: 84px; padding-bottom: 84px; }
.hero-sub { font-size: 1.15rem; color: var(--ink-soft); max-width: 30rem; margin: 1.2rem 0 1.9rem; font-weight: 300; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-art { position: relative; }
.hero-art img { width: 100%; border-radius: var(--radius-card); box-shadow: var(--shadow-md); }
.wave { height: 24px; margin-top: 22px; opacity: .8; }

/* ── Cards / industry grid ───────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.icard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-card); overflow: hidden; transition: .18s ease; }
.icard:hover { border-color: var(--brand); box-shadow: var(--shadow-md); }
.icard img { width: 100%; height: 168px; object-fit: cover; object-position: center 28%; }
.icard .label { padding: 18px; text-align: center; font-weight: 500; color: var(--ink); }

/* ── Call Summary band ───────────────────────────────────── */
.band-tint { background: var(--bg-tint); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.summary {
  max-width: 520px; margin: 0 auto; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm); padding: 26px 28px;
}
.summary h3 { color: var(--brand-ink); font-size: 1.05rem; font-weight: 600; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.summary p { color: var(--ink); }
.summary-row { display: flex; align-items: center; gap: 12px; margin: 14px 0; }
.pill { display: inline-flex; align-items: center; gap: 6px; background: var(--bg-tint); color: var(--brand); font-size: .72rem; font-weight: 600; letter-spacing: .6px; text-transform: uppercase; padding: 4px 11px; border-radius: 4px; white-space: nowrap; }
.caller { display: flex; align-items: center; gap: 10px; color: var(--ink-mute); font-size: .92rem; margin-top: 12px; }
.avatar { width: 24px; height: 24px; border-radius: 50%; background: #E5E7EB; display: inline-block; }

/* ── How it works ────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; position: relative; }
.steps::before { content: ""; position: absolute; top: 26px; left: 16%; right: 16%; height: 1px; background: var(--line); z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; }
.step .num { width: 52px; height: 52px; margin: 0 auto 16px; border-radius: 50%; background: #fff; color: var(--brand); font-weight: 400; font-size: 1.3rem; display: flex; align-items: center; justify-content: center; border: 1px solid var(--brand); }
.step .t { font-weight: 600; color: var(--ink); }

/* ── Testimonial ─────────────────────────────────────────── */
.testi { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: center; max-width: 820px; margin: 0 auto; }
.testi img { width: 220px; height: 210px; object-fit: cover; object-position: center 20%; border-radius: var(--radius-card); border: 1px solid var(--line); }
.testi .quote { font-size: 1.4rem; color: var(--ink); font-weight: 300; line-height: 1.55; }
.testi .quote b { font-weight: 600; }
.stars { color: var(--star); font-size: 1.2rem; letter-spacing: 3px; margin-top: 16px; }

/* ── Pricing strip ───────────────────────────────────────── */
.pricing { text-align: center; }
.pricing .line { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 300; color: var(--ink); margin-bottom: 24px; }
.pricing .line span { color: var(--brand); }

/* ── Footer ──────────────────────────────────────────────── */
.foot { border-top: 1px solid var(--line); background: var(--bg-warm-2); }
.foot .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 34px 24px; flex-wrap: wrap; }
.foot-links { display: flex; gap: 30px; }
.foot-links a { color: var(--ink-soft); font-weight: 400; }
.foot-links a:hover { color: var(--brand); }
.foot .phone { color: var(--ink); font-weight: 500; }

/* ── Responsive (MOB-1) ──────────────────────────────────── */
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 34px; }
  .hero-art { order: -1; }
  .grid-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 34px; }
  .steps::before { display: none; }
  .testi { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; background: #fff; border-bottom: 1px solid var(--line); padding: 16px 24px; gap: 16px; }
  .nav-toggle { display: block; }
  .section { padding: 64px 0; }
}

/* ============================================================
   Page components (Solutions, How, Pricing, About, Contact,
   FAQ, Industry, Products, Roles) — same token set as above.
   ============================================================ */

/* ── Sub-page hero ───────────────────────────────────────── */
.subhero { background: var(--bg-warm); border-bottom: 1px solid var(--line); text-align: center; }
.subhero .wrap { padding: 84px 24px 72px; }
.subhero .eyebrow { color: var(--brand); font-weight: 600; font-size: .8rem; letter-spacing: 1.4px; text-transform: uppercase; margin-bottom: 16px; }
.subhero h1 { font-size: clamp(1.9rem,4.4vw,3rem); }
.subhero p { font-size: 1.12rem; color: var(--ink-soft); max-width: 42rem; margin: 1.1rem auto 0; font-weight: 300; }
.subhero .hero-cta { justify-content: center; margin-top: 30px; }
.subhero .hero-sample { margin-top: 34px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.subhero .hero-sample .hero-sample-label { color: var(--brand); font-weight: 600; font-size: .8rem; letter-spacing: 1.4px; text-transform: uppercase; }
.subhero .hero-sample audio { width: 100%; max-width: 440px; }

/* ── Prose blocks ────────────────────────────────────────── */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { margin: 40px 0 14px; }
.prose h3 { font-size: 1.1rem; margin: 26px 0 8px; }
.prose p  { color: var(--ink-soft); }

/* ── Feature grids (pain/solution/product cards) ─────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 48px; }
.fcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-card); padding: 30px 28px; transition: .18s ease; text-align: left; }
.fcard:hover { border-color: var(--brand); box-shadow: var(--shadow-md); }
.fcard .ico { width: 40px; height: 40px; border-radius: 6px; background: var(--bg-tint); color: var(--brand); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; font-weight: 600; margin-bottom: 16px; }
.fcard h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.fcard p { color: var(--ink-soft); font-size: .97rem; margin: 0; }

/* ── Solutions grid (linked industry cards) ──────────────── */
.sol-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 48px; text-align: left; }
.sol-card { display: block; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-card); padding: 26px; transition: .18s ease; }
.sol-card:hover { border-color: var(--brand); box-shadow: var(--shadow-md); }
.sol-card h3 { font-size: 1.05rem; font-weight: 600; margin: 0; color: var(--ink); }
.sol-card p { font-size: .93rem; color: var(--ink-soft); margin: 0 0 14px; }
.sol-card .sol-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.sol-ico { flex: 0 0 38px; width: 38px; height: 38px; border-radius: 8px; background: var(--bg-tint); color: var(--brand); display: flex; align-items: center; justify-content: center; }
.sol-ico svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.sol-benefits { list-style: none; padding: 0; margin: 0 0 16px; }
.sol-benefits li { position: relative; padding: 5px 0 5px 18px; font-size: .92rem; color: var(--ink-soft); }
.sol-benefits li::before { content: ""; position: absolute; left: 0; top: 12px; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); opacity: .55; }
.sol-card .go { color: var(--brand); font-weight: 500; font-size: .88rem; letter-spacing: .3px; }

/* ── Pricing card ────────────────────────────────────────── */
.price-wrap { display: flex; justify-content: center; margin-top: 52px; }
.price-card { background: var(--card); border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow-sm); padding: 44px 44px; max-width: 420px; width: 100%; text-align: center; }
.price-card .plan { font-weight: 600; color: var(--brand); letter-spacing: 1.2px; text-transform: uppercase; font-size: .78rem; }
.price-card .amt { font-size: 3.4rem; font-weight: 300; color: var(--ink); margin: 10px 0 2px; letter-spacing: -1.5px; }
.price-card .amt span { font-size: 1rem; font-weight: 400; color: var(--ink-mute); }
.price-card .terms { color: var(--ink-mute); margin-bottom: 26px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.plan-feats { list-style: none; padding: 0; margin: 0 0 30px; text-align: left; }
.plan-feats li { padding: 10px 0; color: var(--ink-soft); display: flex; gap: 10px; align-items: flex-start; }
.plan-feats li::before { content: "\2713"; color: var(--brand); font-weight: 700; }
.price-card .btn { width: 100%; }

/* ── FAQ accordion ───────────────────────────────────────── */
.faq { max-width: 720px; margin: 40px auto 0; }
.faq details { border-bottom: 1px solid var(--line); padding: 4px 4px; }
.faq summary { cursor: pointer; font-weight: 500; color: var(--ink); padding: 20px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brand); font-weight: 400; font-size: 1.4rem; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { color: var(--ink-soft); margin: 0 0 20px; }

/* ── Contact / forms ─────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 52px; align-items: start; }
.info-row { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.info-row .k { font-weight: 600; color: var(--brand); font-size: .76rem; letter-spacing: 1.2px; text-transform: uppercase; }
.info-row .v { color: var(--ink); font-size: 1.05rem; margin-top: 4px; }
.info-row .s { color: var(--ink-mute); font-size: .9rem; }
.vform { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-card); box-shadow: var(--shadow-sm); padding: 32px; }
.vform label { display: block; font-weight: 600; color: var(--ink-mute); font-size: .74rem; letter-spacing: 1px; text-transform: uppercase; margin: 18px 0 6px; }
.vform label:first-child { margin-top: 0; }
.vform input, .vform select, .vform textarea { width: 100%; font-family: var(--font); font-size: 1rem; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-btn); padding: .72rem .85rem; }
.vform input:focus, .vform select:focus, .vform textarea:focus { outline: none; border-color: var(--brand); }
.vform textarea { min-height: 120px; resize: vertical; }
.vform .btn { width: 100%; margin-top: 22px; }
.form-note { font-size: .85rem; color: var(--ink-mute); margin-top: 12px; text-align: center; }

/* ── CTA band ────────────────────────────────────────────── */
.cta-band { background: var(--bg-tint); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { color: var(--ink-soft); max-width: 38rem; margin: 0 auto 26px; font-weight: 300; }

/* ── Stat row ────────────────────────────────────────────── */
.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.stat { text-align: center; }
.stat .n { font-size: 2.6rem; font-weight: 300; color: var(--brand); letter-spacing: -1.2px; }
.stat .l { color: var(--ink-soft); font-size: .96rem; margin-top: 6px; }

@media (max-width: 860px) {
  .grid-2, .sol-grid, .stat-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 34px; }
}
