/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  חוסך — landing site styles. Brand: green #15603E, lime #C9EC4B,        ║
   ║  cream #F4F0E8. Fonts: Rubik (display) + Assistant (body). RTL.         ║
   ╚══════════════════════════════════════════════════════════════════════╝ */

:root {
  --green: #15603e;
  --green-d: #0e3a26;
  --lime: #c9ec4b;
  --cream: #f4f0e8;
  --ink: #18211c;
  --muted: #5c6b62;
  --white: #ffffff;
  --line: #e4ded1;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(14, 58, 38, 0.08);
  --shadow-lg: 0 24px 60px rgba(14, 58, 38, 0.16);
  --maxw: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: 'Assistant', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .brand__name { font-family: 'Rubik', sans-serif; line-height: 1.12; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }

a { color: inherit; text-decoration: none; }

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Rubik', sans-serif; font-weight: 700; font-size: 15px;
  padding: 12px 22px; border-radius: 14px; border: 0; cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s;
  white-space: nowrap;
}
.btn--primary { background: var(--green); color: #fff; box-shadow: 0 8px 20px rgba(21,96,62,.25); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(21,96,62,.32); }
.btn--ghost { background: rgba(21,96,62,.08); color: var(--green); }
.btn--ghost:hover { background: rgba(21,96,62,.14); }
.btn--lg { padding: 15px 28px; font-size: 16px; }
.btn--block { width: 100%; }

.pill {
  display: inline-block; background: rgba(21,96,62,.10); color: var(--green);
  font-weight: 700; font-size: 13px; padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.eyebrow {
  display: inline-block; color: var(--green); font-weight: 700; font-size: 13px;
  letter-spacing: .04em; text-transform: uppercase; margin-bottom: 10px;
}

/* ── Navbar ──────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244,240,232,.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: border-color .25s, box-shadow .25s, background .25s;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 18px rgba(14,58,38,.05); background: rgba(244,240,232,.95); }
.nav__inner { display: flex; align-items: center; gap: 18px; height: 68px; }
.brand { display: flex; align-items: center; gap: 9px; }
.brand__mark {
  width: 32px; height: 32px; display: grid; place-items: center;
  background: var(--lime); color: var(--green-d); border-radius: 9px; font-size: 17px; font-weight: 900;
}
.brand__name { font-size: 22px; font-weight: 800; color: var(--green-d); }
.brand--light .brand__name { color: #fff; }
.nav__links { display: flex; gap: 26px; margin-inline-start: auto; }
.nav__links a { font-weight: 600; color: var(--muted); transition: color .15s; }
.nav__links a:hover { color: var(--green); }
.nav__cta { margin-inline-start: 6px; }
.nav__toggle { display: none; background: none; border: 0; width: 42px; height: 42px; cursor: pointer; padding: 9px; }
.nav__toggle span { display: block; height: 2.5px; background: var(--green-d); border-radius: 2px; margin: 4px 0; transition: .25s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav__mobile { display: none; flex-direction: column; gap: 4px; padding: 8px 20px 18px; }
.nav__mobile a { padding: 11px 6px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); }
.nav__mobile .btn { margin-top: 10px; }

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero { padding: 56px 0 40px; position: relative; }
.hero::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 520px; z-index: -1;
  background: radial-gradient(900px 460px at 80% -10%, rgba(201,236,75,.35), transparent 60%);
}
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(34px, 5vw, 58px); font-weight: 900; color: var(--green-d); letter-spacing: -.5px; }
.hero .hl { color: var(--green); position: relative; }
.hero .hl::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 6%; height: 28%;
  background: var(--lime); opacity: .55; border-radius: 6px; z-index: -1;
}
.hero__sub { font-size: clamp(16px, 2vw, 19px); color: var(--muted); margin: 20px 0 28px; max-width: 30em; }
.hero__sub strong { color: var(--green); font-weight: 700; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__stats { list-style: none; display: flex; flex-wrap: wrap; gap: 28px; margin-top: 34px; }
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats b { font-family: 'Rubik'; font-size: 26px; font-weight: 800; color: var(--green-d); }
.hero__stats span { font-size: 13px; color: var(--muted); }

/* Phone mockup */
.hero__visual { display: grid; place-items: center; }
.phone {
  width: 290px; background: var(--green-d); border-radius: 38px; padding: 14px;
  box-shadow: var(--shadow-lg); position: relative; animation: float 6s ease-in-out infinite;
}
.phone__notch { width: 120px; height: 22px; background: var(--green-d); border-radius: 0 0 14px 14px; margin: 0 auto 8px; }
.phone__screen { background: var(--cream); border-radius: 26px; padding: 16px; display: grid; gap: 12px; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.card { background: #fff; border-radius: 16px; padding: 14px; box-shadow: 0 4px 14px rgba(14,58,38,.06); }
.card--save { background: linear-gradient(135deg, var(--green-d), var(--green)); color: #fff; text-align: center; padding: 18px; }
.card__label { font-size: 12px; opacity: .8; }
.card__big { display: block; font-family: 'Rubik'; font-size: 38px; font-weight: 900; color: var(--lime); margin: 4px 0; }
.card__hint { font-size: 11px; opacity: .7; }
.card--row { display: flex; align-items: center; gap: 10px; padding: 11px 13px; }
.card--row.best { border: 2px solid var(--green); }
.card__text { display: flex; flex-direction: column; line-height: 1.25; }
.card__text b { font-size: 14px; }
.card__text small { font-size: 11px; color: var(--muted); }
.logo { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; font-family: 'Rubik'; font-weight: 800; font-size: 13px; flex: none; }
.logo--cel { background: #ece7fb; color: #4527a0; }
.logo--par { background: #e6f3e8; color: #2e7d32; }
.logo--gol { background: #e0f1ee; color: #00695c; }
.tag { margin-inline-start: auto; font-family: 'Rubik'; font-weight: 800; color: var(--green); font-size: 15px; }
.tag--win { background: var(--lime); color: var(--green-d); padding: 4px 9px; border-radius: 9px; font-size: 12px; }

/* ── Providers strip ─────────────────────────────────────────────────── */
.providers { padding: 22px 0 8px; }
.providers__title { text-align: center; color: var(--muted); font-weight: 600; font-size: 14px; margin-bottom: 16px; }
.providers__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.chip {
  background: #fff; border: 1px solid var(--line); color: var(--green-d); font-weight: 700;
  font-size: 14px; padding: 9px 16px; border-radius: 999px; box-shadow: 0 2px 8px rgba(14,58,38,.04);
}

/* ── Sections ────────────────────────────────────────────────────────── */
.section { padding: 72px 0; }
.section--alt { background: #fff; }
.section__head { text-align: center; max-width: 620px; margin: 0 auto 44px; }
.section__head h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; color: var(--green-d); }
.section__head p { color: var(--muted); margin-top: 12px; font-size: 17px; }

/* Steps */
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: s; }
.step { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; position: relative; }
.section--alt .step { background: var(--cream); }
.step__num { width: 42px; height: 42px; display: grid; place-items: center; background: var(--green); color: #fff; font-family: 'Rubik'; font-weight: 800; border-radius: 12px; font-size: 19px; margin-bottom: 16px; }
.step h3 { font-size: 19px; color: var(--green-d); margin-bottom: 8px; }
.step p { color: var(--muted); }

/* Categories */
.cats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.cat { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 16px; text-align: center; transition: transform .2s var(--ease), box-shadow .2s; }
.section--alt .cat { background: var(--cream); }
.cat:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.cat__icon { font-size: 38px; display: block; margin-bottom: 10px; }
.cat h3 { font-size: 17px; color: var(--green-d); }
.cat p { color: var(--muted); font-size: 14px; margin-top: 3px; }

/* Calculator */
.calc { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.calc__copy h2 { font-size: clamp(26px, 3.5vw, 38px); color: var(--green-d); font-weight: 800; }
.calc__copy p { color: var(--muted); margin-top: 14px; font-size: 16px; }
.calc__card { background: linear-gradient(140deg, var(--green-d), var(--green)); border-radius: 24px; padding: 30px; color: #fff; box-shadow: var(--shadow-lg); }
.calc__row { display: flex; justify-content: space-between; align-items: center; font-weight: 600; margin-bottom: 12px; }
.calc__row output { font-family: 'Rubik'; font-weight: 800; font-size: 22px; color: var(--lime); }
.calc__card input[type="range"] { width: 100%; -webkit-appearance: none; appearance: none; height: 6px; border-radius: 999px; background: rgba(255,255,255,.25); outline: none; }
.calc__card input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%; background: var(--lime); cursor: pointer; box-shadow: 0 3px 10px rgba(0,0,0,.3); }
.calc__card input[type="range"]::-moz-range-thumb { width: 26px; height: 26px; border: 0; border-radius: 50%; background: var(--lime); cursor: pointer; }
.calc__result { text-align: center; margin: 26px 0 22px; }
.calc__resultLabel { display: block; font-size: 14px; opacity: .8; }
.calc__resultBig { display: block; font-family: 'Rubik'; font-size: 52px; font-weight: 900; color: var(--lime); letter-spacing: -1px; }
.calc__resultUnit { font-size: 14px; opacity: .8; }
.calc__fine { font-size: 12px; opacity: .65; text-align: center; margin-top: 12px; }

/* Features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: 0 3px 10px rgba(14,58,38,.03); transition: transform .2s var(--ease), box-shadow .2s; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature__icon { font-size: 30px; display: grid; place-items: center; width: 56px; height: 56px; background: rgba(21,96,62,.08); border-radius: 14px; margin-bottom: 16px; }
.feature h3 { font-size: 18px; color: var(--green-d); margin-bottom: 6px; }
.feature p { color: var(--muted); }
.feature em { color: var(--green); font-style: normal; font-weight: 700; }

/* Testimonials */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.section--alt .quote { background: var(--cream); }
.stars { color: #f5a623; letter-spacing: 2px; margin-bottom: 12px; }
.quote blockquote { font-size: 17px; font-weight: 600; color: var(--green-d); line-height: 1.5; }
.quote figcaption { color: var(--muted); font-size: 14px; margin-top: 12px; }

/* FAQ */
.faq__list { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq__list details { background: var(--cream); border: 1px solid var(--line); border-radius: 14px; padding: 4px 20px; transition: box-shadow .2s; }
.faq__list details[open] { box-shadow: var(--shadow); }
.faq__list summary { font-family: 'Rubik'; font-weight: 700; font-size: 17px; color: var(--green-d); padding: 16px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after { content: "+"; font-size: 24px; color: var(--green); transition: transform .2s; }
.faq__list details[open] summary::after { transform: rotate(45deg); }
.faq__list details p { color: var(--muted); padding: 0 0 18px; }

/* CTA band */
.cta { background: linear-gradient(140deg, var(--green-d), var(--green)); color: #fff; padding: 72px 0; }
.cta__inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta h2 { font-size: clamp(26px, 4vw, 42px); font-weight: 900; }
.cta p { opacity: .85; margin-top: 12px; font-size: 18px; }
.cta__form { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 30px 0 12px; }
.cta__form input { flex: 1 1 220px; min-width: 0; padding: 14px 16px; border: 0; border-radius: 14px; font-family: 'Assistant'; font-size: 16px; background: rgba(255,255,255,.95); color: var(--ink); }
.cta__form input:focus { outline: 3px solid var(--lime); }
.cta__form .btn { flex: 0 0 auto; }
.cta__note { min-height: 22px; font-weight: 700; color: var(--lime); }
.cta__wa { display: inline-block; margin-top: 8px; color: #fff; font-weight: 700; opacity: .9; border-bottom: 1px dashed rgba(255,255,255,.5); padding-bottom: 2px; }
.cta__wa:hover { opacity: 1; }

/* Footer */
.footer { background: var(--green-d); color: rgba(255,255,255,.8); padding: 48px 0 28px; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; }
.footer__col h4 { font-family: 'Rubik'; font-size: 14px; color: rgba(255,255,255,.55); font-weight: 700; margin-bottom: 12px; }
.footer__brand p { margin-top: 12px; max-width: 30em; font-size: 14px; }
.footer__links, .footer__contact { display: flex; flex-direction: column; gap: 10px; padding-top: 6px; }
.footer__links a, .footer__contact a { color: rgba(255,255,255,.8); font-weight: 600; transition: color .15s; }
.footer__links a:hover, .footer__contact a:hover { color: var(--lime); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13px; }

/* ── Category landing hero (generated pages) ─────────────────────────── */
.lead-hero { padding: 56px 0 8px; text-align: center; position: relative; }
.lead-hero::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 360px; z-index: -1;
  background: radial-gradient(800px 380px at 70% -20%, rgba(201,236,75,.32), transparent 60%);
}
.lead-hero h1 { font-family: 'Rubik'; font-size: clamp(30px, 4.6vw, 54px); font-weight: 900; color: var(--green-d); letter-spacing: -.5px; }
.lead-hero h1 .hl { color: var(--green); }
.lead-hero p { color: var(--muted); font-size: 18px; margin: 16px auto 26px; max-width: 38em; }
.lead-hero .hero__cta { justify-content: center; }
.feature--check .feature__icon { background: var(--lime); color: var(--green-d); font-weight: 900; }
.crumbs { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.crumbs a { color: var(--green); font-weight: 600; }

/* ── Guides / articles (generated) ───────────────────────────────────── */
.article-hero { padding: 44px 0 4px; }
.article-hero h1 { font-family: 'Rubik'; font-size: clamp(27px, 3.8vw, 44px); font-weight: 900; color: var(--green-d); letter-spacing: -.4px; max-width: 17em; }
.article-meta { color: var(--muted); font-size: 14px; margin-top: 12px; display: flex; gap: 14px; flex-wrap: wrap; }
.prose { max-width: 760px; margin: 0 auto; }
.prose > p { font-size: 17px; color: #2a352e; margin: 0 0 18px; line-height: 1.78; }
.prose h2 { font-family: 'Rubik'; font-size: 25px; color: var(--green-d); margin: 36px 0 12px; }
.prose h3 { font-family: 'Rubik'; font-size: 19px; color: var(--green-d); margin: 22px 0 8px; }
.prose ul { padding-inline-start: 22px; margin: 0 0 18px; }
.prose li { margin-bottom: 9px; font-size: 17px; color: #2a352e; line-height: 1.7; }
.tldr { background: var(--cream); border: 1px solid var(--line); border-inline-start: 4px solid var(--green); border-radius: 12px; padding: 16px 18px; margin: 0 0 30px; }
.tldr b { color: var(--green-d); }
.article-cta { max-width: 760px; margin: 36px auto 0; background: linear-gradient(140deg, var(--green-d), var(--green)); color: #fff; border-radius: 18px; padding: 26px; text-align: center; }
.article-cta h3 { font-family: 'Rubik'; font-size: 22px; margin-bottom: 6px; }
.article-cta p { opacity: .9; margin-bottom: 16px; }
.guide-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.guide-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: 0 3px 10px rgba(14,58,38,.03); transition: transform .2s var(--ease), box-shadow .2s; display: flex; flex-direction: column; }
.guide-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.guide-card .tag-cat { align-self: flex-start; background: rgba(21,96,62,.08); color: var(--green); font-weight: 700; font-size: 12px; padding: 4px 10px; border-radius: 999px; margin-bottom: 12px; }
.guide-card h3 { font-family: 'Rubik'; font-size: 19px; color: var(--green-d); margin-bottom: 8px; line-height: 1.3; }
.guide-card p { color: var(--muted); flex: 1; }
.guide-card .meta { color: var(--muted); font-size: 13px; margin-top: 14px; }
.guide-cards--2 { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin-inline: auto; }
@media (max-width: 900px) { .guide-cards, .guide-cards--2 { grid-template-columns: 1fr; } }

/* ── Plan catalogue cards ────────────────────────────────────────────── */
.plan-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(248px, 1fr)); gap: 14px; }
.plan { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 16px; display: flex; flex-direction: column; box-shadow: 0 2px 8px rgba(14,58,38,.03); transition: box-shadow .2s, transform .2s var(--ease); }
.plan:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.plan__top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.plan__provider { font-family: 'Rubik'; font-weight: 800; color: var(--green-d); font-size: 16px; }
.plan__id { display: flex; align-items: center; gap: 9px; min-width: 0; }
.plogo { display: inline-grid; place-items: center; border-radius: 50%; border: 1.5px solid; border-color: currentColor; font-family: 'Rubik'; font-weight: 800; flex: none; vertical-align: middle; letter-spacing: -.5px; }
.provider-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
.provider-card { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 18px; display: flex; align-items: center; gap: 12px; box-shadow: 0 2px 8px rgba(14,58,38,.03); transition: transform .2s var(--ease), box-shadow .2s; }
.provider-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.provider-card b { font-family: 'Rubik'; color: var(--green-d); font-size: 16px; display: block; }
.provider-card small { color: var(--muted); font-size: 13px; }
.plan__provider:hover { color: var(--green); text-decoration: underline; }
.plan__net { background: rgba(21,96,62,.08); color: var(--green); font-weight: 700; font-size: 11px; padding: 3px 8px; border-radius: 8px; white-space: nowrap; }
.plan__name { color: var(--muted); font-size: 13px; margin-top: 3px; }
.plan__chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.pchip { background: var(--cream); border: 1px solid var(--line); color: var(--ink); font-size: 12px; font-weight: 600; padding: 3px 9px; border-radius: 999px; }
.plan__flags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.pflag { font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 8px; background: rgba(21,96,62,.08); color: var(--green); }
.pflag--5g { background: var(--lime); color: var(--green-d); }
.plan__bottom { margin-top: auto; padding-top: 14px; display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; }
.plan__price b { font-family: 'Rubik'; font-size: 24px; font-weight: 800; color: var(--green); }
.plan__price span { color: var(--muted); font-size: 12px; }
.plan__after { display: block; color: var(--muted); font-size: 11px; }
.plan__rating { color: #f5a623; font-weight: 700; font-size: 13px; white-space: nowrap; }
.plan__cta { margin-top: 10px; align-self: flex-start; font-family: 'Rubik'; font-weight: 700; font-size: 13px; color: var(--green); text-decoration: none; transition: color .15s; }
.plan__cta:hover { color: var(--green-d); }

/* filter bar (all-plans page) */
.filters { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 22px; }
.filter-btn { background: var(--white); border: 1px solid var(--line); color: var(--green-d); font-family: 'Rubik'; font-weight: 700; font-size: 14px; padding: 8px 16px; border-radius: 999px; cursor: pointer; transition: background .15s, color .15s, border-color .15s; }
.filter-btn.active { background: var(--green); color: #fff; border-color: var(--green); }
.filter-search { flex: 1 1 220px; min-width: 0; padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; font-family: 'Assistant'; font-size: 15px; background: var(--white); }
.filter-search:focus { outline: 2px solid var(--green); }
select.filter-search { cursor: pointer; -webkit-appearance: none; appearance: none; padding-inline-end: 36px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2315603E' d='M6 8 0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: left 14px center; }
.flag-chip { background: var(--white); border: 1px solid var(--line); color: var(--green-d); font-family: 'Rubik'; font-weight: 700; font-size: 13px; padding: 7px 13px; border-radius: 999px; cursor: pointer; transition: background .15s, color .15s, border-color .15s; }
.flag-chip.active { background: var(--lime); color: var(--green-d); border-color: var(--lime); }
.plan-empty { text-align: center; color: var(--muted); padding: 40px 0; display: none; }
.cat-plans-head { display: flex; align-items: baseline; gap: 10px; margin: 30px 0 14px; }
.cat-plans-head h2 { font-family: 'Rubik'; font-size: 24px; color: var(--green-d); }
.cat-plans-head .count { color: var(--muted); font-size: 14px; }

/* ── Side-by-side comparison (compare.html) ──────────────────────────────── */
.compare-picks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
.compare-pick { flex: none; width: 100%; }
.compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cmp-empty { text-align: center; color: var(--muted); padding: 40px 0; }
.cmp-table { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.cmp-table th, .cmp-table td { padding: 13px 14px; text-align: center; border-bottom: 1px solid var(--line); font-size: 15px; }
.cmp-table thead th { background: var(--green-d); color: #fff; font-family: 'Rubik'; font-weight: 800; vertical-align: top; }
.cmp-table thead th small { display: block; font-weight: 500; font-size: 12px; opacity: .8; margin-top: 3px; }
.cmp-table tbody th[scope="row"] { text-align: start; font-family: 'Rubik'; font-weight: 700; color: var(--green-d); background: rgba(21,96,62,.04); white-space: nowrap; }
.cmp-table tbody tr:last-child th, .cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-price { font-family: 'Rubik'; font-weight: 900; font-size: 18px; color: var(--green-d); }
.cmp-after { display: block; font-size: 11px; color: var(--muted); }
.cmp-yes { color: var(--green); font-weight: 900; }
.cmp-no { color: var(--line); }
.cmp-cta-row td { background: rgba(201,236,75,.12); }
.cmp-cta-row .plan__cta { margin-top: 0; align-self: center; }
@media (max-width: 640px) {
  .compare-picks { grid-template-columns: 1fr; }
  .cmp-table th, .cmp-table td { padding: 10px 9px; font-size: 13.5px; }
}

/* ── App showcase page (app.html) ────────────────────────────────────────── */
.lead-hero__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 6px; }
.app-group { margin-top: 30px; }
.app-group .section__head { margin-bottom: 18px; }
.app-group:first-of-type { margin-top: 8px; }

/* Community feed preview */
.feed { max-width: 680px; margin: 0 auto; }
.feed-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 18px; }
.feed-chip { background: var(--white); border: 1px solid var(--line); color: var(--green-d); font-family: 'Rubik'; font-weight: 700; font-size: 13px; padding: 7px 14px; border-radius: 999px; cursor: pointer; transition: background .15s, color .15s, border-color .15s; }
.feed-chip.active { background: var(--green); color: #fff; border-color: var(--green); }
.feed-list { display: grid; gap: 12px; }
.feed-post { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px; box-shadow: 0 3px 10px rgba(14,58,38,.03); text-align: start; }
.feed-post__head { display: flex; align-items: center; gap: 8px; font-size: 13px; margin-bottom: 8px; }
.feed-ava { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--lime); color: var(--green-d); font-family: 'Rubik'; font-weight: 800; flex: none; }
.feed-author { font-family: 'Rubik'; font-weight: 700; color: var(--green-d); }
.feed-verified { color: var(--green); font-weight: 900; }
.feed-chan { background: rgba(21,96,62,.08); color: var(--green); font-weight: 700; padding: 2px 9px; border-radius: 999px; font-size: 12px; }
.feed-when { margin-inline-start: auto; color: var(--muted); }
.feed-text { color: var(--ink); line-height: 1.55; }
.feed-post__foot { display: flex; align-items: center; gap: 14px; margin-top: 10px; font-size: 13px; color: var(--muted); }
.feed-like { font-weight: 700; }
.feed-hot { background: rgba(201,236,75,.35); color: var(--green-d); font-weight: 700; padding: 2px 9px; border-radius: 999px; }
.feed-reply { margin-inline-start: auto; color: var(--green); font-weight: 700; }
.feed-empty { text-align: center; color: var(--muted); padding: 24px 0; }
.feed-foot { text-align: center; color: var(--muted); font-size: 13px; margin-top: 16px; }

/* AI advisor preview */
.ai-demo { max-width: 600px; margin: 0 auto; }
.ai-chat { display: grid; gap: 12px; background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 20px; box-shadow: var(--shadow); }
.ai-bubble { padding: 12px 16px; border-radius: 16px; line-height: 1.5; max-width: 82%; font-size: 15px; }
.ai-bubble--bot { background: rgba(21,96,62,.07); color: var(--ink); border-bottom-inline-start: 4px solid var(--green); justify-self: start; border-bottom-left-radius: 4px; }
.ai-bubble--me { background: var(--green); color: #fff; justify-self: end; border-bottom-right-radius: 4px; }
.ai-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 16px; }
.ai-chip { background: var(--white); border: 1px solid var(--line); color: var(--green-d); font-weight: 600; font-size: 13px; padding: 7px 13px; border-radius: 999px; cursor: pointer; transition: background .15s, border-color .15s; }
.ai-chip:hover { background: rgba(201,236,75,.25); border-color: var(--lime); }
.ai-foot { text-align: center; color: var(--muted); font-size: 13px; margin-top: 14px; }
@media (max-width: 640px) {
  .ai-bubble { max-width: 90%; }
}

/* ── Scroll reveal ───────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .phone { animation: none; }
  html { scroll-behavior: auto; }
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__visual { order: -1; }
  .steps, .features, .quotes { grid-template-columns: 1fr; }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .calc { grid-template-columns: 1fr; gap: 28px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) { .footer__inner { grid-template-columns: 1fr; } }
@media (max-width: 760px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: block; }
  .nav__mobile.open { display: flex; }
  .section { padding: 56px 0; }
  .hero__stats { gap: 22px; }
}
@media (max-width: 420px) {
  .cats { grid-template-columns: 1fr; }
}
