/* =====================================================================
   The Hands-Off Business Blueprint — styles
   Brand: Manrope · Dark Blue #003A5B · Light Blue #00B7F5 · White
   ===================================================================== */

:root {
  --navy:        #003A5B;
  --navy-deep:   #002B45;
  --navy-darker: #001E30;
  --cyan:        #00B7F5;
  --cyan-bright: #19C0FF;
  --cyan-deep:   #0090c8;
  --white:       #FFFFFF;

  --ink:         #0e2433;   /* body text on light */
  --ink-soft:    #4a5d6b;   /* muted text on light */
  --paper:       #f4f8fb;   /* light section bg */
  --paper-2:     #eaf1f6;

  --line:        rgba(0, 58, 91, 0.12);
  --line-light:  rgba(255, 255, 255, 0.14);

  --radius:      18px;
  --radius-sm:   12px;
  --shadow:      0 24px 60px -24px rgba(0, 30, 48, 0.30);
  --shadow-cyan: 0 16px 40px -12px rgba(0, 183, 245, 0.45);

  --maxw:        1180px;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);

  --font: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 { margin: 0; line-height: 1.08; font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.01em; }
p { margin: 0 0 1rem; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan);
  margin: 0 0 1.1rem;
}
.eyebrow sup { font-size: 0.6em; }

.kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan-deep);
  margin: 0 0 0.9rem;
  position: relative;
  padding-left: 30px;
}
.kicker::before {
  content: ""; position: absolute; left: 0; top: 0.45em;
  width: 20px; height: 2px; background: var(--cyan); border-radius: 2px;
}
.kicker--light { color: var(--cyan-bright); }

.muted { color: var(--ink-soft); }
.lg { font-size: 1.12rem; }
.hl { color: var(--cyan); }

/* ---------- Buttons ---------- */
.btn {
  --btn-pad: 0.92em 1.6em;
  display: inline-flex; align-items: center; gap: 0.5em;
  padding: var(--btn-pad);
  font-family: var(--font); font-weight: 700; font-size: 0.98rem;
  border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  line-height: 1; white-space: nowrap;
}
.btn svg { transition: transform .25s var(--ease); }
.btn-primary { background: var(--cyan); color: var(--navy-darker); box-shadow: var(--shadow-cyan); }
.btn-primary:hover { background: var(--cyan-bright); transform: translateY(-2px); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost { background: transparent; color: var(--white); border-color: var(--line-light); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }
.btn-sm { padding: 0.7em 1.25em; font-size: 0.9rem; }
.btn-lg { padding: 1.1em 2.2em; font-size: 1.08rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.4em;
  font-weight: 700; color: var(--cyan-deep);
  border-bottom: 2px solid transparent; transition: gap .2s var(--ease), border-color .2s;
}
.link-arrow:hover { gap: 0.75em; border-color: var(--cyan); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  background: transparent; transition: background .35s, box-shadow .35s, padding .35s;
  padding: 14px 0;
}
.site-header.scrolled {
  background: rgba(0, 30, 48, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line-light);
  padding: 8px 0;
}
.header-inner { display: flex; align-items: center; gap: 24px; }
.brand-logo { height: 38px; width: auto; }
.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a {
  font-size: 0.92rem; font-weight: 600; color: rgba(255,255,255,0.82);
  position: relative; padding: 4px 0; transition: color .2s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--cyan); transition: width .25s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--white); }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.header-cta { margin-left: 4px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; margin-left: auto;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: var(--white);
  background: radial-gradient(1200px 700px at 78% -10%, #014d77 0%, var(--navy) 42%, var(--navy-deep) 100%);
  padding: 150px 0 0; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(transparent 95%, rgba(255,255,255,0.04) 95%),
    linear-gradient(90deg, transparent 95%, rgba(255,255,255,0.04) 95%);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(900px 500px at 70% 10%, #000, transparent 75%);
          mask-image: radial-gradient(900px 500px at 70% 10%, #000, transparent 75%);
}
.hero-grid {
  position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 56px; align-items: center; padding-bottom: 70px;
}
.hero-copy h1 { margin-bottom: 1.3rem; }
.hero .lead { font-size: 1.18rem; color: rgba(255,255,255,0.8); max-width: 33ch; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 2.4rem; }
.hero-pillars { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px 26px; }
.hero-pillars li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.95rem; color: rgba(255,255,255,0.9); }
.hero-pillars .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(0,183,245,0.18); }

.hero-media { position: relative; }
.hero-photo {
  position: relative; border-radius: 26px; overflow: hidden;
  box-shadow: var(--shadow); aspect-ratio: 4 / 4.6;
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,30,48,0.45)); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.hero-badge {
  position: absolute; left: -28px; bottom: 42px; z-index: 3;
  background: var(--cyan); color: var(--navy-darker);
  border-radius: 16px; padding: 16px 20px; display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-cyan); animation: floaty 5s ease-in-out infinite;
}
.hero-badge-num { font-size: 2.4rem; font-weight: 800; line-height: 1; letter-spacing: -0.03em; }
.hero-badge-label { font-size: 0.78rem; font-weight: 700; line-height: 1.15; }
.hero-chip {
  position: absolute; right: -18px; top: 34px; z-index: 3;
  background: rgba(0, 30, 48, 0.72); backdrop-filter: blur(10px);
  border: 1px solid var(--line-light); color: #fff;
  border-radius: 999px; padding: 10px 16px; font-size: 0.85rem; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow); animation: floaty 6s ease-in-out infinite .6s;
}
.hero-chip svg { color: var(--cyan); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.hero-marquee {
  position: relative; margin-top: 8px; border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light); background: rgba(0,0,0,0.12);
  overflow: hidden; padding: 16px 0;
}
.marquee-track { display: flex; gap: 26px; width: max-content; animation: marquee 28s linear infinite; }
.marquee-track span { font-weight: 700; font-size: 1rem; color: rgba(255,255,255,0.55); white-space: nowrap; text-transform: uppercase; letter-spacing: 0.04em; }
.marquee-track span:nth-child(even) { color: var(--cyan); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track, .hero-badge, .hero-chip { animation: none; } }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 116px) 0; }
.section-head { max-width: 720px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section-head--left { text-align: left; margin-inline: 0; }
.section-sub { color: var(--ink-soft); font-size: 1.08rem; margin-top: 0.9rem; }

/* Problem */
.problem { background: var(--paper); }
.problem-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.problem h2 { margin-bottom: 1.1rem; }
.problem-stats { display: grid; gap: 16px; }
.stat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; box-shadow: 0 10px 30px -20px rgba(0,30,48,0.4);
}
.stat-num { display: block; font-size: 1.55rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.stat-label { color: var(--ink-soft); font-weight: 600; font-size: 0.95rem; }
.stat--accent { background: var(--navy); border-color: var(--navy); }
.stat--accent .stat-num { color: var(--cyan-bright); }
.stat--accent .stat-label { color: rgba(255,255,255,0.85); }

/* Card grids */
.card-grid { display: grid; gap: 22px; }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }

/* Discover cards */
.feature-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.feature-ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(0,183,245,0.16), rgba(0,58,91,0.08));
  color: var(--cyan-deep); margin-bottom: 20px;
}
.feature-ico svg { width: 28px; height: 28px; }
.feature-card h3 { margin-bottom: 0.55rem; color: var(--navy); }
.feature-card p { color: var(--ink-soft); margin: 0; font-size: 0.97rem; }

/* Program (dark) */
.program { background: var(--navy-deep); color: #fff; position: relative; }
.program::before {
  content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background: radial-gradient(700px 380px at 12% 0%, rgba(0,183,245,0.18), transparent 60%);
}
.program .section-head { position: relative; }
.program h2 { color: #fff; }
.program h2 em { color: var(--cyan); font-style: normal; }
.program .section-sub { color: rgba(255,255,255,0.7); }
.program-grid { position: relative; }
.program-card {
  text-align: left; font-family: var(--font); cursor: pointer;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 28px 26px 26px; color: #fff;
  display: flex; flex-direction: column; gap: 4px;
  transition: transform .3s var(--ease), background .3s, border-color .3s, box-shadow .3s;
}
.program-card:hover { transform: translateY(-6px); background: rgba(0,183,245,0.10); border-color: rgba(0,183,245,0.5); box-shadow: 0 24px 50px -28px rgba(0,183,245,0.6); }
.program-num { font-size: 0.8rem; font-weight: 800; color: var(--cyan); letter-spacing: 0.1em; }
.program-card h3 { color: #fff; margin: 6px 0 6px; }
.program-card p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin: 0 0 16px; }
.find-more { margin-top: auto; font-weight: 700; font-size: 0.88rem; color: var(--cyan-bright); display: inline-flex; gap: 0.4em; transition: gap .2s var(--ease); }
.program-card:hover .find-more { gap: 0.8em; }

/* Process */
.process-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: start; }
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--cyan), var(--line)); }
.timeline li { position: relative; padding: 0 0 34px 42px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 20px; height: 20px; border-radius: 50%;
  background: #fff; border: 3px solid var(--cyan); box-shadow: 0 0 0 4px rgba(0,183,245,0.14);
}
.t-step { font-size: 0.74rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; color: var(--cyan-deep); }
.timeline h3 { color: var(--navy); margin: 4px 0 6px; }
.timeline p { color: var(--ink-soft); margin: 0; }
.process-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: sticky; top: 100px; }
.process-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.4; }
.process-quote { position: absolute; left: 18px; right: 18px; bottom: 18px; background: rgba(0,30,48,0.78); backdrop-filter: blur(8px); border: 1px solid var(--line-light); border-radius: 14px; padding: 16px 20px; }
.process-quote p { margin: 0; color: #fff; font-weight: 700; font-size: 1.02rem; }

/* Benefits */
.benefits { background: var(--paper); }
.benefit {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px;
  position: relative; padding-top: 34px; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.benefit::before { content: ""; position: absolute; left: 26px; top: 0; width: 44px; height: 4px; background: var(--cyan); border-radius: 0 0 4px 4px; }
.benefit:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.benefit h3 { color: var(--navy); margin-bottom: 0.5rem; }
.benefit p { color: var(--ink-soft); margin: 0; font-size: 0.97rem; }

/* Support banner */
.support { background: linear-gradient(120deg, var(--navy) 0%, var(--navy-deep) 100%); color: #fff; }
.support-inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: center; }
.support h2 { color: #fff; }
.support-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.support-list li { position: relative; padding-left: 38px; color: rgba(255,255,255,0.82); }
.support-list li::before {
  content: "✓"; position: absolute; left: 0; top: -1px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--cyan); color: var(--navy-darker); font-weight: 800; font-size: 0.85rem;
  display: grid; place-items: center;
}
.support-list strong { color: #fff; }

/* Results / testimonials */
.placeholder-note {
  display: inline-block; font-size: 0.78rem; font-weight: 700; color: var(--cyan-deep);
  background: rgba(0,183,245,0.1); border: 1px dashed var(--cyan); border-radius: 999px;
  padding: 5px 14px; margin-top: 14px;
}
.quote-card {
  margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: 0 14px 40px -28px rgba(0,30,48,0.5);
  display: flex; flex-direction: column; gap: 14px;
}
.stars { color: var(--cyan); letter-spacing: 3px; font-size: 1rem; }
.quote-card blockquote { margin: 0; font-size: 1.06rem; font-weight: 600; color: var(--ink); line-height: 1.5; }
.quote-card figcaption { display: flex; flex-direction: column; margin-top: auto; }
.q-name { font-weight: 800; color: var(--navy); }
.q-role { font-size: 0.85rem; color: var(--ink-soft); }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.faq .btn { margin-top: 18px; }
.accordion { display: grid; gap: 12px; }
.accordion details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0 22px; transition: border-color .25s, box-shadow .25s;
}
.accordion details[open] { border-color: rgba(0,183,245,0.45); box-shadow: var(--shadow); }
.accordion summary {
  list-style: none; cursor: pointer; padding: 18px 0; font-weight: 700; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+"; font-size: 1.5rem; font-weight: 600; color: var(--cyan-deep); transition: transform .3s var(--ease); line-height: 1;
}
.accordion details[open] summary::after { transform: rotate(45deg); }
.accordion details p { margin: 0; padding: 0 0 20px; color: var(--ink-soft); }

/* Final CTA */
.cta-final { position: relative; color: #fff; text-align: center; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background: radial-gradient(800px 500px at 50% 120%, #015c8c, var(--navy) 55%, var(--navy-deep)); }
.cta-bg::after {
  content: ""; position: absolute; inset: 0; opacity: .4;
  background-image: linear-gradient(90deg, transparent 96%, rgba(255,255,255,0.05) 96%), linear-gradient(transparent 96%, rgba(255,255,255,0.05) 96%);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(500px 300px at 50% 50%, #000, transparent 80%);
          mask-image: radial-gradient(500px 300px at 50% 50%, #000, transparent 80%);
}
.cta-inner { position: relative; max-width: 760px; }
.cta-final h2 { color: #fff; margin-bottom: 1rem; }
.cta-sub { font-size: 1.18rem; color: rgba(255,255,255,0.82); margin-bottom: 2rem; }
.cta-fine { margin-top: 1.4rem; font-size: 0.86rem; color: rgba(255,255,255,0.6); }

/* Footer */
.site-footer { background: var(--navy-darker); color: rgba(255,255,255,0.7); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line-light); }
.footer-logo { height: 40px; margin-bottom: 18px; }
.footer-brand p { max-width: 38ch; font-size: 0.95rem; }
.footer-col h4 { color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 16px; }
.footer-col a, .footer-loc { display: block; padding: 6px 0; font-size: 0.95rem; transition: color .2s; }
.footer-col a:hover { color: var(--cyan-bright); }
.footer-loc { color: rgba(255,255,255,0.5); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 22px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* ---------- Modal ---------- */
.modal-root { position: fixed; inset: 0; z-index: 100; display: none; }
.modal-root.open { display: grid; place-items: center; padding: 24px; }
.modal-overlay { position: fixed; inset: 0; background: rgba(0,20,33,0.72); backdrop-filter: blur(6px); animation: fade .3s var(--ease); }
.modal {
  position: relative; z-index: 1; width: min(560px, 100%);
  background: #fff; border-radius: 22px; padding: 40px 40px 36px; box-shadow: var(--shadow);
  animation: pop .35s var(--ease);
}
.modal-eyebrow { font-size: 0.74rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; color: var(--cyan-deep); }
.modal h3 { color: var(--navy); font-size: 1.6rem; margin: 8px 0 14px; }
.modal p { color: var(--ink-soft); font-size: 1.02rem; }
.modal .btn { margin-top: 8px; }
.modal-close {
  position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; color: var(--navy); cursor: pointer;
  display: grid; place-items: center; transition: background .2s, transform .2s;
}
.modal-close:hover { background: var(--paper-2); transform: rotate(90deg); }
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translateY(16px) scale(.97); } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Program-only variant (index-program.html, no founder imagery) ---------- */
.program-panel {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.14); border-radius: 26px;
  padding: 34px 32px 30px; box-shadow: var(--shadow); backdrop-filter: blur(6px);
}
.panel-symbol { position: absolute; right: -28px; top: -28px; width: 170px; opacity: 0.08; pointer-events: none; }
.panel-eyebrow { text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.72rem; font-weight: 800; color: var(--cyan-bright); margin: 0 0 0.5rem; }
.panel-title { color: #fff; font-size: 1.5rem; line-height: 1.15; margin: 0 0 1.5rem; position: relative; }
.panel-stages { list-style: none; margin: 0 0 1.6rem; padding: 0; display: grid; gap: 15px; position: relative; }
.panel-stages li { display: grid; grid-template-columns: 22px 1fr; align-items: center; gap: 9px 12px; }
.ps-ico { width: 22px; height: 22px; border-radius: 50%; background: var(--cyan); color: var(--navy-darker); font-size: 0.7rem; font-weight: 800; display: grid; place-items: center; }
.ps-label { color: rgba(255,255,255,0.92); font-weight: 600; font-size: 0.96rem; }
.ps-bar { grid-column: 2; height: 6px; border-radius: 99px; background: rgba(255,255,255,0.12); overflow: hidden; }
.ps-bar i { display: block; height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--cyan-deep), var(--cyan-bright)); }
.panel-foot { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.12); position: relative; }
.panel-foot-num { font-size: 2.4rem; font-weight: 800; color: var(--cyan-bright); line-height: 1; letter-spacing: -0.03em; }
.panel-foot-text { font-size: 0.84rem; font-weight: 600; color: rgba(255,255,255,0.7); line-height: 1.25; }

.process-media--program { box-shadow: none; overflow: visible; }
.process-panel {
  position: relative; overflow: hidden;
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
  border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius);
  padding: 34px 32px; box-shadow: var(--shadow);
}
.process-panel .panel-symbol { right: -26px; bottom: -26px; top: auto; width: 165px; }
.pp-eyebrow { text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.72rem; font-weight: 800; color: var(--cyan-bright); margin: 0 0 1.1rem; position: relative; }
.pp-list { list-style: none; margin: 0 0 1.4rem; padding: 0; display: grid; gap: 13px; position: relative; }
.pp-list li { position: relative; padding-left: 32px; color: rgba(255,255,255,0.82); font-size: 0.97rem; }
.pp-list li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 22px; height: 22px; border-radius: 50%; background: var(--cyan); color: var(--navy-darker); font-weight: 800; font-size: 0.74rem; display: grid; place-items: center; }
.pp-list strong { color: #fff; }
.pp-quote { position: relative; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 18px; }
.pp-quote p { margin: 0; color: #fff; font-weight: 700; font-size: 1.04rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header.menu-open { background: rgba(0,30,48,0.96); backdrop-filter: blur(14px); }
  .nav.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    gap: 0; margin: 0; padding: 10px 24px 22px; background: rgba(0,30,48,0.98); backdrop-filter: blur(14px);
    border-top: 1px solid var(--line-light);
  }
  .nav.open a { padding: 14px 0; border-bottom: 1px solid var(--line-light); font-size: 1rem; }
  .hero-grid, .problem-grid, .process-grid, .support-inner, .faq-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .hero-media { max-width: 440px; margin: 8px auto 0; width: 100%; }
  .process-media { position: relative; top: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .container { padding-inline: 18px; }
  .cols-4, .cols-3 { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-badge { left: 8px; }
  .hero-chip { right: 8px; }
  .footer-grid, .footer-bottom { grid-template-columns: 1fr; }
  .modal { padding: 32px 24px 28px; }
}
