/* =========================================================
   Nova Prime Business Hub - Stylesheet
   ========================================================= */

:root {
  --navy-900: #0b1733;
  --navy-800: #11214a;
  --navy-700: #1a2d63;
  --navy-600: #243a7a;
  --navy-100: #eef2fb;
  --ink: #0b1733;
  --ink-2: #344056;
  --muted: #6b7280;
  --line: #e5e7eb;
  --line-2: #d1d5db;
  --bg: #ffffff;
  --bg-soft: #f7f8fb;
  --bg-panel: #f4f6fa;
  --orange: #f5841f;
  --orange-600: #e17616;
  --green-600: #16a34a;
  --green-50: #ecfdf5;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(11, 23, 51, .06), 0 1px 1px rgba(11, 23, 51, .04);
  --shadow-md: 0 4px 12px rgba(11, 23, 51, .08);
  --shadow-lg: 0 20px 50px rgba(11, 23, 51, .12);
  --container: 1200px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--orange); }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { margin: 0 0 .5em; color: var(--ink); line-height: 1.2; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 2.5vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1em; color: var(--ink-2); }
.lead { font-size: 1.125rem; color: var(--ink-2); }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .18s ease;
  cursor: pointer;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-600); color: #fff; transform: translateY(-1px); }
.btn-dark { background: var(--navy-900); color: #fff; }
.btn-dark:hover { background: var(--navy-700); color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-outline:hover { background: var(--bg-soft); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--bg-soft); }
.btn-block { width: 100%; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--ink); }
.logo-mark {
  width: 210px; height: 60px;
  background: url("../img/logo.png") left center/contain no-repeat;
  flex-shrink: 0;
}
/* Logo image already contains the wordmark - hide the sibling text */
.logo > span:not(.logo-mark) { display: none; }
.site-footer .logo-mark {
  background-image: url("../img/logo.png");
  width: 170px; height: 48px;
  /* Logo is dark on light; on dark navy footer, invert to solid white */
  filter: brightness(0) invert(1);
  opacity: .95;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--ink-2); font-weight: 500; font-size: .95rem; }
.nav-links a.active, .nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; transition: .2s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 96px 0 80px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(11,23,51,.85), rgba(11,23,51,.95)),
    radial-gradient(circle at 20% 0%, #1a2d63 0%, #0b1733 60%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(circle at 50% 30%, rgba(0,0,0,.7), transparent 75%);
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: #fff; max-width: 18ch; }
.hero p { color: rgba(255,255,255,.78); max-width: 60ch; font-size: 1.1rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; max-width: 720px; }
.hero-stat .num { font-size: 1.8rem; font-weight: 700; color: #fff; }
.hero-stat .lbl { font-size: .85rem; color: rgba(255,255,255,.6); }

/* ---------- Section ---------- */
section { padding: 80px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.eyebrow {
  display: inline-block; padding: 4px 12px;
  background: var(--navy-100); color: var(--navy-700);
  border-radius: 999px; font-size: .8rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 14px;
}
.bg-soft { background: var(--bg-soft); }
.bg-dark { background: var(--navy-900); color: #fff; }
.bg-dark h2, .bg-dark h3 { color: #fff; }
.bg-dark p { color: rgba(255,255,255,.7); }

/* ---------- Cards / Services ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .2s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.card .icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--navy-100); color: var(--navy-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px;
}

/* Service card with image header */
.service-card {
  padding: 0;
  overflow: hidden;
  position: relative;
}
.service-card .service-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-900);
  position: relative;
}
.service-card .service-icon-chip {
  /* Icon overlay disabled site-wide - applies to all current and future service cards. */
  display: none;
}
.service-card .service-body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card .service-body h3 { margin: 0 0 8px; }
.service-card .service-body p { font-size: .95rem; flex: 1; }
.service-card .service-foot {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 6px;
}
.service-card .service-foot .price-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 2px;
}
.service-card .service-foot .price {
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
  margin: 0;
}
.service-card .service-foot .price .unit {
  color: var(--muted);
  font-weight: 500;
  font-size: .9rem;
}
.service-card .service-foot .sub {
  color: var(--muted);
  font-size: .82rem;
  margin-top: 2px;
}

/* Link card variant */
a.service-card { color: inherit; text-decoration: none; display: flex; }
a.service-card:hover { color: inherit; }
a.service-card::after {
  content: "→";
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transform: translateX(8px);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}
a.service-card:hover::after { opacity: 1; transform: translateX(0); }

/* Span two columns for the wide last card */
.service-card.span-2 { grid-column: span 2; }
@media (max-width: 960px) {
  .service-card.span-2 { grid-column: span 1; }
}

/* Pricing table inside card */
.price-rows { margin-top: 4px; }
.price-rows .row {
  display: flex; justify-content: space-between;
  font-size: .9rem;
  padding: 4px 0;
  color: var(--ink-2);
}
.price-rows .row .v { font-weight: 600; color: var(--ink); }
.card h3 { margin-bottom: 8px; }
.card .price { font-weight: 700; color: var(--navy-900); margin-top: 12px; font-size: .95rem; }
.card.dark { background: var(--navy-800); color: #fff; border-color: var(--navy-700); }
.card.dark h3 { color: #fff; }
.card.dark p { color: rgba(255,255,255,.7); }
.card.dark .icon { background: rgba(255,255,255,.08); color: var(--orange); }
.card.dark .price { color: #fff; }

/* ---------- CTA strip ---------- */
.cta-strip {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  color: #fff; border-radius: var(--radius-lg);
  padding: 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.cta-strip h2 { color: #fff; margin: 0; }
.cta-strip p { color: rgba(255,255,255,.7); margin: 6px 0 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.7);
  padding: 64px 0 24px;
}
.site-footer h4 { color: #fff; font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-grid a { display: block; color: rgba(255,255,255,.7); padding: 4px 0; font-size: .9rem; }
.footer-grid a:hover { color: #fff; }
.footer-bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .85rem;
}

/* ---------- Forms ---------- */
.field { margin-bottom: 18px; }
.field label {
  display: block; font-weight: 500; font-size: .9rem;
  margin-bottom: 6px; color: var(--ink);
}
.field .hint { font-size: .8rem; color: var(--muted); margin-top: 6px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  font-family: inherit; font-size: .95rem;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(36, 58, 122, .15);
}
.field textarea { resize: vertical; min-height: 120px; }
.field select option:disabled,
.name-element select option:disabled {
  color: var(--muted);
  background: var(--bg-soft);
}
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ---------- Registration Layout ---------- */
.reg-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: calc(100vh - 72px);
  background: var(--bg-soft);
  background-image: radial-gradient(rgba(11, 23, 51, .07) 1px, transparent 1px);
  background-size: 22px 22px;
  background-position: 0 0;
}
.reg-sidebar { background: rgba(255,255,255,.85); backdrop-filter: blur(4px); }
.reg-step-eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
  display: block;
}
.reg-step h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 700; font-size: 2.2rem; margin-bottom: 8px; }
.reg-step > p { color: var(--ink-2); margin-bottom: 24px; }
.reg-actions-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  margin-top: 16px;
}
.reg-actions-bar .btn { padding: 14px 28px; }
.reg-sidebar {
  background: #fff;
  border-right: 1px solid var(--line);
  padding: 36px 28px;
}
.reg-sidebar .sb-title { font-size: 1.05rem; font-weight: 700; }
.reg-sidebar .sb-sub { font-size: .85rem; color: var(--muted); margin-bottom: 28px; }
.steps { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.steps li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--ink-2);
  font-size: .92rem;
  font-weight: 500;
}
.steps li .num {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--bg-panel); color: var(--ink-2);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 600; flex-shrink: 0;
}
.steps li.active { background: var(--navy-100); color: var(--navy-900); }
.steps li.active .num { background: var(--navy-900); color: #fff; }
.steps li.done .num { background: var(--green-600); color: #fff; }
.steps li.done .num::before { content: "✓"; }
.steps li.done .num span { display: none; }

.reg-main { padding: 48px; max-width: 1180px; }
.reg-step { display: none; }
.reg-step.active { display: block; }
.reg-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 24px;
}
.reg-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-panel); color: var(--ink-2);
  padding: 6px 14px; border-radius: 999px;
  font-size: .82rem; font-weight: 500;
  margin-bottom: 14px;
}
.reg-eyebrow .dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
.reg-actions {
  display: flex; justify-content: space-between; gap: 12px;
  padding-top: 8px;
}

/* Choice cards (legacy) */
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0 8px; }
.choice {
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  cursor: pointer;
  transition: all .15s ease;
  background: #fff;
  position: relative;
}
.choice:hover { border-color: var(--navy-600); }
.choice.selected { border-color: var(--navy-900); background: #fbfcfe; }
.choice.selected::after {
  content: "✓";
  position: absolute; top: 16px; right: 16px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--navy-900); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
}
.choice h3 { margin-bottom: 6px; }
.choice p { font-size: .9rem; color: var(--muted); margin: 0; }

/* ---------- Business Type cards (expandable with inline form) ---------- */
.biz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0 8px;
  align-items: start;
}
@media (max-width: 960px) { .biz-grid { grid-template-columns: 1fr; } }

.biz-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  transition: border-color .2s, box-shadow .2s;
  overflow: hidden;
}
.biz-card.selected {
  border-color: var(--navy-900);
  box-shadow: 0 0 0 1px var(--navy-900), 0 8px 24px rgba(11,23,51,.08);
}

.biz-card-head {
  padding: 28px 28px 24px;
  cursor: pointer;
  user-select: none;
  position: relative;
  transition: background-color .2s ease;
}
.biz-card:not(.selected) .biz-card-head:hover {
  background-color: #fbfcfe;
}
.biz-card-icon {
  width: 44px; height: 44px;
  background: var(--navy-900);
  color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}
.biz-card-selector {
  position: absolute;
  top: 24px; right: 24px;
  width: 22px; height: 22px;
  border: 2px solid var(--line-2);
  border-radius: 50%;
  background: #fff;
  transition: all .15s ease;
}
.biz-card.selected .biz-card-selector {
  border-color: var(--navy-900);
  background: var(--navy-900);
  box-shadow: inset 0 0 0 4px #fff;
}
.biz-card-head h3 { margin: 0 0 6px; font-size: 1.35rem; }
.biz-card-head p { margin: 0; font-size: .9rem; color: var(--muted); }

/* Click hint + chevron for collapsed state */
.biz-card-hint {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy-700);
  letter-spacing: .02em;
}
.biz-card-hint::after {
  content: "▾";
  font-size: .75rem;
  transition: transform .25s ease;
}
.biz-card.expanded .biz-card-hint { color: var(--navy-900); }
.biz-card.expanded .biz-card-hint::after { transform: rotate(180deg); }
.biz-card.expanded .biz-card-hint .lbl-collapsed { display: none; }
.biz-card:not(.expanded) .biz-card-hint .lbl-expanded { display: none; }

.biz-card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.22,1,.36,1);
  border-top: 0 solid var(--line);
}
.biz-card.expanded .biz-card-body {
  max-height: 4000px;
  border-top: 1px solid var(--line);
}
.biz-card-body-inner { padding: 24px 28px 28px; }

/* Form sections inside biz-card */
.form-section { margin-bottom: 28px; }
.form-section:last-child { margin-bottom: 0; }
.form-section-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.form-section-sub {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 4px;
}
.form-section-hint {
  font-size: .85rem;
  color: var(--muted);
  margin: 0 0 14px;
}

/* Field label (smaller, uppercase) inside biz forms */
.biz-card .field label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.biz-card .field label .req { color: var(--orange); margin-left: 2px; }

/* Business Name elements */
.name-element {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  margin-bottom: 10px;
  background: #fafbfd;
}
.name-element-head {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 10px;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-2);
}
.name-element-num {
  background: var(--navy-100);
  color: var(--navy-700);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: .7rem;
}
.name-element-spacer { flex: 1; }
.badge {
  font-size: .65rem;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
}
.badge-required { background: var(--navy-900); color: #fff; }
.badge-optional { background: #fef3c7; color: #92400e; }
.name-element input,
.name-element select,
.name-element textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
  margin: 0;
}
.name-element input:focus,
.name-element select:focus,
.name-element textarea:focus {
  outline: 0;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(36, 58, 122, .15);
}
.name-element .hint { font-size: .78rem; color: var(--muted); margin-top: 6px; }

/* Registered address info box (blue) */
.info-box {
  background: #eef4ff;
  border: 1px solid #c7d8fb;
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex; gap: 12px;
  font-size: .88rem;
  color: #1e3a8a;
  margin: 14px 0;
}
.info-box .info-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #c7d8fb;
  color: #1e3a8a;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  flex-shrink: 0;
}

/* Use Our Registered Address add-on (green) */
.addon {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-top: 12px;
}
.addon-head {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 12px;
  margin-bottom: 6px;
}
.addon-head .addon-title {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; color: #065f46;
  font-size: .95rem;
}
.addon-head .addon-icon {
  width: 26px; height: 26px;
  background: #d1fae5;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #065f46;
  font-size: 14px;
}
.addon-toggle { display: flex; align-items: center; gap: 8px; cursor: pointer; user-select: none; }
.addon-toggle input { width: auto; margin: 0; }
.addon-toggle .lbl { font-size: .85rem; font-weight: 600; color: #065f46; }
.addon-price { font-size: .85rem; color: #065f46; font-weight: 600; }
.addon-desc { font-size: .85rem; color: #047857; margin: 4px 0 0; line-height: 1.5; }

/* Review panel */
.review-row {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
  line-height: 1.45;
}
.review-row:last-child { border-bottom: 0; }
.review-row .lbl { color: var(--muted); }
.review-row .lbl::after { content: ": "; }
.review-row .val { font-weight: 600; color: var(--ink); }

.fee-panel { background: var(--navy-900); color: #fff; border-radius: var(--radius-lg); padding: 24px; }
.fee-panel h4 { color: #fff; margin: 0 0 14px; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; }
.fee-row { display: flex; justify-content: space-between; padding: 8px 0; color: rgba(255,255,255,.8); font-size: .92rem; }
.fee-total { display: flex; justify-content: space-between; margin-top: 12px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.15); color: #fff; font-weight: 700; font-size: 1.1rem; }

.alert {
  display: flex; gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: .92rem;
}
.alert-info { background: var(--navy-100); color: var(--navy-700); }
.alert-success { background: var(--green-50); color: var(--green-600); }
.alert-error { background: #fef2f2; color: #b91c1c; }

/* Confirmation */
.confirm-card { text-align: center; max-width: 560px; margin: 0 auto; padding: 56px 40px; }
.confirm-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--navy-100); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; margin: 0 auto 20px;
}
.confirm-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 28px 0; padding: 18px; background: var(--bg-soft); border-radius: var(--radius); text-align: left; }
.confirm-meta .k { font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.confirm-meta .v { font-weight: 600; font-size: .95rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; }
.contact-info { background: var(--bg-soft); border-radius: var(--radius-lg); padding: 32px; height: fit-content; }
.contact-info h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin: 0 0 8px; }
.contact-info p { font-weight: 500; color: var(--ink); margin: 0 0 20px; }

/* Legal pages */
.legal { max-width: 820px; margin: 0 auto; }
.legal h1 { margin-bottom: 8px; }
.legal .updated { color: var(--muted); font-size: .9rem; margin-bottom: 32px; }
.legal h2 { font-size: 1.25rem; margin-top: 36px; margin-bottom: 10px; }
.legal h3 { font-size: 1.05rem; margin-top: 24px; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 6px; color: var(--ink-2); }

/* =========================================================
   Scroll Animations (reveal-on-view, parallax, header shrink)
   ========================================================= */

/* Reveal-on-scroll base */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.22, 1, .36, 1),
              transform .9s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}
[data-reveal="fade"]      { transform: translateY(0); }
[data-reveal="up"]        { transform: translateY(28px); }
[data-reveal="left"]      { transform: translateX(-32px); }
[data-reveal="right"]     { transform: translateX(32px); }
[data-reveal="scale"]     { transform: scale(.94); }
[data-reveal="blur"]      { filter: blur(8px); }
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* Stagger children when parent has data-stagger */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.22, 1, .36, 1),
              transform .8s cubic-bezier(.22, 1, .36, 1);
}
[data-stagger].is-visible > * {
  opacity: 1;
  transform: none;
}
[data-stagger].is-visible > *:nth-child(1) { transition-delay: .00s; }
[data-stagger].is-visible > *:nth-child(2) { transition-delay: .08s; }
[data-stagger].is-visible > *:nth-child(3) { transition-delay: .16s; }
[data-stagger].is-visible > *:nth-child(4) { transition-delay: .24s; }
[data-stagger].is-visible > *:nth-child(5) { transition-delay: .32s; }
[data-stagger].is-visible > *:nth-child(6) { transition-delay: .40s; }
[data-stagger].is-visible > *:nth-child(7) { transition-delay: .48s; }
[data-stagger].is-visible > *:nth-child(8) { transition-delay: .56s; }

/* Hero parallax - moved by JS via --scroll var */
.hero::after {
  transform: translateY(calc(var(--scroll, 0) * 0.3px));
  transition: transform .05s linear;
}
.hero h1, .hero p, .hero-actions, .hero-stats {
  transform: translateY(calc(var(--scroll, 0) * -0.08px));
  transition: transform .05s linear;
}

/* Header shrink on scroll */
.site-header { transition: box-shadow .25s ease, background-color .25s ease, height .25s ease; }
.site-header.is-scrolled {
  background: rgba(255,255,255,.96);
  box-shadow: 0 6px 24px rgba(11,23,51,.08);
}
.site-header.is-scrolled .container { height: 64px; transition: height .25s ease; }
.site-header .container { transition: height .25s ease; }

/* Floating logo mark - subtle continuous lift */
.logo-mark {
  animation: nph-float 6s ease-in-out infinite;
}
@keyframes nph-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-2px); }
}

/* Hero gradient orb - slow drift */
.hero {
  --orb-x: 20%;
  --orb-y: 0%;
  background:
    linear-gradient(180deg, rgba(11,23,51,.85), rgba(11,23,51,.95)),
    radial-gradient(circle at var(--orb-x) var(--orb-y), #1a2d63 0%, #0b1733 60%);
  animation: nph-orb 18s ease-in-out infinite alternate;
}
@keyframes nph-orb {
  0%   { --orb-x: 20%; --orb-y: 0%; }
  100% { --orb-x: 80%; --orb-y: 30%; }
}
@property --orb-x { syntax: '<percentage>'; inherits: false; initial-value: 20%; }
@property --orb-y { syntax: '<percentage>'; inherits: false; initial-value: 0%; }

/* Card hover lift - refined */
.card { transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, border-color .25s ease; }

/* Button hover micro-interaction */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.2), transparent 50%);
  opacity: 0; transition: opacity .25s ease;
  pointer-events: none;
}
.btn:hover::after { opacity: 1; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-stagger] > * {
    opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important;
  }
  .hero, .logo-mark { animation: none !important; }
  .hero::after, .hero h1, .hero p, .hero-actions, .hero-stats { transform: none !important; }
}

/* Responsive */
@media (max-width: 960px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reg-layout { grid-template-columns: 1fr; }
  .reg-sidebar { border-right: 0; border-bottom: 1px solid var(--line); padding: 24px; }
  .reg-main { padding: 28px; }
  .reg-card { padding: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 56px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 640px) {
  .site-header .container {
    height: 64px;
    padding: 0 10px;
  }
  .logo-mark {
    width: 112px;
    height: 44px;
  }
  .nav-cta { flex-shrink: 0; }
  .nav-cta .btn {
    padding: 10px 14px;
    font-size: .875rem;
    white-space: nowrap;
  }
  .nav-toggle { flex-shrink: 0; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: #fff; padding: 20px; gap: 16px;
    border-bottom: 1px solid var(--line);
  }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .choice-grid { grid-template-columns: 1fr; }
  .row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-strip { padding: 32px; flex-direction: column; align-items: flex-start; }
  section { padding: 56px 0; }
  .confirm-meta { grid-template-columns: 1fr; }
}
