/*
Theme Name:        Life on GLP-1 Child
Theme URI:         https://lifeonglp.com
Description:       Astra child theme implementing the 2026 Life on GLP-1 redesign — pill nav with dropdowns, dark hero, bento journey grid, guides grid, FAQ accordion.
Author:            Life on GLP-1
Template:          astra
Version:           1.1.0
Requires at least: 6.0
Requires PHP:      7.4
Text Domain:       lifeonglp-child
*/

/* ──────────────────────── TOKENS ──────────────────────── */
:root {
  --green-950: #0f2e22;
  --green-900: #14402f;
  --green-800: #1b5740;
  --green-100: #ddeee4;
  --green-50:  #eef7f1;

  --cream: #fdfcf8;
  --sand:  #f6f3ec;

  --ink: #11201a;
  --ink-soft: #4c5f56;
  --ink-faint: #8aa097;

  --coral: #ff6b4a;
  --coral-deep: #e8512f;
  --amber: #ffb648;
  --mint: #4ecb9b;

  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;

  --shadow-card: 0 2px 6px rgba(15, 46, 34, 0.05), 0 16px 40px rgba(15, 46, 34, 0.08);
  --shadow-float: 0 8px 20px rgba(15, 46, 34, 0.12), 0 30px 70px rgba(15, 46, 34, 0.18);

  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
}

/* ──────────────────────── BASE ──────────────────────── */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body img, body svg { max-width: 100%; }
::selection { background: var(--coral); color: #fff; }

.container { max-width: var(--max-w); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

/* ──────────────────────── WORDPRESS / ASTRA OVERRIDES ──────────────────────── */
/* Full-bleed canvas: neutralize Astra's content container on our custom
   templates (home, single articles, provider page). Astra sets
   `.ast-container { display:flex }` (for primary + sidebar); on a builder
   layout that turns every stacked section into a shrinking flex column, so
   we force it back to block. The #content id keeps specificity above Astra. */
body.home #content .ast-container,
body.front-page #content .ast-container,
body.single #content .ast-container,
body.lg-provider-page #content .ast-container {
  display: block;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
body.home #content.site-content,
body.front-page #content.site-content,
body.single #content.site-content,
body.lg-provider-page #content.site-content { padding: 0; }

/* Inner pages with no custom hero clear the fixed pill nav with top padding.
   Home, single articles and the provider page handle clearance in their own
   header padding, so they're excluded. */
body:not(.home):not(.single):not(.lg-provider-page) #content.site-content { padding-top: 110px; }

/* Logged-in admin bar offset for the fixed nav */
.admin-bar .nav-wrap { top: 48px; }
@media (max-width: 782px) { .admin-bar .nav-wrap { top: 62px; } }
.admin-bar .mobile-menu { padding-top: 140px; }

/* Force the typeface across Astra-styled elements */
body, button, input, select, textarea,
.ast-container, h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
}

/* Links: design uses no underline by default */
.nav-wrap a, .mobile-menu a, .hero a, .bento a, .gcard, .med-card,
footer a, .final a, .faq-a-inner a, .b-link, .el-cta {
  text-decoration: none;
}

/* ──────────────────────── BUTTONS ──────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: 999px;
  transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .2s, background .2s, color .2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn:active { transform: translateY(0) scale(.98); }
.btn:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }

.btn--coral { background: var(--coral); color: #fff; box-shadow: 0 8px 24px rgba(255,107,74,.35); }
.btn--coral:hover { background: var(--coral-deep); color: #fff; box-shadow: 0 12px 32px rgba(255,107,74,.45); }

.btn--dark { background: var(--green-950); color: var(--cream); }
.btn--dark:hover { background: var(--green-800); color: var(--cream); }

.btn--light { background: #fff; color: var(--green-950); border: 1.5px solid var(--green-100); }
.btn--light:hover { border-color: var(--green-950); color: var(--green-950); }

.btn--ghost-light { background: rgba(255,255,255,.12); color: #fff; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.25); }
.btn--ghost-light:hover { background: rgba(255,255,255,.22); color: #fff; }

/* ──────────────────────── NAV ──────────────────────── */
.nav-wrap {
  position: fixed;
  top: 16px; left: 0; right: 0;
  z-index: 100;
  padding: 0 var(--gutter);
}
.nav {
  max-width: var(--max-w);
  margin: 0 auto;
  background: rgba(253, 252, 248, .82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(17, 32, 26, .07);
  border-radius: 999px;
  padding: 10px 10px 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 24px rgba(15,46,34,.07);
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 18px; letter-spacing: -.02em;
  color: var(--ink);
}
.logo-badge {
  width: 34px; height: 34px;
  background: var(--green-950);
  border-radius: 11px;
  display: grid; place-items: center;
  color: var(--mint);
  font-weight: 800; font-size: 15px;
}
.logo span em { font-style: normal; color: var(--coral); }

.nav-links {
  display: flex; align-items: center; gap: 4px;
  font-size: 14px; font-weight: 600;
}
.nav-links > a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--ink-soft);
  transition: background .15s, color .15s;
}
.nav-links > a:hover { background: var(--green-50); color: var(--ink); }
.nav-cta { margin-left: 8px; padding: 12px 22px !important; background: var(--green-950); color: #fff !important; }
.nav-cta:hover { background: var(--coral) !important; }

/* dropdown submenus */
.nav-item { position: relative; }
.nav-item > a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px; border-radius: 999px;
  color: var(--ink-soft); transition: background .15s, color .15s;
}
.nav-item > a:hover { background: var(--green-50); color: var(--ink); }
.nav-item .chev { transition: transform .2s; opacity: .55; }
.nav-item:hover .chev, .nav-item:focus-within .chev { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 250px;
  background: #fff;
  border: 1px solid var(--green-100);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-float);
  padding: 8px;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 110;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown::before { /* hover bridge so it doesn't close in the gap */
  content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px;
}
.dropdown a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 12px;
  border-radius: 10px;
  font-size: 14px; font-weight: 600; color: var(--ink);
  transition: background .14s, color .14s;
}
.dropdown a:hover { background: var(--green-50); color: var(--green-950); }
.dropdown a .d-ic {
  width: 32px; height: 32px; border-radius: 9px; flex-shrink: 0;
  display: grid; place-items: center; font-size: 15px;
  background: var(--green-50);
}
.dropdown a:hover .d-ic { background: #fff; }
.dropdown a small { display: block; font-size: 11.5px; font-weight: 500; color: var(--ink-faint); margin-top: 1px; }
.dropdown .d-divider { height: 1px; background: var(--green-100); margin: 6px 8px; }

.nav-burger { display: none; width: 42px; height: 42px; border-radius: 999px; background: var(--green-950); color:#fff; place-items: center; }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-burger { display: grid; }
}
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 99;
  background: var(--green-950);
  padding: 110px var(--gutter) 40px;
  flex-direction: column; gap: 6px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: #fff; font-size: 26px; font-weight: 700;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-menu > a:last-child { border: none; margin-top: 20px; background: var(--coral); text-align: center; border-radius: 999px; padding: 18px; font-size: 18px; }
.m-group { border-bottom: 1px solid rgba(255,255,255,.1); }
.m-group > button {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  color: #fff; font-size: 26px; font-weight: 700; padding: 14px 0; text-align: left;
  background: none; border: none; cursor: pointer; font-family: var(--font);
}
.m-group .m-chev { transition: transform .25s; opacity: .6; }
.m-group.open .m-chev { transform: rotate(180deg); }
.m-sub { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.m-group.open .m-sub { max-height: 400px; }
.m-sub a {
  display: block;
  font-size: 17px !important; font-weight: 600 !important;
  color: rgba(255,255,255,.75) !important;
  padding: 11px 0 11px 18px !important;
  border: none !important;
  border-left: 2px solid rgba(255,255,255,.18) !important;
  border-radius: 0 !important;
  margin: 0 0 0 4px !important;
  background: none !important;
  text-align: left !important;
}
.m-sub a:active { color: #fff !important; }

/* ──────────────────────── HERO ──────────────────────── */
.hero {
  position: relative;
  background: var(--green-950);
  border-radius: 0 0 clamp(28px, 5vw, 56px) clamp(28px, 5vw, 56px);
  padding: clamp(130px, 16vw, 180px) 0 clamp(100px, 10vw, 140px);
  overflow: hidden;
  color: #fff;
}
/* ambient gradient orbs */
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
}
.hero::before {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(78,203,155,.28), transparent 65%);
  top: -180px; right: -120px;
}
.hero::after {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(255,107,74,.22), transparent 65%);
  bottom: -200px; left: -100px;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(40px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 920px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.92);
  margin-bottom: 28px;
}
.hero-pill .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(78,203,155,.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(78,203,155,.55); }
  70% { box-shadow: 0 0 0 9px rgba(78,203,155,0); }
  100% { box-shadow: 0 0 0 0 rgba(78,203,155,0); }
}

.hero h1 {
  font-size: clamp(38px, 5.6vw, 64px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.035em;
  color: #fff;
}
.hero h1 .hl {
  position: relative;
  display: inline-block;
  color: var(--mint);
}
.hero h1 .hl svg {
  position: absolute; left: 0; right: 0; bottom: -6px;
  width: 100%; height: 12px;
}
.hero-sub {
  margin-top: 22px;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.65;
  color: rgba(255,255,255,.78);
  max-width: 520px;
}
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero-proof {
  margin-top: 44px;
  display: flex; align-items: center; gap: 16px;
  font-size: 13.5px; color: rgba(255,255,255,.7);
}
.avatars { display: flex; }
.avatars span {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2.5px solid var(--green-950);
  margin-left: -10px;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700; color: #fff;
}
.avatars span:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg, #ff8a6b, #e8512f); }
.av2 { background: linear-gradient(135deg, #5fd9ab, #2a9d76); }
.av3 { background: linear-gradient(135deg, #ffc56b, #f59e2d); }
.av4 { background: linear-gradient(135deg, #7aa7e8, #4a72c4); }
.hero-proof b { color: #fff; }

/* ── hero visual: floating app cards ── */
.hero-visual {
  position: relative;
  min-height: 480px;
}
@media (max-width: 920px) { .hero-visual { min-height: 440px; margin-top: 10px; } }

.fcard {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-float);
  color: var(--ink);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* main card: shot day checklist */
.fcard--main {
  top: 8%; left: 4%;
  width: min(340px, 78%);
  padding: 24px;
  animation-delay: 0s;
  z-index: 3;
}
.fcard--main .fc-head {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.fcard--main .fc-title { font-size: 13.5px; font-weight: 800; }
.fcard--main .fc-badge {
  font-size: 11px; font-weight: 800; color: var(--green-800);
  background: var(--green-100); border-radius: 999px; padding: 4px 10px;
}
.fc-check { list-style: none; margin: 14px 0 0; padding: 0; }
.fc-check li {
  display: flex; align-items: center; gap: 11px;
  font-size: 13.5px; font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px dashed var(--green-100);
  color: var(--ink-soft);
}
.fc-check li:last-child { border-bottom: none; }
.fc-check li.done { color: var(--ink); }
.fc-check .ck {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid var(--green-100);
  display: grid; place-items: center;
  font-size: 12px; font-weight: 800; color: #fff;
}
.fc-check li.done .ck { background: var(--mint); border-color: var(--mint); }
.fc-tip {
  margin-top: 14px;
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--green-50);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 12.5px; line-height: 1.5; font-weight: 500; color: var(--ink-soft);
}
.fc-tip-ic { font-size: 15px; }

/* journey card */
.el-journey .el-title { font-size: 13.5px; font-weight: 800; }
.el-dots { display: flex; gap: 6px; margin: 12px 0; }
.el-dots .d {
  flex: 1; height: 8px; border-radius: 999px;
  background: var(--green-50);
}
.el-dots .d.done { background: var(--mint); }
.el-dots .d.now {
  background: var(--coral);
  animation: nowpulse 2s infinite;
}
@keyframes nowpulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,74,.4); }
  50% { box-shadow: 0 0 0 5px rgba(255,107,74,0); }
}

/* side card: eligibility */
.fcard--elig {
  top: 56%; right: 0;
  width: min(260px, 66%);
  padding: 20px;
  animation-delay: 1.2s;
  z-index: 4;
}
.fcard--elig .el-sub { font-size: 12.5px; color: var(--ink-soft); line-height: 1.5; }
.fcard--elig .el-cta {
  margin-top: 14px; display: block; text-align: center;
  background: var(--green-950); color: #fff;
  font-size: 13px; font-weight: 700;
  padding: 11px; border-radius: 999px;
  transition: background .2s;
}
.fcard--elig .el-cta:hover { background: var(--coral); color: #fff; }

/* chip cards */
.fchip {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: #fff;
  border-radius: 999px;
  padding: 10px 18px 10px 12px;
  font-size: 13px; font-weight: 700; color: var(--ink);
  box-shadow: var(--shadow-float);
  animation: float 6s ease-in-out infinite;
}
.fchip .ic {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; font-size: 14px;
}
.fchip--a { top: 0; right: 6%; animation-delay: .6s; z-index: 2; }
.fchip--a .ic { background: #ffe9e2; }
.fchip--b { bottom: 4%; left: 10%; animation-delay: 1.8s; z-index: 2; }
.fchip--b .ic { background: var(--green-100); }

/* ──────────────────────── MED PICKER STRIP ──────────────────────── */
.meds {
  margin-top: -44px;
  position: relative; z-index: 10;
}
.meds-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 820px) { .meds-row { grid-template-columns: 1fr; } }
.med-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 22px 24px;
  display: flex; align-items: center; gap: 16px;
  border: 1.5px solid transparent;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  color: var(--ink);
}
.med-card:hover {
  transform: translateY(-4px);
  border-color: var(--coral);
  box-shadow: var(--shadow-float);
  color: var(--ink);
}
.med-dot {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center;
  font-weight: 800; font-size: 17px; color: #fff;
  flex-shrink: 0;
}
.med-dot--o { background: linear-gradient(135deg, #4a72c4, #2d4d92); }
.med-dot--w { background: linear-gradient(135deg, #2a9d76, #14402f); }
.med-dot--m { background: linear-gradient(135deg, #ff8a6b, #e8512f); }
.med-card h3 { font-size: 16px; font-weight: 800; letter-spacing: -.01em; margin: 0; }
.med-card p { font-size: 13px; color: var(--ink-soft); margin: 1px 0 0; }
.med-card .go {
  margin-left: auto;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--green-50);
  display: grid; place-items: center;
  color: var(--green-950);
  transition: background .2s, color .2s, transform .2s;
  flex-shrink: 0;
}
.med-card:hover .go { background: var(--coral); color: #fff; transform: rotate(-45deg); }

/* ──────────────────────── SECTIONS ──────────────────────── */
.lg-section { padding: clamp(80px, 10vw, 130px) 0; }

.sec-head { max-width: 640px; margin-bottom: clamp(44px, 6vw, 64px); }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}
.sec-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin: 0;
}
.sec-head p { margin-top: 16px; font-size: 17px; color: var(--ink-soft); }

/* ──────────────────────── JOURNEY (bento) ──────────────────────── */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.bento > * { border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 36px); position: relative; overflow: hidden; }

.b-elig {
  grid-column: span 7;
  background: var(--green-950);
  color: #fff;
  min-height: 300px;
  display: flex; flex-direction: column;
}
.b-elig:hover { color: #fff; }
.b-elig::after {
  content: ""; position: absolute;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(78,203,155,.35), transparent 65%);
  right: -120px; bottom: -160px;
  filter: blur(50px);
}
.b-guides {
  grid-column: span 5;
  background: var(--sand);
  display: flex; flex-direction: column;
  color: var(--ink);
}
.b-compare {
  grid-column: span 5;
  background: linear-gradient(135deg, #ffe9e2, #ffd9cd);
  display: flex; flex-direction: column;
  color: var(--ink);
}
.b-provider {
  grid-column: span 7;
  background: var(--green-100);
  display: flex; flex-direction: column;
  color: var(--ink);
}
.b-guides:hover, .b-compare:hover, .b-provider:hover { color: var(--ink); }
@media (max-width: 860px) {
  .b-elig, .b-guides, .b-compare, .b-provider { grid-column: span 12; min-height: 0; }
}

.b-tag {
  font-size: 12px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  opacity: .65; margin-bottom: 16px;
}
.bento h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800; letter-spacing: -.025em; line-height: 1.15;
  max-width: 360px;
  margin: 0;
  color: inherit;
}
.bento p {
  margin: 12px 0 0; font-size: 15px; line-height: 1.6;
  opacity: .8; max-width: 400px;
  color: inherit;
}
.b-link {
  margin-top: auto; padding-top: 28px;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 15px;
}
.b-link .arr {
  width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(0,0,0,.08);
  transition: transform .2s, background .2s;
}
.b-elig .b-link .arr { background: rgba(255,255,255,.15); }
.bento a:hover .arr, .bento .b-elig:hover .arr, .bento > a:hover .arr { transform: translateX(4px); background: var(--coral); color: #fff; }

/* ──────────────────────── GUIDES GRID ──────────────────────── */
.section--guides { background: var(--green-950); border-radius: clamp(28px,5vw,56px); color: #fff; }
.section--guides .sec-head h2 { color: #fff; }
.section--guides .sec-head p { color: rgba(255,255,255,.7); }

.gcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .gcards { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) { .gcards { grid-template-columns: 1fr; } }

.gcard {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex; flex-direction: column;
  min-height: 230px;
  transition: background .2s, transform .2s, border-color .2s;
  color: #fff;
}
.gcard:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.25);
  transform: translateY(-4px);
  color: #fff;
}
.gcard-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.gcat {
  font-size: 11.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.gcat--side { background: rgba(255,107,74,.18); color: #ffa18a; }
.gcat--comp { background: rgba(78,203,155,.16); color: #7fe0b9; }
.gcat--cost { background: rgba(255,182,72,.16); color: #ffd089; }
.gcat--mind { background: rgba(122,167,232,.16); color: #a8c4ef; }
.gtime { font-size: 12px; color: rgba(255,255,255,.5); font-weight: 600; }
.gcard h3 {
  font-size: 20px; font-weight: 800; letter-spacing: -.02em; line-height: 1.25;
  margin: 0; color: #fff;
}
.gcard p {
  margin: 10px 0 0; font-size: 14px; line-height: 1.6;
  color: rgba(255,255,255,.65);
  flex: 1;
}
.gcard .read {
  margin-top: 20px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 700;
  color: var(--mint);
}
.gcard:hover .read { color: #fff; }

.guides-foot { text-align: center; margin-top: 44px; }

/* ──────────────────────── STATS BAND ──────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 860px) { .stats { grid-template-columns: 1fr 1fr; } }
.stat {
  background: #fff;
  border: 1.5px solid var(--green-100);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform .2s, box-shadow .2s;
}
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.stat .n {
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 800; letter-spacing: -.04em;
  color: var(--green-950);
}
.stat .n em { font-style: normal; color: var(--coral); }
.stat .l { margin-top: 6px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }

/* ──────────────────────── QUOTES ──────────────────────── */
.section--quotes { background: var(--sand); border-radius: clamp(28px,5vw,56px); }
.qgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .qgrid { grid-template-columns: 1fr; } }
.qcard {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  transition: transform .2s;
}
.qcard:hover { transform: translateY(-4px) rotate(-.4deg); }
.qcard blockquote {
  font-size: 16px; line-height: 1.65; font-weight: 500;
  flex: 1;
  margin: 0; padding: 0; border: none; background: none;
  color: var(--ink);
}
.q-attr { margin-top: 24px; display: flex; align-items: center; gap: 12px; }
.q-av {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 15px;
}
.q-attr .nm { font-size: 14px; font-weight: 800; }
.q-attr .ctx { font-size: 12.5px; color: var(--ink-soft); }

/* ──────────────────────── FAQ ──────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 880px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-sticky { position: sticky; top: 110px; }
.faq-sticky h2 {
  font-size: clamp(30px,4vw,44px); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.1; margin: 0;
}
.faq-sticky .faq-lead { margin-top: 16px; color: var(--ink-soft); }
.faq-sticky .faq-lead a { color: var(--coral-deep); font-weight: 700; }

.faq-item {
  background: #fff;
  border: 1.5px solid var(--green-100);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item[data-open="true"] { border-color: var(--green-950); box-shadow: var(--shadow-card); }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 16px; font-weight: 700; letter-spacing: -.01em;
  background: none; border: none; cursor: pointer;
  font-family: var(--font); color: var(--ink);
}
.faq-q .pm {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--green-50);
  display: grid; place-items: center;
  font-size: 17px; font-weight: 700; color: var(--green-950);
  flex-shrink: 0;
  transition: transform .25s, background .2s, color .2s;
}
.faq-item[data-open="true"] .pm { transform: rotate(45deg); background: var(--coral); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner {
  padding: 0 24px 22px;
  font-size: 15px; line-height: 1.65; color: var(--ink-soft);
}
.faq-a-inner a { color: var(--coral-deep); font-weight: 700; }

/* ──────────────────────── FINAL CTA ──────────────────────── */
.final {
  background: var(--green-950);
  border-radius: clamp(28px,5vw,56px);
  padding: clamp(64px, 9vw, 110px) clamp(28px, 6vw, 80px);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 110%, rgba(255,107,74,.3), transparent 45%),
    radial-gradient(circle at 85% -10%, rgba(78,203,155,.28), transparent 45%);
  pointer-events: none;
}
.final > * { position: relative; }
.final h2 {
  font-size: clamp(32px, 4.6vw, 54px);
  font-weight: 800; letter-spacing: -.035em; line-height: 1.05;
  max-width: 680px; margin: 0 auto;
  color: #fff;
}
.final h2 em { font-style: normal; color: var(--mint); }
.final p {
  margin: 20px auto 0;
  max-width: 480px;
  color: rgba(255,255,255,.75);
  font-size: 17px;
}
.final-actions { margin-top: 38px; display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ──────────────────────── NEWSLETTER ──────────────────────── */
.newsletter {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: clamp(28px,5vw,64px);
  align-items: center;
  padding: clamp(56px,7vw,80px) 0;
}
@media (max-width: 820px) { .newsletter { grid-template-columns: 1fr; } }
.newsletter h2 { font-size: clamp(26px,3.4vw,36px); font-weight: 800; letter-spacing: -.03em; line-height: 1.12; margin: 0; }
.newsletter h2 em { font-style: normal; color: var(--coral); }
.newsletter .sub { margin-top: 12px; color: var(--ink-soft); font-size: 15px; max-width: 440px; }
.nl-form { display: flex; flex-direction: column; gap: 10px; }
.nl-row {
  display: flex; gap: 8px;
  background: #fff;
  border: 1.5px solid var(--green-100);
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
  transition: border-color .2s, box-shadow .2s;
}
.nl-row:focus-within { border-color: var(--green-950); box-shadow: var(--shadow-card); }
.nl-row input {
  flex: 1; border: none; background: none; outline: none;
  font: inherit; font-size: 15px; min-width: 0;
  box-shadow: none;
}
.nl-row input:focus { border: none; box-shadow: none; outline: none; }
.nl-row button {
  background: var(--coral); color: #fff;
  font-weight: 800; font-size: 14px;
  padding: 13px 24px; border-radius: 999px;
  border: none; cursor: pointer; font-family: var(--font);
  transition: background .2s, transform .15s;
}
.nl-row button:hover { background: var(--coral-deep); transform: scale(1.03); }
.nl-note { font-size: 12.5px; color: var(--ink-faint); }

/* If an existing newsletter plugin shortcode is dropped in, keep it on-brand */
.nl-shortcode input[type="email"], .nl-shortcode input[type="text"] {
  border: 1.5px solid var(--green-100); border-radius: 999px;
  padding: 13px 22px; font-family: var(--font); font-size: 15px; width: 100%;
}
.nl-shortcode input[type="submit"], .nl-shortcode button {
  background: var(--coral); color: #fff; font-weight: 800; font-size: 14px;
  padding: 13px 24px; border-radius: 999px; border: none; cursor: pointer;
}
.nl-shortcode input[type="submit"]:hover, .nl-shortcode button:hover { background: var(--coral-deep); }

/* ──────────────────────── FOOTER ──────────────────────── */
.lg-footer { background: var(--sand); border-radius: clamp(28px,5vw,56px) clamp(28px,5vw,56px) 0 0; padding: clamp(48px,6vw,72px) 0 28px; }
.f-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 36px;
  padding-bottom: 48px;
}
@media (max-width: 860px) { .f-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .f-grid { grid-template-columns: 1fr; } }
.f-brand p { margin-top: 14px; font-size: 14px; color: var(--ink-soft); max-width: 280px; line-height: 1.6; }
.f-col h4 {
  font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-faint); margin: 0 0 16px;
}
.f-col ul { margin: 0; padding: 0; }
.f-col li { list-style: none; margin-bottom: 10px; }
.f-col a { font-size: 14.5px; font-weight: 600; color: var(--ink-soft); transition: color .15s; }
.f-col a:hover { color: var(--coral-deep); }
.f-bottom {
  border-top: 1.5px solid var(--green-100);
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 12.5px; color: var(--ink-faint); font-weight: 600;
}
.f-bottom a { color: inherit; }
.f-bottom a:hover { color: var(--coral-deep); }

/* disclaimer */
.med-note {
  margin-top: 28px;
  background: #fff;
  border: 1.5px dashed var(--green-100);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  font-size: 13px; line-height: 1.6; color: var(--ink-soft);
}
.med-note b { color: var(--ink); }

/* ──────────────────────── SCROLL REVEAL ──────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ════════════════════════════════════════════════════════════════
   ARTICLE TEMPLATE (single.php)
   ════════════════════════════════════════════════════════════════ */
.art-head { padding: clamp(130px,15vw,170px) 0 clamp(36px,5vw,56px); }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--ink-faint); margin-bottom: 24px; }
.crumbs a { color: var(--ink-faint); }
.crumbs a:hover { color: var(--coral-deep); }
.crumbs .sep { opacity: .5; }
.art-cat { display: inline-flex; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--coral-deep); background: #ffe9e2; border-radius: 999px; padding: 6px 14px; margin-bottom: 18px; }
.art-head h1 { font-size: clamp(32px,4.8vw,52px); font-weight: 800; letter-spacing: -.035em; line-height: 1.08; max-width: 820px; margin: 0; }
.art-sub { margin-top: 18px; font-size: 18px; color: var(--ink-soft); max-width: 680px; line-height: 1.6; }

.byline { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px 36px; align-items: center; padding: 18px 0; border-top: 1.5px solid var(--green-100); border-bottom: 1.5px solid var(--green-100); }
.by { display: flex; align-items: center; gap: 12px; }
.by-av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #fff; font-size: 16px; flex-shrink: 0; overflow: hidden; }
.by-av img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.by-av--a { background: linear-gradient(135deg,#2a9d76,#14402f); }
.by-av--r { background: linear-gradient(135deg,#7aa7e8,#4a72c4); }
.by .role { font-size: 11px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-faint); }
.by .nm { font-size: 14.5px; font-weight: 800; }
.by .nm small { font-weight: 600; color: var(--ink-soft); }
.art-meta { margin-left: auto; font-size: 13px; font-weight: 600; color: var(--ink-faint); display: flex; gap: 18px; }
@media (max-width: 720px) { .art-meta { margin-left: 0; } }

.art-layout { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: clamp(36px,5vw,72px); padding-bottom: clamp(64px,8vw,100px); }
@media (max-width: 980px) { .art-layout { grid-template-columns: 1fr; } .art-side { display: none; } }

.art-side { position: relative; }
.side-stick { position: sticky; top: 104px; display: flex; flex-direction: column; gap: 18px; }
.toc { background: #fff; border: 1.5px solid var(--green-100); border-radius: var(--radius-md); padding: 22px; }
.toc h4 { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); margin: 0 0 14px; }
.toc a { display: block; font-size: 14px; font-weight: 600; color: var(--ink-soft); padding: 7px 0 7px 14px; border-left: 2px solid var(--green-100); transition: color .15s, border-color .15s; }
.toc a:hover, .toc a.active { color: var(--coral-deep); border-color: var(--coral); }
.side-cta { background: var(--green-950); color: #fff; border-radius: var(--radius-md); padding: 24px; position: relative; overflow: hidden; }
.side-cta::after { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle,rgba(78,203,155,.35),transparent 65%); right: -80px; bottom: -100px; filter: blur(30px); }
.side-cta h4 { font-size: 18px; font-weight: 800; letter-spacing: -.02em; line-height: 1.25; position: relative; margin: 0; }
.side-cta p { margin-top: 8px; font-size: 13.5px; color: rgba(255,255,255,.72); position: relative; }
.side-cta .btn { margin-top: 16px; width: 100%; padding: 13px; font-size: 14px; position: relative; }

/* article body typography — applies to the_content output */
.art-body { font-size: 17.5px; line-height: 1.75; color: #2a3b33; }
.art-body > * + * { margin-top: 1.2em; }
.art-body h2 { font-size: clamp(24px,3vw,32px); font-weight: 800; letter-spacing: -.025em; color: var(--ink); margin-top: 2em; scroll-margin-top: 100px; }
.art-body h3 { font-size: clamp(19px,2.2vw,23px); font-weight: 800; letter-spacing: -.02em; color: var(--ink); margin-top: 1.6em; }
.art-body p { margin: 0; }
.art-body a { color: var(--coral-deep); font-weight: 700; border-bottom: 1.5px solid #ffd9cd; transition: border-color .15s; }
.art-body a:hover { border-color: var(--coral); }
.art-body ul, .art-body ol { padding-left: 1.3em; margin: 0; }
.art-body li { margin-top: .5em; }
.art-body li::marker { color: var(--coral); font-weight: 800; }
.art-body img { border-radius: var(--radius-md); }

/* callout boxes (write in post content with <div class="box box--key">…) */
.box { border-radius: var(--radius-md); padding: 24px 26px; font-size: 15.5px; }
.box h4 { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 800; margin: 0 0 10px; letter-spacing: -.01em; }
.box--key { background: var(--green-50); border: 1.5px solid var(--green-100); }
.box--key h4 { color: var(--green-800); }
.box--warn { background: #fff7ec; border: 1.5px solid #ffe3b8; }
.box--warn h4 { color: #b97a14; }
.box ul { padding-left: 1.2em; margin: 0; }
.box li { margin-top: .4em; }

/* inline CTA */
.cta-inline { background: var(--green-950); color: #fff; border-radius: var(--radius-md); padding: clamp(26px,4vw,36px); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; position: relative; overflow: hidden; margin: 2.2em 0; }
.cta-inline::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 90% 120%,rgba(255,107,74,.3),transparent 50%); }
.cta-inline > * { position: relative; }
.cta-inline h4 { font-size: clamp(19px,2.4vw,24px); font-weight: 800; letter-spacing: -.02em; line-height: 1.2; margin: 0; }
.cta-inline p { margin-top: 6px; font-size: 14px; color: rgba(255,255,255,.72); }

/* data table inside article content */
.art-body .tbl-wrap { overflow-x: auto; border: 1.5px solid var(--green-100); border-radius: var(--radius-md); background: #fff; }
.art-body table, .art-body .tbl { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 520px; }
.art-body .tbl th, .art-body table th { background: var(--green-50); text-align: left; font-weight: 800; font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--green-800); padding: 14px 18px; }
.art-body .tbl td, .art-body table td { padding: 14px 18px; border-top: 1px solid var(--green-100); font-weight: 500; }
.art-body .tbl td:first-child, .art-body table td:first-child { font-weight: 800; color: var(--ink); }
.pill { display: inline-flex; font-size: 12px; font-weight: 800; border-radius: 999px; padding: 4px 12px; }
.pill--g { background: var(--green-100); color: var(--green-800); }
.pill--a { background: #fff3dd; color: #b97a14; }
.pill--r { background: #ffe9e2; color: var(--coral-deep); }

/* pull quote */
.pullq { border-left: 4px solid var(--coral); background: var(--sand); border-radius: 0 var(--radius-md) var(--radius-md) 0; padding: 24px 28px; font-size: 19px; font-weight: 600; line-height: 1.55; color: var(--ink); margin: 0; }
.pullq footer { margin-top: 12px; font-size: 13.5px; font-weight: 700; color: var(--ink-soft); background: none; border-radius: 0; padding: 0; }

/* sources */
.sources { font-size: 13.5px; color: var(--ink-soft); margin-top: 2.5em; }
.sources summary { font-weight: 800; font-size: 14px; color: var(--ink); cursor: pointer; padding: 16px 0; }
.sources ol { padding-left: 1.4em; margin: 0; }
.sources li { margin-top: .5em; line-height: 1.5; }

/* author box */
.author-box { margin-top: 3em; background: #fff; border: 1.5px solid var(--green-100); border-radius: var(--radius-md); padding: clamp(24px,3vw,32px); display: flex; gap: 20px; align-items: flex-start; }
@media (max-width: 620px) { .author-box { flex-direction: column; } }
.author-box .by-av { width: 64px; height: 64px; font-size: 22px; }
.author-box h4 { font-size: 18px; font-weight: 800; margin: 0; }
.author-box .tag { font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-faint); }
.author-box p { margin-top: 8px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }
.author-box a { color: var(--coral-deep); font-weight: 700; }

/* related posts */
.related { background: var(--sand); border-radius: clamp(28px,5vw,56px); padding: clamp(56px,7vw,88px) 0; margin: 0 var(--gutter); }
.related h2 { font-size: clamp(26px,3.4vw,38px); font-weight: 800; letter-spacing: -.03em; margin: 0 0 36px; }
.rel-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
@media (max-width: 920px) { .rel-grid { grid-template-columns: 1fr; } }
.rel-card { background: #fff; border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; transition: transform .2s; color: var(--ink); }
.rel-card:hover { transform: translateY(-4px); color: var(--ink); }
.rel-card .cat { font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--coral-deep); margin-bottom: 12px; }
.rel-card h3 { font-size: 18px; font-weight: 800; letter-spacing: -.015em; line-height: 1.3; flex: 1; margin: 0; }
.rel-card .read { margin-top: 16px; font-size: 13.5px; font-weight: 700; color: var(--green-800); }

/* sticky mobile CTA */
.sticky-cta { position: fixed; bottom: 14px; left: 14px; right: 14px; z-index: 90; display: none; }
.sticky-cta a { display: flex; justify-content: center; align-items: center; gap: 8px; background: var(--coral); color: #fff; font-weight: 800; font-size: 15px; padding: 16px; border-radius: 999px; box-shadow: 0 10px 30px rgba(232,81,47,.4); }
@media (max-width: 980px) { .sticky-cta.show { display: block; } }

/* ════════════════════════════════════════════════════════════════
   PROVIDER COMPARISON TEMPLATE (template-providers.php)
   ════════════════════════════════════════════════════════════════ */
.phero { background: var(--green-950); color: #fff; border-radius: 0 0 clamp(28px,5vw,56px) clamp(28px,5vw,56px); padding: clamp(130px,15vw,170px) 0 clamp(56px,7vw,80px); position: relative; overflow: hidden; }
.phero::before { content: ""; position: absolute; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle,rgba(78,203,155,.25),transparent 65%); top: -160px; right: -120px; filter: blur(80px); }
.phero > * { position: relative; }
.phero .kick { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--mint); margin-bottom: 16px; }
.phero h1 { font-size: clamp(32px,4.8vw,56px); font-weight: 800; letter-spacing: -.035em; line-height: 1.06; max-width: 760px; margin: 0; color: #fff; }
.phero p { margin-top: 18px; font-size: 17px; color: rgba(255,255,255,.75); max-width: 600px; }
.phero .upd { margin-top: 24px; display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: 8px 16px; font-size: 13px; font-weight: 600; }

.filters { margin-top: -26px; position: relative; z-index: 10; }
.filter-bar { background: #fff; border-radius: 999px; box-shadow: var(--shadow-card); padding: 8px; display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.fbtn { padding: 11px 20px; border-radius: 999px; font-size: 14px; font-weight: 700; color: var(--ink-soft); transition: background .15s, color .15s; border: none; background: none; cursor: pointer; font-family: var(--font); }
.fbtn:hover { background: var(--green-50); color: var(--ink); }
.fbtn.on { background: var(--green-950); color: #fff; }

.providers { padding: clamp(44px,6vw,64px) 0; }
.pcard { background: #fff; border: 1.5px solid var(--green-100); border-radius: var(--radius-lg); padding: clamp(24px,3.5vw,36px); margin-bottom: 22px; display: grid; grid-template-columns: auto minmax(0,1fr) auto; gap: clamp(20px,3vw,36px); align-items: center; position: relative; transition: transform .2s, box-shadow .2s, border-color .2s; }
.pcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: var(--green-950); }
@media (max-width: 880px) { .pcard { grid-template-columns: 1fr; } }
.pcard--top { border: 2px solid var(--coral); }
.pick-badge { position: absolute; top: -13px; left: 32px; background: var(--coral); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; box-shadow: 0 6px 16px rgba(232,81,47,.35); }
.pick-badge--val { background: var(--green-800); }
.pick-badge--fast { background: #b97a14; }
.p-id { display: flex; align-items: center; gap: 16px; min-width: 200px; }
.p-logo { width: 62px; height: 62px; border-radius: 18px; display: grid; place-items: center; font-weight: 800; font-size: 22px; color: #fff; flex-shrink: 0; }
.p-logo--ro { background: linear-gradient(135deg,#2a9d76,#14402f); }
.p-logo--lm { background: linear-gradient(135deg,#4a72c4,#2d4d92); }
.p-logo--hh { background: linear-gradient(135deg,#ff8a6b,#e8512f); }
.p-id h3 { font-size: 21px; font-weight: 800; letter-spacing: -.02em; margin: 0; }
.p-rating { display: flex; align-items: center; gap: 7px; margin-top: 4px; font-size: 13px; font-weight: 700; color: var(--ink-soft); }
.p-rating .score { background: var(--green-100); color: var(--green-800); font-weight: 800; border-radius: 8px; padding: 2px 8px; font-size: 13px; }
.p-specs { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px 24px; }
@media (max-width: 1080px) { .p-specs { grid-template-columns: 1fr 1fr; } }
.spec .k { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); }
.spec .v { font-size: 15px; font-weight: 800; margin-top: 3px; }
.spec .v small { font-weight: 600; color: var(--ink-soft); font-size: 12.5px; }
.p-tags { grid-column: 1/-1; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px; }
.ptag { font-size: 12px; font-weight: 700; border-radius: 999px; padding: 5px 12px; background: var(--green-50); color: var(--green-800); }
.ptag--warn { background: #fff3dd; color: #b97a14; }
.p-act { display: flex; flex-direction: column; gap: 10px; min-width: 190px; }
.p-act .btn { width: 100%; padding: 14px; font-size: 14px; }
.p-act .more { text-align: center; font-size: 13px; font-weight: 700; color: var(--ink-soft); }
.p-act .more:hover { color: var(--coral-deep); }

.cmp { background: var(--sand); border-radius: clamp(28px,5vw,56px); padding: clamp(56px,7vw,88px) 0; margin: 0 var(--gutter); }
.cmp h2 { font-size: clamp(26px,3.4vw,40px); font-weight: 800; letter-spacing: -.03em; margin: 0 0 10px; }
.cmp .sub { color: var(--ink-soft); margin-bottom: 36px; max-width: 560px; }
.cmp .tbl-wrap { overflow-x: auto; border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-card); }
.cmp .tbl { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 760px; }
.cmp .tbl th { background: var(--green-950); color: #fff; text-align: left; font-weight: 800; font-size: 12.5px; letter-spacing: .05em; text-transform: uppercase; padding: 16px 20px; }
.cmp .tbl th:first-child { border-radius: var(--radius-md) 0 0 0; }
.cmp .tbl th:last-child { border-radius: 0 var(--radius-md) 0 0; }
.cmp .tbl td { padding: 16px 20px; border-top: 1px solid var(--green-100); font-weight: 600; vertical-align: top; }
.cmp .tbl td:first-child { font-weight: 800; }
.cmp .tbl .y { color: var(--green-800); font-weight: 800; }
.cmp .tbl .n { color: var(--ink-faint); }
.cmp .tbl .price { font-weight: 800; color: var(--ink); }
.cmp .tbl .price small { display: block; font-weight: 600; color: var(--ink-faint); font-size: 12px; }

.method { padding: clamp(64px,8vw,96px) 0; }
.method-grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: clamp(32px,5vw,72px); align-items: start; }
@media (max-width: 880px) { .method-grid { grid-template-columns: 1fr; } }
.method h2 { font-size: clamp(26px,3.4vw,40px); font-weight: 800; letter-spacing: -.03em; margin: 0; }
.method .lead { margin-top: 14px; color: var(--ink-soft); }
.m-items { display: flex; flex-direction: column; gap: 14px; }
.m-item { display: flex; gap: 16px; background: #fff; border: 1.5px solid var(--green-100); border-radius: var(--radius-md); padding: 20px 22px; }
.m-item .ic { width: 42px; height: 42px; border-radius: 13px; background: var(--green-50); display: grid; place-items: center; font-size: 18px; flex-shrink: 0; }
.m-item h4 { font-size: 15.5px; font-weight: 800; margin: 0; }
.m-item p { font-size: 14px; color: var(--ink-soft); margin-top: 3px; line-height: 1.55; }
