/* index.css — page-specific layout only (shared theme is in components.css) */

/* ---- Hero ---- */
.hero { padding: 72px 0 48px; position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  inset: -80px 0 0 0;
  height: 700px;
  z-index: -1;
  background:
    radial-gradient(860px 440px at 84% 0%, rgba(61,84,255,.09), transparent 60%),
    radial-gradient(660px 400px at 6% 24%, rgba(255,106,44,.08), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--bg) 80%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; gap: 32px; grid-template-columns: 1.1fr .9fr; align-items: center; }
.hero-copy { max-width: 640px; }
.hero h1 { font-size: clamp(40px, 5.5vw, 72px); margin: 8px 0 12px; }
.hero p { color: var(--muted); font-size: clamp(15px, 2.1vw, 18px); }
.hero-lead { max-width: 34ch; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; align-items: center; }
.hero-proof-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-proof-list li {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(10,19,48,.10);
  background: rgba(255,255,255,.74);
  color: var(--ink);
  font-size: 13px;
  box-shadow: 0 10px 22px rgba(15,23,42,.05);
}
.hero-ai-row { margin-top: 20px; }
.hero-side { display: flex; flex-direction: column; gap: 16px; }
.hero-panel {
  padding: 24px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  box-shadow: 0 20px 44px rgba(15,23,42,.10);
}
.hero-panel .stat {
  background: rgba(255,255,255,.92);
  box-shadow: inset 0 0 0 1px rgba(10,19,48,.04);
}
.hero-illustration { width: 100%; height: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); background: #fff; }
.hero-watermark {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: flex-end;
  pointer-events: none; z-index: 0; opacity: .05;
  color: var(--ink);
  font-family: 'Inter Tight', sans-serif;
  letter-spacing: .06em;
}
.hero-watermark span { display: block; font-size: clamp(64px,14vw,190px); line-height: .85; margin-right: 6vw; }
.hero-watermark span:last-child { margin-bottom: 6vh; }

/* AI pill */
.ai-pill-wrap { display: inline-flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin: 6px 0; position: relative; }
.ai-pill-link { text-decoration: none; }
.ai-pill-new { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; padding: 6px 10px; border-radius: 999px; background: #ffffff; color: var(--ink); font-weight: 600; }
.ai-pill { display: inline-flex; align-items: center; gap: 12px; padding: 12px 18px; border-radius: 999px; background: linear-gradient(135deg, var(--indigo), #67c8ff); color: #ffffff; box-shadow: 0 12px 30px rgba(0,0,0,.22); }
.ai-pill-icon { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.22); border-radius: 999px; }
.ai-pill-icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ai-pill-text { display: flex; flex-direction: column; line-height: 1.1; }
.ai-pill-title { font-weight: 600; }
.ai-pill-sub { font-size: 12px; font-style: italic; opacity: .9; }
.corner-badge { position: absolute; top: -10px; right: -12px; background: #e53535; color: #fff; border-radius: 999px; padding: 4px 8px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; border: 2px solid #fff; box-shadow: 0 6px 14px rgba(0,0,0,.22); transform: rotate(14deg); transform-origin: center; }

/* ---- Stat row (hero card) ---- */
.stat-row { display: grid; gap: 12px; grid-template-columns: repeat(3, minmax(0,1fr)); }
.stat { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px; text-align: center; }
.stat-icon { width: 24px; height: 24px; margin: 0 auto 6px; color: var(--indigo); display: flex; align-items: center; justify-content: center; }
.stat-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.stat .num { font-family: 'Inter Tight', sans-serif; font-size: 26px; font-weight: 800; }

/* ---- Service tiles (12-col show grid) ---- */
.show { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); gap: 18px; }
.tile { grid-column: span 4; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 18px; position: relative; overflow: hidden; box-shadow: var(--shadow-sm); }
.tile::after { content: ""; position: absolute; inset: auto -40% -40% auto; width: 160px; height: 160px; background: radial-gradient(closest-side at 50% 50%, rgba(61,84,255,.14), transparent); transform: rotate(20deg); }
.news-card { display: flex; flex-direction: column; gap: 10px; }
.news-card img { height: 160px; width: 100%; object-fit: cover; object-position: center; border-radius: 12px; border: 1px solid var(--line); }
.news-card ul { margin: 6px 0 0 18px; color: var(--muted); }

/* ---- Contact / Talk cards ---- */
.talk-title { text-align: center; margin: 0 0 26px; }
.talk-grid { display: grid; gap: 22px; grid-template-columns: repeat(2, minmax(0,1fr)); }
.talk-card { background: var(--indigo-soft); border: 1px solid #dbe6fb; border-radius: var(--radius-xl); padding: 28px; position: relative; overflow: hidden; min-height: 220px; display: flex; align-items: center; }
.talk-card h3 { margin: 0 0 8px; font-size: clamp(20px,2.6vw,28px); }
.talk-card p { color: var(--muted); margin: 0 0 16px; }
.talk-card-content { max-width: 380px; }
.talk-ghost { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); opacity: .3; width: 120px; }
.talk-ghost svg { width: 120px; height: auto; stroke: var(--indigo); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Partner strip */
.partner-strip { display: flex; flex-direction: column; gap: 12px; margin: 28px auto 0; padding: 22px; max-width: 1100px; width: 100%; align-items: center; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.partner-strip-title { font-weight: 600; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.partner-strip-logos { display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: center; justify-content: center; }
.partner-strip-logos img { height: 46px; width: auto; object-fit: contain; opacity: .85; }

/* ---- Trust / integration strip ---- */
.trust-strip { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; }
.trust-strip-inner { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
.trust-strip-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.trust-strip-divider { width: 1px; height: 20px; background: var(--line); flex-shrink: 0; }
.trust-strip-logos { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; justify-content: center; }
.trust-strip-logos img { height: 20px; width: auto; opacity: .45; filter: grayscale(1); transition: opacity .2s; }
.trust-strip-logos img:hover { opacity: .8; filter: grayscale(0); }

/* Stack integrations */
.stack-section { background: #fff; }
.stack-header { text-align: center; max-width: 720px; margin: 0 auto 26px; }
.stack-logos { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.stack-logo { height: 62px; width: auto; display: block; filter: drop-shadow(0 8px 18px rgba(15,23,42,.10)); }

/* ---- Operations section ---- */
.ops-section {
  background:
    radial-gradient(620px 260px at 14% 0%, rgba(0,128,204,.07), transparent 68%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.ops-grid { display: grid; gap: 22px; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); align-items: start; }
.ops-grid, .show--compact { margin-top: 24px; }
.ops-main, .ops-side { display: flex; flex-direction: column; gap: 18px; }
.ops-block-head h3 { margin: 0 0 8px; }
.ops-block-head p { margin: 0; max-width: 44ch; }
.ops-models { display: grid; gap: 14px; grid-template-columns: repeat(3, minmax(0,1fr)); }
.ops-model { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; min-height: 170px; }
.ops-model h4 { margin: 0 0 8px; font-size: 18px; color: var(--ink); }
.ops-model p { margin: 0; color: var(--muted); }
.plain-link { text-decoration: none; }
.plain-link:hover { text-decoration: underline; }
.ops-checklist { gap: 14px; }
.ops-checklist li > span:last-child { display: grid; gap: 4px; }
.ops-checklist strong { color: var(--ink); }
.show--compact .tile { grid-column: span 3; min-height: 210px; }
.service-link-cluster {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}
.service-link-cluster a {
  display: inline-flex;
  align-items: center;
  padding: 11px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.service-link-cluster a:hover { text-decoration: none; border-color: #c9d3ea; transform: translateY(-1px); }

/* ---- Coverage ---- */
.coverage-section {
  padding-top: 20px;
  padding-bottom: 12px;
  background:
    radial-gradient(720px 260px at 82% 0%, rgba(0,128,204,.08), transparent 72%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.coverage-shell {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, .46fr) minmax(0, .54fr);
  align-items: stretch;
  padding: 18px;
  border-radius: 34px;
  border: 1px solid rgba(10,19,48,.06);
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  box-shadow: 0 18px 40px rgba(15,23,42,.06);
}
.coverage-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 14px 18px 10px;
}
.coverage-copy .pill { align-self: flex-start; }
.coverage-copy h2 {
  margin: 12px 0 10px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: .96;
  letter-spacing: -.04em;
}
.coverage-copy .lead {
  max-width: 18ch;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: clamp(20px, 2.5vw, 28px);
}
.coverage-copy .muted {
  max-width: 34ch;
  font-size: 17px;
  line-height: 1.6;
}
.coverage-card {
  padding: 10px;
  border-radius: 30px;
  border: 1px solid rgba(10,19,48,.08);
  background: linear-gradient(180deg, #fdfefe 0%, #f3f7ff 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.7),
    0 22px 50px rgba(10,19,48,.10);
}
.coverage-map {
  width: 100%;
  height: clamp(340px, 38vw, 500px);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #dbe5fa;
  background: radial-gradient(circle at 25% 20%, rgba(61,84,255,.12), transparent 45%), #fff;
}
.coverage-legend {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 10px;
  padding: 0 4px 2px;
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
}
.coverage-legend-item { display: inline-flex; align-items: center; gap: 8px; }
.coverage-legend-dot { width: 10px; height: 10px; border-radius: 50%; }
.coverage-legend-dot.engineers { background: var(--indigo); }
.coverage-legend-dot.customers { background: var(--accent); }

/* ---- Why section ---- */
.why-section {
  background:
    radial-gradient(620px 260px at 50% 0%, rgba(0,128,204,.08), transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.why-title { text-align: center; margin: 0 0 24px; }
.why-grid { display: grid; gap: 22px; grid-template-columns: repeat(3, minmax(0,1fr)); }
.why-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 260px;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.why-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -42px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.16) 0%, rgba(255,255,255,0) 72%);
  pointer-events: none;
}
.why-card.primary { background: linear-gradient(180deg, #102355 0%, #0A1330 100%); color: #fff; border-color: rgba(255,255,255,.08); }
.why-card.soft { background: #fff; color: var(--ink); border-color: #dce6f5; }
.why-card.dark { background: linear-gradient(180deg, #12346b 0%, #0d264d 100%); color: #fff; border-color: rgba(255,255,255,.08); }
.why-card-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  flex: 0 0 auto;
}
.why-card.soft .why-icon {
  background: #eef6ff;
  border-color: #cfe0f3;
  color: #0A1330;
}
.why-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-step {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .72;
}
.why-card h3 { margin: 0; }
.why-card.primary h3,
.why-card.dark h3 { color: #fff; }
.why-card p { margin: 0; line-height: 1.65; max-width: 34ch; }
.why-card.primary p, .why-card.dark p { color: rgba(255,255,255,.82); }
.why-card.soft p { color: var(--muted); }

/* ---- Pricing ---- */
.pricing-section { background: linear-gradient(180deg, var(--ink-2), #04153d); color: #fff; }
.pricing-title { text-align: center; margin: 0 0 10px; color: #fff; }
.pricing-lead { text-align: center; color: rgba(255,255,255,.75); max-width: 720px; margin: 0 auto 24px; }
.pricing-toggle { display: flex; gap: 8px; align-items: center; justify-content: center; margin: 0 auto 30px; padding: 6px; border-radius: 999px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.35); width: max-content; }
.pricing-toggle button { border: 0; background: transparent; color: #fff; padding: 10px 24px; border-radius: 999px; font-weight: 600; cursor: pointer; font-family: inherit; }
.pricing-toggle button.active { background: #fff; color: var(--ink); }
.pricing-panel { display: none; }
.pricing-panel.active { display: block; }
.pricing-grid { display: grid; gap: 20px; grid-template-columns: repeat(2, minmax(0,1fr)); }
.pricing-grid--bundle { background: transparent; border: 0; box-shadow: none; gap: 16px; }
.pricing-card { background: #fff; color: var(--ink); border-radius: var(--radius-xl); padding: 28px; border: 1px solid #e3ecfb; box-shadow: 0 18px 40px rgba(4,21,61,.18); }
.pricing-card h3 { margin: 0 0 12px; }
.pricing-rate { font-size: 48px; font-weight: 700; letter-spacing: -.02em; margin: 6px 0; line-height: 1.05; font-family: 'Inter Tight', sans-serif; }
.pricing-rate span { font-size: 18px; font-weight: 600; }
.pricing-rate .pricing-price { font-size: clamp(28px,7vw,48px); font-weight: 700; }
.pricing-rate .pricing-unit { font-size: 14px; font-weight: 600; color: var(--muted); }
.pricing-rate--hero .pricing-price { font-size: 56px; }
.pricing-rate-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, minmax(0,1fr)); margin: 18px 0 10px; }
.pricing-rate-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 14px; background: var(--bg); display: flex; flex-direction: column; gap: 6px; min-height: 140px; min-width: 0; }
.pricing-rate-card .pricing-rate { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.pricing-rate-label { color: var(--muted); margin-top: 8px; }
.pricing-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.pricing-outline { border: 1px solid var(--indigo); color: var(--indigo); background: #fff; }
.pricing-country { display: flex; align-items: center; gap: 10px; }
.pricing-flag { width: 20px; height: 14px; border-radius: 2px; border: 1px solid rgba(0,0,0,.15); object-fit: cover; display: block; }
.pricing-select { border: 1px solid var(--line); padding: 8px 10px; border-radius: var(--radius-sm); background: #fff; color: var(--ink); font-weight: 500; }
.pricing-note { color: var(--muted); margin-top: 18px; }
.pricing-subtitle { color: #fff; font-size: clamp(20px,3vw,28px); margin: 28px 0 12px; }
.checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; }
.check-icon { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid var(--indigo); color: var(--indigo); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; margin-top: 2px; }
.check-icon svg { width: 10px; height: 10px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.included-grid { display: grid; gap: 18px; grid-template-columns: repeat(3, minmax(0,1fr)); }
.addon-grid { display: grid; gap: 18px; grid-template-columns: repeat(4, minmax(0,1fr)); }
.addon-card { background: #fff; color: var(--ink); border-radius: 20px; padding: 18px; border: 1px solid #e3ecfb; min-height: 120px; display: flex; flex-direction: column; gap: 10px; }
.addon-icon { width: 28px; height: 28px; border-radius: 8px; background: var(--indigo-soft); color: var(--indigo); display: flex; align-items: center; justify-content: center; }
.addon-icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---- Shared card labels ---- */
.tech-tag { display: inline-flex; align-items: center; justify-content: center; padding: 10px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; background: rgba(255,255,255,.2); color: #fff; width: 100%; }
.freelancer-subtitle { margin: 0 0 8px; font-size: 20px; font-weight: 600; color: var(--ink); }

/* ---- Programs ---- */
.programs-section { background: #fff; }
.programs-heading { margin: 0 0 8px; text-align: center; }
.programs-lead { color: var(--muted); max-width: 760px; margin: 0 auto 24px; text-align: center; }
.programs-grid { display: grid; gap: 24px; grid-template-columns: repeat(2, minmax(0,1fr)); max-width: 1100px; margin: 0 auto; }
.program-card { background: var(--indigo-soft); border: 1px solid #dbe6fb; border-radius: var(--radius-xl); padding: 24px; position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 14px; }
.program-card h3 { margin: 0; }
.program-link { position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--indigo); display: flex; align-items: center; justify-content: center; color: var(--indigo); }
.program-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.program-features { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0,1fr)); }
.program-feature { display: flex; gap: 10px; }
.program-feature strong { display: block; }
.program-icon { width: 22px; height: 22px; border-radius: 6px; background: var(--indigo); color: #fff; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.program-icon svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.program-media { margin-top: auto; border-radius: 18px; overflow: hidden; }
.program-media img { width: 100%; height: 180px; object-fit: cover; display: block; }
.earn-section { background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%); }
.earn-grid { margin-bottom: 22px; }
.earn-card-main { min-height: 100%; box-shadow: var(--shadow-sm); }
.earn-actions { margin-top: auto; padding-top: 10px; display: flex; }
.earn-benefits { display: grid; gap: 22px; grid-template-columns: repeat(3, minmax(0,1fr)); margin-bottom: 22px; }
.earn-mini-card { border-radius: var(--radius-xl); padding: 28px; min-height: 280px; display: flex; flex-direction: column; gap: 14px; position: relative; overflow: hidden; }
.earn-mini-card.primary { background: var(--ink-3); color: #fff; }
.earn-mini-card.soft { background: var(--indigo-soft); color: var(--ink); border: 1px solid #dbe6fb; }
.earn-mini-card.dark { background: var(--ink); color: #fff; }
.earn-mini-card .tech-tag { display: inline-flex; width: 100%; justify-content: center; padding: 10px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; background: rgba(255,255,255,.2); color: #fff; }
.earn-mini-card.soft .tech-tag { background: #fff; color: var(--ink); border: 1px solid #d9e4fb; }
.earn-mini-card h3 { margin: 0; }
.earn-mini-card.primary h3,
.earn-mini-card.dark h3 { color: #fff; }
.earn-mini-card .muted { color: inherit; opacity: .85; }
.earn-mini-card .btn { width: 100%; justify-content: center; margin-top: auto; }
.earn-mini-card.soft .btn { background: #fff; color: var(--indigo); border-color: #b9ccff; }
.earn-mini-card.primary .btn,
.earn-mini-card.dark .btn { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.5); }
.earn-callout { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 28px; }
.earn-callout p { margin: 0; max-width: 58ch; }

/* ---- Dark section ---- */
.section-dark { background: var(--ink); color: #fff; }
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark .section-title { color: #fff; }
.section-dark .muted { color: #c9c9c9; }
.section-dark a { color: #fff; }
.section-dark .card { background: var(--ink-2); border-color: var(--ink-3); }
.section-dark .btn { border-color: var(--ink-3); }
.section-dark .btn.primary { background: #fff; color: var(--ink); }
.section-dark .section-icon { color: #fff; }
.section-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.selfhelp-cta { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-top: 18px; margin-bottom: 28px; }
.selfhelp-cta-title { font-family: 'Inter Tight', sans-serif; letter-spacing: .04em; text-transform: uppercase; font-size: 12px; color: #c9d8ff; }
.section-selfhelp .card { background: #153a74; border-color: #1f4a93; box-shadow: 0 12px 28px rgba(3,18,43,.35); }

/* ---- Companies / Group ---- */
#companies .companies-stat-row { display: grid; gap: 16px; grid-template-columns: repeat(2, minmax(0,1fr)); }
#companies .stat { height: 100%; }
#companies .stat .num { font-size: clamp(36px,7vw,56px); line-height: 1.1; overflow-wrap: anywhere; }
#companies .stat .muted { overflow-wrap: anywhere; }

/* ---- Icon row ---- */
.icon-row { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: center; }
.icon-row img { height: 36px; width: auto; opacity: .82; }

/* ============================================================
   RESPONSIVE (page-specific overrides)
   ============================================================ */
@media (max-width: 1100px) {
  .tile { grid-column: span 6; }
  .show--compact .tile { grid-column: span 6; }
  .ops-grid, .ops-models, .earn-benefits { grid-template-columns: 1fr; }
  .coverage-shell { grid-template-columns: 1fr; }
  .coverage-copy { padding: 12px 6px 2px; }
  .coverage-copy .lead,
  .coverage-copy .muted { max-width: none; }
  .addon-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .included-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .talk-grid, .pricing-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .earn-callout { flex-direction: column; align-items: flex-start; }
  .pricing-toggle { width: 100%; justify-content: center; }
  .pricing-grid--bundle .pricing-card + .pricing-card { border-left: 0; border-top: 1px solid #e3ecfb; }
  .tile { grid-column: span 12; }
  .addon-grid, .included-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .coverage-shell { padding: 14px; border-radius: 26px; }
  .coverage-copy h2 { font-size: clamp(34px, 11vw, 48px); }
  .coverage-map { height: 280px; border-radius: 18px; }
  .coverage-legend { justify-content: center; }
  .hero { padding: 40px 0 28px; }
  .hero-proof-list { gap: 8px; }
  .hero-proof-list li { width: 100%; }
  .program-features { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  /* Fix: #companies specificity override — force stat row to stack on mobile */
  #companies .companies-stat-row { grid-template-columns: 1fr; }
  /* Hide decorative ghost SVG so it doesn't overlap buttons */
  .talk-ghost { display: none; }
  /* Remove fixed min-heights that leave blank space on narrow screens */
  .why-card { min-height: auto; padding: 22px; }
  .earn-mini-card { min-height: auto; padding: 22px; }
  .ops-model { min-height: auto; }
  /* Reduce oversized pricing rate number */
  .pricing-rate--hero .pricing-price { font-size: 40px; }
  .pricing-rate-grid { grid-template-columns: 1fr; }
  /* Reduce company card padding — 36px left/right is too tight at 375px */
  .os-inline-company-card { padding: 20px 16px; }
}

@media (max-width: 480px) {
  .hero-panel { padding: 16px; }
  .ai-pill { padding: 10px 14px; gap: 8px; }
  .pricing-card { padding: 20px; }
  .pricing-toggle button { padding: 8px 14px; font-size: 13px; }
  .program-card { padding: 18px; }
  .earn-callout { padding: 18px 16px; }
  .talk-card { padding: 20px; }
  .why-card, .earn-mini-card { padding: 18px; }
}
