/* ═══════════════════════════════════════
   Drift & Detail — styles.css
   Palette: Slate / Navy / Seafoam / Moss
═══════════════════════════════════════ */

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

/* ── Tokens ── */
:root {
  --navy:   #1E2B38;
  --ocean:  #1A3A6C;
  --sky:    #3A8C7A;
  --foam:   #d0e8e3;
  --sand:   #F0EDE5;
  --accent: #3A8C7A;
  --mint:   #2D4A3E;
  --cream:  #F9F6EE;
  --ink:    #1E2B38;
  --muted:  #6B7B8A;
  --rule:   #d4cfc4;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── Utility ── */
.serif { font-family: 'Libre Baskerville', Georgia, serif; }
.coral { color: var(--accent); }
.mint  { color: var(--mint); }
.ocean { color: var(--ocean); }

/* ── SVG icon helpers ── */
.badge-icon { display: flex; align-items: center; justify-content: center; }
.badge-icon svg { color: var(--ocean); }
.pricing-col-icon { margin-bottom: 0.75rem; color: var(--sky); }
.step-icon svg { color: #fff; }
.stat-icon svg { color: var(--sky); }
.service-list li svg { flex-shrink: 0; color: var(--mint); }

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 3rem;
  background: rgba(30, 43, 56, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  height: 68px;
}

.nav-logo {
  display: flex; align-items: center; gap: 0;
  text-decoration: none;
}
.nav-logo-text {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.25rem; font-weight: 700;
  color: #fff; line-height: 1.1;
}
.nav-logo-text em { font-style: italic; font-weight: 400; color: var(--sky); }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  color: rgba(255,255,255,0.65); text-decoration: none;
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.04em; transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }

.nav-cta {
  background: var(--sky); color: #fff !important;
  padding: 0.6rem 1.4rem; border-radius: 2rem;
  font-weight: 600 !important; font-size: 0.82rem;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--accent) !important; transform: translateY(-1px); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 80px;
}
.hero-bg { position: absolute; inset: 0; opacity: 0.18; }
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 5rem 3rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(58,140,122,0.15);
  border: 1px solid rgba(58,140,122,0.3);
  color: var(--sky); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.4rem 0.9rem; border-radius: 2rem;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.8s ease both;
}
.hero h1 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 900; line-height: 1.05;
  color: #fff;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  margin-top: 1.5rem;
  font-size: 1.1rem; line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 42ch;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-actions {
  margin-top: 2.5rem;
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-stats {
  display: flex; gap: 2.5rem;
  margin-top: 3.5rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeUp 0.8s 0.4s ease both;
}
.stat-num {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 2rem; font-weight: 700; color: #fff; line-height: 1;
  display: flex; align-items: center; gap: 0.4rem;
}
.stat-label {
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
  margin-top: 0.3rem; letter-spacing: 0.06em; text-transform: uppercase;
}
.hero-visual { position: relative; animation: fadeIn 1s 0.3s ease both; }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--ocean); color: #fff;
  padding: 0.85rem 2rem; border-radius: 2rem;
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none; transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(26,58,108,0.35);
}
.btn-primary:hover { background: #153168; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,58,108,0.4); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: rgba(255,255,255,0.8);
  padding: 0.85rem 1.75rem; border-radius: 2rem;
  font-weight: 500; font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

.btn-dark {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--navy); color: #fff;
  padding: 0.85rem 2rem; border-radius: 2rem;
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none; transition: all 0.2s;
}
.btn-dark:hover { background: var(--ocean); transform: translateY(-2px); }

/* ══════════════════════════════════════
   WAVE DIVIDER
══════════════════════════════════════ */
.wave-divider {
  display: block; width: 100%;
  overflow: hidden; line-height: 0; margin-top: -2px;
}

/* ══════════════════════════════════════
   CONTENT SECTIONS (alternating)
══════════════════════════════════════ */
.section {
  padding: 7rem 0;
  position: relative; overflow: hidden;
}
.section:nth-child(even) { background: var(--sand); }
.section:nth-child(odd)  { background: var(--cream); }

.section-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 3rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.section-inner.reverse { direction: rtl; }
.section-inner.reverse > * { direction: ltr; }

.section-number {
  position: absolute;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 22rem; font-weight: 900; line-height: 1;
  color: var(--rule); opacity: 0.35;
  pointer-events: none; user-select: none;
  top: -3rem; right: -2rem; z-index: 0;
}
.section-inner.reverse ~ .section-number,
.section-inner.reverse + .section-number { right: auto; left: -2rem; }

.section-text { position: relative; z-index: 1; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.1rem;
}
.section-eyebrow::before {
  content: ''; display: inline-block;
  width: 24px; height: 2px; background: currentColor;
}

.section-h2 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700; line-height: 1.2;
  color: var(--navy); margin-bottom: 1.25rem;
}
.section-h2 em { font-style: italic; color: var(--ocean); }

.section-body {
  font-size: 1.05rem; line-height: 1.8;
  color: var(--muted); margin-bottom: 2rem;
}

.service-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.6rem;
  margin-bottom: 2rem;
}
.service-list li {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.95rem; font-weight: 500; color: var(--ink);
}

.price-inline {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 0.95rem; font-weight: 700;
  color: var(--accent); margin-left: auto;
}

/* ══════════════════════════════════════
   ILLUSTRATION PANELS
══════════════════════════════════════ */
.illus-panel {
  position: relative; z-index: 1;
  border-radius: 1.5rem; overflow: hidden;
}
.illus-panel svg { display: block; width: 100%; height: auto; }

.illus-badge {
  position: absolute;
  background: #fff; border-radius: 1rem;
  padding: 0.85rem 1.25rem;
  box-shadow: 0 12px 40px rgba(26,43,60,0.18);
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.85rem; font-weight: 600; color: var(--navy);
  min-width: 160px;
}
.illus-badge .badge-sub { font-size: 0.72rem; font-weight: 400; color: var(--muted); margin-top: 1px; }
.illus-badge-1 { bottom: 2rem; left: -1.5rem; }
.illus-badge-2 { top: 2rem; right: -1.5rem; }

/* ══════════════════════════════════════
   PRICING
══════════════════════════════════════ */
.pricing-section {
  background: var(--navy);
  padding: 7rem 0;
  position: relative; overflow: hidden;
}
.pricing-inner { max-width: 1280px; margin: 0 auto; padding: 0 3rem; }
.pricing-header { text-align: center; margin-bottom: 4rem; }
.pricing-header .section-eyebrow { color: var(--sky); justify-content: center; }
.pricing-header .section-eyebrow::before { background: var(--sky); }
.pricing-header .section-h2 { color: #fff; }
.pricing-header .section-body { color: rgba(255,255,255,0.5); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.pricing-col {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  transition: background 0.2s;
}
.pricing-col:hover { background: rgba(255,255,255,0.08); }
.pricing-col-cat {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sky); margin-bottom: 1.25rem;
}
.pricing-item {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pricing-item:last-child { border-bottom: none; }
.pricing-item-name { font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.pricing-item-price {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 0.95rem; font-weight: 700; color: var(--sky);
}

/* ══════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════ */
.how-section {
  background: var(--cream);
  padding: 7rem 0; position: relative;
}
.how-inner { max-width: 1280px; margin: 0 auto; padding: 0 3rem; }
.how-header { text-align: center; margin-bottom: 5rem; }

.steps-track {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0; position: relative;
}
.steps-track::before {
  content: '';
  position: absolute; top: 3rem; left: 16.66%; right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, var(--ocean), var(--mint));
  z-index: 0;
}
.step {
  position: relative; z-index: 1;
  text-align: center; padding: 0 2.5rem;
}
.step-num {
  width: 4rem; height: 4rem;
  background: var(--navy); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.4rem; font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 0 6px var(--cream), 0 0 0 8px var(--sky);
}
.step:nth-child(2) .step-num { background: var(--ocean); box-shadow: 0 0 0 6px var(--cream), 0 0 0 8px var(--mint); }
.step:nth-child(3) .step-num { background: var(--mint); box-shadow: 0 0 0 6px var(--cream), 0 0 0 8px var(--accent); }
.step h3 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0.6rem;
}
.step p { font-size: 0.95rem; line-height: 1.7; color: var(--muted); }

/* ══════════════════════════════════════
   CAR SEAT CALLOUT
══════════════════════════════════════ */
.carseat-section {
  background: var(--sand);
  padding: 7rem 0;
  position: relative; overflow: hidden;
}
.policy-box {
  background: rgba(26,58,108,0.07);
  border: 1px solid rgba(26,58,108,0.2);
  border-left: 3px solid var(--ocean);
  border-radius: 0.75rem;
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.75rem;
}
.policy-box-title {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ocean); margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.35rem;
}
.policy-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.45rem;
}
.policy-list li {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 0.9rem; color: var(--ink); line-height: 1.5;
}

/* ══════════════════════════════════════
   REVIEWS
══════════════════════════════════════ */
.reviews-section {
  background: var(--navy);
  padding: 7rem 0; overflow: hidden;
}
.reviews-inner { max-width: 1280px; margin: 0 auto; padding: 0 3rem; }
.reviews-header { text-align: center; margin-bottom: 4rem; }
.reviews-header .section-h2 { color: #fff; }

.reviews-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem;
}
.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 1.25rem; padding: 2rem;
  transition: background 0.2s;
}
.review-card:hover { background: rgba(255,255,255,0.09); }
.review-stars { color: var(--sky); font-size: 1rem; letter-spacing: 0.15em; margin-bottom: 1rem; }
.review-text {
  font-size: 0.95rem; line-height: 1.75;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem; font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--ocean);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; font-size: 0.9rem;
}
.review-name { font-weight: 600; color: #fff; font-size: 0.88rem; }
.review-meta { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 1px; }

/* ══════════════════════════════════════
   QUOTE CALCULATOR
══════════════════════════════════════ */
.ctab {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 1rem 1.4rem;
  border: none; border-bottom: 3px solid transparent;
  background: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 600;
  color: var(--muted); white-space: nowrap;
  transition: color 0.18s, border-color 0.18s;
  flex-shrink: 0;
}
.ctab:hover { color: var(--navy); }
.ctab.active { color: var(--ocean); border-bottom-color: var(--ocean); }

.calc-panel-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 1rem;
}
.size-pill {
  padding: 0.4rem 1rem; border-radius: 2rem;
  border: 1.5px solid var(--rule); background: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 600;
  color: var(--muted); cursor: pointer; transition: all 0.18s;
}
.size-pill:hover { border-color: var(--sky); color: var(--ocean); }
.size-pill.active { border-color: var(--ocean); background: rgba(26,58,108,0.08); color: var(--ocean); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.svc-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 0.45rem;
  padding: 1.1rem 0.75rem;
  border: 2px solid var(--rule); border-radius: 1rem;
  background: #fff; cursor: pointer;
  transition: all 0.18s; position: relative;
}
.svc-card:hover { border-color: var(--sky); background: var(--foam); transform: translateY(-2px); }
.svc-card.selected {
  border-color: var(--ocean); background: rgba(26,58,108,0.07);
  box-shadow: 0 0 0 3px rgba(26,58,108,0.15);
}
.svc-card.selected::after {
  content: '';
  position: absolute; top: 0.5rem; right: 0.5rem;
  width: 16px; height: 16px;
  background: var(--mint); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M3 8l3.5 3.5L13 5'/%3E%3C/svg%3E");
  background-size: cover;
}
.svc-icon { display: flex; align-items: center; justify-content: center; color: var(--ocean); }
.svc-name { font-size: 0.84rem; font-weight: 600; color: var(--navy); line-height: 1.2; }
.svc-price { font-size: 0.75rem; color: var(--muted); font-weight: 500; }

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
.cta-section {
  padding: 8rem 0;
  background: var(--cream);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-inner {
  position: relative; z-index: 1;
  max-width: 640px; margin: 0 auto; padding: 0 2rem;
}
.cta-inner .section-h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
.cta-sub { font-size: 1.1rem; color: var(--muted); line-height: 1.7; margin: 1.25rem 0 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: #0e1a24;
  padding: 4rem 3rem 2.5rem;
  color: rgba(255,255,255,0.45);
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem; flex-wrap: wrap; gap: 2rem;
}
.footer-brand .nav-logo-text { color: #fff; font-size: 1.3rem; }
.footer-brand p { font-size: 0.85rem; margin-top: 0.5rem; max-width: 28ch; line-height: 1.6; }
.footer-links { display: flex; gap: 4rem; flex-wrap: wrap; }
.footer-col h4 {
  color: rgba(255,255,255,0.7); font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700; margin-bottom: 1rem;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.4);
  text-decoration: none; font-size: 0.875rem;
  margin-bottom: 0.5rem; transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom a { color: var(--sky); text-decoration: none; }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .section-inner,
  .section-inner.reverse { grid-template-columns: 1fr; direction: ltr; gap: 3rem; }
  .section-inner.reverse .illus-panel { order: -1; }
  .section-number { font-size: 10rem; }
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .steps-track { grid-template-columns: 1fr; gap: 3rem; }
  .steps-track::before { display: none; }
  .reviews-row { grid-template-columns: 1fr; }
  .illus-badge-1, .illus-badge-2 { display: none; }
  .section-inner { padding: 0 1.5rem; }
  .pricing-inner, .how-inner, .reviews-inner { padding: 0 1.5rem; }
  .two-ways-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  footer { padding: 3rem 1.5rem 2rem; }
  .footer-links { gap: 2rem; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .ctab { padding: 0.85rem 0.9rem; font-size: 0.78rem; }
  #quote-bar { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════
   LAUNCH BANNER
══════════════════════════════════════ */
@keyframes marquee-scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes banner-shimmer { 0%{opacity:.4} 50%{opacity:1} 100%{opacity:.4} }
@keyframes badge-pop { 0%,100%{transform:scale(1) rotate(-1.5deg)} 50%{transform:scale(1.1) rotate(-1.5deg)} }
@keyframes btn-bounce { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-3px) scale(1.03)} }
@keyframes cd-pulse { 0%,100%{opacity:1} 50%{opacity:.6} }

.launch-banner { position: sticky; top: 0; z-index: 102; font-family: 'DM Sans', sans-serif; }
.launch-banner-main {
  background: #0f1c28;
  padding: .45rem 1.5rem;
  display: flex; align-items: center; gap: .75rem;
  position: relative; overflow: hidden; min-height: 38px;
}
.launch-banner-glow { display: none; }
.launch-badge {
  background: #3A8C7A; color: #fff;
  font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 4px; white-space: nowrap; flex-shrink: 0;
}
.launch-title {
  font-size: 12px; font-weight: 600; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1; min-width: 0;
}
.launch-countdown {
  display: flex; align-items: center; gap: .3rem; flex-shrink: 0;
}
.cd-unit { display: flex; align-items: baseline; gap: 2px; }
.cd-num { font-size: 13px; font-weight: 700; color: #3A8C7A; line-height: 1; display: inline; }
.cd-lbl { font-size: 9px; color: rgba(255,255,255,.4); text-transform: uppercase; display: inline; }
.cd-colon { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.25); }
.launch-btn {
  background: #3A8C7A; color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: .04em;
  border: none; padding: 5px 13px; border-radius: 20px;
  cursor: pointer; white-space: nowrap; flex-shrink: 0;
  transition: background .15s; text-decoration: none; display: inline-block;
}
.launch-btn:hover { background: #2d7060; color: #fff; }
.launch-marquee {
  background: #1a2a38;
  border-top: .5px solid rgba(58,140,122,.15);
  overflow: hidden; padding: .28rem 0;
}
.launch-marquee-track {
  display: flex; width: max-content;
  animation: marquee-scroll 30s linear infinite; white-space: nowrap;
}
.launch-marquee-track span {
  font-size: 9.5px; font-weight: 600; color: rgba(255,255,255,.45);
  letter-spacing: .1em; text-transform: uppercase; padding: 0 1.5rem;
}
.launch-marquee-track .msep { color: #3A8C7A; padding: 0 .2rem; letter-spacing: 0; }
.launch-marquee-track .mhi { color: rgba(255,255,255,.8); }
@media (max-width: 600px) {
  .launch-countdown { display: none; }
  .launch-title { font-size: 11px; }
}

/* ══════════════════════════════════════
   PHOTO SLIDESHOWS (replace illus panels)
══════════════════════════════════════ */
.slide-panel {
  position: relative; border-radius: 1.5rem; overflow: hidden;
  background: #111; z-index: 1; aspect-ratio: 4/3;
}
.slide-item {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity .7s ease;
}
.slide-item.active { opacity: 1; }
.slide-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,43,60,.65) 0%, transparent 55%);
}
.slide-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem 1.25rem;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.slide-caption-text { font-size: 13px; font-weight: 600; color: #fff; }
.slide-caption-sub { font-size: 11px; color: rgba(255,255,255,.6); margin-top: 2px; }
.slide-dots { display: flex; gap: 5px; align-items: center; }
.slide-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.4); border: none; padding: 0; cursor: pointer;
  transition: all .2s;
}
.slide-dot.active { background: #3A8C7A; width: 16px; border-radius: 3px; }
.slide-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,0,0,.35); border: .5px solid rgba(255,255,255,.25);
  color: #fff; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s; z-index: 2; line-height: 1;
  font-family: sans-serif; font-weight: 300;
}
.slide-arrow:hover { background: rgba(0,0,0,.6); }
.slide-arrow-prev { left: .65rem; }
.slide-arrow-next { right: .65rem; }
.slide-badge {
  position: absolute; background: #fff; border-radius: 1rem;
  padding: .75rem 1.1rem; box-shadow: 0 10px 36px rgba(26,43,60,.2);
  display: flex; align-items: center; gap: .65rem;
  font-size: .85rem; font-weight: 600; color: var(--navy); min-width: 150px; z-index: 3;
}
.slide-badge .badge-sub { font-size: .72rem; font-weight: 400; color: var(--muted); margin-top: 1px; }
.slide-badge-bl { bottom: 1.5rem; left: -1.25rem; }
.slide-badge-tr { top: 1.5rem; right: -1.25rem; }

/* ══════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════ */
.about-section {
  background: var(--navy); padding: 7rem 0; position: relative; overflow: hidden;
}
.about-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 3rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-avatars {
  display: flex; gap: 1.5rem; align-items: flex-end;
  justify-content: center; position: relative;
}
.about-avatar-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 1.25rem; padding: 1.75rem 1.5rem; text-align: center;
  flex: 1; max-width: 200px;
}
.about-avatar-circle {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.6rem; font-weight: 700; color: #fff; margin: 0 auto 1rem;
}
.about-avatar-name { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: .25rem; }
.about-avatar-role { font-size: .72rem; color: rgba(255,255,255,.4); letter-spacing: .07em; text-transform: uppercase; }
.about-text .section-eyebrow { color: var(--sky); }
.about-text .section-eyebrow::before { background: var(--sky); }
.about-text .section-h2 { color: #fff; }
.about-body { font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,.6); margin-bottom: 1.25rem; }
.about-langs { display: flex; gap: .65rem; flex-wrap: wrap; margin-top: 1.25rem; }
.about-lang-pill {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 2rem; padding: .35rem .9rem; font-size: .78rem; color: rgba(255,255,255,.55);
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .slide-badge-bl, .slide-badge-tr { display: none; }
}

@media (max-width: 900px) {
  .pkg-grid { grid-template-columns: 1fr !important; }
}
