/* ============================================================
   FILIZ V2 — Design System
   Inspired by Lovevery.com — warm, clean, photography-forward
   Brand: organic baby clothing subscription, Tirana
   ============================================================ */

/* ─── 1. Tokens ─────────────────────────────────────────── */
:root {
  /* Brand greens — warmer & lighter than V1 */
  --c-green:        #2C5440;   /* Primary (medium forest green) */
  --c-green-dark:   #1E3B2C;   /* Hover state */
  --c-green-deep:   #112F1C;   /* Footer / very dark accents */
  --c-green-tint:   #EBF2EE;   /* Light green section bg */
  --c-green-mid:    #527A5E;   /* Muted green text accent */

  /* Warm accent — terracotta / clay  */
  --c-clay:         #C05A34;   /* Primary CTA button */
  --c-clay-dark:    #A04928;   /* Hover */
  --c-clay-tint:    #FAF0EB;   /* Very light clay */

  /* Warm neutrals — Lovevery palette */
  --c-bg:     #F9F7F2;         /* Warm off-white page bg */
  --c-sand:   #F2EDE6;         /* Alternate section bg */
  --c-cream:  #EDE7DE;         /* Slightly deeper warm bg */
  --c-paper:  #FFFFFF;         /* Cards, surfaces */
  --c-ink:    #1C2A1F;         /* Primary headlines */
  --c-body:   #3B4A3D;         /* Body copy */
  --c-muted:  #6A7B6D;         /* Secondary text */
  --c-line:   #E0DAD2;         /* Borders */
  --c-line-l: #EDE8E1;         /* Light borders */

  /* Keep for admin compat */
  --c-mint:       var(--c-green-tint);
  --c-orange:     var(--c-clay);
  --c-sky:        #D6EBE8;
  --c-on-green:   #F0EEE6;
  --c-green-200:  var(--c-green-tint);
  --c-green-700:  var(--c-green-dark);
  --c-red:        #961B1D;

  /* Type */
  --f-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-serif: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --s-1:.25rem; --s-2:.5rem;  --s-3:.75rem;
  --s-4:1rem;   --s-5:1.5rem; --s-6:2rem;
  --s-7:3rem;   --s-8:4rem;   --s-9:6rem;

  /* Radii — more square than V1 (Lovevery-style) */
  --r-xs:  4px;
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-pill:999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,.05);
  --shadow-sm: 0 1px 4px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.05);

  /* Motion */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --dur:  .45s;

  /* Layout */
  --max:   1240px;
  --pad-x: clamp(1.25rem, 4vw, 3rem);
}

/* ─── 2. Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-body);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--c-clay); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--c-green); color: #fff; }

/* ─── 3. Typography ──────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--f-serif);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--c-ink);
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.8rem); letter-spacing: -.03em; font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.9rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-family: var(--f-sans); font-weight: 700; letter-spacing: -.005em; }
p  { margin: 0 0 1em; color: var(--c-body); max-width: 60ch; }
.lead { font-size: 1.15rem; line-height: 1.7; color: var(--c-body); max-width: 52ch; }
.eyebrow {
  font-family: var(--f-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-green-mid);
  display: inline-block;
  margin-bottom: .75rem;
}
em, .ital { font-style: italic; font-family: var(--f-serif); font-weight: 400; }

/* ─── 4. Layout ──────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--pad-x); }
.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.grid { display: grid; gap: var(--s-6); }
.flex { display: flex; }
.center { display: grid; place-items: center; }
.row { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.maxw-prose { max-width: 65ch; margin-inline: auto; }
.center-text { text-align: center; }
.muted { color: var(--c-muted); }
.divider { height: 1px; background: var(--c-line); border: 0; margin-block: 2.5rem; }

/* ─── 5. Buttons ─────────────────────────────────────────── */
/* Lovevery-style: square corners, bold, confident */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: .875rem 1.75rem;
  border-radius: var(--r-sm);          /* 6px — not pill */
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  border: 2px solid transparent;
  transition: background .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn svg { width: 16px; height: 16px; flex: none; }
.btn--primary {
  background: var(--c-green);
  color: #fff;
  border-color: var(--c-green);
}
.btn--primary:hover { background: var(--c-green-dark); border-color: var(--c-green-dark); }
.btn--secondary {
  background: transparent;
  color: var(--c-green);
  border-color: var(--c-green);
}
.btn--secondary:hover { background: var(--c-green); color: #fff; }
.btn--accent {
  background: var(--c-clay);
  color: #fff;
  border-color: var(--c-clay);
}
.btn--accent:hover { background: var(--c-clay-dark); border-color: var(--c-clay-dark); }
.btn--ghost {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-line);
}
.btn--ghost:hover { border-color: var(--c-ink); }
.btn--white {
  background: #fff;
  color: var(--c-green);
  border-color: #fff;
}
.btn--white:hover { background: var(--c-green-tint); }
.btn--lg { padding: 1.1rem 2.2rem; font-size: 1.05rem; }
.btn--sm { padding: .6rem 1.2rem; font-size: .88rem; }

/* Pills */
.pill {
  display: inline-flex; align-items: center; gap: .4em;
  padding: .35rem .85rem;
  border-radius: var(--r-pill);
  font-size: .75rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  background: var(--c-green-tint); color: var(--c-green);
}
.pill--clay { background: var(--c-clay-tint); color: var(--c-clay-dark); }
.pill--sand { background: var(--c-sand); color: var(--c-muted); }

/* ─── 6. Header / Nav ────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(249,247,242,.92);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--c-line-l);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.site-header.is-scrolled { background: rgba(249,247,242,.98); border-bottom-color: var(--c-line); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: .85rem;
}
.brand { display: inline-flex; align-items: center; }
.brand img { height: 64px; width: auto; }
@media (max-width: 540px) { .brand img { height: 50px; } }

.nav-links {
  display: flex; gap: clamp(.8rem, 2vw, 2rem); list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  font-size: .92rem; font-weight: 600; color: var(--c-body);
  position: relative; padding: .2rem 0;
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--c-green); }
.nav-links a[aria-current="page"] { color: var(--c-green); }
.nav-links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--c-clay); border-radius: 2px;
}

.nav-cta { display: flex; align-items: center; gap: .75rem; }

/* Language switch */
.lang-switch {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-sm);
  padding: 3px;
  background: var(--c-paper);
  font-size: .75rem; font-weight: 700;
  letter-spacing: .04em;
}
.lang-switch button {
  padding: .3rem .65rem;
  border-radius: 4px;
  color: var(--c-muted);
  transition: background .2s var(--ease), color .2s var(--ease);
  text-transform: uppercase;
}
.lang-switch button.is-active { background: var(--c-green); color: #fff; }
.lang-switch button:hover:not(.is-active) { color: var(--c-ink); }
.mobile-menu .lang-switch { align-self: flex-start; margin-top: .5rem; }
@media (max-width: 880px) { .nav-cta .lang-switch { display: none; } }

/* Mobile nav */
.nav-toggle {
  display: none; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: var(--r-sm); background: var(--c-paper);
  border: 1.5px solid var(--c-line);
}
.nav-toggle span {
  position: relative; width: 18px; height: 2px;
  background: var(--c-ink); border-radius: 2px;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.nav-toggle span::before, .nav-toggle span::after {
  content:""; position: absolute; left: 0; width: 18px; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: transform .3s var(--ease), top .3s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 880px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-menu {
    position: fixed; inset: 64px 0 0 0; z-index: 49;
    background: var(--c-bg);
    transform: translateY(-110%);
    transition: transform .4s var(--ease);
    padding: 2rem var(--pad-x) 4rem;
    display: flex; flex-direction: column; gap: 1.1rem;
    overflow-y: auto;
    border-top: 1px solid var(--c-line);
  }
  body.nav-open .mobile-menu { transform: translateY(0); }
  .mobile-menu a {
    font-family: var(--f-sans); font-size: 1.3rem; font-weight: 700;
    color: var(--c-ink);
    border-bottom: 1px solid var(--c-line-l);
    padding-bottom: .85rem;
  }
  .mobile-menu .btn { margin-top: 1rem; align-self: flex-start; }
}
@media (min-width: 881px) { .mobile-menu { display: none; } }

/* ─── 7. Hero (V2 full-split Lovevery style) ─────────────── */
.hero {
  overflow: hidden;
  background: var(--c-bg);
}

/* Full-bleed split: text LEFT, photography RIGHT */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(520px, 70vh, 740px);
}
@media (max-width: 880px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
}

.hero-content-wrap {
  display: flex; align-items: center;
  padding: clamp(3rem, 6vw, 5rem) var(--pad-x);
  padding-right: clamp(2rem, 4vw, 4rem);
}
@media (min-width: 881px) {
  .hero-content-wrap {
    padding-left: calc((100vw - var(--max)) / 2 + var(--pad-x));
    padding-left: max(var(--pad-x), calc((100vw - var(--max)) / 2 + var(--pad-x)));
  }
}
@media (max-width: 880px) {
  .hero-content-wrap { padding: 2.5rem var(--pad-x) 2rem; }
}

.hero-content { max-width: 540px; }
.hero-eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--c-green-mid);
  display: flex; align-items: center; gap: .7em;
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
  content:""; width: 28px; height: 2px; background: var(--c-clay); flex: none;
}
.hero-content h1 { margin-bottom: 1.2rem; }
.hero-content .lead { margin-bottom: 2rem; }
.hero-actions { display: flex; gap: .85rem; flex-wrap: wrap; }

/* Right panel: full-bleed photography */
.hero-photo {
  position: relative; overflow: hidden;
  background: var(--c-sand);
}
@media (max-width: 880px) {
  .hero-photo { aspect-ratio: 4/3; }
}
.hero-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
/* Floating badge on photo */
.hero-photo-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-radius: var(--r-md);
  padding: .85rem 1.1rem;
  display: flex; align-items: center; gap: .85rem;
  font-size: .88rem; font-weight: 600;
  box-shadow: var(--shadow-md);
  max-width: 240px;
}
.hero-photo-badge .pulse {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--c-clay); flex: none;
  box-shadow: 0 0 0 4px rgba(192,90,52,.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(192,90,52,.2); }
  50%      { box-shadow: 0 0 0 8px rgba(192,90,52,.08); }
}

/* Trust bar below hero */
.trust-bar {
  background: var(--c-paper);
  border-top: 1px solid var(--c-line-l);
  border-bottom: 1px solid var(--c-line-l);
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 700px) { .trust-bar-inner { grid-template-columns: repeat(2, 1fr); } }
.trust-item {
  display: flex; align-items: center; gap: .85rem;
  padding: 1.25rem 1.5rem;
  border-right: 1px solid var(--c-line-l);
}
.trust-item:last-child { border-right: 0; }
@media (max-width: 700px) {
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(3) { border-right: 1px solid var(--c-line-l); }
}
.trust-item .ti-icon {
  width: 40px; height: 40px; flex: none;
  display: grid; place-items: center;
  background: var(--c-green-tint);
  border-radius: var(--r-sm);
  color: var(--c-green);
}
.trust-item .ti-icon svg { width: 20px; height: 20px; }
.trust-item .ti-text strong { display: block; font-size: .9rem; font-weight: 700; color: var(--c-ink); }
.trust-item .ti-text span  { font-size: .8rem; color: var(--c-muted); }

/* Size selector bubbles (Lovevery-style age bubbles) */
.size-bubbles {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: clamp(.8rem, 2vw, 2.5rem);
  padding-block: 3rem;
}
.size-bubble {
  display: flex; flex-direction: column; align-items: center; gap: .65rem;
  cursor: pointer; text-decoration: none;
  transition: transform .25s var(--ease);
}
.size-bubble:hover { transform: translateY(-3px); }
.size-bubble .sb-ring {
  width: clamp(80px, 10vw, 108px);
  height: clamp(80px, 10vw, 108px);
  border-radius: 50%;
  background: var(--c-sand);
  overflow: hidden; position: relative;
  border: 2px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.size-bubble:hover .sb-ring,
.size-bubble.is-active .sb-ring {
  border-color: var(--c-green);
  box-shadow: 0 0 0 3px var(--c-green-tint);
}
.size-bubble .sb-ring img {
  width: 100%; height: 100%; object-fit: cover;
}
.size-bubble .sb-label {
  font-size: .78rem; font-weight: 700; color: var(--c-ink);
  letter-spacing: .02em;
}
.size-bubble .sb-sub { font-size: .72rem; color: var(--c-muted); margin-top: -.4rem; }

/* Marquee / ticker */
.marquee {
  background: var(--c-green-deep);
  color: var(--c-on-green);
  overflow: hidden; padding: .85rem 0;
}
.marquee-track {
  display: flex; gap: 3rem; white-space: nowrap;
  animation: scroll 42s linear infinite;
  font-family: var(--f-serif); font-size: 1.5rem; font-style: italic;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 3rem; }
.marquee-track .sep { color: var(--c-clay); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── 8. Section Layouts ─────────────────────────────────── */
/* Split (50/50) */
.split {
  display: grid; gap: clamp(2.5rem, 5vw, 5rem);
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.split--reverse > :first-child { order: 2; }
@media (max-width: 880px) {
  .split, .split--reverse { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: 0; }
}
.media-frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: var(--c-sand); aspect-ratio: 5/4;
  box-shadow: var(--shadow-md);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame--tall { aspect-ratio: 4/5; }
.media-frame--sq { aspect-ratio: 1/1; }

/* 3-column grid */
.cols-3 {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.cols-2 {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* ─── 9. Feature / Value Cards ───────────────────────────── */
.feature {
  background: var(--c-paper);
  border: 1px solid var(--c-line-l);
  border-radius: var(--r-lg);
  padding: 2.2rem 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.feature:hover { box-shadow: var(--shadow-md); border-color: var(--c-line); }
.feature .icon {
  width: 52px; height: 52px; display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: var(--c-green-tint); color: var(--c-green);
  flex: none;
}
.feature .icon svg { width: 24px; height: 24px; }
.feature h3 {
  font-family: var(--f-sans); font-size: 1.1rem;
  font-weight: 700; letter-spacing: -.01em; margin: 0;
}
.feature p { margin: 0; font-size: .95rem; }

/* ─── 10. Steps / Process ────────────────────────────────── */
.steps {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  counter-reset: step;
}
.step {
  position: relative; padding: 2.2rem 1.8rem;
  background: var(--c-paper);
  border: 1px solid var(--c-line-l);
  border-radius: var(--r-lg);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--f-serif); font-size: 2rem;
  color: var(--c-clay); font-style: italic;
  display: block; margin-bottom: 1rem;
}
.step h3 { font-family: var(--f-sans); font-size: 1.05rem; font-weight: 700; margin: 0 0 .5rem; }
.step p { font-size: .95rem; margin: 0; }

/* ─── 11. Pricing Cards ──────────────────────────────────── */
.plans {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
}
.plan {
  background: var(--c-paper);
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 2.4rem 2rem;
  display: flex; flex-direction: column; gap: 1.2rem;
  position: relative;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.plan:hover { box-shadow: var(--shadow-md); }
.plan--featured {
  background: var(--c-green);
  border-color: var(--c-green);
  color: var(--c-on-green);
  box-shadow: var(--shadow-lg);
}
.plan--featured h3,
.plan--featured .price { color: var(--c-on-green); }
.plan--featured p,
.plan--featured .price-suffix { color: rgba(240,238,230,.72); }
.plan--featured ul li { color: rgba(240,238,230,.9); border-color: rgba(255,255,255,.1); }
.plan--featured .btn--ghost { color: var(--c-on-green); border-color: rgba(255,255,255,.25); }
.plan--featured .btn--ghost:hover { border-color: #fff; }
.plan h3 {
  font-family: var(--f-sans); font-size: .82rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; margin: 0; opacity: .7;
}
.plan .price { font-family: var(--f-serif); font-size: 3rem; line-height: 1; margin: 0; color: var(--c-ink); }
.plan .price-suffix { font-size: .88rem; color: var(--c-muted); margin-top: .2rem; }
.plan ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.plan ul li {
  display: flex; gap: .55rem; padding-block: .55rem;
  border-top: 1px solid var(--c-line-l); font-size: .93rem; align-items: flex-start;
}
.plan ul li:first-child { border-top: 0; padding-top: 0; }
.plan ul li svg { flex: none; width: 18px; height: 18px; color: var(--c-clay); margin-top: 3px; }
.plan .btn { margin-top: auto; width: 100%; justify-content: center; }
.plan .badge { position: absolute; top: -14px; right: 20px; }

/* Billing toggle */
.billing-toggle {
  display: inline-flex; align-items: center;
  background: var(--c-sand); border-radius: var(--r-sm);
  padding: 4px; gap: 2px;
}
.billing-toggle button {
  padding: .55rem 1.2rem; border-radius: 6px;
  font-size: .88rem; font-weight: 700;
  color: var(--c-muted);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.billing-toggle button.is-active { background: var(--c-paper); color: var(--c-ink); box-shadow: var(--shadow-xs); }

/* ─── 12. Testimonials ───────────────────────────────────── */
.testimonials {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.tm {
  background: var(--c-paper);
  border: 1px solid var(--c-line-l);
  border-radius: var(--r-lg);
  padding: 2rem 1.8rem;
}
.tm .stars { display: flex; gap: .25rem; margin-bottom: 1rem; }
.tm .stars svg { width: 16px; height: 16px; color: #F4C344; fill: currentColor; }
.tm p {
  font-family: var(--f-serif); font-style: italic;
  font-size: 1.05rem; color: var(--c-ink);
  line-height: 1.6; margin-bottom: 1.2rem;
}
.tm .who { font-size: .86rem; color: var(--c-muted); font-weight: 600; }

/* Quote / pullquote */
.quote {
  background: var(--c-green-tint);
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 5vw, 5rem);
  position: relative; overflow: hidden;
}
.quote blockquote {
  font-family: var(--f-serif); font-style: italic;
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
  line-height: 1.4; margin: 0; color: var(--c-green); max-width: 28ch;
}
.quote cite {
  display: block; font-style: normal;
  font-size: .9rem; font-weight: 700;
  margin-top: 1.5rem; color: var(--c-green-mid);
}
.quote::before {
  content: '"'; position: absolute; top: -.1em; left: .1em;
  font-family: var(--f-serif); font-size: 14rem;
  color: var(--c-green); opacity: .08;
  line-height: 1; pointer-events: none;
}

/* ─── 13. CTA Banner ─────────────────────────────────────── */
.cta-banner {
  background: var(--c-green);
  border-radius: var(--r-xl);
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 4rem);
  display: grid; gap: 2rem;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  overflow: hidden; position: relative;
}
@media (max-width: 880px) { .cta-banner { grid-template-columns: 1fr; } }
.cta-banner::after {
  content: "";
  position: absolute; right: -100px; top: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { color: #fff; margin: 0 0 .5rem; }
.cta-banner p { color: rgba(240,238,230,.75); margin: 0; }
.cta-banner .btn--accent { background: var(--c-clay); border-color: var(--c-clay); }
.cta-banner .btn--ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.cta-banner .btn--ghost:hover { border-color: #fff; }

/* ─── 14. Card ───────────────────────────────────────────── */
.card {
  background: var(--c-paper);
  border: 1px solid var(--c-line-l);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.5vw, 2.4rem);
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { box-shadow: var(--shadow-md); border-color: var(--c-line); }

/* Forms */
.field { display: grid; gap: .35rem; margin-bottom: 1rem; }
.field label { font-size: .84rem; font-weight: 700; color: var(--c-ink); }
.input, .textarea, .select {
  width: 100%; padding: .9rem 1rem;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-sm);
  background: var(--c-paper);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  font-size: 1rem;
}
.input:focus, .textarea:focus, .select:focus {
  border-color: var(--c-green); box-shadow: 0 0 0 3px var(--c-green-tint); outline: none;
}
.textarea { resize: vertical; min-height: 130px; }

/* ─── 15. Stats ──────────────────────────────────────────── */
.stats {
  display: grid; gap: 1px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  background: var(--c-line-l);
  border: 1px solid var(--c-line-l);
  border-radius: var(--r-lg); overflow: hidden;
}
.stat {
  background: var(--c-paper);
  padding: 2rem 1.5rem;
  text-align: center;
}
.stat .n { font-family: var(--f-serif); font-size: 2.8rem; line-height: 1; color: var(--c-green); font-weight: 700; }
.stat .l { font-size: .84rem; color: var(--c-muted); margin-top: .4rem; font-weight: 600; letter-spacing: .02em; }

/* ─── 16. Footer ─────────────────────────────────────────── */
.site-footer {
  background: var(--c-green-deep);
  color: var(--c-on-green);
  padding-block: clamp(3.5rem, 6vw, 5.5rem) 1.5rem;
}
.footer-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1.4fr repeat(3, 1fr);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  color: rgba(240,238,230,.5); font-size: .72rem;
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.2rem;
  font-family: var(--f-sans); font-weight: 700;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.site-footer a { opacity: .75; font-size: .92rem; transition: opacity .2s var(--ease); }
.site-footer a:hover { opacity: 1; }
.site-footer .brand-block img { height: 52px; filter: brightness(0) invert(1); margin-bottom: 1.2rem; }
.site-footer .brand-block p { color: rgba(240,238,230,.55); font-size: .9rem; max-width: 28ch; line-height: 1.6; }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  color: rgba(240,238,230,.45); font-size: .84rem;
}
.footer-bottom .lv-nomadtech-credit {
  color: rgba(240,238,230,.45);
}
.footer-bottom .lv-nomadtech-credit img {
  filter: grayscale(1) brightness(2);
}
.footer-bottom .lv-nomadtech-credit a { color: rgba(240,238,230,.55); }
.footer-bottom .lv-nomadtech-credit a:hover { color: #fff; }
.socials { display: flex; gap: .5rem; margin-top: 1.2rem; }
.socials a {
  width: 38px; height: 38px; border-radius: var(--r-sm);
  display: grid; place-items: center;
  background: rgba(255,255,255,.07);
  transition: background .2s var(--ease);
}
.socials a:hover { background: rgba(255,255,255,.16); }
.socials svg { width: 16px; height: 16px; }

/* ─── 17. Page Hero (interior) ───────────────────────────── */
.page-hero {
  padding-block: clamp(3.5rem, 7vw, 6rem) clamp(2.5rem, 5vw, 4rem);
  background: var(--c-sand);
  border-bottom: 1px solid var(--c-line-l);
}
.page-hero .container { max-width: 760px; text-align: center; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
.page-hero p { margin-inline: auto; }

/* ─── 18. FAQ ────────────────────────────────────────────── */
.faq-list { display: grid; gap: .6rem; max-width: 820px; margin-inline: auto; }
.faq-item {
  background: var(--c-paper);
  border: 1.5px solid var(--c-line-l);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s var(--ease);
}
.faq-item[open] { border-color: var(--c-green); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 1.3rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-weight: 700; font-size: 1rem; color: var(--c-ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; flex: none; width: 14px; height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232C5440' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item .a { padding: 0 1.5rem 1.4rem; color: var(--c-muted); line-height: 1.7; }

/* ─── 19. Page Hero interior sections ───────────────────── */
/* Contact */
.contact-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1.1fr 1fr;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info {
  background: var(--c-green-tint);
  border: 1px solid var(--c-line-l);
  padding: 2.2rem 2rem;
  border-radius: var(--r-lg);
}
.contact-info h3 { font-family: var(--f-sans); font-size: 1.1rem; font-weight: 700; }
.contact-info ul { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 1.1rem; }
.contact-info li { display: flex; gap: .85rem; align-items: flex-start; font-size: .95rem; }
.contact-info svg { width: 20px; height: 20px; color: var(--c-green); flex: none; margin-top: 2px; }

/* Plans comparison table */
.compare {
  width: 100%; border-collapse: collapse; margin-top: 2rem;
  background: var(--c-paper);
  border: 1.5px solid var(--c-line-l);
  border-radius: var(--r-lg); overflow: hidden;
}
.compare th, .compare td {
  padding: 1rem 1.2rem; text-align: left;
  border-top: 1px solid var(--c-line-l); font-size: .94rem;
}
.compare th {
  background: var(--c-sand); font-weight: 700; color: var(--c-body);
  font-size: .8rem; letter-spacing: .06em; text-transform: uppercase;
}
.compare td:not(:first-child), .compare th:not(:first-child) { text-align: center; }
.compare svg.yes { color: var(--c-green); }
.compare svg.no  { color: var(--c-line); }
@media (max-width: 700px) { .compare { font-size: .85rem; } .compare th,.compare td { padding: .65rem .6rem; } }

/* ─── 20. Animations ─────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ─── 21. Tag / misc helpers ─────────────────────────────── */
.tag-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }

/* ─── 22. Lightbox ───────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8,16,11,.92);
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: min(94vw,1400px); max-height: 88vh;
  border-radius: var(--r-md); box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.lightbox .lb-close, .lightbox .lb-prev, .lightbox .lb-next {
  position: absolute; width: 48px; height: 48px;
  border-radius: 50%; background: rgba(255,255,255,.1);
  color: #fff; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.15);
  transition: background .2s var(--ease);
}
.lightbox button:hover { background: rgba(255,255,255,.2); }
.lightbox .lb-close { top: 24px; right: 24px; }
.lightbox .lb-prev  { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next  { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox svg { width: 18px; height: 18px; }
.lightbox .lb-counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.6); font-size: .84rem; letter-spacing: .1em;
}

/* ─── 23. Admin (unchanged logic, updated vars) ──────────── */
.admin-shell {
  min-height: 100vh; display: grid;
  grid-template-columns: 260px 1fr;
  background: var(--c-bg);
}
@media (max-width: 880px) { .admin-shell { grid-template-columns: 1fr; } }
.admin-sidebar {
  background: var(--c-green-deep); color: var(--c-on-green);
  padding: 1.6rem 1.2rem;
  display: flex; flex-direction: column; gap: 1.2rem;
  position: sticky; top: 0; height: 100vh;
}
@media (max-width: 880px) { .admin-sidebar { position: static; height: auto; } }
.admin-sidebar .brand img { height: 38px; filter: brightness(0) invert(1); }
.admin-sidebar nav ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .15rem; }
.admin-sidebar nav a {
  display: flex; align-items: center; gap: .7rem;
  padding: .65rem .8rem; border-radius: var(--r-sm);
  color: rgba(240,238,230,.75); font-size: .92rem; font-weight: 600;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.admin-sidebar nav a:hover { background: rgba(255,255,255,.06); color: var(--c-on-green); }
.admin-sidebar nav a[aria-current="page"] { background: rgba(255,255,255,.1); color: var(--c-on-green); }
.admin-sidebar .badge-pill {
  margin-left: auto; background: var(--c-clay); color: #fff;
  font-size: .68rem; font-weight: 700; padding: 2px 7px; border-radius: 999px;
}
.admin-sidebar nav svg { width: 16px; height: 16px; flex: none; }
.admin-sidebar .who {
  margin-top: auto; padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .82rem; color: rgba(240,238,230,.7);
}
.admin-sidebar .who strong { display: block; color: var(--c-on-green); margin-bottom: 2px; font-weight: 700; }
.admin-sidebar .who button {
  margin-top: .8rem; font-size: .82rem; color: rgba(240,238,230,.8); padding: .35rem 0;
}
.admin-sidebar .who button:hover { color: var(--c-clay); }
.admin-main { padding: clamp(1.5rem, 3vw, 2.4rem); }
.admin-header {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  margin-bottom: 1.6rem;
}
.admin-header h1 { font-family: var(--f-serif); font-size: clamp(1.6rem,3vw,2.2rem); margin: 0; font-weight: 700; }
.admin-header .sub { color: var(--c-muted); font-size: .92rem; margin-top: .2rem; }
.admin-stats {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  margin-bottom: 2rem;
}
.kpi {
  background: var(--c-paper); border: 1px solid var(--c-line-l);
  border-radius: var(--r-md); padding: 1.1rem 1.2rem;
}
.kpi .l { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--c-muted); font-weight: 700; }
.kpi .n { font-family: var(--f-serif); font-size: 2.1rem; line-height: 1.1; color: var(--c-green); margin-top: .3rem; }
.kpi .d { font-size: .8rem; color: var(--c-muted); margin-top: .25rem; }
.admin-toolbar { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 1rem; }
.admin-toolbar .input, .admin-toolbar .select { padding: .6rem .85rem; font-size: .92rem; min-width: 0; }
.admin-toolbar .search { flex: 1; min-width: 220px; max-width: 360px; }
.admin-table-wrap {
  background: var(--c-paper); border: 1px solid var(--c-line-l);
  border-radius: var(--r-md); overflow: hidden;
}
.admin-table { width: 100%; border-collapse: collapse; font-size: .94rem; }
.admin-table th, .admin-table td {
  padding: .85rem 1rem; text-align: left;
  border-bottom: 1px solid var(--c-line-l); vertical-align: middle;
}
.admin-table th {
  background: var(--c-sand); font-size: .76rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--c-muted);
}
.admin-table tbody tr { cursor: pointer; transition: background .15s var(--ease); }
.admin-table tbody tr:hover { background: var(--c-sand); }
.admin-table tbody tr.is-selected { background: var(--c-green-tint); }
.admin-table tbody tr:last-child td { border-bottom: 0; }
.admin-table .id { font-family: ui-monospace,SFMono-Regular,Menlo,monospace; font-size: .78rem; color: var(--c-muted); }
.admin-table .empty { text-align: center; padding: 4rem 1rem; color: var(--c-muted); }
.status {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .22rem .55rem; border-radius: var(--r-pill);
  font-size: .75rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
}
.status::before { content:""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.status--new       { background: rgba(192,90,52,.12); color: var(--c-clay); }
.status--contacted { background: rgba(44,84,64,.10);  color: var(--c-green); }
.status--shipped   { background: rgba(44,84,64,.18);  color: var(--c-green-dark); }
.status--cancelled { background: rgba(150,27,29,.12); color: var(--c-red); }

/* Detail drawer */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(14,31,20,.4);
  opacity: 0; pointer-events: none; transition: opacity .35s var(--ease); z-index: 60;
}
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(520px, 100%);
  background: var(--c-paper); box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .4s var(--ease); z-index: 61;
  display: flex; flex-direction: column;
}
body.drawer-open .drawer-backdrop { opacity: 1; pointer-events: auto; }
body.drawer-open .drawer { transform: none; }
.drawer header {
  padding: 1.2rem 1.4rem; border-bottom: 1px solid var(--c-line-l);
  display: flex; align-items: center; justify-content: space-between;
}
.drawer header h3 { margin: 0; font-family: var(--f-serif); font-size: 1.4rem; }
.drawer .close {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--c-sand); transition: background .2s var(--ease);
}
.drawer .close:hover { background: var(--c-line); }
.drawer .body { padding: 1.4rem; overflow-y: auto; flex: 1; }
.drawer dl { margin: 0; display: grid; gap: .9rem; }
.drawer dt { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--c-muted); font-weight: 700; }
.drawer dd { margin: .2rem 0 0; font-size: .96rem; color: var(--c-ink); }
.drawer dd.notes { white-space: pre-wrap; padding: .8rem 1rem; background: var(--c-sand); border-radius: var(--r-sm); }
.drawer .footer-actions {
  padding: 1rem 1.4rem; border-top: 1px solid var(--c-line-l);
  display: flex; gap: .6rem; flex-wrap: wrap;
}

/* ─── 24. Login ──────────────────────────────────────────── */
.login-shell {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  background: var(--c-bg);
}
@media (max-width: 880px) { .login-shell { grid-template-columns: 1fr; } }
.login-form-side {
  display: flex; align-items: center; justify-content: center; padding: 2rem;
}
.login-form-side .form { width: 100%; max-width: 380px; }
.login-form-side .brand img { height: 56px; }
.login-form-side .form h1 {
  font-family: var(--f-serif); font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 1.5rem 0 .4rem;
}
.login-form-side .form p { color: var(--c-muted); font-size: .94rem; }
.login-form-side .err {
  display: none; background: rgba(150,27,29,.1); color: var(--c-red);
  padding: .7rem .9rem; border-radius: var(--r-sm); font-size: .9rem; margin-bottom: 1rem;
}
.login-form-side .err.is-shown { display: block; }
.login-art-side {
  background: var(--c-green-deep); color: var(--c-on-green);
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: clamp(2rem, 5vw, 4rem); gap: 1.2rem; position: relative; overflow: hidden;
}
@media (max-width: 880px) { .login-art-side { display: none; } }
.login-art-side h2 { color: var(--c-on-green); font-size: clamp(2rem, 4vw, 3rem); margin: 0; }
.login-art-side p { color: rgba(240,238,230,.75); max-width: 38ch; }
.login-art-side .badge-row { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1rem; }
.login-art-side .pill { background: rgba(255,255,255,.1); color: var(--c-on-green); }
.login-art-side::after {
  content:""; position: absolute; right: -120px; bottom: -120px;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(200,230,210,.12), transparent 70%);
}

/* ─── 25. Wizard ─────────────────────────────────────────── */
.wizard {
  min-height: calc(100vh - 80px); display: grid;
  grid-template-columns: 1.25fr 1fr;
  background: var(--c-bg);
}
@media (max-width: 980px) { .wizard { grid-template-columns: 1fr; } }
.wizard-main {
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 4rem);
  display: flex; flex-direction: column; min-height: 100%;
}
.wizard-aside {
  background: var(--c-green-tint);
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 3rem);
  display: flex; flex-direction: column; gap: 1.4rem;
  position: relative; overflow: hidden;
}
@media (max-width: 980px) { .wizard-aside { order: -1; } }
.wizard-progress {
  display: flex; align-items: center; gap: .6rem; margin-bottom: 2rem;
}
.wizard-progress .bar { flex: 1; height: 4px; border-radius: 4px; background: var(--c-line); overflow: hidden; }
.wizard-progress .bar > span {
  display: block; height: 100%; width: 0%;
  background: var(--c-green); border-radius: 4px; transition: width .55s var(--ease);
}
.wizard-progress .count {
  font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--c-muted); white-space: nowrap;
}
.wizard-step { display: none; flex: 1; flex-direction: column; animation: stepIn .5s var(--ease); }
.wizard-step.is-active { display: flex; }
@keyframes stepIn { from { opacity:0; transform:translateY(14px); } to { opacity:1; transform:none; } }
.wizard-step .question-eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--c-clay); margin-bottom: .8rem;
}
.wizard-step h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: .8rem; }
.wizard-step .help { color: var(--c-muted); margin: 0 0 1.8rem; font-size: 1rem; }
.choice-grid { display: grid; gap: .75rem; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.choice {
  background: var(--c-paper); border: 1.5px solid var(--c-line-l);
  border-radius: var(--r-md); padding: 1.1rem 1.2rem;
  cursor: pointer; user-select: none;
  display: flex; flex-direction: column; gap: .35rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.choice:hover { border-color: var(--c-green); }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice .label { font-weight: 700; color: var(--c-ink); font-size: .95rem; }
.choice .sub { font-size: .84rem; color: var(--c-muted); }
.choice.is-selected, .choice:has(input:checked) {
  border-color: var(--c-green); background: var(--c-green-tint);
  box-shadow: 0 0 0 3px var(--c-green-tint);
}
.swatch-grid { display: grid; gap: .75rem; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
.swatch {
  background: var(--c-paper); border: 1.5px solid var(--c-line-l);
  border-radius: var(--r-md); padding: 1rem;
  cursor: pointer; display: flex; flex-direction: column; gap: .6rem;
  transition: border-color .2s var(--ease); position: relative;
}
.swatch:hover { border-color: var(--c-green); }
.swatch input { position: absolute; opacity: 0; pointer-events: none; }
.swatch .chips { display: flex; gap: 4px; height: 28px; border-radius: 6px; overflow: hidden; }
.swatch .chips span { flex: 1; }
.swatch .label { font-weight: 700; font-size: .9rem; }
.swatch .sub { font-size: .78rem; color: var(--c-muted); }
.swatch.is-selected, .swatch:has(input:checked) {
  border-color: var(--c-green); box-shadow: 0 0 0 3px var(--c-green-tint);
}
.wizard-actions {
  display: flex; gap: .8rem; align-items: center; margin-top: 2.5rem;
  padding-top: 1.4rem; border-top: 1px solid var(--c-line-l);
}
.wizard-actions .spacer { flex: 1; }
.wizard-actions .ghost-link {
  color: var(--c-muted); font-size: .9rem;
  background: transparent; padding: .5rem .8rem; border-radius: var(--r-sm);
}
.wizard-actions .ghost-link:hover { color: var(--c-ink); background: var(--c-sand); }
.plan-summary {
  background: var(--c-paper); border: 1px solid var(--c-line-l);
  border-radius: var(--r-lg); padding: 1.8rem; position: relative; z-index: 1;
}
.plan-summary .eyebrow { color: var(--c-green); }
.plan-summary h3 { font-family: var(--f-serif); font-size: 1.6rem; margin: .4rem 0 .6rem; }
.plan-summary .price-line { font-size: 2rem; font-family: var(--f-serif); margin: .4rem 0 1rem; }
.plan-summary .price-line span { font-size: .9rem; font-family: var(--f-sans); color: var(--c-muted); }
.plan-summary ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.plan-summary ul li { display: flex; gap: .55rem; align-items: flex-start; font-size: .92rem; }
.plan-summary ul li svg { width: 16px; height: 16px; color: var(--c-clay); margin-top: 4px; flex: none; }
.aside-tip {
  display: flex; gap: .8rem; align-items: flex-start;
  padding: 1rem 1.1rem; border-radius: var(--r-md);
  background: rgba(255,255,255,.6); backdrop-filter: blur(6px);
  font-size: .9rem; color: var(--c-green); position: relative; z-index: 1;
}
.aside-tip svg { width: 18px; height: 18px; flex: none; margin-top: 2px; }
.wizard-success {
  text-align: center; max-width: 540px; margin-inline: auto; padding-block: 1rem;
}
.wizard-success .check {
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--c-green-tint); color: var(--c-green);
  display: grid; place-items: center; margin: 0 auto 1.5rem;
}
.wizard-success .check svg { width: 38px; height: 38px; }
.wizard-success h2 { font-size: clamp(2rem, 4vw, 3rem); }
/* ── Confirm summary (step 9) ─────────────────────────────── */
.confirm-summary { display: grid; gap: 1rem; max-width: 600px; margin-top: .5rem; }
.confirm-block {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 1.2rem 1.4rem;
}
.confirm-block h4 {
  font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--c-green); margin: 0 0 .9rem;
}
.confirm-block dl { display: grid; grid-template-columns: 7rem 1fr; gap: .4rem 1rem; margin: 0; }
.confirm-block dt { font-size: .85rem; color: var(--c-muted); align-self: start; padding-top: 1px; }
.confirm-block dd { font-size: .9rem; font-weight: 500; margin: 0; word-break: break-word; }
.confirm-block .price-big { font-family: var(--f-serif); font-size: 1.35rem; color: var(--c-green); font-weight: 700; }
@media (max-width: 480px) {
  .confirm-block dl { grid-template-columns: 1fr; gap: .1rem; }
  .confirm-block dt { color: var(--c-muted); font-size: .78rem; margin-top: .5rem; }
}

.wizard-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem clamp(1.25rem, 4vw, 4rem);
  border-bottom: 1px solid var(--c-line-l);
  background: var(--c-paper);
}
.wizard-topbar .brand img { height: 40px; }
.wizard-topbar .lang-switch { font-size: .72rem; }

/* ══════════════════════════════════════════════════════════
   26. Lovevery-exact Homepage Components (lv-*)
   ══════════════════════════════════════════════════════════ */

/* ── Promo bar ──────────────────────────────────────────── */
.lv-promo {
  background: var(--c-green);
  color: #fff;
  text-align: center;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: .7rem var(--pad-x);
  position: relative; z-index: 51;
}
.lv-promo a { color: inherit; text-decoration: underline; }
.lv-promo span + span::before { content: " · "; opacity: .55; }

/* ── Hero: full-bleed background image, text RIGHT ──────── */
.lv-hero {
  position: relative;
  height: clamp(320px, 52vh, 465px);
  overflow: hidden;
  background: var(--c-sand);
}
.lv-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
}
.lv-hero-inner {
  position: absolute; inset: 0;
  display: flex; align-items: stretch;
  width: 100%; max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.lv-hero-left { flex: 0 0 50%; }
.lv-hero-right {
  flex: 0 0 50%;
  display: flex; flex-direction: column; justify-content: center;
  padding: 2.5rem 1.5rem 2.5rem 3.5rem;
}
.lv-hero-right h1 {
  color: #fff;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 700; line-height: 1.1;
  margin-bottom: 1rem; max-width: 16ch;
  text-shadow: 0 2px 14px rgba(0,0,0,.35);
}
.lv-hero-right .lv-hero-sub {
  color: rgba(255,255,255,.88);
  font-size: .97rem; margin-bottom: 1.6rem;
  max-width: 32ch; text-shadow: 0 1px 6px rgba(0,0,0,.3);
}
.lv-hero-right .btn {
  align-self: flex-start;
  height: 48px; padding: 0 1.75rem;
  font-size: .875rem; font-weight: 700; border-radius: 8px;
}
@media (max-width: 700px) {
  .lv-hero { display: none; }
}
/* Mobile hero: stacked image + text */
.lv-hero-mobile {
  display: none;
}
@media (max-width: 700px) {
  .lv-hero-mobile { display: block; }
  .lv-hero-mobile-img {
    width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center;
    display: block;
  }
  .lv-hero-mobile-text {
    padding: 2rem var(--pad-x) 2.5rem;
    background: var(--c-bg); text-align: center;
  }
  .lv-hero-mobile-text h1 { color: var(--c-ink); font-size: 2rem; margin-bottom: .75rem; }
  .lv-hero-mobile-text p { color: var(--c-body); margin-inline: auto; margin-bottom: 1.5rem; }
  .lv-hero-mobile-text .btn { margin-inline: auto; display: inline-flex; }
}

/* ── Colored stripe ─────────────────────────────────────── */
.lv-stripe {
  height: 14px;
  background: linear-gradient(90deg,
    var(--c-clay)        0%  20%,
    #E8B84B             20%  40%,
    #b8d4c0             40%  60%,
    var(--c-sky)         60%  80%,
    var(--c-green)       80% 100%
  );
}
@media (min-width: 701px) { .lv-stripe { height: 22px; } }

/* ── Age selector with offset shadow circles ────────────── */
.lv-age-section {
  padding-block: 3rem 4rem;
  background: var(--c-bg);
  text-align: center;
}
.lv-age-label {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--c-muted); margin-bottom: 2.2rem;
  display: block;
}
.lv-age-grid {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 3rem);
}
.lv-age-item {
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  text-decoration: none; cursor: pointer;
}
.lv-age-wrap {
  position: relative;
  width: clamp(82px, 10vw, 108px);
  height: clamp(82px, 10vw, 108px);
}
.lv-age-shadow {
  position: absolute;
  top: 58%; left: 52%;
  transform: translate(-50%, -50%);
  width: 100%; height: 100%;
  border-radius: 50%;
  z-index: 0;
}
.lv-age-circle {
  position: absolute; inset: 0;
  border-radius: 50%; overflow: hidden;
  background: var(--c-sand); z-index: 1;
  transition: transform .25s var(--ease);
}
.lv-age-circle img { width: 100%; height: 100%; object-fit: cover; }
.lv-age-item:hover .lv-age-circle { transform: translateY(-3px); }
.lv-age-name {
  font-size: .78rem; font-weight: 700;
  color: var(--c-ink); letter-spacing: .02em;
}
.lv-age-range { font-size: .72rem; color: var(--c-muted); margin-top: -.35rem; }

/* ── Full-page feature splits ───────────────────────────── */
.lv-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(380px, 52vh, 540px);
}
@media (max-width: 880px) {
  .lv-split { grid-template-columns: 1fr; min-height: auto; }
}
.lv-split__media {
  position: relative; overflow: hidden;
  background: var(--c-sand);
}
.lv-split__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
@media (max-width: 880px) {
  .lv-split__media { aspect-ratio: 4/3; position: relative; }
  .lv-split__media img { position: absolute; }
}
.lv-split__text {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(3rem, 6vw, 5.5rem) clamp(2rem, 5vw, 5rem);
  background: var(--c-paper);
}
.lv-split--sand .lv-split__text  { background: var(--c-sand); }
.lv-split--tint .lv-split__text  { background: var(--c-green-tint); }
.lv-split--cream .lv-split__text { background: var(--c-cream); }
.lv-split__text h2 { max-width: 18ch; margin-bottom: .8rem; }
.lv-split__text p.lv-sub { max-width: 40ch; color: var(--c-muted); margin-bottom: 1.4rem; }
/* Reverse: media on RIGHT, text on LEFT */
.lv-split--reverse .lv-split__media { order: 2; }
.lv-split--reverse .lv-split__text  { order: 1; }
@media (max-width: 880px) {
  .lv-split--reverse .lv-split__media,
  .lv-split--reverse .lv-split__text { order: unset; }
}

/* ── Lovevery-style checklist ───────────────────────────── */
.lv-checklist {
  list-style: none; padding: 0;
  margin: 1rem 0 1.8rem;
  display: grid; gap: .7rem;
}
.lv-checklist li {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .97rem; color: var(--c-body); line-height: 1.5;
}
.lv-check-icon {
  width: 22px; height: 22px; flex: none; margin-top: 1px;
  background: var(--c-green-tint); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.lv-check-icon svg { width: 11px; height: 11px; color: var(--c-green); }

/* ── Full-width photo band ──────────────────────────────── */
.lv-band {
  position: relative; overflow: hidden;
  height: clamp(220px, 33vw, 480px);
  background: var(--c-sand);
}
.lv-band img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}

/* ── Stats band (sky bg, headline + big number) ─────────── */
.lv-stats-band {
  background: var(--c-sky);
  padding-block: clamp(3rem, 6vw, 5rem);
}
.lv-stats-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 700px) {
  .lv-stats-inner { grid-template-columns: 1fr; text-align: center; }
  .lv-stat-big { text-align: center; }
}
.lv-stats-inner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  color: var(--c-green); max-width: 26ch; margin-bottom: 0;
}
.lv-stat-big { text-align: right; }
.lv-stat-big .lv-big-n {
  font-family: var(--f-serif);
  font-size: clamp(4.5rem, 10vw, 8rem);
  line-height: 1; font-weight: 700; color: var(--c-green); display: block;
}
.lv-stat-big .lv-big-label {
  font-size: .88rem; color: var(--c-green-mid);
  font-weight: 600; margin-top: .3rem;
  letter-spacing: .02em;
}

/* ── Email capture section ──────────────────────────────── */
.lv-email-capture {
  background: var(--c-cream);
  padding-block: clamp(3.5rem, 7vw, 6rem);
}
.lv-email-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 700px) {
  .lv-email-inner { grid-template-columns: 1fr; }
}
.lv-email-media {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/3; background: var(--c-sand);
  box-shadow: var(--shadow-md);
}
.lv-email-media img { width: 100%; height: 100%; object-fit: cover; }
.lv-email-text h2 { max-width: 22ch; margin-bottom: .65rem; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.lv-email-text > p { max-width: 40ch; margin-bottom: 1.5rem; color: var(--c-muted); }
.lv-email-form {
  display: flex; gap: .5rem; flex-wrap: wrap;
}
.lv-email-form input[type="email"] {
  flex: 1; min-width: 200px;
  padding: .85rem 1rem;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-sm);
  background: var(--c-paper);
  font-size: .97rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.lv-email-form input[type="email"]:focus {
  border-color: var(--c-green);
  box-shadow: 0 0 0 3px var(--c-green-tint);
  outline: none;
}
.lv-email-form .btn {
  height: auto; padding: .85rem 1.5rem; border-radius: var(--r-sm);
}
.lv-fine {
  font-size: .77rem; color: var(--c-muted); margin-top: .65rem; max-width: 40ch;
}

/* ── Lovevery-style footer (light bg) ───────────────────── */
.lv-footer {
  background: var(--c-green-tint);
  padding-block: clamp(3.5rem, 6vw, 5.5rem) 2rem;
  color: var(--c-body);
}
.lv-footer-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1.6fr repeat(4, 1fr);
}
@media (max-width: 1000px) {
  .lv-footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 600px) {
  .lv-footer-grid { grid-template-columns: 1fr 1fr; }
}
.lv-footer-brand img { height: 56px; margin-bottom: 1.2rem; }
.lv-footer-brand p {
  font-size: .9rem; color: var(--c-muted);
  max-width: 26ch; line-height: 1.65;
}
.lv-footer h4 {
  font-family: var(--f-sans); font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--c-green); margin-bottom: 1.1rem;
}
.lv-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.lv-footer a { font-size: .9rem; color: var(--c-body); transition: color .2s var(--ease); }
.lv-footer a:hover { color: var(--c-green); }
.lv-footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid var(--c-line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .82rem; color: var(--c-muted);
}
.lv-footer-bottom a { color: var(--c-muted); }
.lv-footer-bottom a:hover { color: var(--c-green); }

.lv-nomadtech-credit {
  width: 100%; margin-top: .6rem;
  display: flex; align-items: center; gap: .55rem;
  font-size: .76rem; color: var(--c-muted); opacity: .78;
}
.lv-nomadtech-credit img {
  height: 18px; width: auto; opacity: .65;
  filter: grayscale(1);
  transition: opacity .2s, filter .2s;
}
.lv-nomadtech-credit:hover img { opacity: 1; filter: none; }
.lv-nomadtech-credit a { color: inherit; text-decoration: none; }
.lv-nomadtech-credit a:hover { color: var(--c-green); }
[data-lang="sq"] .lv-nomadtech-en,
[data-lang="en"] .lv-nomadtech-sq { display: none; }

/* ── Legal bar (dark green, uppercase links) ────────────── */
.lv-legal-bar {
  background: var(--c-green-deep);
  padding: .9rem var(--pad-x);
  display: flex; justify-content: center; align-items: center;
  gap: 1.5rem 3rem; flex-wrap: wrap;
}
.lv-legal-bar a {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
  transition: color .2s var(--ease);
}
.lv-legal-bar a:hover { color: #fff; }
