/* =========================================================
   STUDIOZONE 2026 redesign — "Broadcast minimál"
   Design concept: aura (agents/aura/reports/studiozone-redesign-koncepcio.md)
   Tokens: section 1.1 | Components: 1.3 | Animation: 3 ("ON AIR réteg")
   ========================================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root{
  --bg-0: #0b0c10;        /* deepest: hero, footer */
  --bg-1: #101218;        /* page background */
  --surface: #171a22;     /* cards on dark sections */
  --surface-2: #1e222d;   /* elevated / hover */
  --light: #f5f3ee;       /* warm off-white "air" sections */
  --light-card: #ffffff;
  --ink: #14161b;         /* text on light sections */
  --text: #f4f4f5;
  --muted: #a6a8b3;
  --muted-ink: #565a66;
  --line: rgba(255,255,255,.08);
  --line-strong: rgba(255,255,255,.16);
  --line-light: #e6e2d8;
  --accent: #fbbf24;
  --accent-2: #f59e0b;
  --accent-soft: rgba(251,191,36,.1);
  --accent-ink: #14161b;
  --live: #ef4444;
  --radius: 16px; --radius-lg: 24px; --radius-pill: 999px;
  --maxw: 1200px;
  --pad: clamp(1rem, 3vw, 2rem);
  --space-section: clamp(72px, 10vw, 128px);
  --font-head: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --shadow-card: 0 16px 40px rgba(0,0,0,.35);
  --glow-photo: 0 0 60px rgba(251,191,36,.06);
}

html { scroll-behavior: smooth; }
html, body { background: var(--bg-1); }
body{
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.container{ max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.container--narrow{ max-width: 820px; }
.container--prose{ max-width: 760px; }

/* ───────── Typography ───────── */
h1, h2, h3, h4 { font-family: var(--font-head); letter-spacing: -0.02em; line-height: 1.12; }
h1{ font-weight: 800; font-size: clamp(2.4rem, 5vw, 4rem); }
h2{ font-weight: 800; font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3{ font-weight: 700; font-size: 1.2rem; }
p { color: var(--muted); }
.y{ color: var(--accent); }
.highlight{ color: var(--accent); font-weight: 600; }
.section--light .highlight{ color: #b45309; }

/* amber line sweep under revealed section titles (anim #5) */
.section-head h2::after{
  content:''; display:block; height:3px; width:56px; background:var(--accent);
  border-radius:2px; margin:14px auto 0; opacity:0;
}
.section-head.is-visible h2::after{ opacity:1; animation: sz-line .6s .3s both; }
.section-head:not(.center) h2::after{ margin-left:0; }
@keyframes sz-line { from { width: 0; } to { width: 56px; } }

/* ───────── Eyebrow pill ───────── */
.eyebrow{
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-head);
  font-size: .74rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); font-weight: 700;
  padding: .4rem .85rem;
  border: 1px solid rgba(251,191,36,.25); border-radius: var(--radius-pill);
  background: rgba(251,191,36,.05);
}
.eyebrow::before{
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
}
.eyebrow--live::before{ background: var(--live); animation: sz-live 2s infinite; }
.section--light .eyebrow{ border-color: rgba(180,83,9,.3); background: rgba(251,191,36,.12); color: #92580a; }
@keyframes sz-live {
  0% { box-shadow: 0 0 0 0 rgba(239,68,68,.55); }
  70% { box-shadow: 0 0 0 8px rgba(239,68,68,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}

/* ───────── Buttons ───────── */
.btn{
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .9rem 1.5rem; border-radius: var(--radius-pill);
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease,
              border-color .25s ease, box-shadow .25s ease;
  white-space: nowrap; max-width: 100%;
}
@media (max-width: 600px){
  .btn { white-space: normal; text-align: center; padding: .85rem 1.2rem; font-size: .9rem; }
}
.btn-primary{ background: var(--accent); color: var(--accent-ink); box-shadow: 0 10px 28px rgba(251,191,36,.22); }
.btn-primary:hover{ transform: translateY(-2px); background: #ffd455; box-shadow: 0 14px 36px rgba(251,191,36,.35); }
.btn-ghost{ background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn-ghost:hover{ border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.section--light .btn-ghost{ color: var(--ink); border-color: #cbc5b8; }
.section--light .btn-ghost:hover{ border-color: var(--accent-2); color: #92580a; }
.btn .arr{ display: inline-block; transition: transform .25s ease; }
.btn:hover .arr{ transform: translateX(4px); }

/* ───────── Nav ───────── */
.navbar{
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled{
  background: rgba(11,12,16,.8);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line);
}
.nav-row{
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
  height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav-brand img{ height: 34px; width: auto; }
.nav-menu{ display: flex; align-items: center; gap: 1.4rem; list-style: none; }
.nav-link{
  font-family: var(--font-head); font-weight: 600; font-size: .9rem;
  color: var(--muted); transition: color .2s ease; position: relative;
}
.nav-link::after{
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-link:hover{ color: var(--text); }
.nav-link:hover::after{ transform: scaleX(1); }
.nav-cta-btn{
  background: var(--accent); color: var(--accent-ink);
  padding: .55rem 1.1rem; border-radius: var(--radius-pill);
  font-family: var(--font-head); font-weight: 800; font-size: .88rem;
  transition: transform .2s ease, filter .2s ease; box-shadow: 0 6px 16px rgba(251,191,36,.25);
}
.nav-cta-btn:hover{ transform: translateY(-1px); filter: brightness(1.05); }
/* legal pages: always-dark navbar over the light content */
.navbar--solid{
  background: rgba(11,12,16,.92);
  border-bottom-color: var(--line);
}
/* booking CTA that stays visible in the mobile top bar (concept 4: mobilon is látható) */
.nav-cta-mobile{ display: none; }
@media (max-width: 940px){
  .nav-cta-mobile{ display: inline-flex; margin-left: auto; }
}
.nav-toggle{
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px; color: var(--text); cursor: pointer; flex-shrink: 0;
  position: relative; z-index: 101;
}
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.nav-toggle[aria-expanded="true"] .icon-menu  { display: none; }
@media (max-width: 940px){
  .navbar{
    background: rgba(11,12,16,.97) !important;
    border-bottom: 1px solid var(--line) !important;
  }
  .nav-toggle{ display: inline-flex; }
  .nav-menu{
    position: fixed; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(11,12,16,.99); border-top: 1px solid var(--line);
    padding: .75rem var(--pad) 2.5rem; z-index: 98;
    max-height: 0; overflow: hidden; opacity: 0; pointer-events: none;
    transition: max-height .38s cubic-bezier(.4,0,.2,1), opacity .28s ease;
  }
  .nav-menu.open{ max-height: calc(100dvh - 74px); overflow-y: auto; opacity: 1; pointer-events: auto; }
  .nav-link{ display: block; padding: 1.05rem .25rem; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .nav-link::after{ display: none; }
  li:last-child .nav-cta-btn{ display: block; margin-top: 1.4rem; text-align: center; padding: .85rem 1.25rem; font-size: 1rem; }
}

/* ───────── Sections ───────── */
.block{ padding: var(--space-section) 0; }
.section--light{ background: var(--light); color: var(--ink); }
.section--light h1, .section--light h2, .section--light h3, .section--light h4{ color: var(--ink); }
.section--light p{ color: #4b4f59; }
.section--deep{ background: var(--bg-0); }
.section-head{ max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow{ margin-bottom: 1.1rem; }
.section-head p{ margin-top: .9rem; font-size: 1.05rem; }

/* ───────── Reveal animation (anim #1) ───────── */
[data-sz-reveal]{
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
}
[data-sz-reveal].is-visible{ opacity: 1; transform: none; }
.sz-stagger > [data-sz-reveal]{ transition-delay: calc(var(--i, 0) * 80ms); }
html.sz-anim-off [data-sz-reveal]{ opacity: 1 !important; transform: none !important; transition: none !important; }
html.sz-anim-off *{ animation: none !important; }

/* ───────── Cards ───────── */
.sz-card{
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.sz-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-card); }
.section--light .sz-card{
  background: var(--light-card); border-color: var(--line-light);
  box-shadow: 0 6px 18px rgba(20,22,27,.05);
}
.section--light .sz-card:hover{ box-shadow: 0 18px 40px rgba(20,22,27,.12); }
.icon-badge{
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center; flex-shrink: 0;
  background: var(--accent-soft); color: var(--accent);
  margin-bottom: 1rem;
}
.section--light .icon-badge{ color: #b45309; background: rgba(251,191,36,.16); }
.icon-badge svg{ width: 21px; height: 21px; }

/* photo frame: "stúdiófény" */
.photo-frame{ border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--glow-photo); }
.photo-frame img{ width: 100%; height: 100%; object-fit: cover; }

/* ───────── Hero ───────── */
.hero{
  background: var(--bg-0);
  padding: calc(74px + clamp(48px, 8vw, 96px)) 0 clamp(48px, 7vw, 80px);
  position: relative; overflow: hidden;
}
.hero::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(251,191,36,.07), transparent 60%),
    radial-gradient(700px 480px at -10% 60%, rgba(251,191,36,.04), transparent 60%);
}
.hero-grid{
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 4vw, 4rem);
  align-items: center; position: relative;
}
@media (max-width: 940px){ .hero-grid{ grid-template-columns: 1fr; } }
.hero h1{ margin: 1.2rem 0 1.1rem; }
.hero-lead{ font-size: clamp(1.02rem, 1.4vw, 1.15rem); max-width: 54ch; }
.hero-lead strong{ color: var(--text); font-weight: 600; }
.hero-buttons{ display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.75rem; }
.hero-chips{ display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 2.25rem; }
.hero-chip{
  display: flex; flex-direction: column; gap: .05rem;
  padding: .7rem 1.1rem; border: 1px solid var(--line); border-radius: 14px;
  background: rgba(255,255,255,.03);
}
.hero-chip b{ font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: var(--accent); }
.hero-chip span{ color: var(--muted); font-size: .78rem; }
.hero-chip.is-visible{ animation: sz-pop .55s both; }
.hero-chips .hero-chip{ animation-delay: calc(var(--i) * 90ms); }
@media (max-width: 600px){ .hero-chips{ display: grid; grid-template-columns: 1fr 1fr; } }
@keyframes sz-pop {
  0% { opacity:0; transform: scale(.7); }
  60% { transform: scale(1.05); }
  100% { opacity:1; transform: scale(1); }
}

/* hero video card: click-to-load Gumlet (no floating widget) */
.video-card{
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 16/10; background: var(--surface);
  box-shadow: var(--glow-photo); border: 1px solid var(--line);
  cursor: pointer; width: 100%; padding: 0; display: block;
}
.video-card img{ width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.video-card:hover img{ transform: scale(1.03); }
.video-card::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,12,16,.65));
}
.video-card .play{
  position: absolute; inset: 0; margin: auto; width: 74px; height: 74px; z-index: 2;
  border-radius: 50%; background: var(--accent); color: var(--accent-ink);
  display: grid; place-items: center;
  animation: sz-breathe 2.6s ease-in-out infinite;
  box-shadow: 0 12px 32px rgba(251,191,36,.35);
}
.video-card .video-label{
  position: absolute; left: 1.2rem; bottom: 1rem; z-index: 2;
  color: var(--text); font-family: var(--font-head); font-weight: 700; font-size: .92rem;
}
.video-frame-live{ aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.video-frame-live iframe{ width: 100%; height: 100%; border: 0; display: block; }
@keyframes sz-breathe { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }

/* ───────── Proof strip (62 / 2,6x / 53) ───────── */
.proof-strip{ border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-0); }
.proof-inner{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; padding: 2.2rem 0; }
@media (max-width: 800px){ .proof-inner{ grid-template-columns: 1fr; gap: 1.25rem; } }
.proof-item{ display: flex; align-items: baseline; gap: 1rem; }
.proof-item b{ font-family: var(--font-head); font-weight: 700; font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--accent); flex-shrink: 0; }
.proof-item p{ font-size: .88rem; line-height: 1.55; }
.proof-note{ padding-bottom: 2rem; text-align: center; font-size: .95rem; color: var(--muted); }
.proof-note strong{ color: var(--text); }

/* ───────── Q cards + answer (light #1) ───────── */
.q-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 900px){ .q-grid{ grid-template-columns: 1fr; } }
.q-card{ font-size: 1.02rem; line-height: 1.6; color: var(--ink); font-weight: 500; }
.q-card .icon-badge{ margin-bottom: .8rem; }
.answer-panel{ max-width: 700px; margin: 2.5rem auto 0; text-align: center; }
.answer-panel .accent-line{
  font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: var(--ink); margin-bottom: .6rem;
}
.cta-inline{
  margin-top: 2.75rem; padding: 1.9rem 2rem; border-radius: var(--radius-lg);
  background: var(--ink); color: var(--text);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.cta-inline h3{ font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--text); max-width: 34ch; }

/* ───────── Studio cards ───────── */
.studios-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; }
@media (max-width: 940px){ .studios-grid{ grid-template-columns: 1fr; } }
.studio-card{
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform .25s ease, box-shadow .25s ease;
}
.studio-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-card); }
.studio-img{ position: relative; aspect-ratio: 16/10; overflow: hidden; }
.studio-img img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .5s ease; }
.studio-img img.active{ opacity: 1; }
.studio-tag{
  position: absolute; top: 1rem; left: 1rem; z-index: 3;
  background: rgba(11,12,16,.75); color: var(--accent);
  font-family: var(--font-head); font-weight: 700; font-size: .8rem;
  padding: .35rem .9rem; border-radius: var(--radius-pill);
  border: 1px solid rgba(251,191,36,.3);
}
.studio-dots{ position: absolute; bottom: .9rem; left: 0; right: 0; display: flex; justify-content: center; gap: .4rem; z-index: 3; }
.studio-dots button{
  width: 8px; height: 8px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.4); transition: background .2s ease, transform .2s ease;
}
.studio-dots button.active{ background: var(--accent); transform: scale(1.25); }
.studio-body{ padding: 1.75rem; }
.studio-body > p{ margin: .6rem 0 1.25rem; }
.studio-features{ list-style: none; display: grid; gap: .9rem; }
.studio-features li{ display: flex; gap: .85rem; align-items: flex-start; }
.studio-features .icon-badge{ margin-bottom: 0; width: 38px; height: 38px; }
.studio-features strong{ display: block; color: var(--text); font-size: .95rem; }
.studio-features span{ color: var(--muted); font-size: .88rem; line-height: 1.5; }
.section--light .studio-features strong{ color: var(--ink); }
.studio-foot{
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--line);
}
.studio-foot .cap{ color: var(--muted); font-size: .9rem; }
.studio-foot .cap b{ color: var(--text); }
.studio-foot .tag-badges{ display: flex; gap: .4rem; flex-wrap: wrap; }
.tag-badge{
  font-size: .74rem; font-weight: 600; color: var(--accent);
  background: var(--accent-soft); border-radius: var(--radius-pill); padding: .25rem .7rem;
}
.studio-link{ display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.1rem; color: var(--accent); font-weight: 600; font-size: .92rem; }
.studio-link:hover .arr{ transform: translateX(4px); }
.studio-link .arr{ transition: transform .25s ease; }

/* ───────── Zig-zag service rows ───────── */
.service-row{
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center; padding: clamp(1.75rem, 3.5vw, 2.75rem) 0;
}
.service-row + .service-row{ border-top: 1px solid var(--line); }
.service-row.reverse .service-media{ order: 2; }
@media (max-width: 900px){
  .service-row{ grid-template-columns: 1fr; }
  .service-row.reverse .service-media{ order: 0; }
}
.service-media{ position: relative; }
.service-media img{ border-radius: var(--radius-lg); box-shadow: var(--glow-photo); width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.service-num{
  position: absolute; top: -14px; left: -8px; z-index: 2;
  font-family: var(--font-head); font-weight: 800; font-size: .95rem;
  background: var(--accent); color: var(--accent-ink);
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  box-shadow: 0 8px 20px rgba(251,191,36,.3);
}
.service-text h3{ font-size: 1.35rem; margin-bottom: .7rem; }
.service-text .btn{ margin-top: 1.1rem; }

/* ───────── Format pills + platform cards ───────── */
.types-grid{ display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.type-pill{
  font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--text);
  border: 1px solid var(--line-strong); border-radius: var(--radius-pill);
  padding: .55rem 1.2rem; background: var(--surface);
  transition: border-color .2s ease, color .2s ease;
}
.type-pill:hover{ border-color: var(--accent); color: var(--accent); }
.platform-row{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 800px){ .platform-row{ grid-template-columns: 1fr; } }
.platform-card{ text-align: center; }
.platform-card .icon-badge{ margin: 0 auto 1rem; }
.platform-card h4{ font-size: 1.02rem; margin-bottom: .35rem; }
.platform-card p{ font-size: .9rem; }

/* ───────── Process timeline (light #2) ───────── */
.process-list{ max-width: 680px; margin: 0 auto; position: relative; }
.process-step{ display: flex; gap: 1.4rem; position: relative; padding-bottom: 2rem; }
.process-step:last-child{ padding-bottom: 0; }
.process-step::before{
  content:""; position: absolute; left: 23px; top: 52px; bottom: 6px; width: 2px;
  background: linear-gradient(180deg, rgba(245,158,11,.5), rgba(245,158,11,.12));
}
.process-step:last-child::before{ display: none; }
.step-num{
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 50%;
  background: var(--accent); color: var(--accent-ink);
  font-family: var(--font-head); font-weight: 800; font-size: 1.05rem;
  display: grid; place-items: center; box-shadow: 0 8px 20px rgba(251,191,36,.3);
  position: relative; z-index: 1;
}
.step-body h3{ font-size: 1.1rem; margin-bottom: .3rem; }
.step-body p{ font-size: .95rem; }

/* suit cards */
.suit-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 800px){ .suit-grid{ grid-template-columns: 1fr; } }
.suit-badge{
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 700; font-size: .92rem;
  padding: .4rem .9rem; border-radius: var(--radius-pill); margin-bottom: 1rem;
}
.suit-badge svg{ width: 15px; height: 15px; }
.suit-badge.yes{ background: rgba(34,150,83,.12); color: #1d7a47; }
.suit-badge.no{ background: rgba(220,68,68,.1); color: #b23b3b; }
.suit-list{ list-style: none; display: grid; gap: .65rem; }
.suit-list li{ display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; color: var(--muted); }
.section--light .suit-list li{ color: #3c404a; }
.suit-list svg{ width: 16px; height: 16px; flex-shrink: 0; margin-top: .25rem; }
.suit-list.yes svg{ color: #1d7a47; }
.suit-list.no svg{ color: #b23b3b; }
.note-card{
  margin-top: 1.5rem; text-align: center; padding: 1.2rem 1.5rem;
  background: rgba(251,191,36,.12); border: 1px solid rgba(180,83,9,.2);
  border-radius: var(--radius); color: var(--ink); font-size: .98rem;
}

/* compact prep/mistakes columns (light #2) */
.compact-cols{ display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 900px){ .compact-cols{ grid-template-columns: 1fr; } }
.compact-col h3{ font-size: 1.15rem; margin-bottom: 1.1rem; display: flex; align-items: center; gap: .6rem; }
.compact-col h3 .icon-badge{ margin: 0; width: 34px; height: 34px; }
.compact-list{ list-style: none; display: grid; gap: .85rem; }
.compact-list li{ font-size: .92rem; line-height: 1.55; color: #3c404a; padding-left: 1.15rem; position: relative; }
.compact-list li::before{
  content:""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px;
  border-radius: 50%; background: var(--accent-2);
}
.compact-list li b, .compact-list li strong{ color: var(--ink); }

/* ───────── Gallery ───────── */
.gallery-masonry { columns: 4; column-gap: 1rem; }
@media (max-width: 1024px) { .gallery-masonry { columns: 3; } }
@media (max-width: 700px) { .gallery-masonry { columns: 2; } }
@media (max-width: 480px) { .gallery-masonry { columns: 1; } }
.gallery-item {
  display: block; width: 100%; padding: 0; margin: 0 0 1rem; border: 0;
  background: transparent; cursor: pointer; break-inside: avoid;
  border-radius: 14px; overflow: hidden; position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
}
.gallery-item img { display: block; width: 100%; height: auto; transition: transform .6s ease; }
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,.45); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .zoom{
  position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(11,12,16,.7); color: var(--accent);
  display: grid; place-items: center; opacity: 0; transition: opacity .25s ease;
}
.gallery-item .zoom svg{ width: 16px; height: 16px; }
.gallery-item:hover .zoom { opacity: 1; }
.lightbox {
  position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,.92);
  display: none; align-items: center; justify-content: center;
  padding: 2rem; opacity: 0; transition: opacity .25s ease;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox-close {
  position: absolute; top: 24px; right: 28px; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.15);
  font-size: 28px; line-height: 1; cursor: pointer; display: grid; place-items: center;
  transition: background .2s ease, transform .2s ease;
}
.lightbox-close:hover { background: var(--accent); color: #111; transform: rotate(90deg); }

/* ───────── Team + testimonials ───────── */
.team-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 900px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
@media (max-width: 800px){ .team-grid{ grid-template-columns: 1fr; } }
.team-card{ text-align: center; padding: 2rem 1.75rem; }
.team-photo{
  width: 110px; height: 110px; margin: 0 auto 1.1rem; border-radius: 50%;
  padding: 4px; background: linear-gradient(135deg, var(--accent), rgba(251,191,36,.25));
}
.team-photo img{ width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.team-card p{ font-size: .93rem; margin-top: .7rem; }
.testi-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 940px){ .testi-grid{ grid-template-columns: 1fr; } }
.testi-card{ display: flex; flex-direction: column; gap: .8rem; }
.testi-card .stars{ color: var(--accent); display: flex; gap: .2rem; }
.testi-card .stars svg{ width: 15px; height: 15px; }
.testi-card blockquote{ font-size: .93rem; line-height: 1.6; color: var(--muted); flex: 1; }
.testi-card cite{ font-style: normal; font-weight: 600; font-size: .86rem; color: var(--text); }

/* ───────── Pricing (light #3) ───────── */
.compare-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
@media (max-width: 900px){ .compare-grid{ grid-template-columns: 1fr; } }
.compare-card h3{ font-size: 1.05rem; margin-bottom: .4rem; }
.compare-card p{ font-size: .92rem; }
.value-intro{ text-align: center; max-width: 62ch; margin: 0 auto 2rem; font-size: 1.02rem; }
.uncertainty{
  text-align: center; max-width: 60ch; margin: 0 auto 1.25rem; color: #3c404a; font-size: .98rem;
}
.uncertainty b{ color: var(--ink); }
.solution{ text-align: center; max-width: 62ch; margin: 0 auto 3rem; }
.solution h3{ font-size: 1.3rem; margin-bottom: .5rem; }
.pricing-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; align-items: stretch; }
@media (max-width: 940px){ .pricing-grid{ grid-template-columns: 1fr; } .price-card.featured{ order: -1; } }
.price-card{ position: relative; display: flex; flex-direction: column; text-align: center; padding: 2rem 1.6rem; }
.price-card .icon-badge{ margin: 0 auto 1rem; }
.price-card.featured{ border-color: var(--accent-2); box-shadow: 0 14px 36px rgba(245,158,11,.16); }
.price-badge{
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--accent-ink);
  font-family: var(--font-head); font-weight: 800; font-size: .74rem;
  padding: .3rem .9rem; border-radius: var(--radius-pill); white-space: nowrap;
}
.price-card h3{ font-size: 1.1rem; margin-bottom: .5rem; }
.price-card > p{ font-size: .92rem; flex: 1; }
.price-amount{ margin-top: 1.25rem; }
.price-amount .num{ display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; color: var(--ink); }
.section:not(.section--light) .price-amount .num{ color: var(--text); }
.price-amount .unit{ color: var(--muted-ink); font-size: .85rem; }
.price-note{
  max-width: 720px; margin: 2rem auto 0; font-size: .95rem; line-height: 1.7; color: #3c404a;
  background: var(--light-card); border: 1px solid var(--line-light); border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
}
.price-note strong{ color: var(--ink); }
.price-note ul{ list-style: none; margin-top: .6rem; display: grid; gap: .45rem; }
.price-note ul li{ padding-left: 1.4rem; position: relative; }
.price-note ul li svg{ position: absolute; left: 0; top: .3em; width: 15px; height: 15px; color: var(--accent-2); }
.info-details{
  max-width: 720px; margin: 1.25rem auto 0;
  background: var(--light-card); border: 1px solid var(--line-light); border-radius: var(--radius);
}
.info-details summary{
  cursor: pointer; padding: 1.2rem 1.6rem; font-family: var(--font-head); font-weight: 700;
  color: var(--ink); font-size: 1rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.info-details summary::-webkit-details-marker{ display: none; }
.info-details summary svg{ width: 18px; height: 18px; color: var(--accent-2); transition: transform .3s ease; flex-shrink: 0; }
.info-details[open] summary svg{ transform: rotate(180deg); }
.info-details .details-body{ padding: 0 1.6rem 1.4rem; display: grid; gap: .8rem; }
.info-details .details-body p{ font-size: .93rem; color: #3c404a; }
.info-details .emphasis{ font-weight: 600; color: var(--ink); }

/* ───────── FAQ ───────── */
.faq-list { max-width: 820px; margin: 0 auto 2.5rem; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  border: 1px solid var(--line); border-radius: 14px; background: var(--surface);
  overflow: hidden; transition: border-color .25s ease, background .25s ease;
}
.faq-item:hover { border-color: rgba(251,191,36,.3); }
.faq-item.open { border-color: var(--accent); background: rgba(251,191,36,.04); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.2rem 1.5rem; background: transparent; border: 0; color: var(--text);
  font: 600 1rem/1.4 var(--font-head); text-align: left; cursor: pointer;
}
.faq-icon { color: var(--accent); transition: transform .3s ease; flex-shrink: 0; display: grid; place-items: center; }
.faq-icon svg{ width: 16px; height: 16px; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a p { padding: 0 1.5rem 1.4rem; color: var(--muted); line-height: 1.7; margin: 0; }
.faq-a a { color: var(--accent); text-decoration: underline; }

/* ───────── Contact ───────── */
.contact-layout{ display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
@media (max-width: 940px){ .contact-layout{ grid-template-columns: 1fr; } }
.contact-cards{ display: grid; gap: 1rem; }
.contact-card{ display: flex; gap: 1rem; align-items: center; padding: 1.2rem 1.4rem; }
.contact-card .icon-badge, .contact-avatar{ margin-bottom: 0; }
.contact-avatar{
  width: 52px; height: 52px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  padding: 2px; background: linear-gradient(135deg, var(--accent), rgba(251,191,36,.25));
}
.contact-avatar img{ width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.contact-card h3{ font-size: 1rem; }
.contact-card p{ font-size: .9rem; line-height: 1.55; margin-top: .15rem; }
.contact-card a:hover{ color: var(--accent); }
.contact-card .role{ display: block; font-size: .74rem; color: var(--accent); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; margin-top: .2rem; }
.contact-map{ margin-top: 1rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.contact-map iframe{ width: 100%; height: 240px; border: 0; display: block; }
.contact-address{ font-size: .88rem; margin-top: .9rem; }
.contact-address .muted{ opacity: .75; }

/* form */
.contact-form-wrap{ padding: 2rem; }
.contact-form-wrap h3{ font-size: 1.3rem; margin-bottom: .4rem; }
.contact-form-wrap .form-intro{ font-size: .95rem; margin-bottom: 1.4rem; }
.form-field{ margin-bottom: 1rem; }
.form-field label{
  display: block; font-size: .78rem; color: var(--muted);
  margin-bottom: .4rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 600;
}
.form-field input, .form-field textarea{
  width: 100%; padding: .85rem 1rem;
  background: var(--bg-1); border: 1px solid var(--line); border-radius: 10px;
  color: var(--text); font: 400 .96rem/1.4 var(--font-body);
  transition: border-color .2s ease, background .2s ease;
}
.form-field input:focus, .form-field textarea:focus{
  outline: none; border-color: var(--accent); background: rgba(251,191,36,.04);
}
.form-field textarea{ min-height: 130px; resize: vertical; }
.form-consent{ display: flex; gap: .6rem; align-items: flex-start; margin: 1.1rem 0; font-size: .85rem; color: var(--muted); }
.form-consent input{ margin-top: .25rem; accent-color: var(--accent); }
.form-consent a{ text-decoration: underline; }
.form-note{ font-size: .82rem; color: var(--muted); margin-top: .9rem; }
/* honeypot: hidden from humans, present for bots */
.hp-field{ position: absolute; left: -9999px; top: -9999px; opacity: 0; pointer-events: none; }
#form-feedback{ display: none; margin-top: 1rem; padding: .8rem 1rem; border-radius: 10px; font-size: .93rem; }
.form-success{
  background: rgba(34,150,83,.1); border: 1px solid rgba(34,150,83,.35);
  border-radius: 14px; padding: 2rem; font-size: 1rem; line-height: 1.6; color: var(--text);
}
.form-success strong{ font-family: var(--font-head); display: block; margin-bottom: .4rem; }

/* final CTA card */
.final-cta-card{
  max-width: 760px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center;
  padding: clamp(2rem, 5vw, 3.5rem) 2rem;
  background: linear-gradient(180deg, rgba(251,191,36,.05), transparent);
  border: 1px solid rgba(251,191,36,.2); border-radius: var(--radius-lg);
}
.final-cta-card .lead{ font-size: 1.1rem; margin-bottom: 1.4rem; }
.final-cta-card h2{ font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1.4rem; }
.final-list{ list-style: none; margin: 0 0 1.75rem; display: flex; flex-direction: column; gap: .5rem; align-items: center; }
.final-list li{ color: var(--text); font-weight: 500; display: inline-flex; gap: .55rem; align-items: center; }
.final-list li svg{ width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.final-cta-card .closing{ margin-top: 1.6rem; font-size: .98rem; }
.final-cta-card .closing strong{ color: var(--accent); }

/* ───────── Footer ───────── */
.footer { background: var(--bg-0); padding: 4rem 0 2rem; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-brand img { height: 30px; margin-bottom: 1rem; }
.footer-brand p { color: var(--muted); line-height: 1.6; max-width: 380px; font-size: .93rem; }
.footer h4 { font-family: var(--font-head); font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); margin: 0 0 1rem; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer ul a { color: var(--muted); font-size: .92rem; transition: color .2s; }
.footer ul a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 1.75rem; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  color: var(--muted); font-size: .85rem;
}
.footer-social a {
  display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line); color: var(--muted); transition: all .2s ease;
}
.footer-social a:hover { color: var(--accent); border-color: var(--accent); }

/* ───────── Guide (podcast) page ───────── */
.guide-hero{
  background: var(--bg-0); position: relative; overflow: hidden;
  padding: calc(74px + clamp(40px, 7vw, 72px)) 0 clamp(40px, 6vw, 64px);
}
.guide-hero::before{
  content:""; position:absolute; inset:0;
  background: radial-gradient(800px 400px at 80% -20%, rgba(251,191,36,.08), transparent 60%);
}
.guide-hero .container{ position: relative; }
.guide-hero h1{ font-size: clamp(1.9rem, 3.6vw, 2.9rem); max-width: 22ch; margin: 1.1rem 0 1rem; }
.guide-hero .hero-lead{ max-width: 62ch; }
.hubtable{ width: 100%; border-collapse: collapse; font-size: .92rem; }
.hubtable th{
  text-align: left; font-family: var(--font-head); font-weight: 700; color: var(--ink);
  padding: .8rem .9rem; border-bottom: 2px solid var(--accent-2); font-size: .88rem;
}
.hubtable td{ padding: .75rem .9rem; border-bottom: 1px solid var(--line-light); color: #3c404a; vertical-align: top; }
.hubtable tr td:first-child{ font-weight: 600; color: var(--ink); }
.table-scroll{ overflow-x: auto; }
.feature-list{ list-style: none; display: grid; gap: 1rem; }
.feature-list li{ display: flex; gap: .85rem; align-items: flex-start; }
.feature-list .icon-badge{ margin-bottom: 0; width: 38px; height: 38px; }
.feature-list strong{ display: block; font-size: .95rem; }
.feature-list span{ font-size: .9rem; line-height: 1.55; color: #4b4f59; }
.honest-card{ margin-top: 1.5rem; }
.honest-card h3{ font-size: 1.05rem; margin-bottom: .5rem; }
.prep-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 940px){ .prep-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px){ .prep-grid{ grid-template-columns: 1fr; } }
.prep-card h3{ font-size: 1.02rem; margin-bottom: .4rem; }
.prep-card p{ font-size: .9rem; }

/* ───────── Legal pages ───────── */
.legal-main{ background: var(--light); padding: calc(74px + clamp(40px, 6vw, 64px)) 0 var(--space-section); color: var(--ink); }
.legal-main h1{ color: var(--ink); font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.legal-breadcrumb{ display: flex; gap: .5rem; font-size: .85rem; color: var(--muted-ink); margin-bottom: 1rem; }
.legal-breadcrumb a:hover{ color: #92580a; }
.legal-panel{
  background: var(--light-card); border: 1px solid var(--line-light); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 3rem); margin-top: 2rem;
  box-shadow: 0 8px 24px rgba(20,22,27,.05);
}
.legal-section{ margin-bottom: 2.25rem; }
.legal-section:last-child{ margin-bottom: 0; }
.legal-section h2{ color: var(--ink); font-size: 1.25rem; margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 2px solid var(--accent); display: inline-block; }
.legal-section p{ color: #3c404a; font-size: .96rem; }
.legal-section a{ color: #92580a; text-decoration: underline; }
.data-table{ width: 100%; border-collapse: collapse; font-size: .93rem; }
.data-table td{ padding: .7rem .9rem; border-bottom: 1px solid var(--line-light); color: #3c404a; vertical-align: top; }
.data-table tr td:first-child{ font-weight: 600; color: var(--ink); width: 38%; }
@media (max-width: 600px){ .data-table tr td:first-child{ width: 44%; } }
.legal-list{ list-style: none; display: grid; gap: .55rem; }
.legal-list li{ padding-left: 1.15rem; position: relative; color: #3c404a; font-size: .96rem; }
.legal-list li::before{ content:""; position: absolute; left: 0; top: .58em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-2); }
.legal-note{
  background: rgba(251,191,36,.1); border: 1px solid rgba(180,83,9,.18); border-radius: var(--radius);
  padding: 1.2rem 1.4rem; color: #3c404a; font-size: .95rem; line-height: 1.7;
}

/* center helper */
.center-cta{ text-align: center; margin-top: clamp(1.75rem, 4vw, 2.75rem); }

/* ───────── Reduced motion (mandatory) ───────── */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  [data-sz-reveal] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
