/* ===========================================================
   NetStreamers - shared design system
   =========================================================== */

:root {
  --navy: #0b1220;
  --navy-2: #141e38;
  --navy-3: #1b2a4e;
  --ink: #10141f;
  --ink-soft: #5b6478;
  --ink-dim: #8b93a5;
  --bg: #ffffff;
  --bg-soft: #f3f5fb;
  --border: #e3e7f2;

  --blue: #3b5bff;
  --blue-deep: #233fd1;
  --blue-tint: #eaeeff;
  --mint: #16c79a;
  --mint-dark: #0fa080;
  --mint-tint: #e3fbf3;
  --amber: #ffb020;
  --amber-tint: #fff4e0;
  --rose: #ff5c7a;
  --rose-tint: #ffe8ed;
  --teal: #0ea5c7;
  --teal-tint: #e3f6fb;

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 8px 20px rgba(11, 18, 32, 0.08);
  --shadow: 0 24px 48px rgba(11, 18, 32, 0.14);
  --shadow-lg: 0 32px 70px rgba(11, 18, 32, 0.22);

  --wrap: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Sora', system-ui, sans-serif; font-weight: 700; color: var(--ink); line-height: 1.15; letter-spacing: -0.01em; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.95rem;
  padding: 13px 24px; border-radius: 999px; border: none; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 14px 28px rgba(59, 91, 255, 0.32); }
.btn-primary:hover { background: var(--blue-deep); transform: translateY(-1px); }
.btn-ghost-light { background: rgba(255, 255, 255, 0.1); color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.35); }
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.18); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-white { background: #fff; color: var(--blue-deep); }
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 14px 28px rgba(0,0,0,0.18); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue);
  background: var(--blue-tint); padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.eyebrow.mint { color: var(--mint-dark); background: var(--mint-tint); }
.eyebrow.amber { color: #a35c00; background: var(--amber-tint); }
.eyebrow.rose { color: #c22850; background: var(--rose-tint); }
.eyebrow.teal { color: #0b7691; background: var(--teal-tint); }
.eyebrow.on-dark { color: #bcd0ff; background: rgba(255, 255, 255, 0.08); }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ============ HEADER / MEGA MENU ============ */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 0 28px;
  height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 28px;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.28rem; color: #fff; }
.brand-mark {
  width: 36px; height: 36px; border-radius: 11px;
  background:
    radial-gradient(circle at 28% 22%, rgba(255,255,255,0.5), transparent 45%),
    linear-gradient(135deg, var(--blue) 0%, #6a4cff 55%, var(--mint) 100%);
  box-shadow: 0 6px 16px rgba(59,91,255,0.35), inset 0 1px 1px rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.brand-mark svg { width: 19px; height: 19px; }

.main-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 6px; padding: 12px 16px;
  font-weight: 600; font-size: 0.94rem; color: rgba(255, 255, 255, 0.82);
  border-radius: 10px; background: none; border: none; cursor: pointer; font-family: 'Manrope', sans-serif;
}
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255, 255, 255, 0.07); }
.nav-link svg { width: 13px; height: 13px; transition: transform 0.15s ease; }
.nav-item.mega-open .nav-link svg { transform: rotate(180deg); }

.mega-panel {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
  width: 640px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 26px; display: none; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.nav-item.mega-open .mega-panel { display: grid; }
.mega-col h5 { font-family: 'Manrope', sans-serif; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 12px; }
.mega-col a { display: block; padding: 8px 0; border-radius: 8px; }
.mega-col a .mega-link-title { display: block; font-weight: 700; color: var(--ink); font-size: 0.92rem; }
.mega-col a .mega-link-desc { display: block; font-size: 0.78rem; color: var(--ink-soft); margin-top: 2px; }
.mega-col a:hover .mega-link-title { color: var(--blue); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-actions .nav-toggle { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 6px; }
.header-actions .nav-toggle svg { width: 24px; height: 24px; }

.main-nav.mobile-open {
  display: flex; position: fixed; inset: 74px 0 0 0; background: var(--navy);
  flex-direction: column; align-items: stretch; padding: 18px; overflow-y: auto; z-index: 190;
}
.main-nav.mobile-open .mega-panel { position: static; width: 100%; transform: none; box-shadow: none; margin-top: 8px; grid-template-columns: 1fr; }
.main-nav.mobile-open .nav-item.mega-open .mega-panel { display: grid; }

.mobile-login-link { display: none; }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-actions .nav-toggle { display: block; }
  .mobile-login-link { display: block; }
}
@media (max-width: 640px) {
  .header-actions > .btn-ghost-light { display: none; }
}

/* ============ ARTIST LOGIN MODAL ============ */
.login-modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(11, 18, 32, 0.72); backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity 0.2s ease;
}
.login-modal-overlay.open { opacity: 1; pointer-events: auto; }
.login-modal {
  background: #fff; border-radius: var(--radius-lg); padding: 38px;
  max-width: 420px; width: 100%; box-shadow: var(--shadow-lg);
  position: relative; transform: translateY(10px); transition: transform 0.2s ease;
}
.login-modal-overlay.open .login-modal { transform: translateY(0); }
.login-modal-close {
  position: absolute; top: 16px; right: 16px; width: 30px; height: 30px; border-radius: 50%;
  background: var(--bg-soft); border: none; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink-dim);
}
.login-modal-close svg { width: 14px; height: 14px; }
.login-modal-close:hover { background: var(--border); color: var(--ink); }
.login-modal-icon {
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(circle at 28% 22%, rgba(255,255,255,0.5), transparent 45%),
    linear-gradient(135deg, var(--blue) 0%, #6a4cff 55%, var(--mint) 100%);
  box-shadow: 0 6px 16px rgba(59,91,255,0.32);
  margin-bottom: 20px;
}
.login-modal-icon svg { width: 26px; height: 26px; }
.login-modal h3 { font-size: 1.28rem; margin-bottom: 10px; }
.login-modal p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 26px; }
.btn-block-group { display: flex; flex-direction: column; gap: 10px; }

/* ============ HERO ============ */
.hero {
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(59, 91, 255, 0.35), transparent 60%),
    radial-gradient(700px 380px at 5% 10%, rgba(22, 199, 154, 0.22), transparent 55%),
    var(--navy);
  color: #fff; padding: 92px 0 0; position: relative; overflow: hidden;
}
.hero-inner { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; text-align: center; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); color: #fff; max-width: 780px; margin: 0 auto 22px; }
.hero h1 .accent { color: var(--mint); }
.hero .lead { font-size: 1.14rem; color: rgba(255, 255, 255, 0.72); max-width: 580px; margin: 0 auto 34px; }
.hero-ctas { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 56px; flex-wrap: wrap; }

/* DSP marquee (original badge artwork; platforms referenced by name only) */
.dsp-marquee { border-top: 1px solid rgba(255, 255, 255, 0.09); padding: 28px 0; overflow: hidden; }
.dsp-marquee .marquee-track { display: flex; gap: 52px; align-items: center; width: max-content; animation: marquee 30s linear infinite; }
.dsp-marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.dsp-badge { display: flex; align-items: center; gap: 11px; color: rgba(255, 255, 255, 0.68); font-weight: 700; font-size: 0.96rem; font-family: 'Manrope', sans-serif; white-space: nowrap; }
.dsp-badge .dsp-mark {
  width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}
.dsp-badge .dsp-mark svg { width: 19px; height: 19px; }

/* stat bar */
.stat-bar { background: var(--navy-2); border-top: 1px solid rgba(255, 255, 255, 0.08); }
.stat-bar .wrap { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat-item { padding: 30px 24px; text-align: center; border-right: 1px solid rgba(255, 255, 255, 0.08); }
.stat-item:last-child { border-right: none; }
.stat-item .num { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.9rem; color: #fff; }
.stat-item .num .unit { color: var(--mint); }
.stat-item .label { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); margin-top: 4px; }
@media (max-width: 700px) {
  .stat-bar .wrap { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .stat-item:last-child { border-bottom: none; }
}

/* ============ PAGE BANNER (sub-pages) ============ */
.page-banner {
  background:
    radial-gradient(800px 380px at 90% -20%, rgba(59, 91, 255, 0.32), transparent 60%),
    radial-gradient(600px 320px at 0% 100%, rgba(22, 199, 154, 0.18), transparent 55%),
    var(--navy);
  color: #fff; padding: 56px 0 70px;
}
.page-banner .breadcrumb { font-size: 0.82rem; color: rgba(255, 255, 255, 0.5); margin-bottom: 18px; }
.page-banner .breadcrumb a { color: rgba(255, 255, 255, 0.75); }
.page-banner .breadcrumb a:hover { color: #fff; }
.page-banner h1 { color: #fff; font-size: clamp(2rem, 4.2vw, 2.9rem); max-width: 700px; margin-bottom: 16px; }
.page-banner .lead { color: rgba(255, 255, 255, 0.72); max-width: 560px; font-size: 1.05rem; }

/* Photo-style banner variant: an illustrated scene behind the banner text,
   used where a page deserves more energy than the plain gradient banner. */
.page-banner.banner-photo {
  background-color: var(--navy);
  background-image:
    linear-gradient(100deg, rgba(11,18,32,0.88) 0%, rgba(11,18,32,0.55) 45%, rgba(11,18,32,0.3) 100%),
    linear-gradient(0deg, rgba(11,18,32,0.5), rgba(11,18,32,0.5)),
    var(--banner-photo);
  background-size: cover;
  background-position: center;
  padding: 76px 0 96px;
}
.page-banner.banner-photo h1,
.page-banner.banner-photo .lead { text-shadow: 0 2px 20px rgba(0,0,0,0.45); }

/* ============ SECTION HEADS ============ */
.section { padding: 88px 0; }
.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head.left { margin: 0 0 40px; text-align: left; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 1.02rem; }
.section-head.on-dark h2 { color: #fff; }
.section-head.on-dark p { color: rgba(255, 255, 255, 0.68); }

/* ============ FEATURE LEDGER (numbered rows) ============ */
.ledger { border-top: 1px solid var(--border); }
.ledger-row {
  display: grid; grid-template-columns: 110px 1fr 1.3fr; gap: 32px; align-items: center;
  padding: 34px 0; border-bottom: 1px solid var(--border);
}
.ledger-row:nth-child(even) { background: var(--bg-soft); margin: 0 -28px; padding-left: 28px; padding-right: 28px; border-radius: 4px; }
.ledger-num { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 2.6rem; color: var(--border); line-height: 1; }
.ledger-title { display: flex; align-items: center; gap: 14px; }
.ledger-icon { width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.ledger-icon svg { width: 22px; height: 22px; }
.ledger-icon.c-blue { background: var(--blue-tint); color: var(--blue); }
.ledger-icon.c-mint { background: var(--mint-tint); color: var(--mint-dark); }
.ledger-icon.c-amber { background: var(--amber-tint); color: #a35c00; }
.ledger-icon.c-rose { background: var(--rose-tint); color: #c22850; }
.ledger-icon.c-teal { background: var(--teal-tint); color: #0b7691; }
.ledger-title h3 { font-size: 1.14rem; }
.ledger-desc { color: var(--ink-soft); font-size: 0.96rem; }
@media (max-width: 760px) {
  .ledger-row { grid-template-columns: 60px 1fr; }
  .ledger-desc { grid-column: 1 / -1; }
}

/* ============ DARK STAT BAND (Boost, etc.) ============ */
.boost-band { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-3) 100%); color: #fff; padding: 84px 0; }
.boost-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 46px; }
.boost-stat { text-align: center; padding: 26px 18px; border-radius: var(--radius); background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.08); }
.boost-stat .stat-icon { width: 40px; height: 40px; border-radius: 10px; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; }
.boost-stat .stat-icon svg { width: 20px; height: 20px; }
.boost-stat .num { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 2.4rem; background: linear-gradient(90deg, #fff, var(--mint)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.boost-stat .label { color: rgba(255, 255, 255, 0.66); font-size: 0.9rem; margin-top: 6px; }
@media (max-width: 760px) { .boost-stats { grid-template-columns: 1fr; } }

/* ============ HORIZONTAL STEPS ROW ============ */
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 10px; }
.steps-row::before { content: ""; position: absolute; top: 26px; left: 6%; right: 6%; height: 2px; background: var(--border); z-index: 0; }
.step-item { position: relative; z-index: 1; padding: 0 16px; text-align: center; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%; background: #fff; border: 2px solid var(--blue);
  color: var(--blue); font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.step-item h4 { font-size: 1.02rem; margin-bottom: 8px; }
.step-item p { font-size: 0.88rem; color: var(--ink-soft); }
@media (max-width: 800px) {
  .steps-row { grid-template-columns: 1fr; gap: 30px; }
  .steps-row::before { display: none; }
}

/* ============ SPLIT (copy + visual) ============ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse .split-visual { order: 2; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split.reverse .split-visual { order: 0; } }
.split-copy h2 { font-size: clamp(1.6rem, 3.2vw, 2.1rem); margin-bottom: 16px; }
.split-copy p { color: var(--ink-soft); margin-bottom: 22px; }
.split-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.split-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: var(--ink); }
.split-list svg { width: 18px; height: 18px; color: var(--mint); flex-shrink: 0; margin-top: 2px; }

/* dashboard-style mockup panels */
.dash-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--border); overflow: hidden; }
.dash-topbar { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--border); }
.dash-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border); }
.dash-title { margin-left: 8px; font-size: 0.82rem; font-weight: 700; color: var(--ink-soft); }
.dash-body { padding: 22px; }
.dash-row-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.dash-row-head .big { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.5rem; }
.dash-row-head .up { color: var(--mint-dark); font-weight: 700; font-size: 0.82rem; background: var(--mint-tint); padding: 3px 9px; border-radius: 999px; }
.dash-bars { display: flex; align-items: flex-end; gap: 8px; height: 90px; margin-bottom: 20px; }
.dash-bars .bar { flex: 1; border-radius: 6px 6px 2px 2px; background: var(--blue-tint); }
.dash-bars .bar.hi { background: linear-gradient(180deg, var(--blue), var(--blue-deep)); }
.dash-countries { display: flex; flex-direction: column; gap: 10px; }
.dash-country { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; }
.dash-country .cdot { width: 8px; height: 8px; border-radius: 50%; }
.dash-country .cname { width: 90px; color: var(--ink-soft); }
.dash-country .ctrack { flex: 1; height: 6px; background: var(--bg-soft); border-radius: 999px; overflow: hidden; }
.dash-country .cfill { height: 100%; border-radius: 999px; background: var(--blue); }
.dash-country .cpct { width: 34px; text-align: right; font-weight: 700; color: var(--ink); }

/* generic content cards */
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.card h3 { font-size: 1.06rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 0.92rem; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .card-grid { grid-template-columns: 1fr; } }

/* ============ PRICING ============ */
.pricing-table { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.price-card { background: #fff; border: 1.5px solid var(--border); border-top: 4px solid var(--border); border-radius: var(--radius); padding: 26px 22px; display: flex; flex-direction: column; }
.price-card.c-blue { border-top-color: var(--blue); }
.price-card.c-mint { border-top-color: var(--mint); }
.price-card.c-amber { border-top-color: var(--amber); }
.price-card.c-rose { border-top-color: var(--rose); }
.price-card.featured { border-color: var(--blue); box-shadow: 0 20px 44px rgba(59, 91, 255, 0.18); position: relative; }
.price-card .tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--blue); color: #fff; font-size: 0.72rem; font-weight: 800; padding: 4px 14px; border-radius: 999px; letter-spacing: 0.03em; }
.price-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.price-card .price { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 2rem; margin: 10px 0 2px; }
.price-card .price .per { font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 0.85rem; color: var(--ink-soft); }
.price-card .price-desc { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 20px; }
.price-feats { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; flex: 1; }
.price-feats li { display: flex; align-items: center; gap: 9px; font-size: 0.86rem; }
.price-feats li.no { color: var(--ink-dim); }
.price-feats svg.yes { width: 16px; height: 16px; color: var(--mint-dark); flex-shrink: 0; }
.price-feats svg.no { width: 16px; height: 16px; color: var(--border); flex-shrink: 0; }
@media (max-width: 940px) { .pricing-table { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .pricing-table { grid-template-columns: 1fr; } }

/* addon-style row list (used for AI mastering credit bundles, etc.) */
.addon-list { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.addon-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 22px; border-bottom: 1px solid var(--border); background: #fff; }
.addon-row:last-child { border-bottom: none; }
.addon-row:nth-child(even) { background: var(--bg-soft); }
.addon-row .addon-name { font-weight: 700; }
.addon-row .addon-desc { font-size: 0.84rem; color: var(--ink-soft); margin-top: 2px; }
.addon-row .addon-price { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.05rem; white-space: nowrap; }

/* ============ TESTIMONIALS ============ */
.testi-wrap { max-width: 720px; margin: 0 auto; text-align: center; }
.testi-slide { display: none; }
.testi-slide.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.testi-quote { font-family: 'Sora', sans-serif; font-size: 1.3rem; font-weight: 600; line-height: 1.4; margin-bottom: 22px; }
.testi-person { display: flex; align-items: center; justify-content: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-weight: 800; color: #fff; font-size: 0.9rem; }
.testi-name { font-weight: 700; font-size: 0.92rem; }
.testi-role { font-size: 0.8rem; color: var(--ink-soft); }
.testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.testi-dots button { width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--border); cursor: pointer; padding: 0; }
.testi-dots button.active { background: var(--blue); width: 22px; border-radius: 999px; }

/* ============ FAQ ============ */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-list.wide { max-width: 860px; }
.faq-group-head { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.05rem; margin: 34px 0 14px; }
.faq-group-head:first-child { margin-top: 0; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; background: #fff; }
.faq-item summary { cursor: pointer; list-style: none; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-weight: 700; font-size: 0.98rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { width: 22px; height: 22px; border-radius: 50%; background: var(--bg-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.faq-item summary .plus svg { width: 12px; height: 12px; transition: transform 0.2s ease; }
.faq-item[open] summary .plus svg { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 22px 20px; color: var(--ink-soft); font-size: 0.92rem; }

/* ============ FORMS (contact) ============ */
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 32px; align-items: start; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; font-size: 0.85rem; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 14px; border-radius: 10px; border: 1.5px solid var(--border);
  font-family: 'Manrope', sans-serif; font-size: 0.92rem; color: var(--ink); background: var(--bg-soft);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: #fff; }
.form-note { display: flex; gap: 12px; align-items: flex-start; background: var(--blue-tint); border-radius: var(--radius-sm); padding: 14px 16px; margin-bottom: 22px; font-size: 0.86rem; color: #26398f; }
.form-note svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.form-disclaimer { font-size: 0.78rem; color: var(--ink-dim); margin-top: 12px; text-align: center; }

/* ============ LEGAL CONTENT ============ */
.legal-content { max-width: 780px; margin: 0 auto; }
.legal-content .legal-meta { color: var(--ink-dim); font-size: 0.86rem; margin-bottom: 34px; }
.legal-content h2 { font-size: 1.2rem; margin: 34px 0 12px; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { color: var(--ink-soft); margin-bottom: 12px; font-size: 0.95rem; }
.legal-content ul { margin: 0 0 12px 0; display: flex; flex-direction: column; gap: 8px; }
.legal-content li { color: var(--ink-soft); font-size: 0.95rem; padding-left: 18px; position: relative; }
.legal-content li::before { content: ""; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }

/* ============ FINAL CTA (with illustrated background) ============ */
.final-cta {
  position: relative;
  background-color: var(--navy);
  background-image:
    linear-gradient(180deg, rgba(11,18,32,0.35) 0%, rgba(11,18,32,0.78) 72%, rgba(11,18,32,0.94) 100%),
    url('/assets/final-cta-bg.svg');
  background-size: cover;
  background-position: center;
  color: #fff; text-align: center; padding: 96px 0; border-radius: var(--radius-lg);
  margin: 0 28px; overflow: hidden;
}
.final-cta h2 { color: #fff; font-size: clamp(1.8rem, 3.8vw, 2.5rem); margin-bottom: 14px; text-shadow: 0 2px 24px rgba(0,0,0,0.35); }
.final-cta p { color: rgba(255, 255, 255, 0.86); max-width: 480px; margin: 0 auto 30px; text-shadow: 0 1px 12px rgba(0,0,0,0.3); }

/* ============ FOOTER - grand, asymmetric, solid ============ */
.site-footer {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 55%, #0e3a52 130%);
  color: rgba(255, 255, 255, 0.72);
  margin-top: 96px;
}
.footer-statement { padding: 70px 0 44px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.footer-statement-inner { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; }
.footer-wordmark {
  font-family: 'Sora', sans-serif; font-weight: 800; letter-spacing: -0.03em;
  font-size: clamp(2.6rem, 8vw, 6.4rem); line-height: 0.92; color: #fff;
  background: linear-gradient(90deg, #ffffff 0%, #bcd0ff 55%, var(--mint) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.footer-tag { font-size: 1rem; color: rgba(255, 255, 255, 0.6); margin-top: 10px; max-width: 380px; }
.footer-statement .btn { flex-shrink: 0; }

.footer-links-bar { display: flex; flex-wrap: wrap; gap: 0; padding: 44px 0; }
.footer-group { flex: 1 1 160px; padding: 0 28px; border-left: 1px solid rgba(255, 255, 255, 0.1); }
.footer-group:first-child { padding-left: 0; border-left: none; }
.footer-group h5 { color: #fff; font-size: 0.76rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 16px; }
.footer-group ul { display: flex; flex-direction: column; gap: 10px; }
.footer-group a { font-size: 0.88rem; color: rgba(255, 255, 255, 0.62); }
.footer-group a:hover { color: #fff; }
.footer-group.newsletter-group { flex: 1 1 240px; }
.newsletter { display: flex; gap: 8px; margin-bottom: 14px; }
.newsletter input { flex: 1; min-width: 0; padding: 11px 14px; border-radius: 10px; border: 1px solid rgba(255, 255, 255, 0.18); background: rgba(255, 255, 255, 0.06); color: #fff; font-family: 'Manrope', sans-serif; font-size: 0.85rem; }
.newsletter input::placeholder { color: rgba(255, 255, 255, 0.4); }
.foot-social { display: flex; gap: 10px; }
.foot-social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255, 255, 255, 0.08); display: flex; align-items: center; justify-content: center; }
.foot-social svg { width: 15px; height: 15px; color: rgba(255, 255, 255, 0.75); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  padding: 22px 0; font-size: 0.8rem; color: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom a { color: rgba(255, 255, 255, 0.45); margin-left: 16px; }
.footer-bottom a:hover { color: #fff; }

@media (max-width: 900px) {
  .footer-links-bar { flex-direction: column; gap: 28px; }
  .footer-group { border-left: none; padding: 0; }
  .footer-statement-inner { align-items: flex-start; flex-direction: column; }
}

::selection { background: var(--blue); color: #fff; }
