/* ==========================================================================
   Limited Lime Connections — Hosted VoIP marketing site
   Design system & global styles
   ========================================================================== */

/* ---- Design tokens ---- */
:root {
  /* Brand */
  --lime-50:  #f7fee7;
  --lime-100: #ecfccb;
  --lime-200: #d9f99d;
  --lime-300: #bef264;
  --lime-400: #a3e635;
  --lime-500: #84cc16;
  --lime-600: #65a30d;
  --lime-700: #4d7c0f;
  --lime-800: #3f6212;

  /* Ink / neutrals */
  --ink-900: #0b1220;
  --ink-800: #0f172a;
  --ink-700: #1e293b;
  --ink-600: #334155;
  --ink-500: #64748b;
  --ink-400: #94a3b8;
  --ink-300: #cbd5e1;
  --ink-200: #e2e8f0;
  --ink-100: #f1f5f9;
  --ink-50:  #f8fafc;

  /* Semantic (light theme default) */
  --bg:            #ffffff;
  --bg-soft:       var(--ink-50);
  --bg-muted:      var(--ink-100);
  --surface:       #ffffff;
  --surface-2:     var(--ink-50);
  --border:        var(--ink-200);
  --border-strong: var(--ink-300);
  --text:          var(--ink-800);
  --text-soft:     var(--ink-600);
  --text-muted:    var(--ink-500);
  --heading:       var(--ink-900);
  --brand:         var(--lime-600);
  --brand-strong:  var(--lime-700);
  --brand-soft:    var(--lime-100);
  --on-brand:      #ffffff;
  --accent-hero:   linear-gradient(135deg, #ecfccb 0%, #ffffff 55%, #f0fdf4 100%);
  --ring:          rgba(132, 204, 22, 0.35);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 18px 40px -12px rgba(15, 23, 42, 0.22), 0 8px 16px -8px rgba(15, 23, 42, 0.12);
  --shadow-brand: 0 14px 30px -10px rgba(101, 163, 13, 0.45);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --container: 1160px;
  --font-sans: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;

  --header-h: 72px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg:            #0b1220;
    --bg-soft:       #0d1526;
    --bg-muted:      #111c30;
    --surface:       #111c30;
    --surface-2:     #0f1a2c;
    --border:        #22304a;
    --border-strong: #2c3d5c;
    --text:          #e6edf7;
    --text-soft:     #b6c2d6;
    --text-muted:    #8394ad;
    --heading:       #f4f8ff;
    --brand:         var(--lime-400);
    --brand-strong:  var(--lime-300);
    --brand-soft:    rgba(163, 230, 53, 0.12);
    --on-brand:      #0b1220;
    --accent-hero:   linear-gradient(135deg, #101d16 0%, #0b1220 55%, #0e1a20 100%);
    --ring:          rgba(163, 230, 53, 0.4);
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.4);
    --shadow-md: 0 6px 16px rgba(0,0,0,0.45);
    --shadow-lg: 0 20px 44px -12px rgba(0,0,0,0.6);
    --shadow-brand: 0 14px 30px -10px rgba(132, 204, 22, 0.3);
  }
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--brand-strong); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { color: var(--heading); line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.28rem; }
p { color: var(--text-soft); }
ul { padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--ring); outline-offset: 2px; border-radius: 4px; }

/* Skip link */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--brand); color: var(--on-brand); padding: 10px 16px;
  border-radius: var(--radius-sm); font-weight: 700; transition: top 0.2s;
}
.skip-link:focus { top: 12px; text-decoration: none; }

/* ---- Layout ---- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tight { padding-block: clamp(44px, 6vw, 72px); }
.section--soft { background: var(--bg-soft); }
.section--ink { background: var(--ink-900); color: var(--ink-100); }
.section--ink h2, .section--ink h3 { color: #fff; }
.section--ink p { color: var(--ink-300); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand-strong);
}
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 14px; font-size: 1.12rem; }
.lead { font-size: 1.2rem; color: var(--text-soft); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 1rem; line-height: 1; cursor: pointer;
  padding: 15px 26px; border-radius: var(--radius-pill); border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap; text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--brand); color: var(--on-brand); box-shadow: var(--shadow-brand); }
.btn--primary:hover { background: var(--brand-strong); }
.btn--secondary { background: var(--surface); color: var(--text); border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.btn--secondary:hover { border-color: var(--brand); color: var(--brand-strong); }
.btn--ghost { background: transparent; color: var(--text); border-color: transparent; }
.btn--ghost:hover { color: var(--brand-strong); }
.btn--light { background: #fff; color: var(--ink-900); }
.btn--light:hover { background: var(--lime-100); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn--lg { padding: 18px 34px; font-size: 1.08rem; }
.btn--block { width: 100%; }

/* ---- Header / nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(1.5) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 20px; }
.nav__brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.nav__brand:hover { text-decoration: none; }
.nav__brand img { height: 38px; width: auto; }
/* Wordmark recolors for dark mode by swapping to a text fallback would be complex; SVG uses ink text.
   In dark mode we invert the dark portions of the logo for legibility. */
@media (prefers-color-scheme: dark) {
  .nav__brand img { filter: brightness(0) invert(1) sepia(0) saturate(0); }
  .nav__brand { position: relative; }
}
.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav__links a {
  display: inline-block; padding: 9px 14px; border-radius: var(--radius-sm);
  color: var(--text-soft); font-weight: 600; font-size: 0.98rem;
}
.nav__links a:hover { color: var(--brand-strong); background: var(--brand-soft); text-decoration: none; }
.nav__links a[aria-current="page"] { color: var(--brand-strong); }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__toggle {
  display: none; background: transparent; border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm); width: 46px; height: 44px; cursor: pointer; color: var(--text);
  align-items: center; justify-content: center;
}
.nav__toggle svg { width: 24px; height: 24px; }

@media (max-width: 900px) {
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    display: none; flex-direction: column; gap: 18px; padding: 22px 24px 30px;
  }
  .nav__menu.is-open { display: flex; }
  .nav__links { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav__links a { padding: 13px 14px; font-size: 1.08rem; }
  .nav__actions { flex-direction: column; align-items: stretch; }
  .nav__actions .btn { width: 100%; }
}

/* ---- Hero ---- */
.hero { position: relative; background: var(--accent-hero); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -120px; right: -80px; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(132,204,22,0.28), transparent 68%); pointer-events: none;
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
  padding-block: clamp(52px, 8vw, 96px); }
.hero__title { margin-top: 18px; }
.hero__title .grad { color: var(--brand-strong); }
.hero__sub { margin-top: 22px; font-size: 1.22rem; max-width: 34ch; }
.hero__cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust { margin-top: 30px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; color: var(--text-muted); font-size: 0.94rem; }
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.hero__trust svg { width: 18px; height: 18px; color: var(--brand); }

@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__sub { max-width: none; }
  .hero__visual { order: -1; }
}

/* ---- Hero device / call card visual ---- */
.callcard {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 22px; max-width: 420px; margin-inline: auto;
}
.callcard__bar { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.callcard__dot { width: 11px; height: 11px; border-radius: 50%; background: var(--border-strong); }
.callcard__dot--live { background: var(--lime-500); box-shadow: 0 0 0 4px var(--brand-soft); }
.callcard__title { margin-left: auto; font-size: 0.82rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.04em; }
.callrow { display: flex; align-items: center; gap: 14px; padding: 12px; border-radius: var(--radius); }
.callrow + .callrow { margin-top: 8px; }
.callrow--active { background: var(--brand-soft); }
.avatar { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; font-weight: 800; color: #fff; }
.avatar--a { background: linear-gradient(135deg, #84cc16, #4d7c0f); }
.avatar--b { background: linear-gradient(135deg, #0ea5e9, #1e40af); }
.avatar--c { background: linear-gradient(135deg, #f59e0b, #b45309); }
.callrow__meta { flex: 1; min-width: 0; }
.callrow__name { font-weight: 700; color: var(--heading); font-size: 0.98rem; }
.callrow__status { font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.wave { display: inline-flex; align-items: flex-end; gap: 2px; height: 14px; }
.wave i { width: 3px; background: var(--lime-500); border-radius: 2px; animation: wave 1s ease-in-out infinite; }
.wave i:nth-child(1){height:5px;animation-delay:0s} .wave i:nth-child(2){height:12px;animation-delay:.15s}
.wave i:nth-child(3){height:8px;animation-delay:.3s} .wave i:nth-child(4){height:14px;animation-delay:.45s}
.wave i:nth-child(5){height:6px;animation-delay:.6s}
@keyframes wave { 0%,100%{transform:scaleY(0.5)} 50%{transform:scaleY(1)} }
.callcard__actions { display: flex; gap: 10px; margin-top: 18px; }
.pill-action { flex: 1; text-align: center; padding: 11px; border-radius: var(--radius); font-weight: 700; font-size: 0.9rem; border: 1px solid var(--border); color: var(--text-soft); }
.pill-action--end { background: #fee2e2; color: #b91c1c; border-color: transparent; }
@media (prefers-color-scheme: dark){ .pill-action--end { background: rgba(239,68,68,0.16); color:#fca5a5; } }

/* ---- Logo strip ---- */
.logostrip { text-align: center; }
.logostrip p { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.logostrip__row { margin-top: 22px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 40px; }
.logostrip__row span { font-weight: 800; font-size: 1.15rem; color: var(--text-muted); opacity: 0.8; letter-spacing: -0.02em; }

/* ---- Stat band ---- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat__num { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 800; color: var(--brand); line-height: 1; }
.stat__label { margin-top: 8px; font-size: 0.98rem; color: var(--text-soft); }
@media (max-width: 720px){ .stats { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; } }

/* ---- Feature grid ---- */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px){ .grid--3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .grid--3, .grid--2 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--brand) 45%, var(--border)); }
.card__icon {
  width: 52px; height: 52px; border-radius: var(--radius); display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand-strong); margin-bottom: 18px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.99rem; }

/* ---- Split / alternating feature ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__list { margin-top: 22px; display: grid; gap: 16px; }
.split__list li { display: flex; gap: 13px; align-items: flex-start; }
.split__list .tick {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--brand-soft);
  color: var(--brand-strong); display: grid; place-items: center; margin-top: 2px;
}
.split__list .tick svg { width: 15px; height: 15px; }
.split__list strong { color: var(--heading); display: block; }
.split__list span { color: var(--text-soft); font-size: 0.97rem; }
@media (max-width: 860px){ .split { grid-template-columns: 1fr; gap: 34px; } .split--reverse .split__media { order: 0; } }

.media-panel {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 28px;
}
.media-panel--brand { background: linear-gradient(150deg, var(--lime-600), var(--lime-800)); border: none; color: #fff; }
.media-panel--brand h3, .media-panel--brand .mp-num { color: #fff; }
.mp-stat { display: flex; align-items: baseline; gap: 10px; }
.mp-num { font-size: 2.4rem; font-weight: 800; }
.mp-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-top: 1px solid var(--border); }
.media-panel--brand .mp-row { border-color: rgba(255,255,255,0.18); }
.mp-row:first-of-type { border-top: none; }
.mp-ic { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand-strong); flex-shrink: 0; }
.media-panel--brand .mp-ic { background: rgba(255,255,255,0.16); color:#fff; }
.mp-ic svg { width: 20px; height: 20px; }

/* ---- Steps ---- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; counter-reset: step; }
@media (max-width: 760px){ .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-left: 4px; }
.step__num {
  width: 46px; height: 46px; border-radius: 50%; background: var(--brand); color: var(--on-brand);
  display: grid; place-items: center; font-weight: 800; font-size: 1.15rem; margin-bottom: 16px; box-shadow: var(--shadow-brand);
}
.step h3 { margin-bottom: 6px; }

/* ---- Pricing ---- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: start; }
@media (max-width: 940px){ .pricing { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
/* Auto-fit plan grid — handles groups of 3 or 4 cards responsively */
.plans { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); align-items: stretch; }
.plans .price-card { height: 100%; }
.plan-group + .plan-group { margin-top: 56px; }
.plan-group__head { margin-bottom: 26px; }
.plan-group__head h3 { font-size: 1.5rem; }
.plan-group__head p { margin-top: 6px; font-size: 1rem; max-width: 60ch; }
.price-card__code { display:inline-block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; color: var(--text-muted); background: var(--bg-muted); border:1px solid var(--border); padding: 4px 9px; border-radius: var(--radius-pill); margin-bottom: 12px; }
.price-card__endpoints { font-size: 0.9rem; color: var(--text-soft); margin: 2px 0 2px; }
.price-card__setup { font-size: 0.85rem; color: var(--text-muted); margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--border); }
.seg-badge { position:absolute; top:-13px; left: 22px; background: var(--surface); border:1px solid var(--border-strong); color: var(--text-soft); font-weight:800; font-size:0.72rem; letter-spacing:0.06em; text-transform:uppercase; padding:5px 12px; border-radius: var(--radius-pill); }
.price-card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.price-card--featured {
  border-color: var(--brand); box-shadow: var(--shadow-lg);
  outline: 3px solid var(--brand-soft);
}
.price-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: var(--on-brand); font-weight: 800; font-size: 0.76rem;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 7px 16px; border-radius: var(--radius-pill);
}
.price-card__name { font-size: 1.2rem; font-weight: 800; color: var(--heading); }
.price-card__desc { font-size: 0.94rem; margin-top: 6px; min-height: 42px; }
.price-card__price { margin: 18px 0 4px; display: flex; align-items: baseline; gap: 6px; }
.price-card__amt { font-size: 2.7rem; font-weight: 800; color: var(--heading); letter-spacing: -0.03em; }
.price-card__per { color: var(--text-muted); font-weight: 600; font-size: 0.95rem; }
.price-card__note { font-size: 0.85rem; color: var(--text-muted); }
.price-card .btn { margin: 22px 0; }
.price-card__features { display: grid; gap: 12px; }
.price-card__features li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.96rem; color: var(--text-soft); }
.price-card__features .tick { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--brand-soft); color: var(--brand-strong); display: grid; place-items: center; margin-top: 1px; }
.price-card__features .tick svg { width: 13px; height: 13px; }
.price-disclaimer { margin-top: 30px; text-align: center; font-size: 0.9rem; color: var(--text-muted); }

/* ---- Comparison table ---- */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
table.compare { width: 100%; border-collapse: collapse; min-width: 640px; background: var(--surface); }
table.compare th, table.compare td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.97rem; }
table.compare thead th { background: var(--bg-muted); color: var(--heading); font-weight: 800; }
table.compare tbody th { font-weight: 600; color: var(--text); }
table.compare td { text-align: center; color: var(--text-soft); }
table.compare td.yes { color: var(--brand-strong); font-weight: 800; }
table.compare tr:last-child td, table.compare tr:last-child th { border-bottom: none; }

/* ---- Testimonials ---- */
.quote {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; height: 100%;
}
.quote__stars { color: var(--lime-500); letter-spacing: 2px; margin-bottom: 12px; }
.quote p { color: var(--text); font-size: 1.04rem; }
.quote__by { margin-top: auto; padding-top: 18px; display: flex; align-items: center; gap: 12px; }
.quote__by .avatar { width: 42px; height: 42px; font-size: 0.95rem; }
.quote__by b { color: var(--heading); display: block; font-size: 0.96rem; }
.quote__by span { color: var(--text-muted); font-size: 0.86rem; }

/* ---- FAQ ---- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq details {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 4px 22px; box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 0; font-weight: 700; color: var(--heading);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 1.04rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.6rem; font-weight: 400; color: var(--brand); transition: transform 0.2s; line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 20px; font-size: 1rem; }

/* ---- CTA band ---- */
.cta-band { position: relative; background: linear-gradient(135deg, var(--lime-600), var(--lime-800)); overflow: hidden; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.18), transparent 45%); }
.cta-band__inner { position: relative; text-align: center; color: #fff; max-width: 720px; margin-inline: auto; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.9); font-size: 1.15rem; margin-top: 14px; }
.cta-band__actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: 48px; align-items: start; }
@media (max-width: 880px){ .contact-grid { grid-template-columns: 1fr; gap: 36px; } }
.form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 0.92rem; margin-bottom: 7px; color: var(--heading); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--border-strong); border-radius: var(--radius-sm);
  background: var(--bg); color: var(--text); font: inherit; font-size: 0.98rem; transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--ring); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px){ .field-row { grid-template-columns: 1fr; } }
.form__note { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }

.contact-cards { display: grid; gap: 16px; }
.contact-cards .card { padding: 22px 24px; }
.contact-cards .card h3 { font-size: 1.08rem; display: flex; align-items: center; gap: 10px; }
.contact-cards .card h3 svg { width: 20px; height: 20px; color: var(--brand); }
.contact-cards .card p { margin-top: 6px; font-size: 0.96rem; }

/* ---- Footer ---- */
.site-footer { background: var(--ink-900); color: var(--ink-300); padding-block: 56px 30px; }
.site-footer a { color: var(--ink-300); }
.site-footer a:hover { color: var(--lime-400); text-decoration: none; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
@media (max-width: 860px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 480px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 40px; filter: brightness(0) invert(1); }
.footer-brand p { margin-top: 16px; font-size: 0.94rem; color: var(--ink-400); max-width: 32ch; }
.footer-col h4 { color: #fff; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; font-weight: 800; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 0.96rem; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--ink-700); display: grid; place-items: center; }
.footer-social a:hover { border-color: var(--lime-500); background: rgba(132,204,22,0.1); }
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom {
  margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--ink-800);
  display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between;
  font-size: 0.9rem; color: var(--ink-400);
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 8px 20px; }

/* ---- Page hero (interior) ---- */
.page-hero { background: var(--accent-hero); border-bottom: 1px solid var(--border); text-align: center; }
.page-hero .container { max-width: 780px; }
.page-hero p { margin-top: 16px; font-size: 1.18rem; }

/* ---- Misc utilities ---- */
.mt-0 { margin-top: 0; }
.center { text-align: center; }
.muted { color: var(--text-muted); }
.badge-inline {
  display: inline-flex; align-items: center; gap: 8px; background: var(--brand-soft);
  color: var(--brand-strong); font-weight: 700; font-size: 0.86rem; padding: 7px 14px; border-radius: var(--radius-pill);
}
.callout {
  background: var(--brand-soft); border: 1px solid color-mix(in srgb, var(--brand) 35%, transparent);
  border-radius: var(--radius); padding: 20px 24px; display: flex; gap: 14px; align-items: flex-start;
}
.callout svg { width: 24px; height: 24px; color: var(--brand-strong); flex-shrink: 0; margin-top: 2px; }
.callout p { color: var(--text); font-size: 0.98rem; margin: 0; }

/* ---- Resources / blog ---- */
.resource-grid { display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.post-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.post-card__top { padding: 26px 26px 0; }
.post-card__body { padding: 22px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.post-card__kicker { display:inline-flex; align-items:center; gap:8px; font-size:0.74rem; font-weight:800; letter-spacing:0.1em; text-transform:uppercase; color:var(--brand-strong); }
.post-card h3 { margin: 10px 0 8px; font-size: 1.22rem; }
.post-card p { font-size: 0.98rem; }
.post-card__link { margin-top: auto; padding-top: 16px; font-weight: 700; color: var(--brand-strong); display: inline-flex; align-items: center; gap: 7px; }
.post-card__link svg { width: 16px; height: 16px; }
.post-card__art { height: 132px; display: grid; place-items: center; color: #fff; }
.post-card__art svg { width: 46px; height: 46px; opacity: 0.95; }
.art-a { background: linear-gradient(135deg, #84cc16, #4d7c0f); }
.art-b { background: linear-gradient(135deg, #0ea5e9, #1e40af); }
.art-c { background: linear-gradient(135deg, #f59e0b, #b45309); }
.art-d { background: linear-gradient(135deg, #14b8a6, #0f766e); }
.art-e { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.art-f { background: linear-gradient(135deg, #ec4899, #be185d); }
.art-g { background: linear-gradient(135deg, #64748b, #334155); }
.art-h { background: linear-gradient(135deg, #f43f5e, #9f1239); }
.art-i { background: linear-gradient(135deg, #6366f1, #3730a3); }
.art-j { background: linear-gradient(135deg, #10b981, #065f46); }
.art-k { background: linear-gradient(135deg, #fb923c, #c2410c); }
.art-l { background: linear-gradient(135deg, #52525b, #18181b); }
.art-m { background: linear-gradient(135deg, #22d3ee, #0e7490); }
.art-n { background: linear-gradient(135deg, #a78bfa, #6d28d9); }
.art-o { background: linear-gradient(135deg, #eab308, #a16207); }
.art-p { background: linear-gradient(135deg, #f472b6, #a21caf); }
.art-q { background: linear-gradient(135deg, #f97316, #7c2d12); }
.art-r { background: linear-gradient(135deg, #2dd4bf, #0f766e); }
.art-s { background: linear-gradient(135deg, #38bdf8, #0369a1); }
.art-t { background: linear-gradient(135deg, #818cf8, #3730a3); }

/* ---- Long-form article / prose ---- */
.article-hero { background: var(--accent-hero); border-bottom: 1px solid var(--border); }
.article-hero .container { max-width: 820px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center; margin-top: 18px; color: var(--text-muted); font-size: 0.92rem; }
.article-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border-strong); }
.prose { max-width: 760px; margin-inline: auto; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: 1.7rem; margin-top: 2em; }
.prose h3 { font-size: 1.25rem; margin-top: 1.6em; }
.prose p, .prose li { font-size: 1.08rem; color: var(--text-soft); line-height: 1.75; }
.prose strong { color: var(--heading); }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose ul li { list-style: disc; margin-top: 0.5em; }
.prose ol li { list-style: decimal; margin-top: 0.5em; }
.prose ul li::marker, .prose ol li::marker { color: var(--brand); }
.prose blockquote { border-left: 4px solid var(--brand); padding: 4px 0 4px 20px; margin-left: 0; color: var(--heading); font-size: 1.15rem; font-style: italic; }
.prose a { color: var(--brand-strong); text-decoration: underline; text-underline-offset: 2px; }
.prose .lead { font-size: 1.2rem; color: var(--text-soft); }
.prose figure.callout { font-style: normal; }
.prose figure.callout p { font-size: 0.99rem; }

/* Recommended-plan mini cards */
.rec-plans { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.rec-plan { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.rec-plan__seg { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.rec-plan h4 { color: var(--heading); font-size: 1.1rem; margin: 6px 0 4px; }
.rec-plan__price { font-weight: 800; color: var(--brand-strong); }
.rec-plan p { font-size: 0.92rem; margin-top: 8px; }

/* reveal on scroll — progressive enhancement.
   Content is fully visible by default; the hidden/animated state only applies
   when JavaScript is present (html.js), so no-JS users and crawlers see everything. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .js .reveal { opacity: 1; transform: none; } }
