/* =============================================================================
   Tower Systems 2026 Content Trial Template
   Ported from onboarding.html design
   ============================================================================= */

/* ── Variables ──────────────────────────────────────────────────────────────── */
:root {
  --dark:      #1a1a2e;
  --mid:       #2d2d44;
  --accent:    #e63946;
  --light-bg:  #f7f7f9;
  --border:    #e0e0e8;
  --text:      #222;
  --muted:     #555;
  --white:     #fff;
  --container: 1180px;
  --content-w: 820px;
}

/* ── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Base ───────────────────────────────────────────────────────────────────── */
body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text);
  background: #fff;
  line-height: 1.75;
  font-size: 17px;
  overflow-x: clip;
}

a    { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

img  { max-width: 100%; height: auto; display: block; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Container ──────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Topbar ──────────────────────────────────────────────────────────────────── */
.topbar {
  background: var(--mid);
  color: #ccc;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.topbar-group { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar a { color: #ccc; text-decoration: none; }
.topbar a:hover { color: #fff; text-decoration: underline; }

/* ── Site Nav ────────────────────────────────────────────────────────────────── */
.site-nav {
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo img { display: block; height: 40px; width: auto; }

.nav-panel { display: flex; align-items: center; }
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.nav-links li a {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #ccc;
  text-decoration: none;
  padding: 6px 10px;
  letter-spacing: 0.2px;
  transition: color 0.15s;
  display: block;
}
.nav-links li a:hover { color: #fff; text-decoration: none; }
.nav-links li.active > a { color: #fff; font-weight: 700; }

.nav-links a.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 8px 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 6px;
}
.nav-links a.nav-cta:hover { background: #c5303c; text-decoration: none; }

.nav-links a.nav-dashboard {
  background: var(--white);
  color: var(--dark) !important;
  padding: 8px 16px;
  font-weight: 600;
  border-radius: 6px;
}
.nav-links a.nav-dashboard:hover { background: #e8edf2; color: var(--dark) !important; text-decoration: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle-bar {
  display: block;
  width: 22px; height: 2px;
  background: #ccc;
  border-radius: 1px;
  transition: background 0.15s, transform 0.2s, opacity 0.15s;
}
.nav-toggle:hover .nav-toggle-bar { background: #fff; }

/* ── Breadcrumb ──────────────────────────────────────────────────────────────── */
.breadcrumb {
  background: var(--light-bg);
  border-bottom: 0px;
  padding: 8px 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  color: var(--muted);
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
  margin: 0;
  padding: 0;
}
.breadcrumb li { display: flex; align-items: center; }
.mod-breadcrumbs__here,
.mod-breadcrumbs__divider { display: none !important; }
.mod-breadcrumbs__item + .mod-breadcrumbs__item::before {
  content: '>';
  margin: 0 6px;
  color: #aaa;
}
.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── Hero ────────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--dark);
  color: #fff;
  padding: 80px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}

/* Badge becomes the label pill */
.hero .hero-badge {
  display: inline-block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  background: none;
  padding: 0;
  border-radius: 0;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 46px);
  font-weight: normal;
  line-height: 1.2;
  max-width: 700px;
  margin: 0 auto 20px;
  color: #fff;
}

.hero .hero-lead {
  font-size: 18px;
  color: #ccc;
  max-width: 560px;
  margin: 0 auto 36px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.hero-contact {
  margin-top: 28px;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  color: #aaa;
  position: relative;
  z-index: 1;
}
.hero-contact a { color: #ddd; text-decoration: none; }
.hero-contact a:hover { color: #fff; text-decoration: underline; }

/* ── Buttons ──────────────────────────────────────────────────────────────────── */
.btn,
.btn-primary,
.btn-outline {
  display: inline-block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none !important;
  padding: 14px 28px;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #c5303c; color: #fff; }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

/* ── Reassurance bar ──────────────────────────────────────────────────────────── */
.reassurance {
  background: var(--accent);
  color: #fff;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 20px 24px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.reassurance span::before { content: '✓  '; }

/* ── Page body ────────────────────────────────────────────────────────────────── */
.page-body { background: #fff; }

.content-wrap {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── General article typography ──────────────────────────────────────────────── */
.main-content { padding: 10px 0 48px; }

.main-content h1 {
  font-size: 32px;
  font-weight: normal;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}
.main-content h2 {
  font-size: 26px;
  font-weight: normal;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 16px;
  margin-top: 40px;
}
.main-content h3 {
  font-size: 20px;
  font-weight: normal;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 12px;
  margin-top: 32px;
}
.main-content p { color: var(--muted); margin-bottom: 16px; }
.main-content a { color: var(--accent); }
.main-content ul,
.main-content ol {
  padding-left: 20px;
  color: var(--muted);
  margin-bottom: 16px;
}
.main-content li { margin-bottom: 8px; font-size: 16px; }

/* ── Intro section ──────────────────────────────────────────────────────────── */
.intro {
  padding: 10px 0 52px;
  border-bottom: 1px solid var(--border);
}
.intro h2 {
  font-size: 28px;
  font-weight: normal;
  margin-bottom: 16px;
  line-height: 1.3;
  color: var(--dark);
}
.intro p { color: var(--muted); margin-bottom: 16px; }

/* ── Tailored callout — full-bleed breakout from content-wrap ───────────────── */
.tailored-callout {
  background: var(--dark);
  color: #fff;
  padding: 52px 24px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
.tailored-callout .inner {
  max-width: 680px;
  margin: 0 auto;
}
.tailored-callout .icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.tailored-callout h2 {
  font-size: 26px;
  font-weight: normal;
  margin-bottom: 16px;
  line-height: 1.3;
  color: #fff;
}
.tailored-callout p {
  color: #bbb;
  font-size: 16px;
  line-height: 1.7;
}

/* ── Expect sections ──────────────────────────────────────────────────────────── */
.expect-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.expect-section:last-of-type { border-bottom: none; }

.section-marker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.section-marker .phase {
  background: var(--dark);
  color: #fff;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  white-space: nowrap;
}
.section-marker .line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.expect-section h2 {
  font-size: 26px;
  font-weight: normal;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.3;
}
.expect-section p { color: var(--muted); margin-bottom: 16px; }
.expect-section ul {
  padding-left: 20px;
  color: var(--muted);
  margin-bottom: 16px;
}
.expect-section ul li { margin-bottom: 8px; font-size: 16px; }

/* ── Detail cards ────────────────────────────────────────────────────────────── */
.detail-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.detail-card {
  border: 1px solid var(--border);
  padding: 24px;
}
.detail-card .card-label {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.detail-card p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* ── Quote block ─────────────────────────────────────────────────────────────── */
.quote-block,
blockquote.quote-block {
  background: var(--light-bg);
  border-left: 4px solid var(--accent);
  padding: 28px 32px;
  margin: 40px 0;
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
}
.quote-block cite {
  display: block;
  font-style: normal;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #999;
  margin-top: 12px;
}

/* ── Support grid ────────────────────────────────────────────────────────────── */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  margin-top: 28px;
}
.support-item {
  background: var(--light-bg);
  padding: 24px;
}
.support-item .s-label {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}
.support-item p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* ── Generic content sections (data, hardware, support) ─────────────────────── */
.data-section,
.hardware-section,
.support-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.data-section:last-child,
.hardware-section:last-child,
.support-section:last-child { border-bottom: none; }
.data-section h2,
.hardware-section h2,
.support-section h2 {
  font-size: 26px;
  font-weight: normal;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.data-section p,
.hardware-section p,
.support-section p { color: var(--muted); margin-bottom: 16px; }
.data-section ul,
.hardware-section ul,
.support-section ul {
  padding-left: 20px;
  color: var(--muted);
  margin-bottom: 16px;
}
.data-section ul li,
.hardware-section ul li,
.support-section ul li { margin-bottom: 8px; font-size: 15px; }

/* ── Concerns section — full-bleed light bg breakout ─────────────────────────── */
.concerns {
  background: var(--light-bg);
  padding: 48px 24px;
  margin: 48px 0;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
.concerns h2 {
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 32px;
  color: var(--dark);
  max-width: var(--content-w);
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}
.concern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 24px;
}
.concern-card {
  background: #fff;
  border-left: 3px solid var(--accent);
  padding: 24px;
}
.concern-card .q {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.concern-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Numbered steps ──────────────────────────────────────────────────────────── */
.steps-section {
  padding: 56px 0;
}
.steps-section h2 {
  font-size: 28px;
  font-weight: normal;
  margin-bottom: 8px;
  color: var(--dark);
}
.steps-section .sub {
  color: var(--muted);
  margin-bottom: 48px;
  font-size: 16px;
}
.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: none; margin-bottom: 0; }
.step-num {
  width: 52px;
  height: 52px;
  background: var(--dark);
  color: #fff;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-body h3 {
  font-size: 21px;
  font-weight: normal;
  margin-bottom: 12px;
  line-height: 1.3;
  color: var(--dark);
}
.step-body p { color: var(--muted); margin-bottom: 12px; }
.step-body ul {
  margin: 12px 0 0 0;
  padding-left: 20px;
  color: var(--muted);
}
.step-body ul li { margin-bottom: 6px; font-size: 15px; }
.step-tag {
  display: inline-block;
  background: var(--light-bg);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 10px;
  margin-bottom: 12px;
}

/* ── Timeline bar — full-bleed dark breakout ─────────────────────────────────── */
.timeline-bar {
  background: var(--dark);
  color: #fff;
  padding: 56px 24px;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
.timeline-bar h2 {
  font-size: 26px;
  font-weight: normal;
  margin-bottom: 8px;
  max-width: var(--content-w);
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}
.timeline-bar .sub {
  color: #aaa;
  margin-bottom: 40px;
  max-width: var(--content-w);
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
  font-size: 16px;
}
.tl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2px;
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 24px;
}
.tl-item {
  background: var(--mid);
  padding: 24px 20px;
}
.tl-item .period {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.tl-item .tl-title {
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.3;
  color: #fff;
}
.tl-item .tl-desc {
  font-size: 13px;
  color: #aaa;
  line-height: 1.5;
}

/* ── SECTION NAV ── */
.section-nav {
  padding: 40px 0 32px;
  border-bottom: 1px solid var(--border);
}

.section-nav-label {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.nav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-pills a {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--dark);
  border: 1px solid var(--border);
  padding: 7px 14px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.nav-pills a:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

/* ── GLOSSARY SECTIONS ── */
.glossary-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.glossary-section:last-of-type {
  border-bottom: none;
}

.section-marker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.section-marker .phase {
  background: var(--dark);
  color: #fff;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  white-space: nowrap;
}

.section-marker .line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── TERM ENTRIES ── */
.term-entry {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.term-entry:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.term-name {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--dark);
  margin-bottom: 6px;
}

.term-name .term-abbr {
  color: var(--accent);
  font-weight: 600;
}

.term-definition {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── CALLOUT BLOCK ── */
.tailored-callout {
  background: var(--dark);
  color: #fff;
  padding: 52px 24px;
  text-align: center;
  margin: 0;
}

.tailored-callout .inner {
  max-width: 680px;
  margin: 0 auto;
}

.tailored-callout .icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.tailored-callout h2 {
  font-size: 26px;
  font-weight: normal;
  margin-bottom: 16px;
  line-height: 1.3;
}

.tailored-callout p {
  color: #bbb;
  font-size: 16px;
  line-height: 1.7;
}

/* ── CTA footer module position ──────────────────────────────────────────────── */
.cta-footer {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 72px 24px;
}
.cta-footer h2 {
  font-size: 30px;
  font-weight: normal;
  margin: 0 auto 16px;
  max-width: 580px;
  line-height: 1.3;
  color: #fff;
}
.cta-footer p {
  color: #bbb;
  max-width: 480px;
  margin: 0 auto 36px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
}
.cta-footer .cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cta-footer .contact-details {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  color: #aaa;
}
.cta-footer .contact-details a { color: #fff; text-decoration: none; }
.cta-footer .contact-details a:hover { text-decoration: underline; }

/* ── Related links ──────────────────────────────────────────────────────────── */
.related {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
.related h3 {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.related-links a {
  color: var(--accent);
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.related-links a:hover { border-color: var(--accent); }

/* ── Site footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: #aaa;
  padding: 48px 0 24px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 20px;
}
.footer-brand img { margin-bottom: 12px; }
.footer-brand p { color: #888; font-size: 13px; line-height: 1.6; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { color: #888; text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 20px;
  color: #555;
  font-size: 12px;
}

/* ── Responsive ──────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 24px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }
  .site-nav.is-open .nav-panel { display: block; }
  .site-nav.is-open .nav-toggle-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .site-nav.is-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
  .site-nav.is-open .nav-toggle-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .site-nav { position: relative; }
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    width: 100%;
  }
  .nav-links li a { padding: 10px 0; font-size: 15px; width: 100%; }
  .nav-links a.nav-cta,
  .nav-links a.nav-dashboard { padding: 10px 0; background: none; border-radius: 0; }
  .nav-links a.nav-cta { color: var(--accent) !important; }
  .nav-links a.nav-dashboard { color: #fff !important; }
  .nav-toggle { display: flex; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reassurance { gap: 16px; }
  .section-marker .line { display: none; }
  .detail-cards { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; gap: 1px; }
  .hero { padding: 60px 24px 52px; }
}

@media (max-width: 600px) {
  .step { grid-template-columns: 1fr; }
  .step-num { width: 44px; height: 44px; font-size: 16px; }
  .tl-grid { grid-template-columns: 1fr 1fr; }
  .concern-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 20px 40px; }
  .cta-footer { padding: 48px 20px; }
  .expect-section { padding: 40px 0; }
  .tailored-callout { padding: 40px 20px; }
  .concerns { padding: 32px 20px; }
  .timeline-bar { padding: 40px 20px; }
  .tl-grid { grid-template-columns: 1fr; }
}
