/* ===================================================================
   Casia Verde — styles.css
   Calm, clean, confident. One bold element (the savings stat).
   Brand: forest green #1B6E4C · off-white #F7F7F4 · charcoal #2B2B2B
=================================================================== */

/* ---------- Tokens ---------- */
:root {
  --green: #1B6E4C;          /* primary */
  --green-deep: #14573C;     /* hover / pressed */
  --green-bright: #3FA776;   /* accents on dark backgrounds */
  --green-tint: #EAF1EC;     /* soft tinted panels on light bg */
  --offwhite: #F7F7F4;       /* main background */
  --charcoal: #2B2B2B;       /* dark sections + headings */
  --text: #2B2B2B;
  --muted: #4E534C;          /* body / secondary text (AA on off-white) */
  --border: #E3E4DD;
  --white: #FFFFFF;

  --font-display: 'Sora', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;

  --maxw: 1140px;
  --nav-h: 72px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.04), 0 6px 18px rgba(43,43,43,.05);
  --shadow-md: 0 16px 44px rgba(27,110,76,.12);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--offwhite);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--charcoal);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 700;
}

p { margin: 0; }
a { color: var(--green); }

/* Visible keyboard focus everywhere */
:focus-visible {
  outline: 3px solid var(--green-bright);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 14px;
  top: -64px;
  z-index: 200;
  background: var(--green);
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: top .2s ease;
}
.skip-link:focus { top: 14px; }

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

.section { padding-block: clamp(56px, 9vw, 112px); scroll-margin-top: calc(var(--nav-h) + 12px); }

.eyebrow {
  font-family: var(--font-display);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 14px;
}

.section-title {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  max-width: 20ch;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
}

.section-alt { background: #fff; border-block: 1px solid var(--border); }
.about-diff-title { font-size: 1.2rem; margin-top: 34px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1.6px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-deep); }
.btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-white { background: #fff; color: var(--green); }
.btn-white:hover { background: rgba(255,255,255,.88); }
.btn-lg { padding: 16px 28px; font-size: 1.05rem; }
.btn svg { width: 18px; height: 18px; }

/* ===================================================================
   Header / nav
=================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 247, 244, .82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: var(--nav-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-right: auto; /* pushes the rest of the nav to the right */
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -.01em;
  color: var(--green);
  text-decoration: none;
}
.brand .logo-mark { width: auto; height: 37px; flex: none; }
/* The logo is a filled line-drawing; add a matching stroke so the thin
   lines stay visible at small sizes (fill + stroke are both currentColor). */
.logo-mark path { stroke: currentColor; stroke-width: 160; stroke-linejoin: round; stroke-linecap: round; }

.nav-menu { display: flex; align-items: center; gap: 26px; }
.nav-actions { display: flex; align-items: center; gap: 10px; flex: none; }

/* Language switch (RO / RU / EN) — always visible, including on mobile */
.lang-switch {
  display: inline-flex;
  flex: none;
  border: 1.5px solid var(--green);
  border-radius: 999px;
  overflow: hidden;
}
.lang-btn {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  color: var(--green);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .03em;
  padding: 7px 13px;
  cursor: pointer;
  line-height: 1;
  transition: background-color .2s ease, color .2s ease;
}
.lang-btn.is-active { background: var(--green); color: #fff; }
.lang-btn:not(.is-active):hover { background: rgba(27, 110, 76, .08); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 500;
  font-size: .98rem;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--green); }
.nav-links a[aria-current="page"] { color: var(--green); font-weight: 600; }
.nav-cta { padding: 10px 18px; font-size: .94rem; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  position: relative;
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform .25s ease, top .25s ease;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.site-header[data-open="true"] .nav-toggle span { background: transparent; }
.site-header[data-open="true"] .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.site-header[data-open="true"] .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--offwhite);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding: 8px 20px 22px;
    display: none;
  }
  .site-header[data-open="true"] .nav-menu { display: flex; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links a { padding: 15px 4px; border-bottom: 1px solid var(--border); }
  .nav-cta { margin-top: 18px; }
  .lang-btn { padding: 6px 9px; font-size: .74rem; }
}

/* ===================================================================
   Hero
=================================================================== */
.hero { padding-block: clamp(40px, 7vw, 84px); }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 920px) {
  .hero-inner { grid-template-columns: 1.05fr .95fr; gap: 60px; }
}
.hero h1 {
  font-size: clamp(2.3rem, 5.8vw, 4.05rem);
  letter-spacing: -.03em;
  font-weight: 800;
  margin-top: 14px;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--muted);
  max-width: 46ch;
  margin: 22px 0 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-media .placeholder { aspect-ratio: 5 / 6; }
@media (max-width: 919px) {
  .hero-media .placeholder { aspect-ratio: 16 / 11; }
}

/* ---------- Image placeholders (swap with stock later) ---------- */
.placeholder[hidden] { display: none; }
.placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  width: 100%;
  padding: 26px;
  background:
    linear-gradient(135deg, var(--green-tint), #f0efe9);
  border: 1.6px dashed #C3CABF;
  border-radius: var(--radius-lg);
  color: #5B6058;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .01em;
}
.placeholder .ph-icon { width: 40px; height: 40px; color: #9aa395; }
.placeholder span { max-width: 30ch; }

/* ===================================================================
   Savings band — THE signature element
=================================================================== */
.savings {
  background: var(--green-tint);
  border-block: 1px solid #DAE6DD;
}
.savings-inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.savings-number {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--green);
  font-size: clamp(4rem, 15vw, 9rem);
  line-height: .92;
  letter-spacing: -.04em;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
}
.savings-number .minus { margin-right: .02em; }
.savings-number .pct { font-size: .58em; margin-left: .04em; }
.savings-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 2.6vw, 1.55rem);
  color: var(--charcoal);
  margin-top: 6px;
}
.savings-bar {
  height: 8px;
  width: min(340px, 80%);
  margin: 28px auto 0;
  background: #D2E0D6;
  border-radius: 999px;
  overflow: hidden;
}
.savings-bar-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
  transition: width 1.5s cubic-bezier(.16, 1, .3, 1);
}
.savings-note {
  color: var(--muted);
  max-width: 50ch;
  margin: 24px auto 0;
  font-size: .98rem;
}

/* ===================================================================
   Ce oferim — cards
=================================================================== */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 44px;
}
@media (min-width: 640px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .cards { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--green-tint);
  color: var(--green);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.12rem; font-weight: 600; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .96rem; }

/* ===================================================================
   Cum funcționează — steps
=================================================================== */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  margin-top: 46px;
}
@media (min-width: 860px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 30px; }
}
.step { position: relative; }
.step-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 20px;
}
.step h3 { font-size: 1.18rem; font-weight: 600; margin-bottom: 8px; }
.step p { color: var(--muted); }

/* ===================================================================
   Pentru dezvoltatori — dark B2B pivot
=================================================================== */
.dev { background: var(--charcoal); color: #E7E7E1; }
.dev .eyebrow { color: var(--green-bright); }
.dev h2 { color: #fff; }
.dev-grid { display: grid; gap: 40px; margin-top: 8px; }
@media (min-width: 900px) {
  .dev-grid { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
}
.dev-lead { color: #C8C8C1; font-size: 1.08rem; max-width: 52ch; margin-bottom: 30px; }
.dev-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 24px; }
.dev-point { display: flex; gap: 16px; }
.dev-point .ic {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: rgba(63, 167, 118, .16);
  color: var(--green-bright);
}
.dev-point .ic svg { width: 22px; height: 22px; }
.dev-point h3 { color: #fff; font-size: 1.06rem; font-weight: 600; margin-bottom: 5px; }
.dev-point p { color: #B9B9B2; font-size: .97rem; }

/* ===================================================================
   De ce noi — trust row
=================================================================== */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 42px;
}
@media (min-width: 760px) { .trust-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }
.trust { display: flex; flex-direction: column; gap: 14px; }
.trust .ic {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--green-tint);
  color: var(--green);
  display: grid; place-items: center;
}
.trust .ic svg { width: 23px; height: 23px; }
.trust p { color: var(--charcoal); font-weight: 500; }

/* ===================================================================
   Reviews — hidden, reserved for later
=================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 40px;
}
@media (min-width: 760px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
}

/* ===================================================================
   Final CTA — green band
=================================================================== */
.cta { background: var(--green); color: #fff; text-align: center; }
.cta h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.7rem); max-width: 22ch; margin-inline: auto; }
.cta p { color: rgba(255, 255, 255, .92); max-width: 46ch; margin: 16px auto 30px; }

/* ===================================================================
   Footer
=================================================================== */
.footer { background: var(--charcoal); color: #BDBDB6; padding-block: 50px; }
.footer-inner { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer .brand { color: #fff; }
.footer a { color: #D6D6D0; text-decoration: none; }
.footer a:hover { color: #fff; }
.footer-slogan { color: #9FBFAE; font-size: .92rem; font-weight: 500; margin-top: 2px; }
.footer-contact { font-size: .95rem; }
.footer-contact a { color: var(--green-bright); }
.footer-meta { margin-top: 18px; font-size: .87rem; color: #8C8C85; }

/* ===================================================================
   About page
=================================================================== */
.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}
@media (min-width: 900px) {
  .about-inner { grid-template-columns: minmax(0, 1fr) minmax(0, 560px); gap: 64px; }
}
.about-copy p + p { margin-top: 18px; }
.about-copy .lead { margin-top: 22px; }
.diff {
  margin-top: 30px;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 14px;
}
.diff li { display: flex; align-items: center; gap: 13px; font-weight: 500; color: var(--charcoal); }
.diff .ic {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--green-tint);
  color: var(--green);
  display: grid; place-items: center;
}
.diff .ic svg { width: 17px; height: 17px; }
/* Transparent render — sits directly on the page, no box/card/shadow */
.about-media { background: transparent; }
.about-media .placeholder { aspect-ratio: 4 / 5; }
.about-photo {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin-inline: auto;
}
.page-cta { margin-top: 40px; }

/* ===================================================================
   Contact page
=================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  margin-top: 12px;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: start; }
}
.form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--shadow-sm);
  scroll-margin-top: calc(var(--nav-h) + 16px);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.field .opt { color: var(--muted); font-weight: 400; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  border: 1.6px solid var(--border);
  border-radius: 11px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  outline: none;
  box-shadow: 0 0 0 3px rgba(27, 110, 76, .14);
}
.form .btn { width: 100%; margin-top: 6px; }

.form-success[hidden] { display: none; }
.form-success {
  margin-top: 22px;
  background: var(--green-tint);
  border: 1px solid #CFE0D4;
  color: var(--green-deep);
  border-radius: 12px;
  padding: 16px 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-success svg { width: 22px; height: 22px; flex: none; }

/* Contact aside */
.contact-aside h2 { font-size: 1.3rem; margin-bottom: 8px; }
.contact-aside .lead { margin-bottom: 24px; }
.contact-method {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 0;
  border-top: 1px solid var(--border);
}
.contact-method:last-of-type { border-bottom: 1px solid var(--border); }
.contact-method .ic {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--green-tint);
  color: var(--green);
  display: grid; place-items: center;
}
.contact-method .ic svg { width: 21px; height: 21px; }
.contact-method .k { font-family: var(--font-display); font-weight: 600; font-size: .95rem; color: var(--charcoal); }
.contact-method .v { color: var(--muted); font-size: .96rem; }
.contact-method .v a { color: var(--green); text-decoration: none; }
.contact-method .v a:hover { text-decoration: underline; }

/* ===================================================================
   Scroll-reveal (fade-up)
=================================================================== */
/* Hidden state only applies when JS is available (.js on <html>),
   so content stays visible if JS fails to load. */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

.js .stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.stagger.is-visible > * { opacity: 1; transform: none; }
.stagger.is-visible > *:nth-child(2) { transition-delay: .08s; }
.stagger.is-visible > *:nth-child(3) { transition-delay: .16s; }
.stagger.is-visible > *:nth-child(4) { transition-delay: .24s; }

/* ===================================================================
   Phone mock-up (hero)
=================================================================== */
.hero-media { display: flex; justify-content: center; }
.phone {
  width: min(290px, 80%);
  background: var(--charcoal);
  border-radius: 42px;
  padding: 12px;
  box-shadow: 0 30px 70px rgba(43, 43, 43, .22);
}
.phone-screen {
  position: relative;
  background: var(--offwhite);
  border-radius: 32px;
  padding: 30px 16px 18px;
  overflow: hidden;
}
.phone-notch {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 42%; height: 20px;
  background: var(--charcoal);
  border-radius: 0 0 14px 14px;
}
.app-head {
  display: flex; align-items: center; justify-content: space-between;
  margin: 4px 6px 16px;
}
.app-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--charcoal); }
.app-dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 0 4px rgba(27, 110, 76, .14);
}
.app-card {
  background: #fff;
  border-radius: 16px;
  padding: 15px 16px;
  margin-bottom: 11px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 6px 16px rgba(43,43,43,.05);
}
.app-card:last-child { margin-bottom: 0; }
.app-card-label {
  font-family: var(--font-display); font-weight: 600;
  font-size: .62rem; letter-spacing: .07em; text-transform: uppercase;
  color: #8b908a;
}
.app-card-value {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.65rem; letter-spacing: -.02em;
  color: var(--charcoal); margin: 6px 0 2px;
}
.app-card-sub { color: var(--green); font-size: .82rem; font-weight: 500; }

/* ===================================================================
   Form states
=================================================================== */
.btn[disabled] { opacity: .65; cursor: default; }
.form-error[hidden] { display: none; }
.form-error {
  margin-top: 18px;
  background: #FBEEEA;
  border: 1px solid #EFCFC6;
  color: #8A3A2B;
  border-radius: 12px;
  padding: 14px 16px;
  font-weight: 500;
}
.form-error a { color: #8A3A2B; font-weight: 600; }

/* ===================================================================
   Packages page
=================================================================== */
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 48px;
}
@media (min-width: 920px) {
  .packages-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
}
.pkg-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pkg-card.is-popular { border: 2px solid var(--green); box-shadow: var(--shadow-md); }
.pkg-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(27, 110, 76, .25);
}
.pkg-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--green-tint);
  color: var(--green);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.pkg-icon svg { width: 24px; height: 24px; }
.pkg-name { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: var(--charcoal); }
.pkg-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.65rem, 3vw, 2.05rem);
  letter-spacing: -.02em;
  color: var(--green);
  margin-top: 10px;
}
.pkg-price.is-custom { font-size: clamp(1.35rem, 2.5vw, 1.6rem); }
.pkg-text { color: var(--muted); font-size: .96rem; margin-top: 16px; flex: 1 1 auto; }
.pkg-card .btn { margin-top: 24px; width: 100%; }

/* Highlights */
.highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 44px;
}
@media (min-width: 760px) { .highlights { grid-template-columns: 1fr 1fr; } }
.highlight {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: var(--green-tint);
  border: 1px solid #D6E5DB;
  border-radius: var(--radius);
  padding: 20px 22px;
}
.highlight .ic {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: #fff;
  color: var(--green);
  display: grid;
  place-items: center;
}
.highlight .ic svg { width: 22px; height: 22px; }
.highlight-label { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--charcoal); margin-bottom: 4px; }
.highlight p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ===================================================================
   Reduced motion — respect user preference
=================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .savings-bar-fill { transition: none !important; }
  .card:hover { transform: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
