/* ============================================================
   INCYNQ.NET — Main Stylesheet
   Light theme · Syne display · DM Sans body
   v1.0
   ============================================================ */

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  /* Brand colours */
  --teal:           #007a87;
  --teal-mid:       #009aaa;
  --teal-light-bg:  #eef7f8;
  --teal-border:    rgba(0,122,135,0.18);
  --teal-glow:      rgba(0,122,135,0.12);

  --amber:          #e09500;
  --amber-hover:    #c98400;

  /* Tab colours — each distinct, all on-brand */
  --tab-1:  #007a87;   /* teal */
  --tab-2:  #e09500;   /* amber */
  --tab-3:  #0098a8;   /* aqua */
  --tab-4:  #005265;   /* deep teal */

  /* Surface */
  --bg:         #f2f7f7;
  --surface:    #ffffff;
  --surface-2:  #eef7f8;

  /* Text */
  --text:       #172028;
  --text-mid:   #3d5060;
  --text-muted: #6a8090;
  --text-light: #9ab0b8;

  /* Borders */
  --border:     #d8e6e8;

  /* Typography */
  --font-display: 'Manrope', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Shape */
  --radius:     10px;
  --radius-lg:  18px;
  --radius-xl:  26px;
  --radius-pill: 999px;

  /* Layout */
  --container:      1160px;
  --section-gap:    96px;
  --section-gap-sm: 64px;
}

/* ── Base ───────────────────────────────────────────────────── */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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


/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  line-height: 1;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s, color 0.18s, border-color 0.18s;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 2px 14px var(--teal-glow);
}
.btn-primary:hover {
  background: var(--teal-mid);
  box-shadow: 0 4px 22px rgba(0,122,135,0.28);
}

.btn-amber {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 2px 14px rgba(224,149,0,0.2);
}
.btn-amber:hover {
  background: var(--amber-hover);
  box-shadow: 0 4px 22px rgba(224,149,0,0.32);
}

.btn-white {
  background: #fff;
  color: var(--teal);
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  border-color: transparent;
}
.btn-white:hover {
  background: #f0fafb;
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn-lg  { padding: 13px 26px; font-size: 15px; }
.btn-xl  { padding: 15px 32px; font-size: 16px; }


/* ============================================================
   NAV
   ============================================================ */

.nav-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  background: rgba(242,247,247,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav-header.scrolled {
  background: rgba(242,247,247,0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  flex-shrink: 0;
}
.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.18s;
}
.nav-links a:hover { color: var(--teal); }
.nav-link-subtle { opacity: 0.6; font-size: 13px !important; }

/* Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-cta { padding: 9px 20px; font-size: 13px; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.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 {
  padding: 80px 0 48px;
}

/* Outer card */
.hero-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border);
  overflow: hidden;
  box-shadow:
    0 4px 40px rgba(0,122,135,0.07),
    0 1px 3px rgba(0,0,0,0.04);
}

/* ── Teal banner ─────────────────────────────────────────── */
.hero-banner {
  background: var(--teal);
  padding: 52px 52px 44px;
  position: relative;
  overflow: hidden;
}
/* Soft radial sheen top-right */
.hero-banner::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.025em;
  margin-bottom: 22px;
}

.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 6.5vw, 78px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 18px;
}
.hero-headline em {
  font-style: normal;
  color: var(--amber);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  font-weight: 300;
  max-width: 540px;
  margin-bottom: 30px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Bus + pills row ─────────────────────────────────────── */
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 320px;
  align-items: center;
  gap: 40px;
  padding: 0 48px 36px;
  background: #ffffff;
}

.hero-bus-col {
  padding-top: 20px;
  background: #ffffff;
}

.hero-bus {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  animation: floatBus 7s ease-in-out infinite;
  user-select: none;
}
@keyframes floatBus {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

.hero-pills-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 0 8px;
}

.hero-pills {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-pill {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.45;
  transition: border-color 0.2s;
}
.hero-pill:hover { border-color: var(--teal-border); }
.pill-icon { font-size: 15px; flex-shrink: 0; margin-top: 1px; }

.hero-rating-teaser {
  font-size: 12.5px;
  color: var(--text-muted);
  font-style: italic;
  background: var(--teal-light-bg);
  border-radius: var(--radius);
  padding: 10px 14px;
  line-height: 1.5;
  border: 1px solid var(--teal-border);
}

/* ── Coloured tabs ───────────────────────────────────────── */
.hero-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 18px 12px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
  transition: filter 0.18s;
  position: relative;
  overflow: hidden;
}
.hero-tab::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.18s;
}
.hero-tab:hover::after { background: rgba(0,0,0,0.1); }
.hero-tab:active::after { background: rgba(0,0,0,0.2); }

.tab-col-1 { background: var(--tab-1); }
.tab-col-2 { background: var(--tab-2); }
.tab-col-3 { background: var(--tab-3); }
.tab-col-4 { background: var(--tab-4); }

.tab-icon  { font-size: 15px; }
.tab-label { white-space: nowrap; }
.tab-arrow { opacity: 0.65; }


/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */

.section { padding: var(--section-gap) 0; }
.section-white      { background: var(--surface); }
.section-teal-light { background: var(--teal-light-bg); }

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.eyebrow-teal { color: var(--teal); }

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 580px;
  margin-bottom: 40px;
}

.text-teal { color: var(--teal); }
.text-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}


/* ============================================================
   PROBLEM SECTION
   ============================================================ */

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.pain-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: transform 0.22s, border-color 0.22s;
}
.pain-card:hover {
  transform: translateY(-2px);
  border-color: #d0b0b0;
}

.pain-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.pain-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.pain-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}


/* ============================================================
   SOLUTION SECTION
   ============================================================ */

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.solution-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: transform 0.22s, border-color 0.22s;
  position: relative;
}
.solution-card:hover {
  transform: translateY(-2px);
  border-color: var(--teal-border);
  box-shadow: 0 6px 24px var(--teal-glow);
}

.solution-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--teal);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.solution-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.solution-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}


/* ============================================================
   SPLIT LAYOUT (Residents / Brands)
   ============================================================ */

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

/* Steps list */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
  list-style: none;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  margin-top: 1px;
}

.step strong {
  display: block;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  font-size: 15px;
}

.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Feature list */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.55;
}

.feature-tick {
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}


/* ============================================================
   PHONE MOCKUP
   ============================================================ */

.phone-mockup {
  background: var(--teal);
  border-radius: 28px;
  padding: 10px;
  max-width: 320px;
  margin: 0 auto;
  box-shadow:
    0 0 0 2px rgba(0,122,135,0.15),
    0 20px 60px rgba(0,122,135,0.18);
}

.phone-bar {
  width: 60px; height: 5px;
  background: rgba(255,255,255,0.3);
  border-radius: var(--radius-pill);
  margin: 0 auto 8px;
}

.phone-screen {
  background: var(--bg);
  border-radius: 20px;
  overflow: hidden;
  padding: 0;
}

.mock-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 10px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.mock-app-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--teal);
}

.mock-bell { font-size: 15px; }

.mock-post {
  display: flex;
  gap: 10px;
  padding: 13px 14px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.mock-post:last-child { border-bottom: none; }

.mock-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
}
.av-teal   { background: linear-gradient(135deg, var(--teal), var(--teal-mid)); }
.av-amber  { background: linear-gradient(135deg, var(--amber), #c87800); }
.av-purple { background: linear-gradient(135deg, #7c5cbf, #4a2d8a); }

.mock-body { flex: 1; min-width: 0; }

.mock-name {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.mock-text {
  font-size: 11.5px;
  color: var(--text-mid);
  line-height: 1.45;
  margin-bottom: 5px;
}

.mock-tags {
  font-size: 10.5px;
  color: var(--teal);
  opacity: 0.75;
}

.mock-post-ad {
  background: #fffbf0;
}
.mock-ad-badge {
  position: absolute;
  top: 8px; right: 10px;
  font-size: 9px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.06em;
  background: rgba(224,149,0,0.1);
  padding: 2px 6px;
  border-radius: var(--radius-pill);
}


/* ============================================================
   METRICS MOCKUP
   ============================================================ */

.metrics-mockup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 320px;
  margin: 0 auto;
}

.metric-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-align: center;
  transition: border-color 0.22s, transform 0.22s;
}
.metric-card:hover {
  border-color: var(--teal-border);
  transform: translateY(-2px);
}

.metric-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.value-teal  { color: var(--teal); }
.value-amber { color: var(--amber); }

.metric-label {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.35;
}


/* ============================================================
   STAR RATING SECTION
   ============================================================ */

.rating-section {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.rating-container {
  display: flex;
  justify-content: center;
}

.rating-placeholder {
  background: var(--teal-light-bg);
  border: 1.5px solid var(--teal-border);
  border-radius: var(--radius-pill);
  padding: 12px 28px;
}

.rating-placeholder-text {
  font-size: 14px;
  color: var(--text-mid);
  font-style: italic;
}

.rating-live { text-align: center; }
.rating-stars { font-size: 28px; color: var(--amber); letter-spacing: 2px; margin-bottom: 6px; }
.rating-score { font-size: 16px; color: var(--text-mid); }
.rating-score strong { color: var(--teal); }


/* ============================================================
   FINAL CTA
   ============================================================ */

.cta-section { background: var(--bg); }

.cta-card {
  background: var(--teal);
  border-radius: var(--radius-xl);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -20%, rgba(255,255,255,0.08), transparent 65%);
  pointer-events: none;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
}

.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  margin-bottom: 36px;
  position: relative;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
}


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-top: 56px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  padding-bottom: 56px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 10px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.18s;
}
.footer-col a:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
}


/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .hero-visual {
    grid-template-columns: 1fr 280px;
    gap: 28px;
    padding: 0 36px 32px;
  }

  .hero-banner { padding: 44px 36px 36px; }

  .split-layout { gap: 48px; }

  .pain-grid,
  .solution-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-grid > .pain-card:last-child,
  .solution-grid > .solution-card:last-child {
    grid-column: span 2;
  }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile landscape / small tablet */
@media (max-width: 768px) {
  :root { --section-gap: 64px; }

  /* Nav */
  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(242,247,247,0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 20px;
    backdrop-filter: blur(12px);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero { padding: 76px 0 32px; }

  .hero-banner { padding: 36px 28px 30px; }
  .hero-sub    { font-size: 16px; }

  .hero-visual {
    grid-template-columns: 1fr;
    padding: 0 24px 28px;
  }
  .hero-bus-col { order: 1; }
  .hero-pills-col { order: 2; }

  /* Tabs — 2×2 grid on mobile */
  .hero-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Sections */
  .pain-grid,
  .solution-grid { grid-template-columns: 1fr; }
  .pain-grid > .pain-card:last-child,
  .solution-grid > .solution-card:last-child { grid-column: span 1; }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split-reverse { direction: ltr; }

  /* Footer */
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-card { padding: 48px 24px; }
  .footer-links { grid-template-columns: 1fr; }

  /* Tabs — single column on very small screens */
  .hero-tabs { grid-template-columns: repeat(2, 1fr); }
  .tab-icon { display: none; }
}

.tiers-note {
  margin-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
