/* ===================================================================
   ABHYANGA LP — Standalone CSS
   „Aranykori Ayurvéda" — modern editorial luxury design system
   =================================================================== */

/* ─────────────── DESIGN TOKENS ─────────────── */
/* Palette synced with suryaayurveda.hu/abhyanga-masszazs/ — forest green + gold + burnt orange.
   Forest green dark BG replaces previous charcoal; sandy-warm neutral cream replaces previous amber cream.
   Cream tokens stay neutral-warm (sárgás-bézs) — explicit NO peach/pink shades. */
:root {
  /* Dark BG (forest green family) — was brown charcoal */
  --c-charcoal:      #1F3D1E;   /* deep forest — hero gradient base */
  --c-charcoal-mid:  #2D572C;   /* Surya brand-primary green — .section--charcoal, footer, pricing card BG */
  --c-charcoal-soft: #3D7A3B;   /* lighter forest — hover/accent stops */

  /* Light BG (sandy-warm cream family) — was amber cream */
  --c-cream:         #F8F4EA;   /* neutral warm off-white — .section--cream */
  --c-cream-warm:    #F2EBD8;   /* sandy warm cream — .section--warm */
  --c-cream-deep:    #E8DDC4;   /* sandy beige accent */

  /* Gold (unchanged — already matches Surya brand exactly) */
  --c-gold:          #D4AF37;
  --c-gold-deep:     #A88A28;
  --c-gold-light:    #E6CC78;

  /* Saffron / burnt-orange — synced to Surya brand */
  --c-saffron:       #CC661C;   /* Surya brand-orange exact */
  --c-saffron-deep:  #A04E14;   /* matching darker variant */

  /* Leaf green (unchanged — secondary green accent) */
  --c-leaf:          #5B7A4A;
  --c-leaf-deep:     #44603A;

  /* Text (neutral grays — was warm-brown) */
  --c-text:          #2A2A2A;   /* H1–H4 default, body fő szöveg */
  --c-text-mid:      #4B4B4B;   /* Surya brand-gray — másodlagos szövegek */
  --c-text-mute:     #7A7A7A;   /* meta / captions / disclaimer */
  --c-line:          #E0DCC8;   /* sandy-warm neutral border */

  /* Synced to suryaayurveda.hu Elementor kit defaults (2026-05-27):
     Merriweather Sans = H1/headings · Roboto Flex = body/text · Roboto = accent/button/eyebrow.
     --f-mono token name kept for back-compat; now holds the accent (Roboto) stack. */
  --f-display: "Merriweather Sans", Georgia, "Times New Roman", serif;
  --f-body: "Roboto Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --f-mono: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --sp-xs: 0.25rem;
  --sp-sm: 0.5rem;
  --sp-md: 1rem;
  --sp-lg: 1.5rem;
  --sp-xl: 2.5rem;
  --sp-2xl: 4rem;
  --sp-3xl: 6rem;
  --sp-4xl: 9rem;

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-xl: 28px;
  --r-full: 9999px;

  --sh-sm: 0 4px 12px rgba(31, 61, 30, 0.08);   /* green-tinted soft shadow */
  --sh-md: 0 14px 36px rgba(31, 61, 30, 0.12);
  --sh-lg: 0 28px 72px rgba(31, 61, 30, 0.18);
  --sh-gold: 0 12px 36px rgba(212, 175, 55, 0.32);   /* gold halo (unchanged) */
  --sh-saffron: 0 12px 36px rgba(204, 102, 28, 0.32);  /* Surya orange halo */

  --t-fast: 0.18s ease;
  --t-mid: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --t-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 76px;
}

/* ─────────────── RESET ─────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--c-text);
  font-size: 18px;
  line-height: 1.7;
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-weight: 500;
}

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

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin: 0 0 var(--sp-md);
  color: inherit;
}
h1 { font-size: clamp(2rem, 4.4vw, 2.75rem); line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3vw, 2.125rem); }
h3 { font-size: clamp(1.25rem, 1.9vw, 1.55rem); }
h4 { font-size: clamp(1.05rem, 1.4vw, 1.2rem); }
p { margin: 0 0 var(--sp-md); }
a { color: var(--c-gold-deep); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color var(--t-fast); font-weight: 600; }
a:hover { color: var(--c-saffron); }

/* ─────────────── LAYOUT PRIMITIVES ─────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.5rem); }
@media (min-width: 1440px) { .container { max-width: 1280px; } }

.section { padding: clamp(3rem, 7vw, 6rem) 0; position: relative; }
.section--cream { background: var(--c-cream); }
.section--warm { background: var(--c-cream-warm); }
.section--white { background: #fff; }
.section--charcoal { background: var(--c-charcoal); color: var(--c-cream); }
.section--charcoal h1, .section--charcoal h2,
.section--charcoal h3, .section--charcoal h4 { color: var(--c-cream); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto var(--sp-2xl); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--f-mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-gold-deep); margin-bottom: var(--sp-md);
}
.section--charcoal .eyebrow { color: var(--c-gold-light); }
.eyebrow::before, .eyebrow::after {
  content: ""; width: 24px; height: 1px; background: currentColor; opacity: 0.6;
}
.section-head p {
  font-size: 1.1rem; color: var(--c-text-mid); line-height: 1.7;
  margin-top: var(--sp-md);
}
.section--charcoal .section-head p { color: rgba(248, 244, 234, 0.78); }

/* ─────────────── BUTTONS ─────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.55rem;
  padding: 1rem 1.85rem;
  border-radius: var(--r-full);
  font-family: var(--f-mono);
  font-weight: 600; font-size: 0.98rem; letter-spacing: 0.02em;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform var(--t-mid), box-shadow var(--t-mid), background var(--t-fast), color var(--t-fast);
  white-space: nowrap; min-height: 52px;
}
.btn:focus-visible { outline: 3px solid var(--c-gold-light); outline-offset: 4px; }

.btn--primary {
  background: linear-gradient(135deg, var(--c-saffron) 0%, var(--c-saffron-deep) 100%);
  color: #fff; box-shadow: var(--sh-saffron);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(204, 102, 28, 0.42); color: #fff; }
.btn--primary:active { transform: translateY(0) scale(0.98); transition-duration: 80ms; }

.btn--gold {
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-deep) 100%);
  color: var(--c-charcoal); box-shadow: var(--sh-gold);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(212, 175, 55, 0.46); color: var(--c-charcoal); }
.btn--gold:active { transform: translateY(0) scale(0.98); transition-duration: 80ms; }

.btn--outline {
  background: transparent; color: var(--c-charcoal);
  border: 1.5px solid var(--c-charcoal);
}
.btn--outline:hover { background: var(--c-charcoal); color: var(--c-cream); transform: translateY(-2px); }
.btn--outline:active { transform: translateY(0) scale(0.98); transition-duration: 80ms; }

.btn--outline-gold {
  background: transparent; color: var(--c-cream);
  border: 1.5px solid var(--c-gold);
}
.btn--outline-gold:hover { background: var(--c-gold); color: var(--c-charcoal); transform: translateY(-2px); }
.btn--outline-gold:active { transform: translateY(0) scale(0.98); transition-duration: 80ms; }

.btn--lg { padding: 1.15rem 2.2rem; font-size: 1.05rem; min-height: 58px; }
.btn--sm { padding: 0.7rem 1.3rem; font-size: 0.88rem; min-height: 42px; }

.cta-row { display: flex; flex-wrap: wrap; gap: var(--sp-md); justify-content: center; margin-top: var(--sp-xl); }


/* ═══════════════════════════════════════════════════════
   STICKY HEADER + NAVIGATION
   LP-fókuszú: 4 anchor + tel + CTA
   ═══════════════════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248, 244, 234, 0.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-line);
  height: var(--nav-h);
  transition: box-shadow var(--t-mid);
}
.nav.is-scrolled { box-shadow: var(--sh-sm); }

.nav__inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-md);
}

.nav__logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.nav__logo img { height: 38px; width: auto; }

.nav__menu {
  display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.2rem);
  flex: 1; justify-content: center;
}
.nav__menu a {
  font-family: var(--f-body);
  font-size: 0.95rem; font-weight: 500;
  color: var(--c-charcoal); text-decoration: none;
  letter-spacing: 0.01em;
  position: relative; padding: 0.4rem 0;
  transition: color var(--t-fast);
}
.nav__menu a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--c-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-mid);
}
.nav__menu a:hover { color: var(--c-gold-deep); }
.nav__menu a:hover::after { transform: scaleX(1); }

/* Dropdown — Masszázsok parent menu item */
.nav__dropdown { position: relative; display: flex; align-items: center; }
.nav__dropdown-toggle {
  font-family: var(--f-body);
  font-size: 0.95rem; font-weight: 500;
  color: var(--c-charcoal);
  background: none; border: none; cursor: pointer;
  padding: 0.4rem 0;
  display: inline-flex; align-items: center; gap: 0.45rem;
  letter-spacing: 0.01em;
  position: relative;
  transition: color var(--t-fast);
}
.nav__dropdown-toggle::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--c-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-mid);
}
.nav__dropdown:hover .nav__dropdown-toggle,
.nav__dropdown-toggle:focus-visible,
.nav__dropdown-toggle[aria-expanded="true"] { color: var(--c-gold-deep); }
.nav__dropdown:hover .nav__dropdown-toggle::after,
.nav__dropdown-toggle:focus-visible::after,
.nav__dropdown-toggle[aria-expanded="true"]::after { transform: scaleX(1); }
.nav__chevron { transition: transform var(--t-fast); flex-shrink: 0; }
.nav__dropdown:hover .nav__chevron,
.nav__dropdown-toggle[aria-expanded="true"] .nav__chevron { transform: rotate(180deg); }

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% - 0.2rem); left: 50%;
  transform: translateX(-50%) translateY(0);
  min-width: 200px;
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  border-radius: 4px;
  box-shadow: var(--sh-md);
  padding: 0.5rem 0;
  opacity: 0; visibility: hidden;
  transition: opacity var(--t-fast), visibility var(--t-fast);
  z-index: 110;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu,
.nav__dropdown-toggle[aria-expanded="true"] + .nav__dropdown-menu {
  opacity: 1; visibility: visible;
}
.nav__dropdown-menu a {
  display: block;
  padding: 0.65rem 1.2rem;
  font-family: var(--f-body);
  font-size: 0.95rem; font-weight: 500;
  color: var(--c-charcoal);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background var(--t-fast), color var(--t-fast);
}
.nav__dropdown-menu a::after { display: none !important; }
.nav__dropdown-menu a:hover { background: rgba(212, 175, 55, 0.08); color: var(--c-gold-deep); }
.nav__dropdown-menu a[aria-current="page"] {
  background: rgba(212, 175, 55, 0.12);
  color: var(--c-gold-deep);
  font-weight: 600;
}

.nav__cta { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.nav__phone {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.05rem; font-weight: 600;
  color: var(--c-gold-deep); text-decoration: none;
  white-space: nowrap;
}
.nav__phone:hover { color: var(--c-saffron); }

.nav__hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px;
  padding: 10px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  flex-shrink: 0;
}
.nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--c-charcoal);
  transition: transform var(--t-mid), opacity var(--t-fast);
}
.nav.is-open .nav__hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__hamburger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav__hamburger { display: flex; }
  .nav__menu, .nav__phone { display: none; }
  .nav.is-open .nav__menu {
    display: flex;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--c-cream);
    flex-direction: column; gap: 0;
    padding: var(--sp-md) 0;
    box-shadow: var(--sh-md);
    border-top: 1px solid var(--c-line);
  }
  .nav.is-open .nav__menu a {
    width: 100%; padding: 1rem clamp(1rem, 4vw, 2rem);
    border-bottom: 1px solid var(--c-line);
    text-align: left; font-size: 1.05rem;
  }
  .nav.is-open .nav__menu a:last-child { border-bottom: none; }
  .nav.is-open .nav__menu a::after { display: none; }
  .nav.is-open .nav__phone {
    display: flex;
    width: 100%; padding: 1rem clamp(1rem, 4vw, 2rem);
  }
  /* Mobile dropdown — accordion style */
  .nav.is-open .nav__dropdown {
    width: 100%; flex-direction: column; align-items: stretch;
  }
  .nav.is-open .nav__dropdown-toggle {
    width: 100%; padding: 1rem clamp(1rem, 4vw, 2rem);
    border-bottom: 1px solid var(--c-line);
    text-align: left; font-size: 1.05rem;
    justify-content: space-between;
    color: var(--c-charcoal);
  }
  .nav.is-open .nav__dropdown-toggle::after { display: none; }
  .nav.is-open .nav__dropdown-menu {
    position: static; transform: none;
    background: rgba(212, 175, 55, 0.05);
    border: none; border-radius: 0;
    box-shadow: none; padding: 0;
    opacity: 1; visibility: visible;
    max-height: 0; overflow: hidden;
    transition: max-height var(--t-mid);
    min-width: 0;
  }
  .nav.is-open .nav__dropdown-toggle[aria-expanded="true"] + .nav__dropdown-menu {
    max-height: 400px;
  }
  .nav.is-open .nav__dropdown-menu a {
    padding: 0.85rem clamp(2.4rem, 7vw, 3.2rem);
    border-bottom: 1px solid var(--c-line);
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .nav__cta .btn--sm { padding: 0.6rem 1rem; font-size: 0.82rem; }
  .nav__logo img { height: 32px; }
}


/* ═══════════════════════════════════════════════════════
   1. HERO — split layout with real image
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--c-charcoal) 0%, var(--c-charcoal-mid) 60%, var(--c-charcoal-soft) 100%);
  color: var(--c-cream);
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}

.hero__grain {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 25%, rgba(212, 175, 55, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 80% 75%, rgba(204, 102, 28, 0.14) 0%, transparent 50%);
  mix-blend-mode: screen;
}

.hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero__text { text-align: left; }

.breadcrumb {
  font-family: var(--f-mono);
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(248, 244, 234, 0.55);
  margin-bottom: var(--sp-lg);
}
.breadcrumb a { color: rgba(248, 244, 234, 0.78); text-decoration: none; }
.breadcrumb a:hover { color: var(--c-gold-light); }
.breadcrumb span { margin: 0 0.5rem; opacity: 0.4; }

.urgency {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: linear-gradient(135deg, var(--c-saffron) 0%, var(--c-gold-deep) 110%);
  color: #fff;
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.01em;
  padding: 0.55rem 1.3rem;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-lg);
  border: 1.5px solid rgba(248, 244, 234, 0.28);
  box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6), 0 8px 24px rgba(204, 102, 28, 0.4);
  animation: urgency-pulse 2.4s ease-in-out infinite;
}
.urgency__dot {
  width: 8px; height: 8px;
  background: var(--c-gold-light);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--c-gold-light);
  animation: urgency-blink 1.4s ease-in-out infinite;
}
@keyframes urgency-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.55), 0 8px 24px rgba(204, 102, 28, 0.4); }
  50%      { box-shadow: 0 0 0 14px rgba(212, 175, 55, 0), 0 10px 28px rgba(204, 102, 28, 0.5); }
}
@keyframes urgency-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}

.hero h1 {
  font-style: italic; font-weight: 500;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  margin-bottom: var(--sp-md);
  line-height: 1.08;
}
.hero h1 em { color: var(--c-gold-light); font-style: italic; font-weight: 600; }

.accent-bar {
  width: 64px; height: 2px; background: var(--c-gold);
  margin: var(--sp-md) 0 var(--sp-lg);
  position: relative;
}
.accent-bar::before, .accent-bar::after {
  content: ""; position: absolute; top: -3px; width: 8px; height: 8px;
  background: var(--c-gold); border-radius: 50%;
}
.accent-bar::before { left: -16px; }
.accent-bar::after { right: -16px; }

.hero__sub {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.65;
  color: rgba(248, 244, 234, 0.92);
  margin-bottom: var(--sp-md);
}
.hero__sub strong { color: var(--c-gold-light); font-weight: 600; }
.hero__sub--secondary {
  font-size: clamp(0.92rem, 1.3vw, 1.02rem);
  line-height: 1.7;
  color: rgba(248, 244, 234, 0.78);
  margin-bottom: var(--sp-lg);
}

.hero__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}
.hero__features li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(248, 244, 234, 0.88);
}
.hero__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c-gold-light);
  font-weight: 700;
}
@media (max-width: 720px) {
  .hero__features { grid-template-columns: 1fr; }
}

.proofs {
  display: flex; flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: var(--sp-lg);
}
.proof-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--c-cream);
  font-size: 0.82rem; font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: var(--r-full);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.proof-pill__icon { color: var(--c-gold-light); font-size: 0.95rem; }

.hero__time {
  font-family: var(--f-mono);
  font-size: 0.78rem; letter-spacing: 0.05em;
  color: rgba(248, 244, 234, 0.6);
  margin-top: var(--sp-md);
}

.hero__cta { display: flex; flex-wrap: wrap; gap: var(--sp-md); margin-top: var(--sp-lg); }
.next-step-cta { display: flex; flex-wrap: wrap; gap: var(--sp-md); justify-content: center; margin-top: var(--sp-xl); }
@media (max-width: 720px) {
  .next-step-cta { flex-direction: column; }
  .next-step-cta .btn { width: 100%; }
}

/* HERO VISUAL — image composition */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 540px;
  width: 100%;
  margin-left: auto;
}
.hero__visual::before {
  content: "";
  position: absolute;
  top: -16px; left: -16px;
  width: 100%; height: 100%;
  border: 2px solid var(--c-gold);
  border-radius: var(--r-lg);
  z-index: 0;
  opacity: 0.6;
}
.hero__visual-main {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.hero__visual-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}
.hero__visual-overlay {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 44%; aspect-ratio: 1 / 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  z-index: 2;
  box-shadow: var(--sh-lg);
  border: 4px solid var(--c-cream);
}
.hero__visual-overlay img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__visual-badge {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 3;
  background: var(--c-cream);
  color: var(--c-charcoal);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.78rem; font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--r-full);
  box-shadow: var(--sh-sm);
  display: flex; align-items: center; gap: 0.4rem;
}
.hero__visual-badge strong { color: var(--c-gold-deep); font-style: normal; font-family: var(--f-body); font-weight: 700; }


/* ═══════════════════════════════════════════════════════
   2. PAIN AGITATION
   ═══════════════════════════════════════════════════════ */
.pain-list {
  list-style: none; padding: 0;
  margin: 0 auto; max-width: 720px;
  display: flex; flex-direction: column; gap: 1.1rem;
  text-align: left;
}
.pain-list li {
  position: relative;
  padding: 0.4rem 0 0.4rem 3rem;
  font-size: 1.05rem; line-height: 1.65;
}
.pain-list li::before {
  content: "✗";
  position: absolute;
  left: 0; top: 0.15rem;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--c-cream-warm);
  border: 1.5px solid var(--c-saffron);
  color: var(--c-saffron);
  font-weight: 700; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.pain-list li strong { display: block; color: var(--c-charcoal); margin-bottom: 0.15rem; font-weight: 700; font-size: 1.08rem; }
.pain-list li span { color: var(--c-text-mid); font-size: 0.98rem; }

/* Simple variant — single-line bullets, positive (checkmark) tone for "when it's recommended" lists */
.pain-list--simple li strong { display: inline; font-size: 1.05rem; color: var(--c-charcoal); margin-bottom: 0; }
.pain-list--simple li::before {
  content: "✓";
  background: var(--c-cream-warm);
  border-color: var(--c-leaf);
  color: var(--c-leaf-deep);
}

.pain-transition {
  max-width: 720px; margin: var(--sp-2xl) auto 0;
  text-align: center;
  font-family: var(--f-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--c-charcoal);
  line-height: 1.5;
  padding: var(--sp-xl) var(--sp-md);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.pain-transition strong { color: var(--c-saffron); font-style: normal; font-family: var(--f-body); font-weight: 700; }


/* ═══════════════════════════════════════════════════════
   3. BEFORE / AFTER
   ═══════════════════════════════════════════════════════ */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  max-width: 980px; margin: 0 auto;
  position: relative;
}
.compare::before {
  content: "→";
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: var(--c-gold);
  color: var(--c-charcoal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 700;
  box-shadow: var(--sh-gold);
  z-index: 2;
}
.compare-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  box-shadow: var(--sh-md);
  border-top: 4px solid var(--c-text-mute);
}
.compare-card--after {
  background: linear-gradient(165deg, var(--c-charcoal) 0%, var(--c-charcoal-mid) 100%);
  color: var(--c-cream);
  border-top-color: var(--c-gold);
  position: relative; overflow: hidden;
}
.compare-card--after::before {
  content: "";
  position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.compare-card h3 {
  font-style: italic; font-size: 1.4rem;
  margin-bottom: var(--sp-lg);
  padding-bottom: var(--sp-md);
  border-bottom: 1px solid var(--c-line);
}
.compare-card--after h3 { color: var(--c-gold-light); border-bottom-color: rgba(212, 175, 55, 0.3); }
.compare-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.85rem; }
.compare-card li {
  padding-left: 1.75rem; position: relative;
  font-size: 0.98rem; line-height: 1.55;
}
.compare-card li::before {
  content: "·"; position: absolute; left: 0; top: -0.1rem;
  font-size: 1.6rem; color: var(--c-text-mute); font-weight: 700;
}
.compare-card--after li::before {
  content: "✓"; color: var(--c-gold); font-size: 1rem; top: 0.05rem; font-weight: 700;
}
.compare-card--after li em { color: var(--c-gold-light); font-style: italic; }


/* ═══════════════════════════════════════════════════════
   4. PROCESS — 5 phase + image accent
   ═══════════════════════════════════════════════════════ */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: var(--sp-lg);
  margin-top: var(--sp-xl);
}
.process-card {
  background: #fff;
  border-radius: var(--r-md);
  padding: var(--sp-xl) var(--sp-lg);
  box-shadow: var(--sh-sm);
  border-left: 3px solid var(--c-gold);
  position: relative;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.process-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.process-card__num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 2.4rem; font-weight: 500;
  color: var(--c-gold);
  line-height: 1;
  margin-bottom: var(--sp-sm);
}
.process-card h4 { color: var(--c-charcoal); margin-bottom: 0.6rem; font-size: 1.1rem; }
.process-card p { font-size: 0.94rem; color: var(--c-text-mid); margin: 0; line-height: 1.6; }
.process-card__time {
  display: inline-block; margin-top: var(--sp-md);
  font-family: var(--f-mono);
  font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--c-saffron);
  padding: 0.2rem 0.6rem;
  background: rgba(204, 102, 28, 0.08);
  border-radius: var(--r-sm);
}

.highlight-box {
  max-width: 820px; margin: var(--sp-2xl) auto 0;
  text-align: center;
  padding: var(--sp-xl) var(--sp-lg);
  background: var(--c-charcoal);
  color: var(--c-cream);
  border-radius: var(--r-lg);
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.5;
  position: relative; overflow: hidden;
}
.highlight-box::before {
  content: "❝";
  position: absolute; top: 0; left: var(--sp-lg);
  font-size: 4rem; color: var(--c-gold);
  line-height: 1; opacity: 0.5;
}
.highlight-box strong { color: var(--c-gold-light); font-weight: 600; }


/* ═══════════════════════════════════════════════════════
   5. VALUE STACK + PRICING
   ═══════════════════════════════════════════════════════ */
.value {
  max-width: 720px; margin: 0 auto;
  background: #fff;
  border-radius: var(--r-lg);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--sh-md);
  border-top: 4px solid var(--c-gold);
  position: relative;
}
.value-list { list-style: none; padding: 0; margin: 0; }
.value-list li {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-md);
  padding: var(--sp-md) 0;
  border-bottom: 1px dashed var(--c-line);
  font-size: 0.98rem;
}
.value-list li:last-child { border-bottom: none; }
.value-list li::before {
  content: "✓"; color: var(--c-leaf); font-weight: 700;
  margin-right: 0.5rem; flex-shrink: 0;
}
.value-list li > span:first-of-type { flex: 1; color: var(--c-text); }

/* Detailed variant — longer text with bolded leading clause */
.value-list--detailed li {
  align-items: flex-start;
  padding: var(--sp-md) 0;
}
.value-list--detailed li::before {
  margin-top: 0.25rem;
}
.value-list--detailed li > span:first-of-type {
  line-height: 1.55;
  font-size: 0.96rem;
}
.value-list--detailed li > span:first-of-type strong {
  color: var(--c-charcoal);
  font-weight: 700;
}
.value-tag {
  font-family: var(--f-mono);
  font-size: 0.74rem; letter-spacing: 0.05em;
  color: var(--c-text-mute);
  white-space: nowrap;
}

.value-anchor {
  margin-top: var(--sp-xl);
  padding: var(--sp-md) 0;
  text-align: center;
  border-top: 2px solid var(--c-charcoal);
}
.value-anchor__label {
  font-family: var(--f-mono);
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-text-mute);
  display: block; margin-bottom: 0.25rem;
}
.value-anchor__price {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 3vw, 1.95rem);
  font-weight: 600; color: var(--c-text-mute);
  text-decoration: line-through;
  text-decoration-color: var(--c-saffron);
  text-decoration-thickness: 2px;
}

.pricing-grid {
  margin-top: var(--sp-xl);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}
.pricing-card {
  background: linear-gradient(165deg, var(--c-charcoal) 0%, var(--c-charcoal-mid) 100%);
  color: var(--c-cream);
  border-radius: var(--r-md);
  padding: var(--sp-lg) var(--sp-md);
  text-align: center;
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.25);
  transition: transform var(--t-mid);
}
.pricing-card:hover { transform: translateY(-3px); }
.pricing-card--featured {
  background: linear-gradient(165deg, var(--c-gold) 0%, var(--c-gold-deep) 100%);
  color: var(--c-charcoal);
  border-color: var(--c-gold-light);
  transform: scale(1.04);
  box-shadow: var(--sh-gold);
}
.pricing-card--featured:hover { transform: scale(1.04) translateY(-3px); }
.pricing-card__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--c-charcoal-mid);
  color: var(--c-gold-light);
  font-family: var(--f-mono);
  font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: var(--r-full);
  white-space: nowrap;
  border: 1px solid var(--c-gold);
}
.pricing-card--featured .pricing-card__badge {
  background: var(--c-saffron);
  color: #fff;
  border-color: var(--c-saffron-deep);
}
.pricing-card__duration {
  font-family: var(--f-mono);
  font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase;
  opacity: 0.78;
  margin-bottom: 0.4rem;
}
.pricing-card__price {
  font-family: var(--f-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 600; line-height: 1;
  margin-bottom: 0.3rem;
}
.pricing-card__price em { font-style: italic; font-weight: 500; }
.pricing-card__note { font-size: 0.8rem; opacity: 0.72; }

.value-explainer {
  max-width: 660px; margin: var(--sp-xl) auto 0;
  text-align: center; font-size: 0.94rem;
  color: var(--c-text-mid); line-height: 1.7;
}

/* Decorative potli image accent */
.value-accent {
  position: absolute;
  top: -36px; right: -36px;
  width: 120px; height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--c-cream);
  box-shadow: var(--sh-md);
  z-index: 2;
}
.value-accent img { width: 100%; height: 100%; object-fit: cover; }


/* ═══════════════════════════════════════════════════════
   6. GUARANTEE
   ═══════════════════════════════════════════════════════ */
.guarantee {
  max-width: 820px; margin: 0 auto;
  background: linear-gradient(135deg, #fff 0%, var(--c-cream) 100%);
  border: 2px solid var(--c-leaf);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 24px 64px rgba(91, 122, 74, 0.18);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-xl);
  align-items: center;
}
.guarantee__seal {
  width: 140px; height: 140px;
  background: radial-gradient(circle, var(--c-leaf) 0%, var(--c-leaf-deep) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; text-align: center;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.95rem; font-weight: 600;
  line-height: 1.2; flex-shrink: 0;
  box-shadow: 0 14px 36px rgba(91, 122, 74, 0.36);
  position: relative;
  letter-spacing: 0.02em;
}
.guarantee__seal::before {
  content: "";
  position: absolute; inset: 6px;
  border: 1.5px dashed rgba(255, 255, 255, 0.45);
  border-radius: 50%;
}
.guarantee__seal strong { display: block; font-size: 1.4rem; font-style: normal; font-family: var(--f-body); font-weight: 800; margin-bottom: 0.1rem; }
.guarantee__body h3 { color: var(--c-leaf-deep); font-size: 1.55rem; font-style: italic; margin-bottom: var(--sp-sm); }
.guarantee__body p { font-size: 1rem; color: var(--c-text-mid); line-height: 1.7; margin: 0 0 var(--sp-sm); }
.guarantee__body p:last-child { margin: 0; font-size: 0.86rem; color: var(--c-text-mute); }


/* ═══════════════════════════════════════════════════════
   7. SOCIAL PROOF BAND
   ═══════════════════════════════════════════════════════ */
.proof-band {
  max-width: 980px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--sp-2xl);
  align-items: center;
}
.proof-band__stat { text-align: center; }
.proof-band__num {
  font-family: var(--f-display);
  font-size: clamp(4rem, 9vw, 6.5rem);
  font-weight: 600; line-height: 0.95;
  color: var(--c-gold);
  display: block; margin-bottom: var(--sp-sm);
}
.proof-band__num em { font-style: italic; }
.proof-band__stars {
  font-size: 1.4rem; color: var(--c-gold);
  letter-spacing: 0.15em; margin-bottom: var(--sp-sm);
}
.proof-band__caption {
  font-family: var(--f-mono);
  font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(248, 244, 234, 0.62);
}
.proof-band blockquote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.55;
  color: var(--c-cream);
  margin: 0;
  padding: var(--sp-lg) 0 var(--sp-lg) var(--sp-xl);
  border-left: 2px solid var(--c-gold);
}
.proof-band cite {
  display: block; margin-top: var(--sp-md);
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 0.76rem; letter-spacing: 0.08em;
  color: rgba(248, 244, 234, 0.62);
}

.stats-bar {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: var(--sp-xl) var(--sp-2xl);
  margin-top: var(--sp-2xl);
  padding-top: var(--sp-xl);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}
.stat {
  text-align: center;
  font-family: var(--f-mono);
  font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(248, 244, 234, 0.62);
}
.stat strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1.85rem; font-weight: 600;
  color: var(--c-gold);
  margin-bottom: 0.2rem;
  font-style: italic;
}


/* ═══════════════════════════════════════════════════════
   8. REVIEWS
   ═══════════════════════════════════════════════════════ */
.reviews-summary {
  display: flex; align-items: center; justify-content: center; gap: 0.7rem;
  margin: var(--sp-md) auto var(--sp-xl);
}
.reviews-summary__score { font-family: var(--f-display); font-size: 1.5rem; font-weight: 700; color: var(--c-charcoal); }
.reviews-summary__stars { color: var(--c-gold); font-size: 1.1rem; letter-spacing: 0.1em; }
.reviews-summary__count { font-family: var(--f-mono); font-size: 0.8rem; color: var(--c-text-mute); letter-spacing: 0.05em; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: var(--sp-lg);
  max-width: 1100px; margin: 0 auto;
}
.review-card {
  background: #fff;
  border-radius: var(--r-md);
  padding: var(--sp-xl);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--c-line);
  display: flex; flex-direction: column; gap: var(--sp-md);
  position: relative;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.review-card__head { display: flex; align-items: center; gap: 0.8rem; }
.review-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-deep) 100%);
  color: var(--c-charcoal);
  font-family: var(--f-display);
  font-size: 1.2rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-card__info { flex: 1; min-width: 0; }
.review-card__name { font-weight: 600; color: var(--c-charcoal); font-size: 0.94rem; margin: 0; }
.review-card__meta {
  display: flex; align-items: center; gap: 0.4rem;
  font-family: var(--f-mono);
  font-size: 0.7rem; color: var(--c-text-mute); letter-spacing: 0.04em;
}
.review-card__stars { color: var(--c-gold); font-size: 0.94rem; letter-spacing: 0.08em; }
.review-card__text {
  font-size: 0.94rem; color: var(--c-text-mid);
  line-height: 1.65; margin: 0; flex: 1;
}
.review-card__text::before {
  content: "❝";
  font-family: var(--f-display);
  font-size: 2rem; color: var(--c-gold);
  line-height: 0;
  position: relative; top: 0.4rem;
  margin-right: 0.2rem; opacity: 0.6;
}

.reviews-cta { display: flex; flex-wrap: wrap; gap: var(--sp-md); justify-content: center; margin-top: var(--sp-2xl); }

/* Aggregate-first reviews block: 2 valódi Google Maps cards */
.reviews-locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: var(--sp-lg);
  max-width: 900px;
  margin: 0 auto;
}
.reviews-location-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: #fff;
  border: 1px solid var(--c-line);
  border-top: 4px solid var(--c-gold);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  text-decoration: none;
  color: var(--c-text);
  font-weight: 400;
  box-shadow: var(--sh-sm);
  transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-fast);
}
.reviews-location-card:hover,
.reviews-location-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: var(--c-gold);
  color: var(--c-text);
}
.reviews-location-card__badge {
  position: absolute;
  top: var(--sp-md);
  right: var(--sp-md);
  background: var(--c-charcoal);
  color: var(--c-gold-light);
  font-family: var(--f-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.6rem;
  border-radius: var(--r-full);
}
.reviews-location-card__name {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--c-charcoal);
  margin: 0 0 0.2rem;
  padding-right: 4.5rem;
}
.reviews-location-card__addr {
  font-size: 0.88rem;
  color: var(--c-text-mute);
  margin-bottom: var(--sp-sm);
}
.reviews-location-card__count {
  font-size: 1.05rem;
  color: var(--c-text);
  margin: 0.4rem 0 var(--sp-md);
}
.reviews-location-card__count strong {
  font-family: var(--f-display);
  font-size: 1.55rem;
  color: var(--c-gold-deep);
  margin-right: 0.3rem;
  font-weight: 700;
}
.reviews-location-card__cta {
  margin-top: auto;
  font-family: var(--f-mono);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--c-saffron);
  text-transform: uppercase;
}
.reviews-location-card__cta span {
  display: inline-block;
  transition: transform var(--t-fast);
}
.reviews-location-card:hover .reviews-location-card__cta span {
  transform: translateX(4px);
}

.reviews-disclaimer {
  max-width: 720px;
  margin: var(--sp-xl) auto 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--c-text-mute);
  line-height: 1.6;
  font-style: italic;
}


/* ═══════════════════════════════════════════════════════
   9. FOUNDER
   ═══════════════════════════════════════════════════════ */
.founder {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--sp-2xl);
  align-items: center;
  max-width: 920px; margin: 0 auto;
  background: #fff;
  border-radius: var(--r-lg);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--sh-md);
  border-left: 4px solid var(--c-gold);
}
.founder__photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  aspect-ratio: 1 / 1;
}
.founder__photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.founder__body h3 { color: var(--c-charcoal); margin-bottom: 0.3rem; font-size: 1.55rem; font-style: italic; }
.founder__role {
  font-family: var(--f-mono);
  font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--c-gold-deep);
  margin: 0 0 var(--sp-md);
}
.founder__quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.1rem; color: var(--c-text-mid);
  line-height: 1.55;
  border-left: 2px solid var(--c-gold);
  padding-left: var(--sp-md);
  margin: 0 0 var(--sp-lg);
}
.founder__intro {
  color: var(--c-text-mid);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0 0 var(--sp-md);
}
.founder__intro strong { color: var(--c-charcoal); font-weight: 600; }
.founder__facts {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.5rem;
}
.founder__facts li {
  font-size: 0.92rem; color: var(--c-text);
  padding-left: 1.4rem; position: relative;
  line-height: 1.45;
}
.founder__facts li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--c-gold-deep); font-weight: 700;
}
.founder__facts strong { color: var(--c-charcoal); font-weight: 700; }


/* ═══════════════════════════════════════════════════════
   10. FAQ
   ═══════════════════════════════════════════════════════ */
.faq-grid {
  max-width: 880px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: var(--sp-md);
}
.faq-item {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.faq-item[open] { border-color: var(--c-gold); box-shadow: var(--sh-sm); }
.faq-item summary {
  display: flex; align-items: center; gap: var(--sp-md);
  padding: var(--sp-lg) var(--sp-xl);
  cursor: pointer;
  list-style: none;
  font-weight: 600; font-size: 1.02rem;
  color: var(--c-charcoal);
  transition: color var(--t-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--c-gold-deep); }
.faq-item summary:focus-visible { outline: 3px solid var(--c-gold-light); outline-offset: 2px; }
.faq-item summary::after {
  content: "+";
  margin-left: auto;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-cream); border-radius: 50%;
  color: var(--c-gold-deep);
  font-size: 1.3rem; font-weight: 400;
  transition: transform var(--t-mid), background var(--t-fast), color var(--t-fast);
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--c-gold);
  color: #fff;
}
.faq-answer {
  padding: 0 var(--sp-xl) var(--sp-xl);
  color: var(--c-text-mid);
  line-height: 1.7; font-size: 0.95rem;
}
.faq-answer p { margin: 0 0 var(--sp-md); }
.faq-answer p:last-child { margin: 0; }


/* ═══════════════════════════════════════════════════════
   11. LEAD FORM
   ═══════════════════════════════════════════════════════ */
.form-wrap {
  max-width: 580px; margin: 0 auto;
  background: rgba(248, 244, 234, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  position: relative;
}
.form-wrap__icon {
  position: absolute; top: 0; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: var(--c-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-charcoal); font-size: 1.1rem;
  box-shadow: var(--sh-gold);
  z-index: 2;
}
.form-wrap h3 {
  text-align: center;
  color: var(--c-cream);
  font-size: 1.55rem; font-style: italic;
  margin-top: var(--sp-md);
  margin-bottom: var(--sp-md);
}
.form-wrap > p {
  text-align: center;
  font-size: 0.93rem;
  color: rgba(248, 244, 234, 0.78);
  margin-bottom: var(--sp-lg);
}

.lead-form { display: flex; flex-direction: column; gap: var(--sp-md); }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: var(--r-md);
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: rgba(248, 244, 234, 0.95);
  color: var(--c-charcoal);
  font-family: var(--f-body);
  font-size: 0.98rem;
  min-height: 48px;
  transition: outline-color var(--t-fast), background var(--t-fast);
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  outline: 2px solid var(--c-gold);
  outline-offset: 1px;
  background: #fff;
}
.lead-form input:focus-visible, .lead-form select:focus-visible {
  outline: 3px solid var(--c-gold);
  outline-offset: 1px;
}
.lead-form button {
  background: linear-gradient(135deg, var(--c-saffron) 0%, var(--c-saffron-deep) 100%);
  color: #fff; border: none;
  border-radius: var(--r-full);
  padding: 1.1rem;
  font-family: var(--f-mono);
  font-size: 1rem; font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: var(--sh-saffron);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  margin-top: var(--sp-sm);
  min-height: 56px;
}
.lead-form button:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(204, 102, 28, 0.42); }
.lead-form button:active { transform: translateY(0) scale(0.98); transition-duration: 80ms; }
.lead-form button:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.lead-form .honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.form-gdpr {
  font-size: 0.78rem;
  color: rgba(248, 244, 234, 0.6);
  text-align: center;
  margin-top: var(--sp-md);
}
.form-gdpr a { color: var(--c-gold-light); }

.form-success {
  display: none;
  background: rgba(91, 122, 74, 0.18);
  border: 1px solid var(--c-leaf);
  border-radius: var(--r-md);
  padding: var(--sp-lg);
  text-align: center;
  color: var(--c-cream);
  margin-top: var(--sp-md);
}
.form-success.is-visible { display: block; }
.form-success__icon {
  font-size: 2rem; color: var(--c-leaf);
  display: block; margin-bottom: var(--sp-sm);
}
.form-success h4 { color: var(--c-cream); margin-bottom: 0.4rem; font-size: 1.2rem; }
.form-success p { font-size: 0.9rem; opacity: 0.9; margin: 0; }

.form-error {
  display: none;
  background: rgba(204, 102, 28, 0.18);
  border: 1px solid var(--c-saffron);
  border-radius: var(--r-md);
  padding: var(--sp-md);
  color: var(--c-cream);
  margin-top: var(--sp-md);
  font-size: 0.9rem;
  text-align: center;
}
.form-error.is-visible { display: block; }

.form-bullets {
  list-style: none;
  padding: 0;
  margin: var(--sp-md) auto 0;
  max-width: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1.2rem;
  text-align: left;
}
.form-bullets li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(248, 244, 234, 0.85);
}
.form-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c-gold-light);
  font-weight: 700;
}
@media (max-width: 720px) {
  .form-bullets { grid-template-columns: 1fr; }
}

.amelia-card {
  max-width: 580px; margin: var(--sp-2xl) auto 0;
  background: #fff;
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  box-shadow: var(--sh-md);
  text-align: center;
  border-top: 4px solid var(--c-gold);
}
.amelia-card h4 { color: var(--c-charcoal); font-size: 1.25rem; margin-bottom: 0.4rem; }
.amelia-card p { font-size: 0.94rem; color: var(--c-text-mid); margin-bottom: var(--sp-lg); }


/* ═══════════════════════════════════════════════════════
   12. SALONS
   ═══════════════════════════════════════════════════════ */
.salons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  max-width: 920px; margin: 0 auto;
}
.salon-card {
  background: #fff;
  border-radius: var(--r-md);
  padding: var(--sp-xl);
  box-shadow: var(--sh-sm);
  border-top: 3px solid var(--c-gold);
}
.salon-card h4 { color: var(--c-charcoal); font-size: 1.35rem; font-style: italic; margin-bottom: 0.4rem; }
.salon-card__addr {
  font-family: var(--f-mono);
  font-size: 0.86rem; color: var(--c-text-mid);
  margin-bottom: var(--sp-md);
}
.salon-card__phone {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.25rem; font-weight: 600;
  color: var(--c-gold-deep);
  text-decoration: none;
  padding: 0.5rem 0;
  min-height: 44px;
  margin-bottom: 0.25rem;
}
.salon-card__phone:hover { color: var(--c-saffron); }
.salon-card__email {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 0.84rem;
  color: var(--c-text-mute);
  text-decoration: none;
  padding: 0.4rem 0;
  min-height: 36px;
}
.salon-card__email:hover { color: var(--c-gold-deep); }
.salon-card__maps {
  display: inline-block;
  margin-top: var(--sp-md);
  padding: 0.4rem 0.8rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--c-gold);
  border-radius: var(--r-full);
  font-family: var(--f-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--c-gold-deep);
  text-decoration: none;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.salon-card__maps:hover { background: var(--c-gold); border-color: var(--c-gold-deep); color: var(--c-charcoal); }


/* ═══════════════════════════════════════════════════════
   13. CLOSING CTA
   ═══════════════════════════════════════════════════════ */
.closing { text-align: center; max-width: 720px; margin: 0 auto; }
.closing h2 { font-style: italic; }
.closing__bullets {
  list-style: none; padding: 0;
  margin: var(--sp-xl) auto;
  max-width: 480px;
  display: flex; flex-direction: column;
  gap: 0.7rem;
  text-align: left;
}
.closing__bullets li {
  position: relative; padding-left: 2rem;
  font-size: 1rem; color: rgba(248, 244, 234, 0.92);
  line-height: 1.6;
}
.closing__bullets li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 22px; height: 22px;
  background: var(--c-gold);
  color: var(--c-charcoal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.78rem;
}
.closing__bullets strong { color: var(--c-gold-light); font-weight: 600; }


/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  background: var(--c-charcoal);
  color: rgba(248, 244, 234, 0.78);
  padding: clamp(2.5rem, 5vw, 4rem) 0 var(--sp-md);
  border-top: 1px solid rgba(212, 175, 55, 0.18);
}
.footer__inner {
  max-width: 1180px; margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--sp-2xl);
  padding-bottom: var(--sp-2xl);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}
.footer__brand img {
  height: 48px; margin-bottom: var(--sp-md);
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.footer__tagline {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--c-gold-light);
  line-height: 1.5;
  margin: 0 0 var(--sp-md);
}
.footer__brand p {
  font-size: 0.9rem;
  color: rgba(248, 244, 234, 0.6);
  line-height: 1.6;
}

.footer__col h5 {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin: 0 0 var(--sp-md);
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col a {
  color: rgba(248, 244, 234, 0.78);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color var(--t-fast);
}
.footer__col a:hover { color: var(--c-gold-light); }

.footer__col address {
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(248, 244, 234, 0.78);
}
.footer__col address strong { color: var(--c-cream); display: block; font-weight: 600; margin-bottom: 0.3rem; }

.footer__social { display: flex; gap: 0.8rem; margin-top: var(--sp-md); }
.footer__social a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  color: var(--c-gold-light);
  text-decoration: none;
  transition: background var(--t-fast), transform var(--t-fast);
}
.footer__social a:hover { background: var(--c-gold); color: var(--c-charcoal); transform: translateY(-2px); }
.footer__social svg { width: 18px; height: 18px; }

.footer__bottom {
  padding-top: var(--sp-md);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--sp-md);
  font-family: var(--f-mono);
  font-size: 0.74rem; letter-spacing: 0.05em;
  color: rgba(248, 244, 234, 0.55);
}
.footer__bottom a { color: rgba(248, 244, 234, 0.78); text-decoration: none; }
.footer__bottom a:hover { color: var(--c-gold-light); }
.footer__legal { display: flex; gap: var(--sp-md); flex-wrap: wrap; }


/* ═══════════════════════════════════════════════════════
   STICKY MOBILE CTA BAR
   ═══════════════════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: linear-gradient(180deg, rgba(27, 20, 16, 0.92) 0%, var(--c-charcoal) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(212, 175, 55, 0.28);
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  display: none;
  gap: 0.6rem;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity var(--t-mid), transform var(--t-mid);
}
.sticky-cta.is-visible { opacity: 1; transform: translateY(0); }
.sticky-cta a {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 0.5rem;
  border-radius: var(--r-full);
  font-family: var(--f-body);
  font-weight: 600; font-size: 0.92rem;
  text-decoration: none;
  min-height: 48px;
  letter-spacing: 0.01em;
}
.sticky-cta__call {
  background: rgba(248, 244, 234, 0.12);
  color: var(--c-cream);
  border: 1px solid rgba(212, 175, 55, 0.4);
}
.sticky-cta__form {
  background: linear-gradient(135deg, var(--c-saffron) 0%, var(--c-saffron-deep) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(204, 102, 28, 0.4);
}


/* ═══════════════════════════════════════════════════════
   COOKIE BANNER (minimalist consent)
   ═══════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: var(--sp-md); left: var(--sp-md); right: var(--sp-md);
  max-width: 460px;
  z-index: 999;
  background: var(--c-charcoal);
  color: var(--c-cream);
  border-radius: var(--r-md);
  padding: var(--sp-lg);
  box-shadow: var(--sh-lg);
  border: 1px solid rgba(212, 175, 55, 0.4);
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { font-size: 0.84rem; line-height: 1.55; margin-bottom: var(--sp-md); }
.cookie-banner__actions { display: flex; gap: var(--sp-sm); }
.cookie-banner__actions button {
  flex: 1; padding: 0.7rem 1rem;
  border-radius: var(--r-md);
  font-family: var(--f-body); font-size: 0.85rem; font-weight: 600;
  border: none; cursor: pointer;
  transition: transform var(--t-fast), background var(--t-fast);
}
.cookie-banner__accept {
  background: var(--c-gold); color: var(--c-charcoal);
}
.cookie-banner__accept:hover { background: var(--c-gold-light); transform: translateY(-1px); }
.cookie-banner__decline {
  background: transparent; color: var(--c-cream);
  border: 1px solid rgba(248, 244, 234, 0.3);
}
.cookie-banner__decline:hover { background: rgba(248, 244, 234, 0.1); }


/* ═══════════════════════════════════════════════════════
   ANIMATIONS — fade-up reveal
   ═══════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--t-slow), transform var(--t-slow);
  will-change: opacity, transform;
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-up { opacity: 1; transform: none; }
  .urgency, .urgency__dot { animation: none; }
  .btn:hover, .process-card:hover, .review-card:hover, .pricing-card:hover { transform: none; }
}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE — mobile-first breakpoints
   ═══════════════════════════════════════════════════════ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--sp-2xl); }
  .hero__visual { order: -1; max-width: 480px; margin: 0 auto; }
  .hero__visual::before { display: none; }
  .hero__cta { justify-content: center; }
  .hero__text { text-align: center; }
  .accent-bar { margin: var(--sp-md) auto var(--sp-lg); }
  .proofs { justify-content: center; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: var(--sp-xl); }
}

@media (max-width: 900px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 88px; }
}

@media (max-width: 760px) {
  .compare { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .compare::before { display: none; }
  .proof-band { grid-template-columns: 1fr; gap: var(--sp-xl); text-align: center; }
  .proof-band blockquote { border-left: none; border-top: 2px solid var(--c-gold); padding: var(--sp-lg) 0 0; text-align: left; }
  .founder { grid-template-columns: 1fr; gap: var(--sp-xl); text-align: center; padding: var(--sp-xl); }
  .founder__photo { max-width: 200px; margin: 0 auto; }
  .founder__quote { border-left: none; padding-left: 0; border-top: 2px solid var(--c-gold); padding-top: var(--sp-md); text-align: left; }
  .founder__facts { grid-template-columns: 1fr; text-align: left; }
  .guarantee { grid-template-columns: 1fr; text-align: center; padding: var(--sp-xl); }
  .guarantee__seal { margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-3px); }
  .salons { grid-template-columns: 1fr; }
  .stats-bar { gap: var(--sp-md) var(--sp-lg); }
  .stat strong { font-size: 1.5rem; }
  .footer__top { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .value-accent { width: 88px; height: 88px; top: -22px; right: -22px; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .section { padding: clamp(2.5rem, 7vw, 4rem) 0; }
  .pain-list li { padding-left: 2.5rem; }
  .pain-list li::before { width: 24px; height: 24px; }
  .cta-row { flex-direction: column; }
  .cta-row .btn { width: 100%; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .process { gap: var(--sp-md); }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ===================================================================
   TANFOLYAMOK ALOLDAL — append-only CSS extension
   Course catalog landing page (Hormozi-tier grid + matcher + dates)
   =================================================================== */

/* ─────────────── 4. OUTCOME GRID (#4) ─────────────── */
.outcome-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
}
@media (min-width: 641px) {
  .outcome-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 901px) {
  .outcome-grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-xl); }
}

.outcome-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
}
@media (hover: hover) {
  .outcome-card:hover {
    transform: translateY(-4px);
    border-color: var(--c-gold);
    box-shadow: var(--sh-md);
  }
}
.outcome-card strong {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--c-charcoal);
  line-height: 1.2;
}
.outcome-card span {
  color: var(--c-text-mid);
  font-size: 0.97rem;
  line-height: 1.65;
}

/* ─────────────── 5. COURSE-MATCHER WIDGET (#5) ─────────────── */
.matcher {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
  max-width: 880px;
  margin: 0 auto;
  box-shadow: var(--sh-sm);
}

.matcher__group {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.matcher__legend {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--c-charcoal);
  padding: 0;
  margin-bottom: var(--sp-sm);
}

.matcher__options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm) var(--sp-md);
}

.matcher__option {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  background: var(--c-cream);
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-full);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-text);
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast), transform var(--t-fast);
  user-select: none;
}
.matcher__option:hover { border-color: var(--c-gold); color: var(--c-gold-deep); }
.matcher__option:active { transform: scale(0.97); }
.matcher__option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 1px; height: 1px;
  pointer-events: none;
}
.matcher__option:has(input:checked),
.matcher__option--checked {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-charcoal);
  font-weight: 600;
}
.matcher__option:has(input:focus-visible),
.matcher__option--focused {
  outline: 2px solid var(--c-gold-deep);
  outline-offset: 3px;
}

.matcher__hint {
  margin: 0;
  padding: var(--sp-md) var(--sp-lg);
  background: var(--c-cream);
  border-left: 3px solid var(--c-gold);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 0.95rem;
  color: var(--c-text-mid);
  line-height: 1.55;
}
.matcher__hint--recommended {
  background: rgba(212, 175, 55, 0.12);
  border-left-color: var(--c-gold-deep);
  color: var(--c-charcoal);
}
.matcher__hint--recommended strong { color: var(--c-saffron-deep); }

/* ─────────────── 6. COURSE TIER GRID (#6) ─────────────── */
/* Bundle MINDIG full-width (saját sor), 3 modul külön sorban.
   Belső layout a bundle-en csak 901+ desktopon kapja meg a 2-col arányt. */
.course-tier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
  align-items: stretch;
}
@media (min-width: 641px) {
  .course-tier-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--sp-lg);
  }
  .course-card-tier--bundle { grid-column: 1 / -1; }
}
@media (min-width: 901px) {
  .course-tier-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--sp-xl);
  }
  .course-card-tier--bundle { grid-column: 1 / -1; }
}

.course-tier-grid__note {
  text-align: center;
  margin-top: var(--sp-xl);
  font-size: 0.97rem;
  color: var(--c-text-mid);
  font-style: italic;
}

/* Course card — base */
.course-card-tier {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  transition:
    transform var(--t-mid),
    box-shadow var(--t-mid),
    opacity var(--t-mid),
    border-color var(--t-mid);
}
@media (hover: hover) {
  .course-card-tier:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-md);
    border-color: var(--c-gold);
  }
}

.course-card-tier__badge {
  display: inline-block;
  align-self: flex-start;
  padding: 5px 14px;
  background: var(--c-gold);
  color: var(--c-charcoal);
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--r-full);
}
.course-card-tier__badge--neutral {
  background: transparent;
  color: var(--c-text-mute);
  border: 1px solid var(--c-line);
}

.course-card-tier__title {
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  margin: var(--sp-sm) 0 0;
  color: var(--c-charcoal);
}

.course-card-tier__sub {
  margin: 0;
  font-size: 0.95rem;
  color: var(--c-text-mid);
  font-style: italic;
  line-height: 1.55;
}

.course-card-tier__duration {
  font-family: var(--f-mono);
  font-size: 0.85rem;
  color: var(--c-gold-deep);
  letter-spacing: 0.04em;
  padding-bottom: var(--sp-md);
  border-bottom: 1px dashed var(--c-line);
}

.course-card-tier__price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
.course-card-tier__price em {
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--c-saffron-deep);
  line-height: 1;
}
.course-card-tier__anchor {
  font-size: 0.85rem;
  color: var(--c-text-mute);
  text-decoration: line-through;
}
.course-card-tier__save {
  font-size: 0.82rem;
  color: var(--c-leaf-deep);
  font-weight: 600;
  font-family: var(--f-mono);
}

.course-card-tier__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}
.course-card-tier__list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--c-text);
}
.course-card-tier__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c-gold-deep);
  font-weight: 700;
}

.course-card-tier__details {
  font-size: 0.9rem;
  color: var(--c-text-mid);
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 4px;
  margin-top: auto;
}
.course-card-tier__details:hover { color: var(--c-saffron); }

.course-card-tier__cta {
  margin-top: var(--sp-md);
  align-self: stretch;
  text-align: center;
}

/* Bundle (featured) — visually dominant */
.course-card-tier--bundle {
  background: linear-gradient(135deg, var(--c-charcoal) 0%, var(--c-charcoal-mid) 100%);
  border: 2px solid var(--c-gold);
  color: var(--c-cream);
  box-shadow: var(--sh-gold);
  overflow: hidden;
  padding: clamp(1.75rem, 4vw, 2.75rem);
}
.course-card-tier--bundle::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60%;
  height: 180%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.course-card-tier--bundle > * { position: relative; z-index: 1; }
.course-card-tier--bundle .course-card-tier__title { color: var(--c-cream); }
.course-card-tier--bundle .course-card-tier__sub { color: var(--c-gold-light); }
.course-card-tier--bundle .course-card-tier__duration {
  color: var(--c-gold-light);
  border-bottom-color: rgba(212, 175, 55, 0.3);
}
.course-card-tier--bundle .course-card-tier__price em { color: var(--c-gold-light); }
.course-card-tier--bundle .course-card-tier__anchor { color: rgba(248, 244, 234, 0.55); }
.course-card-tier--bundle .course-card-tier__save { color: var(--c-leaf); }
.course-card-tier--bundle .course-card-tier__list li { color: var(--c-cream); }
.course-card-tier--bundle .course-card-tier__list li::before { color: var(--c-gold); }

/* Bundle belső 2-col layout 901+: balra szöveg, jobbra ár + CTA középre igazítva */
@media (min-width: 901px) {
  .course-card-tier--bundle {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 1fr);
    grid-template-rows: auto auto auto auto auto auto;
    column-gap: clamp(2.5rem, 5vw, 4.5rem);
    row-gap: var(--sp-sm);
    align-items: start;
  }
  .course-card-tier--bundle > .course-card-tier__badge   { grid-column: 1; grid-row: 1; justify-self: start; }
  .course-card-tier--bundle > .course-card-tier__title   { grid-column: 1; grid-row: 2; }
  .course-card-tier--bundle > .course-card-tier__sub     { grid-column: 1; grid-row: 3; }
  .course-card-tier--bundle > .course-card-tier__duration{ grid-column: 1; grid-row: 4; }
  .course-card-tier--bundle > .course-card-tier__list    { grid-column: 1; grid-row: 5 / 7; margin-top: var(--sp-md); }
  .course-card-tier--bundle > .course-card-tier__price   {
    grid-column: 2; grid-row: 1 / 5;
    align-self: center;
    padding-top: var(--sp-md);
  }
  .course-card-tier--bundle > .course-card-tier__cta {
    grid-column: 2; grid-row: 5 / 7;
    align-self: end;
    width: 100%;
  }
}

@media (hover: hover) {
  .course-card-tier--bundle:hover {
    box-shadow: 0 36px 80px rgba(212, 175, 55, 0.42);
    border-color: var(--c-gold-light);
  }
}

/* Course-matcher state classes — opacity/box-shadow only (NO transform-scale,
   mert grid-cellben a scale kilóghat / box-shadow-on átfed) */
.course-card-tier--matched {
  border-color: var(--c-gold);
  box-shadow: 0 24px 56px rgba(212, 175, 55, 0.32);
}
.course-card-tier--matched.course-card-tier--bundle {
  border-color: var(--c-gold-light);
  box-shadow: 0 36px 80px rgba(212, 175, 55, 0.55);
}
.course-card-tier--dimmed {
  opacity: 0.5;
}
.course-card-tier--dimmed:hover {
  opacity: 0.85;
}

/* ─────────────── 7. DATES TABLE (#7) ─────────────── */
.dates-table {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  max-width: 980px;
  margin: 0 auto;
}

.dates-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xs) var(--sp-md);
  padding: var(--sp-md) var(--sp-lg);
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
@media (min-width: 641px) {
  .dates-row {
    grid-template-columns: minmax(150px, 1.2fr) minmax(0, 2.5fr) minmax(90px, 0.9fr) auto;
    align-items: center;
    padding: var(--sp-md) var(--sp-xl);
  }
}
@media (hover: hover) {
  .dates-row:hover {
    border-color: var(--c-gold);
    box-shadow: var(--sh-sm);
  }
}

.dates-row__date {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-charcoal);
}
.dates-row__name {
  font-size: 0.97rem;
  color: var(--c-text-mid);
}
.dates-row__location {
  font-family: var(--f-mono);
  font-size: 0.82rem;
  color: var(--c-text-mute);
  letter-spacing: 0.04em;
}
.dates-row__seats {
  justify-self: start;
  display: inline-block;
  padding: 4px 12px;
  background: var(--c-leaf);
  color: #fff;
  border-radius: var(--r-full);
  font-family: var(--f-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
@media (min-width: 641px) {
  .dates-row__seats { justify-self: end; }
}
.dates-row__seats--low {
  background: var(--c-saffron);
}

.dates-table__note {
  text-align: center;
  margin-top: var(--sp-xl);
  font-size: 0.95rem;
  color: var(--c-text-mid);
}

/* ─────────────── 9. VALUE-TAG BONUS VARIANT (#9) ─────────────── */
.value-tag--bonus {
  background: var(--c-leaf) !important;
  color: #fff !important;
  letter-spacing: 0.02em;
}

/* ─────────────── REDUCED MOTION ─────────────── */
@media (prefers-reduced-motion: reduce) {
  .course-card-tier,
  .course-card-tier--matched,
  .course-card-tier--dimmed,
  .outcome-card,
  .matcher__option,
  .dates-row {
    transition: none !important;
    transform: none !important;
  }
}

/* ─────────────── MOBIL FINOMHANGOLÁS ─────────────── */
@media (max-width: 520px) {
  .course-card-tier { padding: var(--sp-lg); }
  .course-card-tier__price em { font-size: 1.9rem; }
  .course-card-tier__title { font-size: 1.4rem; }
  .matcher { padding: var(--sp-lg); }
  .matcher__options { gap: var(--sp-xs) var(--sp-sm); }
  .matcher__option { padding: 10px 14px; font-size: 0.9rem; }
  .dates-row { padding: var(--sp-md); }
  .dates-row__date { font-size: 1rem; }
  .dates-row__name { font-size: 0.9rem; }
}

/* ════════════════════════════════════════════════════════
   USP-STRIP — 5 ikonos rész az élő oldal S3-mintájára
   ════════════════════════════════════════════════════════ */
.usp-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin-top: var(--sp-xl);
}
.usp-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--sp-lg) var(--sp-md);
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.usp-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: var(--c-leaf);
}
.usp-card__icon {
  width: clamp(72px, 8vw, 110px);
  height: clamp(72px, 8vw, 110px);
  margin-bottom: var(--sp-md);
  object-fit: contain;
}
.usp-card__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.3;
  color: var(--c-charcoal);
  margin: 0;
}
.usp-card__sub {
  font-size: 0.85rem;
  color: var(--c-text-mid);
  margin-top: var(--sp-sm);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .usp-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .usp-strip { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════
   PRO-DEPTH — "Miért több" + Szakmai háttér szekciók
   ════════════════════════════════════════════════════════ */
.pro-depth {
  max-width: 820px;
  margin: 0 auto;
}
.pro-depth p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--c-text);
  margin-bottom: var(--sp-md);
}
.pro-depth p strong {
  color: var(--c-charcoal);
  font-weight: 600;
}
.pro-depth em {
  font-style: italic;
  color: var(--c-leaf);
  font-weight: 500;
}
.pro-depth__lead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--c-charcoal);
  font-weight: 500;
  border-left: 3px solid var(--c-saffron);
  padding-left: var(--sp-lg);
  margin: var(--sp-lg) 0 var(--sp-xl);
}

/* Sanskrit-glossary mini box */
.glossary-box {
  background: #fff;
  border: 1px solid var(--c-line);
  border-left: 4px solid var(--c-leaf);
  border-radius: var(--r-md);
  padding: var(--sp-lg);
  margin: var(--sp-xl) 0;
  box-shadow: var(--sh-sm);
}
.glossary-box h4 {
  font-family: var(--f-display);
  font-size: 1.05rem;
  color: var(--c-leaf);
  margin-bottom: var(--sp-md);
}
.glossary-box dl {
  margin: 0;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.5rem 1.25rem;
}
.glossary-box dt {
  font-style: italic;
  font-weight: 600;
  color: var(--c-charcoal);
}
.glossary-box dd {
  margin: 0;
  font-size: 0.95rem;
  color: var(--c-text);
}
@media (max-width: 600px) {
  .glossary-box dl { grid-template-columns: 1fr; gap: 0.25rem 0; }
  .glossary-box dt { margin-top: var(--sp-sm); }
}

/* Célcsoport callout — "Kinek ajánljuk különösen" */
.target-callout {
  background: #fff;
  border-radius: var(--r-lg);
  padding: var(--sp-xl) clamp(1.5rem, 4vw, 2.5rem);
  margin: var(--sp-2xl) auto 0;
  max-width: 820px;
  border: 1px solid var(--c-line);
  box-shadow: var(--sh-sm);
}
.target-callout h3 {
  font-size: 1.35rem;
  color: var(--c-charcoal);
  margin-bottom: var(--sp-md);
  text-align: center;
}
.target-callout__intro {
  color: var(--c-text-mid);
  text-align: center;
  margin-bottom: var(--sp-lg);
}
.target-callout ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--sp-sm);
}
.target-callout li {
  position: relative;
  padding-left: 2rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--c-text);
}
.target-callout li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0.05rem;
  color: var(--c-saffron);
  font-size: 0.8rem;
}
.target-callout li strong { color: var(--c-charcoal); font-weight: 600; }

/* ═══════════════════════════════════════════════════════
   4C. COMPARISON TABLE — Abhyanga vs svédmasszázs
   ═══════════════════════════════════════════════════════ */
.compare-table-wrap {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  overflow: hidden;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}
.compare-table thead th {
  background: var(--c-charcoal);
  color: var(--c-cream);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.05rem;
  text-align: left;
  padding: 1.1rem 1.2rem;
  letter-spacing: 0.01em;
}
.compare-table thead th:nth-child(2) {
  background: var(--c-gold-deep);
  color: #fff;
}
.compare-table tbody tr { border-top: 1px solid var(--c-line); }
.compare-table tbody tr:nth-child(even) { background: var(--c-cream); }
.compare-table tbody th {
  text-align: left;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-charcoal);
  padding: 1rem 1.2rem;
  vertical-align: top;
  width: 22%;
  background: rgba(248, 244, 234, 0.55);
}
.compare-table tbody td {
  padding: 1rem 1.2rem;
  vertical-align: top;
  line-height: 1.55;
  color: var(--c-text-mid);
}
.compare-table tbody td:nth-child(2) {
  color: var(--c-charcoal);
  font-weight: 500;
  background: rgba(212, 175, 55, 0.05);
  border-left: 3px solid var(--c-gold);
}

@media (max-width: 720px) {
  .compare-table { font-size: 0.9rem; }
  .compare-table thead { display: none; }
  .compare-table tbody tr {
    display: block;
    padding: 1rem;
    border-top: 1px solid var(--c-line);
  }
  .compare-table tbody th,
  .compare-table tbody td {
    display: block;
    width: 100%;
    padding: 0.4rem 0;
    background: transparent;
    border-left: none;
  }
  .compare-table tbody th {
    font-size: 0.85rem;
    color: var(--c-text-mute);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-bottom: 0.2rem;
  }
  .compare-table tbody td:nth-child(2)::before {
    content: "Abhyanga: ";
    color: var(--c-gold-deep);
    font-weight: 700;
  }
  .compare-table tbody td:nth-child(3)::before {
    content: "Svédmasszázs: ";
    color: var(--c-text-mute);
    font-weight: 700;
  }
}
