/* ═══════════════════════════════════════════════════════
   ASTRONADE PROPOSAL — Single-Page Minisite
   Font: Space Grotesk (Google Fonts)
   Based on Tarnovski design system
═══════════════════════════════════════════════════════ */

/* ─── TOKENS ──────────────────────────────────────────── */
:root {
  --dark:         #1a2b2b;
  --dark-2:       #243838;
  --dark-3:       #162424;
  --gold:         #f0d074;
  --gold-dim:     #c9ab50;
  --gold-pale:    #f7e9b0;
  --mauve:        #c87fa2;
  --cream:        #f9e3bb;
  --gray:         #bac5cb;
  --gray-light:   #dde3e7;
  --white:        #ffffff;
  --off-white:    #f8fafa;
  --text-dark:    #0e1e1e;
  --text-mid:     #3a5050;
  --purple:       #3b384a;

  --c-blue:       #4a90d9;
  --c-blue-bg:    rgba(74,144,217,0.08);

  --font:         'Space Grotesk', sans-serif;
  --pad:          48px;
  --topnav-h:     56px;
  --content-max:  960px;
}

/* ─── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  background: var(--off-white);
  color: var(--text-dark);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

/* ─══════════════════════════════════════════════════════
   PASSWORD GATE
═══════════════════════════════════════════════════════ */
.gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gate-inner {
  text-align: center;
  max-width: 380px;
  padding: 40px;
}
.gate-logo {
  width: 180px;
  margin-bottom: 32px;
  opacity: 0.9;
}
.gate-label {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.gate-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gate-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(240,208,116,0.25);
  border-radius: 8px;
  padding: 14px 18px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.gate-input::placeholder { color: rgba(186,197,203,0.4); }
.gate-input:focus { border-color: var(--gold); }
.gate-btn {
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.gate-btn:hover { background: var(--gold-pale); }
.gate-error {
  color: #e07474;
  font-size: 13px;
  min-height: 18px;
}

/* ═══════════════════════════════════════════════════════
   TOP NAV
═══════════════════════════════════════════════════════ */
.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  height: var(--topnav-h);
  border-bottom: 1px solid rgba(240,208,116,0.1);
}
.topnav-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.topnav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.topnav-logo {
  height: 22px;
  width: auto;
}
.topnav-sep {
  width: 1px;
  height: 20px;
  background: rgba(240,208,116,0.2);
}
.topnav-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(186,197,203,0.5);
}
.topnav-links {
  display: flex;
  gap: 4px;
}
.topnav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.18s, background 0.18s;
}
.topnav-links a:hover { color: var(--gold); background: rgba(240,208,116,0.06); }
.topnav-links a.active { color: var(--gold); background: rgba(240,208,116,0.1); }
.topnav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.topnav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.topnav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.topnav-hamburger.active span:nth-child(2) { opacity: 0; }
.topnav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--topnav-h);
  left: 0;
  right: 0;
  background: var(--dark);
  border-bottom: 1px solid rgba(240,208,116,0.1);
  padding: 16px 24px;
  z-index: 499;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu .mm-link {
  color: var(--gray);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(186,197,203,0.08);
  transition: color 0.15s;
}
.mobile-menu .mm-link:hover { color: var(--gold); }
.mobile-menu .mm-link.active { color: var(--gold); }
.mobile-menu .mm-sub { padding-left: 20px; font-size: 14px; }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--dark);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--topnav-h) + 60px) var(--pad) 60px;
  overflow: hidden;
}
.hero-deco {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 40%, rgba(240,208,116,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(200,127,162,0.05) 0%, transparent 45%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  text-align: center;
  max-width: 680px;
}
.hero-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0.8;
}
.hero-title {
  font-size: clamp(52px, 10vw, 96px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.0;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 20px;
  font-weight: 400;
  color: var(--gray);
  letter-spacing: 0.02em;
  margin-bottom: 48px;
}
.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(186,197,203,0.5);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-logo {
  height: 18px;
  width: auto;
  opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════
   SECTIONS — GENERAL
═══════════════════════════════════════════════════════ */
.section {
  padding: 72px var(--pad);
}
.section-dark {
  background: var(--dark);
  color: var(--gray-light);
}
.section-dark .section-tag { color: var(--gold); }
.section-dark .section-title { color: var(--white); }
.section-dark .section-lede { color: var(--gray); }
.section-dark h3 { color: var(--white); }
.section-dark h4 { color: var(--gold); }
.section-dark p { color: var(--gray); }
.section-dark .ws-block { border-color: rgba(240,208,116,0.12); }
.section-dark .ws-badge { background: var(--gold); color: var(--dark); }
.section-dark .del-code { background: rgba(240,208,116,0.12); color: var(--gold); }
.section-dark .del-item { color: var(--gray-light); }
.section-dark .manual-sections .ms-item { background: rgba(240,208,116,0.06); border-color: rgba(240,208,116,0.12); color: var(--gray-light); }
.section-dark .folder-item { color: var(--gray-light); }
.section-dark .folder-item code { background: rgba(240,208,116,0.08); color: var(--gold-dim); }
.section-dark .price-card { background: rgba(255,255,255,0.04); border-color: rgba(240,208,116,0.15); }
.section-dark .price-card h4 { color: var(--white); }
.section-dark .price-card p { color: var(--gray); }
.section-dark .price-amount { color: var(--gold); }
.section-dark .price-letter { color: var(--gold); border-color: rgba(240,208,116,0.2); }
.section-dark .total-bar { background: rgba(240,208,116,0.08); border-color: rgba(240,208,116,0.2); }
.section-dark .total-bar span:first-child { color: var(--gray); }
.section-dark .total-note { color: var(--gray); font-size: 13px; }
.section-dark .bullet-list li { color: var(--gray); }
.section-dark .bullet-list li strong { color: var(--gold-pale); }
.section-dark .pay-row { border-color: rgba(186,197,203,0.1); }
.section-dark .pay-num { background: var(--gold); color: var(--dark); }
.section-dark .pay-label { color: var(--white); }
.section-dark .pay-desc { color: var(--gray); }
.section-dark .pay-pct { color: var(--gold); }
.section-dark .pay-amount { color: var(--white); font-weight: 600; }
.section-dark .dep-table .dep-row { border-color: rgba(186,197,203,0.08); }
.section-dark .dep-table .dep-when { color: var(--gold); }
.section-dark .dep-table .dep-what { color: var(--gray); }
.section-dark .two-col .col h4 { color: var(--gold); }
.section-dark .steps-grid .step-num { background: var(--gold); color: var(--dark); }
.section-dark .steps-grid p { color: var(--gray-light); }
.section-dark .steps-grid strong { color: var(--white); }

.section-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.section-tag {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.8;
}
.section-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.1;
}
.section-lede {
  font-size: 17px;
  color: var(--text-mid);
  margin-bottom: 40px;
  max-width: 600px;
}

/* ═══════════════════════════════════════════════════════
   CARDS
═══════════════════════════════════════════════════════ */
.card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  padding: 28px 32px;
  margin-bottom: 16px;
  border-radius: 4px;
}
.card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.card p {
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.7;
}

/* Workstream row */
.workstream-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.ws-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  padding: 28px 24px;
  border-radius: 4px;
  position: relative;
  border-top: 3px solid var(--gold);
}
.ws-card .ws-letter {
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 16px;
  right: 20px;
}
.ws-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ws-card p {
  font-size: 14px;
  color: var(--text-mid);
}

/* ═══════════════════════════════════════════════════════
   WORKSTREAM BLOCKS
═══════════════════════════════════════════════════════ */
.ws-block {
  border: 1px solid var(--gray-light);
  padding: 36px 32px;
  margin-bottom: 24px;
  border-radius: 4px;
}
.ws-header {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  align-items: flex-start;
}
.ws-badge {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  background: var(--dark);
  color: var(--gold);
  border-radius: 6px;
}
.ws-header h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.ws-obj {
  font-size: 15px;
  line-height: 1.6;
}

/* Sub-blocks */
.sub-block {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(186,197,203,0.15);
}
.sub-block h4 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dark);
  margin-bottom: 14px;
}
.sub-desc {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 16px;
}

/* Deliverable grid */
.deliverable-grid {
  display: grid;
  gap: 8px;
}
.del-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.5;
}
.del-code {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  background: rgba(26,43,43,0.06);
  color: var(--dark-2);
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 0.03em;
  min-width: 52px;
  text-align: center;
}

/* Manual sections grid */
.manual-sections {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ms-item {
  background: rgba(26,43,43,0.04);
  border: 1px solid var(--gray-light);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: 3px;
}

/* Folder grid */
.folder-grid {
  display: grid;
  gap: 6px;
}
.folder-item {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.5;
}
.folder-item code {
  background: rgba(26,43,43,0.05);
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
  color: var(--dark-2);
}

/* ═══════════════════════════════════════════════════════
   CHECKLIST
═══════════════════════════════════════════════════════ */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cl-group {
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  padding: 24px;
  border-top: 3px solid var(--gold);
}
.cl-group h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark);
  margin-bottom: 16px;
}
.cl-list {
  list-style: none;
  padding: 0;
}
.cl-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 8px;
}
.cl-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--gold-dim);
  border-radius: 3px;
}

/* ═══════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.price-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(240,208,116,0.12);
  padding: 28px 24px;
  border-radius: 6px;
  position: relative;
}
.price-letter {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  border: 2px solid rgba(240,208,116,0.2);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  margin-bottom: 16px;
}
.price-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.price-card p {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.price-amount {
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
}

.total-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  background: rgba(240,208,116,0.06);
  border: 1px solid rgba(240,208,116,0.15);
  border-radius: 6px;
  margin-bottom: 8px;
}
.total-amount {
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
}
.total-note {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 0;
}

/* Payment grid */
.payment-grid {
  display: grid;
  gap: 0;
}
.pay-row {
  display: grid;
  grid-template-columns: 140px 1fr 60px 90px;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(186,197,203,0.1);
}
.pay-row:last-child { border-bottom: none; }
.pay-step {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pay-num {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  background: var(--gold);
  color: var(--dark);
  border-radius: 4px;
}
.pay-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}
.pay-desc {
  font-size: 13px;
  color: var(--text-mid);
}
.pay-pct {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
.pay-amount {
  font-size: 15px;
  font-weight: 600;
  text-align: right;
}

/* Bullet list */
.bullet-list {
  list-style: none;
  padding: 0;
}
.bullet-list li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 8px;
  line-height: 1.6;
}
.bullet-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
  font-weight: 700;
}

/* Callout */
.callout {
  border-left: 3px solid var(--c-blue);
  background: var(--c-blue-bg);
  padding: 16px 20px;
  border-radius: 0 4px 4px 0;
}
.callout p { font-size: 15px; color: var(--text-dark); }

/* Two col */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.two-col .col h4 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

/* ═══════════════════════════════════════════════════════
   TIMELINE
═══════════════════════════════════════════════════════ */
.timeline-visual {
  display: grid;
  gap: 24px;
  margin-bottom: 8px;
}
.tl-phase {
  position: relative;
}
.tl-bar {
  height: 6px;
  background: rgba(26,43,43,0.06);
  border-radius: 3px;
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
}
.tl-fill {
  position: absolute;
  top: 0;
  height: 100%;
  background: var(--color, var(--gold));
  border-radius: 3px;
  left: 0;
}
.tl-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.tl-info p {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 2px;
}
.tl-milestone {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-top: 4px;
}

/* Dependency table */
.dep-table {
  display: grid;
  gap: 0;
}
.dep-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(186,197,203,0.12);
  align-items: baseline;
}
.dep-row:last-child { border-bottom: none; }
.dep-when {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-2);
  white-space: nowrap;
}
.dep-what {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
}
.dep-what strong {
  color: var(--dark);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════
   ADD-ONS
═══════════════════════════════════════════════════════ */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.addon-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  padding: 24px;
  border-radius: 4px;
  position: relative;
  transition: border-color 0.2s;
}
.addon-card:hover {
  border-color: var(--gold-dim);
}
.addon-card-highlight {
  grid-column: span 3;
  border-top: 3px solid var(--gold);
  background: rgba(240,208,116,0.02);
}
.addon-letter {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid rgba(240,208,116,0.3);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin-bottom: 12px;
}
.addon-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.addon-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   STEPS / NEXT STEPS
═══════════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.step-item {
  text-align: center;
}
.step-num {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  margin-bottom: 12px;
}
.step-item p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.5;
}
.step-item strong {
  color: var(--dark);
}

/* CTA */
.cta-block {
  text-align: center;
  padding: 48px 0 24px;
}
.cta-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.cta-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.cta-btn:hover { background: var(--gold-pale); transform: translateY(-1px); }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer {
  background: var(--dark-3);
  padding: 48px var(--pad);
  border-top: 1px solid rgba(240,208,116,0.08);
}
.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  text-align: center;
}
.footer-logo {
  height: 20px;
  width: auto;
  opacity: 0.5;
  margin-bottom: 20px;
}
.footer p {
  font-size: 14px;
  color: rgba(186,197,203,0.5);
  line-height: 1.6;
  margin-bottom: 12px;
}
.footer-note {
  font-size: 12px;
  color: rgba(186,197,203,0.3);
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(186,197,203,0.08);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  :root { --pad: 24px; --content-max: 100%; }
  .topnav-links { display: none; }
  .topnav-hamburger { display: flex; }
  .topnav-tag { display: none; }

  .workstream-row,
  .checklist-grid,
  .price-grid,
  .two-col,
  .steps-grid { grid-template-columns: 1fr; }

  .addon-grid { grid-template-columns: 1fr 1fr; }
  .addon-card-highlight { grid-column: span 2; }

  .pay-row { grid-template-columns: 120px 1fr; }
  .pay-pct, .pay-amount { display: none; }

  .ws-header { flex-direction: column; }

  .hero { min-height: 60vh; }
  .hero-title { font-size: 48px; }
}

@media (max-width: 560px) {
  :root { --pad: 16px; }
  .addon-grid { grid-template-columns: 1fr; }
  .addon-card-highlight { grid-column: span 1; }
  .section { padding: 48px var(--pad); }
  .hero-title { font-size: 36px; }
  .hero-sub { font-size: 16px; }
  .dep-row { grid-template-columns: 1fr; gap: 4px; }
}

/* ═══════════════════════════════════════════════════════
   PRINT
═══════════════════════════════════════════════════════ */
@media print {
  .topnav, .gate, .mobile-menu, .topnav-hamburger { display: none !important; }
  .content-wrapper { display: block !important; }
  .section-dark { background: #f5f5f5 !important; color: #222 !important; }
  .section-dark * { color: #222 !important; }
  a { color: #222 !important; text-decoration: none !important; }
}
