/* =========================================================
   סטודיו אורה — מערכת עיצוב משותפת
   פילאטיס ויוגה לנשים בלבד | מראה שמשי, חם ומזמין
   ========================================================= */

:root {
  /* Brand — warm sunny yellow + white */
  --primary: #F2B01E;          /* warm sun gold */
  --primary-light: #FBE2A0;
  --primary-soft: #FCEFC8;
  --primary-dark: #C9890F;
  --accent: #F2B01E;           /* alias used by compliance widgets */
  --accent-contrast: #2B2620;  /* text on yellow */

  --bg: #FFFFFF;
  --bg-soft: #FFFBF1;          /* warm cream */
  --bg-warm: #FDF3D9;          /* deeper warm band */
  --bg-card: #FFFFFF;
  --bg-elevated: #FFFFFF;
  --bg-dark: #2B2620;          /* warm near-black */
  --bg-dark-2: #38322A;

  --text-head: #2B2620;
  --text-primary: #2B2620;
  --text-body: #524C42;
  --text-muted: #8C8475;
  --text-light: #FBF7EE;

  --border: rgba(43, 38, 32, 0.10);
  --border-soft: rgba(43, 38, 32, 0.07);
  --footer-bg: #211D18;
  --footer-text: rgba(255, 255, 255, 0.72);

  --shadow-sm: 0 2px 10px rgba(120, 90, 20, 0.07);
  --shadow-md: 0 12px 34px rgba(120, 90, 20, 0.10);
  --shadow-lg: 0 26px 64px rgba(120, 90, 20, 0.14);
  --shadow-gold: 0 14px 34px rgba(242, 176, 30, 0.30);

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 36px;
  --r-pill: 999px;

  --section-y: 104px;
  --header-h: 86px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Assistant', 'Noto Sans Hebrew', 'Segoe UI', sans-serif;
  direction: rtl;
  background: var(--bg);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ---------- Containers ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.container-xwide { max-width: 1560px; margin: 0 auto; padding: 0 24px; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-dark);
  background: var(--primary-soft);
  padding: 7px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 22px;
}
.accent { color: var(--primary-dark); }
mark.hl {
  background: linear-gradient(180deg, transparent 58%, var(--primary-light) 58%);
  color: inherit;
  padding: 0 2px;
}
h1, h2, h3 { color: var(--text-head); line-height: 1.22; }
h2.section-title {
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 800;
  margin-bottom: 18px;
}
.section-lead {
  font-size: 19px;
  color: var(--text-body);
  max-width: 760px;
  margin: 0 auto;
}
.center { text-align: center; }

/* ---------- Sections ---------- */
section { padding: var(--section-y) 0; }
.sec-soft { background: var(--bg-soft); }
.sec-warm { background: var(--bg-warm); }
.sec-head { text-align: center; max-width: 820px; margin: 0 auto 56px; }

/* ---------- Sticky header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: var(--header-h);
  padding: 0 32px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
.site-header .logo-link { display: inline-flex; align-items: center; gap: 10px; margin-right: 10px; }
.logo-placeholder {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--primary);
  color: var(--accent-contrast);
  font-weight: 900;
  font-size: 19px;
  box-shadow: var(--shadow-gold);
}
.logo-name { color: var(--text-head); font-weight: 900; font-size: 19px; letter-spacing: -0.01em; }
.logo-name small { display: block; font-size: 10.5px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.04em; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text-body);
  padding: 9px 14px;
  border-radius: var(--r-pill);
  transition: color .2s, background .2s;
}
.nav a:hover { color: var(--primary-dark); }
.nav a.active { color: var(--accent-contrast); background: var(--primary-soft); }

.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  border-radius: var(--r-pill);
  background: var(--primary);
  color: var(--accent-contrast);
  font-weight: 800;
  font-size: 15px;
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
  transition: transform .2s, box-shadow .2s;
}
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(242,176,30,.40); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  align-items: center; justify-content: center;
  color: var(--text-head);
}
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 17px 40px;
  border-radius: var(--r-pill);
  font-weight: 800;
  font-size: 17.5px;
  transition: transform .2s, box-shadow .2s, background .2s;
  cursor: pointer;
}
.btn-primary {
  background: var(--primary);
  color: var(--accent-contrast);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 22px 44px rgba(242,176,30,.42); }
.btn-ghost {
  background: transparent;
  color: var(--text-head);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary-dark); transform: translateY(-2px); }
.btn-light {
  background: #fff;
  color: var(--accent-contrast);
  box-shadow: var(--shadow-md);
}
.btn-light:hover { transform: translateY(-2px) scale(1.02); }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 84px 0 92px;
  background:
    radial-gradient(1100px 520px at 82% -8%, rgba(242,176,30,0.26), transparent 60%),
    radial-gradient(820px 460px at 8% 12%, rgba(252,239,200,0.55), transparent 62%),
    var(--bg);
  overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-pre { color: var(--primary-dark); font-weight: 700; font-size: 16px; margin-bottom: 14px; }
.hero h1 {
  font-size: clamp(32px, 4.6vw, 58px);
  font-weight: 900;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 20px;
  color: var(--text-body);
  margin-bottom: 18px;
  max-width: 560px;
}
.negation {
  font-size: 17.5px;
  color: var(--text-muted);
  margin-bottom: 30px;
  font-weight: 600;
}
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-trust {
  margin-top: 28px;
  display: flex; gap: 26px; flex-wrap: wrap;
}
.hero-trust .ht { display: flex; flex-direction: column; }
.hero-trust .ht b { font-size: 26px; font-weight: 900; color: var(--text-head); }
.hero-trust .ht span { font-size: 13.5px; color: var(--text-muted); font-weight: 600; }

/* Hero visual card */
.hero-visual {
  position: relative;
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, var(--primary-light), var(--primary-soft));
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-visual .img-ph {
  text-align: center;
  color: var(--primary-dark);
  padding: 30px;
}
.hero-visual .img-ph svg { width: 88px; height: 88px; opacity: .85; margin: 0 auto 14px; }
.hero-visual .img-ph b { display: block; font-weight: 800; font-size: 16px; }
.hero-visual .img-ph span { font-size: 13px; color: #9a7b22; }
.hero-float {
  position: absolute;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 11px;
  font-weight: 700; font-size: 14px; color: var(--text-head);
}
.hero-float .dot { width: 10px; height: 10px; border-radius: 50%; background: #46c06a; box-shadow: 0 0 0 4px rgba(70,192,106,.18); }
.hero-float.f1 { top: 22px; right: -14px; }
.hero-float.f2 { bottom: 26px; left: -14px; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .ic {
  width: 54px; height: 54px;
  border-radius: 15px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card .ic svg { width: 28px; height: 28px; }
.card h3 { font-size: 21px; font-weight: 800; margin-bottom: 9px; }
.card p { font-size: 16px; color: var(--text-body); }
.card-top { border-top: 3px solid var(--primary); }

/* Class cards (with image placeholder header) */
.class-card { padding: 0; overflow: hidden; }
.class-card .ph-band {
  aspect-ratio: 16 / 10;
  background: linear-gradient(150deg, var(--primary-light), var(--primary-soft));
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-dark);
}
.class-card .ph-band svg { width: 56px; height: 56px; opacity: .85; }
.class-card .cc-body { padding: 26px 26px 28px; }
.class-card .tagchip {
  display: inline-block;
  font-size: 12.5px; font-weight: 700;
  color: var(--primary-dark); background: var(--primary-soft);
  padding: 4px 12px; border-radius: var(--r-pill); margin-bottom: 12px;
}
.class-card h3 { font-size: 22px; margin-bottom: 8px; }
.class-card ul.feat { margin-top: 14px; display: grid; gap: 8px; }
.class-card ul.feat li { font-size: 15px; color: var(--text-body); padding-right: 24px; position: relative; }
.class-card ul.feat li::before {
  content: ""; position: absolute; right: 0; top: 9px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--primary);
}

/* ---------- Dialogue / thoughts ---------- */
.dialogue-wrap {
  display: grid; gap: 10px;
  max-width: 860px; margin: 0 auto;
}
.dialogue-line {
  position: relative;
  font-weight: 600; font-size: 17.5px; color: var(--text-head);
  line-height: 1.5;
  padding: 17px 58px 17px 20px;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(43,38,32,.04);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.dialogue-line:nth-child(odd) { background: #fdf6e6; }
.dialogue-line::before {
  content: "✓";
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--primary-soft); color: var(--primary-dark);
  font-weight: 900; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 1.5px var(--primary-light);
}
.dialogue-line:hover {
  transform: translateX(-5px);
  box-shadow: 0 10px 24px rgba(43,38,32,.10);
}
.dialogue-line:last-child {
  margin-top: 6px;
  border: none;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff !important;
  font-weight: 800; font-size: 18.5px;
  box-shadow: 0 10px 26px rgba(242,176,30,.38);
}
.dialogue-line:last-child::before {
  content: "★";
  background: rgba(255,255,255,.28);
  color: #fff;
  box-shadow: none;
  font-size: 15px;
}
.dialogue-line.soft { font-weight: 500; color: var(--text-muted); }
@media (max-width: 768px) {
  .dialogue-line { font-size: 16px; padding: 15px 50px 15px 16px; }
  .dialogue-line::before { width: 26px; height: 26px; right: 13px; }
}

/* ---------- About story extras ---------- */
.story-subhead { font-size: 15px; font-weight: 800; color: var(--primary-dark); letter-spacing: .04em; margin: 22px 0 14px; text-transform: none; position: relative; padding-bottom: 8px; }
.story-subhead::after { content: ""; position: absolute; right: 0; bottom: 0; width: 46px; height: 3px; border-radius: 3px; background: var(--primary); }
.stair .beat strong { color: var(--primary-dark); font-weight: 800; }
.scroll-hint {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 22px;
  font-size: 16px; font-weight: 700; color: var(--primary-dark);
  text-decoration: none; transition: color .2s ease;
}
.scroll-hint:hover { color: var(--text-head); }
.scroll-arrow { width: 22px; height: 22px; animation: scrollBounce 1.6s ease-in-out infinite; }
@keyframes scrollBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }
@media (prefers-reduced-motion: reduce) { .scroll-arrow { animation: none; } }

/* ---------- Story timeline (about teaser) ---------- */
.story-timeline { position: relative; }
.story-step { position: relative; padding-right: 34px; padding-bottom: 22px; }
.story-step:last-child { padding-bottom: 0; }
.story-step::before {
  content: ""; position: absolute; right: 2px; top: 4px;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--primary); box-shadow: 0 0 0 5px var(--primary-soft);
  z-index: 1;
}
.story-step:not(:last-child)::after {
  content: ""; position: absolute; right: 8px; top: 18px; bottom: -4px;
  width: 2px; background: var(--primary-light);
}
.story-step p { font-size: 17.5px; color: var(--text-body); line-height: 1.6; margin: 0; }
.story-step strong { color: var(--primary-dark); font-weight: 800; }
@media (max-width: 768px) {
  .story-step { padding-right: 28px; padding-bottom: 18px; }
  .story-step p { font-size: 16px; }
}

/* ---------- Differentiator (horizontal icon cards) ---------- */
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 1020px; margin: 0 auto; }
.diff-item {
  display: flex; gap: 18px; align-items: flex-start;
  background: #fff; border: 1px solid var(--border-soft);
  border-radius: 18px; padding: 22px 24px;
  box-shadow: 0 4px 16px rgba(43,38,32,.05);
  transition: transform .22s ease, box-shadow .22s ease;
}
.diff-item:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(43,38,32,.11); }
.diff-ic {
  flex: 0 0 auto; width: 58px; height: 58px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-dark);
  background: linear-gradient(135deg, var(--primary-soft) 0%, #fff 95%);
  box-shadow: inset 0 0 0 1.5px var(--primary-light);
  transition: background .22s ease, color .22s ease;
}
.diff-item:hover .diff-ic { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); color: #fff; }
.diff-ic svg { width: 28px; height: 28px; }
.diff-text h3 { font-size: 19px; font-weight: 800; color: var(--text-head); margin-bottom: 6px; }
.diff-text p { font-size: 15.5px; color: var(--text-body); line-height: 1.6; margin: 0; }
@media (max-width: 768px) {
  .diff-grid { grid-template-columns: 1fr; gap: 14px; }
  .diff-item { padding: 18px 18px; gap: 14px; }
  .diff-ic { width: 50px; height: 50px; }
  .diff-ic svg { width: 24px; height: 24px; }
  .diff-text h3 { font-size: 17.5px; }
}

/* ---------- Qualifying questionnaire ---------- */
.quiz-form { max-width: 720px; margin: 8px auto 0; display: grid; gap: 16px; }
.quiz-q {
  background: #fff; border: 1px solid var(--border-soft); border-radius: 18px;
  padding: 22px 24px; box-shadow: 0 4px 16px rgba(43,38,32,.05);
}
.quiz-label { font-size: 17.5px; font-weight: 700; color: var(--text-head); line-height: 1.5; margin: 0 0 16px; display: flex; gap: 12px; align-items: flex-start; }
.quiz-num {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff; font-weight: 900; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(242,176,30,.35);
}
.quiz-options { display: flex; flex-wrap: wrap; gap: 12px; padding-right: 42px; }
.quiz-opt { position: relative; cursor: pointer; }
.quiz-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.quiz-opt span {
  display: inline-block; padding: 11px 22px; border-radius: 999px;
  border: 2px solid var(--border); background: #fff;
  font-size: 15.5px; font-weight: 700; color: var(--text-body);
  transition: all .18s ease;
}
.quiz-opt:hover span { border-color: var(--primary-light); background: var(--primary-soft); }
.quiz-opt:has(input:checked) span { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); border-color: var(--primary); color: #fff; box-shadow: 0 6px 14px rgba(242,176,30,.32); }
.quiz-opt input:focus-visible + span { outline: 2px solid var(--primary-dark); outline-offset: 2px; }

.quiz-q.is-disabled { opacity: .45; pointer-events: none; filter: grayscale(.3); transition: opacity .2s ease; }

.quiz-disqualify {
  background: linear-gradient(135deg, var(--primary-soft) 0%, #fff 95%);
  border: 1px solid var(--primary-light);
  border-radius: 18px; padding: 26px 28px; text-align: center;
  box-shadow: var(--shadow-sm);
}
.quiz-disqualify[hidden] { display: none; }
.quiz-disqualify h3 { font-size: 20px; font-weight: 800; color: var(--text-head); margin: 0 0 10px; }
.quiz-disqualify p { font-size: 16px; color: var(--text-body); line-height: 1.6; margin: 0; max-width: 560px; margin-inline: auto; }

.quiz-details { margin-top: 4px; }
.quiz-lock {
  display: flex; gap: 10px; align-items: center; justify-content: center;
  color: var(--text-muted); font-weight: 700; font-size: 15px;
  background: var(--primary-soft); border: 1px dashed var(--primary-light);
  border-radius: 14px; padding: 16px 20px;
}
.quiz-lock.is-hidden { display: none; }
.quiz-fields {
  background: #fff; border: 1px solid var(--border-soft); border-radius: 18px;
  padding: 26px 26px 28px; box-shadow: var(--shadow-md);
  transition: opacity .3s ease, transform .3s ease;
}
.quiz-fields.is-locked { display: none; }
.quiz-fields.is-unlocking { animation: quizReveal .35s ease both; }
@keyframes quizReveal { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.quiz-fields-title { font-size: 19px; font-weight: 800; color: var(--text-head); margin: 0 0 18px; text-align: center; }
@media (max-width: 768px) {
  .quiz-q { padding: 18px 18px; }
  .quiz-label { font-size: 16px; }
  .quiz-options { padding-right: 0; }
  .quiz-opt span { padding: 10px 18px; font-size: 14.5px; }
  .quiz-fields { padding: 20px 18px 22px; }
}

/* ---------- Contact-page questionnaire (compact, squared) ---------- */
.cquiz { display: grid; gap: 20px; }
.cquiz-q { transition: opacity .2s ease; }
.cquiz-q.is-disabled { opacity: .4; pointer-events: none; filter: grayscale(.3); }
.cquiz-label { font-size: 15.5px; font-weight: 700; color: var(--text-head); line-height: 1.5; margin: 0 0 11px; }
.cquiz-opts { display: flex; flex-wrap: wrap; gap: 10px; }
.cquiz-opt { position: relative; cursor: pointer; }
.cquiz-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.cquiz-opt span {
  display: inline-block; padding: 10px 18px; border-radius: 11px;
  border: 1.5px solid var(--border); background: #fff;
  font-size: 14.5px; font-weight: 700; color: var(--text-body);
  transition: all .18s ease;
}
.cquiz-opt:hover span { border-color: var(--primary-light); background: var(--primary-soft); }
.cquiz-opt:has(input:checked) span { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: 0 5px 12px rgba(242,176,30,.3); }
.cquiz-opt input:focus-visible + span { outline: 2px solid var(--primary-dark); outline-offset: 2px; }

.cquiz-lock {
  display: flex; gap: 8px; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--text-muted);
  background: var(--primary-soft); border: 1px dashed var(--primary-light);
  border-radius: 12px; padding: 14px 16px; margin-top: 4px;
}
.cquiz-lock.is-hidden { display: none; }
.cquiz-fields { display: grid; gap: 16px; margin-top: 6px; }
.cquiz-fields.is-locked { display: none; }
.cquiz-fields.is-unlocking { animation: quizReveal .35s ease both; }
.cquiz-fields-title { font-size: 16px; font-weight: 800; color: var(--text-head); text-align: center; margin: 0 0 2px; }
.cquiz .quiz-disqualify { margin-top: 4px; }

/* ---------- Truth block (dark warm) ---------- */
.truth-block {
  background: linear-gradient(155deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  border-radius: var(--r-xl);
  padding: 70px 60px;
  color: var(--text-light);
  position: relative; overflow: hidden;
}
.truth-block::after {
  content: ""; position: absolute; top: -120px; left: -80px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,176,30,.22), transparent 70%);
}
.truth-block .eyebrow { background: rgba(242,176,30,.16); color: var(--primary-light); }
.truth-block h2 { color: #fff; font-size: clamp(26px, 3.2vw, 40px); margin-bottom: 18px; position: relative; }
.truth-block p { color: rgba(255,255,255,.82); font-size: 18px; max-width: 720px; position: relative; }
.truth-block p + p { margin-top: 16px; }

/* ---------- Pipeline / method steps ---------- */
.pipeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; }
.pl-step {
  background: #fff; border: 1px solid var(--border-soft);
  border-radius: var(--r-md); padding: 28px 22px; text-align: center;
  box-shadow: var(--shadow-sm); position: relative;
}
.pl-step .num {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--primary); color: var(--accent-contrast);
  font-weight: 900; font-size: 19px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.pl-step h4 { font-size: 18px; font-weight: 800; margin-bottom: 7px; color: var(--text-head); }
.pl-step p { font-size: 14.5px; color: var(--text-body); }
.pl-arrow { display: none; }

/* ---------- Compare old/new ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.compare .col {
  border-radius: var(--r-lg); padding: 34px 32px;
}
.compare .col.old { background: #fff; border: 1px solid var(--border); }
.compare .col.new { background: var(--bg-dark); color: var(--text-light); box-shadow: var(--shadow-md); }
.compare .col h3 { font-size: 20px; margin-bottom: 18px; }
.compare .col.new h3 { color: #fff; }
.compare .col.old h3 { color: var(--text-muted); }
.compare ul li { padding: 11px 0 11px 0; padding-right: 30px; position: relative; font-size: 16px; }
.compare .col.old ul li { color: var(--text-body); border-bottom: 1px solid var(--border-soft); }
.compare .col.new ul li { color: rgba(255,255,255,.86); border-bottom: 1px solid rgba(255,255,255,.10); }
.compare ul li:last-child { border-bottom: none; }
.compare ul li::before { content: ""; position: absolute; right: 0; top: 19px; width: 16px; height: 16px; border-radius: 50%; }
.compare .col.old ul li::before { background: rgba(43,38,32,.14); }
.compare .col.new ul li::before { background: var(--primary); }

/* ---------- Testimonials ---------- */
.tst-card {
  background: #fff; border: 1px solid var(--border-soft);
  border-radius: var(--r-lg); padding: 32px 30px;
  box-shadow: var(--shadow-sm); position: relative;
}
.tst-card .quotemark { font-size: 60px; line-height: .6; color: var(--primary-light); font-weight: 900; }
.tst-card p.body { font-size: 16.5px; color: var(--text-body); margin: 6px 0 20px; }
.tst-card .who { display: flex; align-items: center; gap: 13px; }
.tst-card .who .av {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--primary-soft); color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px;
}
.tst-card .who b { display: block; font-size: 15.5px; color: var(--text-head); }
.tst-card .who span { font-size: 13px; color: var(--text-muted); }
.stars { color: var(--primary); font-size: 15px; letter-spacing: 2px; margin-bottom: 10px; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  background: #fff; border: 1px solid var(--border-soft);
  border-radius: var(--r-lg); padding: 36px 30px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  position: relative; transition: transform .25s, box-shadow .25s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured { border: 2px solid var(--primary); box-shadow: var(--shadow-md); }
.price-card .ribbon {
  position: absolute; top: -14px; right: 26px;
  background: var(--primary); color: var(--accent-contrast);
  font-weight: 800; font-size: 13px; padding: 6px 16px; border-radius: var(--r-pill);
  box-shadow: var(--shadow-gold);
}
.price-card h3 { font-size: 22px; margin-bottom: 6px; }
.price-card .desc { font-size: 14.5px; color: var(--text-muted); margin-bottom: 20px; min-height: 42px; }
.price-card .amount { font-size: 44px; font-weight: 900; color: var(--text-head); line-height: 1; }
.price-card .amount small { font-size: 16px; font-weight: 600; color: var(--text-muted); }
.price-card .per { font-size: 14px; color: var(--text-muted); margin-bottom: 22px; }
.price-card ul.inc { display: grid; gap: 11px; margin-bottom: 26px; }
.price-card ul.inc li { font-size: 15px; color: var(--text-body); padding-right: 26px; position: relative; }
.price-card ul.inc li::before {
  content: "✓"; position: absolute; right: 0; top: 0;
  color: var(--primary-dark); font-weight: 900;
}
.price-card .btn { margin-top: auto; }

/* ---------- Anchor / value note ---------- */
.value-note {
  background: var(--bg-dark); color: var(--text-light);
  border-radius: var(--r-lg); padding: 40px 44px; text-align: center;
}
.value-note h3 { color: #fff; font-size: 24px; margin-bottom: 12px; }
.value-note p { color: rgba(255,255,255,.82); font-size: 17px; max-width: 720px; margin: 0 auto; }

/* Promo box (yellow callout with popular glowing button) */
.promo-box {
  background: linear-gradient(150deg, var(--primary-light) 0%, var(--primary) 52%, var(--primary-dark) 125%);
  border-radius: var(--r-xl);
  padding: 72px 56px;
  text-align: center;
  color: var(--accent-contrast);
  box-shadow: var(--shadow-lg);
}
.promo-box h3 { color: var(--accent-contrast); font-size: clamp(26px, 3.2vw, 34px); font-weight: 900; margin-bottom: 14px; }
.promo-box p { color: rgba(43,38,32,.82); font-size: 19px; max-width: 760px; margin: 0 auto; font-weight: 600; }
.promo-cta { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.promo-cta .btn { width: 100%; max-width: 440px; font-size: 17px; font-weight: 800; padding: 16px 28px; }
.promo-pop { position: relative; display: inline-flex; }
.promo-flag {
  position: absolute; top: -16px; right: -14px;
  background: #fff; color: var(--primary-dark);
  font-weight: 900; font-size: 12.5px; letter-spacing: .02em;
  padding: 6px 14px; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0,0,0,.22);
  transform: rotate(7deg); z-index: 4; white-space: nowrap;
}
.promo-btn-glow {
  background: #fff; color: var(--accent-contrast);
  font-size: 19px; font-weight: 900; padding: 21px 48px;
  border: 3px solid #FFE07A;
  border-radius: var(--r-pill);
  animation: promoGlow 1.7s ease-in-out infinite;
}
.promo-btn-glow:hover { transform: translateY(-2px) scale(1.03); }
.promo-single { font-size: 14px; font-weight: 600; padding: 10px 22px; border-width: 1.5px; opacity: .9; }
.promo-single:hover { opacity: 1; }
@keyframes promoGlow {
  0%, 100% { box-shadow: 0 0 12px 2px rgba(255,210,70,.75), 0 0 4px 0 rgba(255,224,122,.6); border-color: #FFE07A; }
  50% { box-shadow: 0 0 30px 9px rgba(255,221,77,1), 0 0 12px 2px rgba(255,236,150,.9); border-color: #FFF1B0; }
}
@media (max-width: 768px) {
  .promo-box { padding: 48px 24px; }
  .promo-box p { font-size: 17px; }
  .promo-cta .btn { font-size: 16px; padding: 15px 24px; max-width: 100%; }
}

/* ---------- Schedule table ---------- */
.timetable-wrap { overflow-x: auto; border-radius: var(--r-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--border-soft); }
table.timetable { width: 100%; border-collapse: collapse; background: #fff; min-width: 720px; }
table.timetable th, table.timetable td { padding: 15px 14px; text-align: center; border-bottom: 1px solid var(--border-soft); font-size: 14.5px; }
table.timetable thead th { background: var(--bg-dark); color: #fff; font-weight: 800; font-size: 14px; }
table.timetable tbody th { background: var(--bg-soft); font-weight: 800; color: var(--text-head); white-space: nowrap; }
table.timetable td .slot { display: inline-block; background: var(--primary-soft); color: var(--primary-dark); font-weight: 700; padding: 7px 10px; border-radius: 10px; font-size: 13px; line-height: 1.3; }
table.timetable td.empty { color: var(--border); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--border-soft); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; text-align: right;
  padding: 22px 26px; font-size: 18px; font-weight: 800; color: var(--text-head);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .chev { flex-shrink: 0; transition: transform .25s; color: var(--primary-dark); font-size: 22px; font-weight: 700; }
.faq-item.open .faq-q .chev { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 26px 24px; font-size: 16px; color: var(--text-body); }

/* ---------- Forms ---------- */
.form-card {
  background: #fff; border: 1px solid var(--border-soft);
  border-radius: var(--r-xl); padding: 40px 38px; box-shadow: var(--shadow-md);
}
.form-card h3 { font-size: 25px; margin-bottom: 6px; }
.form-card .form-sub { font-size: 15.5px; color: var(--text-muted); margin-bottom: 24px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 14.5px; font-weight: 700; color: var(--text-head); margin-bottom: 7px; }
.form-field input, .form-field select {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--border); border-radius: 12px;
  font-family: inherit; font-size: 16px; color: var(--text-head);
  background: var(--bg-soft); transition: border-color .2s, background .2s;
}
.form-field input:focus, .form-field select:focus { outline: none; border-color: var(--primary); background: #fff; }

.form-consent {
  display: flex; align-items: flex-start; gap: 10px;
  margin: 14px 0; font-size: 13px; line-height: 1.5;
  color: var(--text-muted); cursor: pointer; text-align: right;
}
.form-consent input[type="checkbox"] {
  flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px;
  cursor: pointer; accent-color: var(--primary);
}
.form-consent span { flex: 1; }
.form-consent a { color: var(--primary-dark); text-decoration: underline; }
.form-consent .required-mark { color: #d33; font-weight: 700; }
.form-consent--required.is-invalid { color: #d33; }
.form-consent--required.is-invalid input[type="checkbox"] { outline: 2px solid #d33; outline-offset: 2px; border-radius: 2px; }
.form-consent-error { display: none; font-size: 12px; color: #d33; margin-top: 4px; font-weight: 600; }
.form-consent--required.is-invalid + .form-consent-error { display: block; }
.form-trust-line { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 12px; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(700px 360px at 85% 0%, rgba(255,255,255,.5), transparent 60%),
    linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--r-xl);
  padding: 64px 56px; text-align: center; color: var(--accent-contrast);
  box-shadow: var(--shadow-md);
}
.cta-band h2 { color: var(--accent-contrast); font-size: clamp(26px, 3.4vw, 40px); margin-bottom: 14px; }
.cta-band p { font-size: 18.5px; color: rgba(43,38,32,.82); max-width: 640px; margin: 0 auto 28px; }

/* ---------- Placeholder block ---------- */
.placeholder {
  border: 1.5px dashed var(--primary);
  background: rgba(242,176,30,.06);
  border-radius: 14px; padding: 18px 20px;
  font-weight: 700; color: var(--primary-dark); font-size: 14.5px;
}
.map-ph {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1.5px dashed var(--primary); background: rgba(242,176,30,.06);
  min-height: 320px; display: flex; align-items: center; justify-content: center;
  color: var(--primary-dark); text-align: center; font-weight: 700; padding: 30px;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 70px 0 56px;
  background:
    radial-gradient(900px 420px at 80% -20%, rgba(242,176,30,0.22), transparent 60%),
    var(--bg-soft);
  text-align: center;
}
.page-hero h1 { font-size: clamp(30px, 4vw, 50px); font-weight: 900; margin-bottom: 16px; }
.page-hero p { font-size: 19px; color: var(--text-body); max-width: 680px; margin: 0 auto; }

/* ---------- Split section ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split .visual-ph {
  border-radius: var(--r-xl); aspect-ratio: 5/4;
  background: linear-gradient(155deg, var(--primary-light), var(--primary-soft));
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center; color: var(--primary-dark);
}
.split .visual-ph .img-ph { text-align: center; padding: 26px; }
.split .visual-ph .img-ph svg { width: 80px; height: 80px; opacity: .85; margin: 0 auto 12px; }
.split .visual-ph .img-ph b { display: block; font-weight: 800; }
.split .visual-ph .img-ph span { font-size: 13px; color: #9a7b22; }
.split h2 { font-size: clamp(26px, 3.4vw, 42px); font-weight: 800; margin-bottom: 18px; }
.split p { font-size: 17.5px; color: var(--text-body); margin-bottom: 14px; }

/* stair-step copy */
.stair p { margin-bottom: 10px; }
.stair .beat { font-size: 18px; color: var(--text-body); margin-bottom: 6px; }
.lead-copy { max-width: 760px; margin: 0 auto; }
.lead-copy .beat { font-size: 19px; line-height: 1.7; margin-bottom: 8px; color: var(--text-body); }
.lead-copy .beat.big { font-size: 23px; font-weight: 800; color: var(--text-head); margin: 22px 0 10px; }

/* ---------- Footer ---------- */
.site-footer {
  padding: 64px 20px 40px;
  background: var(--footer-bg);
  color: var(--footer-text);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.site-footer .footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  max-width: 1200px; margin: 0 auto;
}
.footer-block--brand .logo-name { color: #fff; }
.footer-block--brand .logo-name small { color: rgba(255,255,255,.55); }
.footer-block--brand .logo-mark { width: 46px; height: 46px; font-size: 22px; }
.footer-block--brand p { font-size: 14px; line-height: 1.65; margin-top: 16px; color: rgba(255,255,255,.62); max-width: 320px; }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.78); transition: background .2s, color .2s;
}
.footer-socials a:hover { background: var(--primary); color: var(--accent-contrast); }
.footer-socials svg { width: 18px; height: 18px; }
.site-footer .footer-block-title { font-size: 16px; font-weight: 800; color: var(--primary); margin: 0 0 16px; }
.site-footer .footer-links { display: flex; flex-direction: column; gap: 12px; }
.site-footer .footer-links a { color: inherit; font-size: 14px; padding: 4px 0; transition: color .15s; }
.site-footer .footer-links a:hover { color: var(--primary); }
.site-footer .footer-bottom {
  max-width: 1200px; margin: 48px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.5);
}

/* ---------- CopyMind credit ---------- */
.cm-credit {
  width: 100%; background: rgba(0,0,0,0.20);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 16px; text-align: center; font-family: inherit;
}
.cm-credit__inner { font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.52); letter-spacing: 0.01em; }
.cm-credit__prefix { display: inline; margin-inline-end: 4px; font-weight: 400; direction: ltr; unicode-bidi: isolate; }
.cm-credit__link { color: inherit; text-decoration: none; font-weight: 500; border-bottom: 1px dotted transparent; transition: color .2s, border-color .2s; }
.cm-credit__link:hover, .cm-credit__link:focus-visible { color: var(--primary); border-bottom-color: var(--primary); }
.cm-credit__link:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 2px; }

/* ---------- Animations ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   COMPLIANCE WIDGETS
   ========================================================= */
.cookie-consent {
  position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 32px); max-width: 720px;
  background: var(--bg-elevated); color: var(--text-primary);
  border: 1px solid var(--border); border-radius: 16px;
  padding: 20px 24px; box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  z-index: 9998; font-family: inherit; font-size: 15px; line-height: 1.5; display: none;
}
.cookie-consent.is-visible { display: block; }
.cookie-consent__inner { display: flex; flex-direction: column; gap: 16px; }
.cookie-consent__text strong { display: block; margin-bottom: 6px; font-size: 16px; }
.cookie-consent__link { color: var(--primary-dark); text-decoration: underline; margin-right: 4px; }
.cookie-consent__actions { display: flex; gap: 10px; justify-content: flex-end; }
.cookie-consent__btn { border: 0; cursor: pointer; padding: 10px 22px; border-radius: 999px; font-family: inherit; font-size: 14px; font-weight: 700; transition: transform .15s, opacity .15s; }
.cookie-consent__btn:hover { transform: translateY(-1px); }
.cookie-consent__btn--primary { background: var(--primary); color: var(--accent-contrast); }
.cookie-consent__btn--ghost { background: transparent; color: var(--text-primary); border: 1px solid var(--border); }
@media (min-width: 640px) {
  .cookie-consent__inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 24px; }
  .cookie-consent__text { flex: 1; }
}

.a11y-toggle {
  position: fixed; bottom: 20px; left: 20px; width: 52px; height: 52px;
  border-radius: 50%; border: 0; background: var(--primary); color: var(--accent-contrast);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2); cursor: pointer;
  display: flex; align-items: center; justify-content: center; z-index: 9997; transition: transform .15s;
}
.a11y-toggle:hover { transform: scale(1.06); }
.a11y-toggle:focus-visible { outline: 3px solid #1f6feb; outline-offset: 3px; }
.a11y-panel {
  position: fixed; top: 0; left: 0; height: 100vh; width: 320px; max-width: 90vw;
  background: #fff; color: #111; box-shadow: 4px 0 30px rgba(0,0,0,0.2);
  transform: translateX(-105%); transition: transform .25s ease; z-index: 9999;
  display: flex; flex-direction: column; font-family: inherit;
}
.a11y-panel.is-open { transform: translateX(0); }
.a11y-panel__head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid rgba(0,0,0,0.08); }
.a11y-panel__title { margin: 0; font-size: 18px; font-weight: 700; color: #111; }
.a11y-panel__close { border: 0; background: transparent; font-size: 30px; line-height: 1; cursor: pointer; color: #555; padding: 0 8px; }
.a11y-panel__body { flex: 1; overflow-y: auto; padding: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; align-content: start; }
.a11y-opt { border: 1px solid rgba(0,0,0,0.12); background: #fff; border-radius: 12px; padding: 14px 8px; cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 6px; font-family: inherit; font-size: 13px; color: #111; transition: background .15s, transform .15s; }
.a11y-opt:hover { background: #f4f4f4; transform: translateY(-1px); }
.a11y-opt.is-active { background: #1f6feb; color: #fff; border-color: #1f6feb; }
.a11y-opt__icon { font-size: 20px; font-weight: 700; }
.a11y-opt--reset { grid-column: span 2; flex-direction: row; justify-content: center; }
.a11y-panel__foot { padding: 16px 20px; border-top: 1px solid rgba(0,0,0,0.08); text-align: center; }
.a11y-statement-link { color: #1f6feb; text-decoration: underline; font-size: 14px; }

body.a11y-text-up-1 { font-size: 110% !important; }
body.a11y-text-up-2 { font-size: 120% !important; }
body.a11y-text-up-3 { font-size: 135% !important; }
body.a11y-text-down-1 { font-size: 92% !important; }
body.a11y-contrast { background: #000 !important; color: #ffeb3b !important; }
body.a11y-contrast * { background-color: #000 !important; color: #ffeb3b !important; border-color: #ffeb3b !important; }
body.a11y-contrast a, body.a11y-contrast a * { color: #00ffff !important; text-decoration: underline !important; }
body.a11y-grayscale { filter: grayscale(100%); }
body.a11y-links a { background: #ffeb3b !important; color: #000 !important; text-decoration: underline !important; padding: 0 4px; border-radius: 3px; }
body.a11y-readable-font, body.a11y-readable-font * { font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important; letter-spacing: 0.02em !important; line-height: 1.7 !important; }
@media (max-width: 480px) { .a11y-toggle { width: 48px; height: 48px; bottom: 16px; left: 16px; } }

.a11y-modal { position: fixed; inset: 0; z-index: 10000; display: none; align-items: center; justify-content: center; padding: 20px; }
.a11y-modal.is-open { display: flex; }
.a11y-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.55); backdrop-filter: blur(2px); }
.a11y-modal__dialog { position: relative; background: #fff; color: #111; max-width: 720px; width: 100%; max-height: 85vh; overflow-y: auto; border-radius: 16px; padding: 40px 32px 32px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); font-family: inherit; text-align: right; }
.a11y-modal__dialog h2 { font-size: 26px; margin: 0 0 16px; color: #111; }
.a11y-modal__dialog h3 { font-size: 17px; margin: 22px 0 8px; color: #111; }
.a11y-modal__dialog p { font-size: 15px; line-height: 1.7; margin: 0 0 12px; color: #333; }
.a11y-modal__close { position: absolute; top: 12px; left: 12px; width: 36px; height: 36px; border: 0; background: transparent; font-size: 28px; line-height: 1; cursor: pointer; color: #555; border-radius: 50%; transition: background .15s; }
.a11y-modal__close:hover { background: rgba(0,0,0,0.06); }
.a11y-modal__close:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
@media (max-width: 480px) { .a11y-modal__dialog { padding: 32px 20px 24px; } .a11y-modal__dialog h2 { font-size: 22px; } }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 420px; margin: 0 auto; width: 100%; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pipeline { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}
@media (max-width: 1000px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open { flex-wrap: wrap; height: auto; padding-bottom: 14px; }
  .site-header.nav-open .nav {
    display: flex; flex-direction: column; align-items: stretch;
    width: 100%; order: 3; gap: 4px; padding-top: 10px; border-top: 1px solid var(--border-soft);
  }
  .site-header.nav-open .nav a { padding: 12px 14px; }
  .site-header.nav-open .header-cta { display: inline-flex; order: 4; width: 100%; justify-content: center; }
}
@media (max-width: 768px) {
  :root { --section-y: 72px; }
  .hero h1 { font-size: clamp(28px, 8vw, 40px); }
  .grid-2, .grid-3, .grid-4, .compare { grid-template-columns: 1fr; }
  .pipeline { grid-template-columns: 1fr; }
  .truth-block { padding: 44px 26px; }
  .cta-band { padding: 44px 26px; }
  .form-card { padding: 30px 22px; }
  .btn { width: 100%; }
  .hero-cta-row .btn { width: 100%; }

  .site-footer { padding: 40px 20px 24px; }
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .site-footer .footer-block--brand { grid-column: 1 / -1; margin-bottom: 4px; }
  .site-footer .footer-block-title { font-size: 14px; margin-bottom: 10px; }
  .site-footer .footer-links { gap: 6px; }
  .site-footer .footer-links a { font-size: 13px; padding: 6px 0; }
  .site-footer .footer-bottom { margin-top: 28px; padding-top: 16px; flex-direction: column; text-align: center; gap: 6px; font-size: 11px; }
}
@media (max-width: 380px) {
  .site-footer .footer-grid { gap: 24px 16px; }
  .site-footer .footer-block-title { font-size: 13px; }
  .site-footer .footer-links a { font-size: 12px; }
}

/* =========================================================
   REAL IMAGE FILLS + GALLERY (House Of Body & Soul)
   ========================================================= */
.hero-visual { position: relative; }
.hero-visual > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split .visual-ph { position: relative; overflow: hidden; }
.split .visual-ph > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.class-card .ph-band { overflow: hidden; }
.class-card .ph-band > img { width: 100%; height: 100%; object-fit: cover; }
.site-header .logo-img { height: 64px; width: auto; display: block; }
.footer-logo-img { height: 56px; width: auto; display: block; margin-bottom: 14px; }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery a, .gallery .g-item { display: block; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 1/1; box-shadow: var(--shadow-sm); background: var(--primary-soft); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery a:hover img, .gallery .g-item:hover img { transform: scale(1.06); }

/* Atmosphere strip (4 photos, rounded) */
.atmo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.atmo-item { border-radius: 22px; overflow: hidden; aspect-ratio: 1 / 1; box-shadow: var(--shadow-md); background: var(--primary-soft); }
.atmo-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.atmo-item:hover img { transform: scale(1.05); }
@media (max-width: 900px) { .atmo-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
@media (max-width: 560px) { .atmo-grid { grid-template-columns: repeat(2, 1fr); } }

/* 5-up class tiles */
.nm-photo { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); align-self: center; }
.nm-photo img { width: 100%; height: auto; display: block; }

.video-embed { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); background: #000; align-self: center; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.about-video { width: 100%; max-width: 380px; margin: 0 auto; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); background: #000; align-self: center; }
.about-video video { width: 100%; height: auto; display: block; }

.rec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; max-width: 1020px; margin: 0 auto; }
.rec-card { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: #000; aspect-ratio: 9 / 16; }
.rec-card video { width: 100%; height: 100%; object-fit: cover; display: block; }
.rec-name { text-align: center; font-weight: 800; font-size: 20px; color: var(--text-head); margin: 0 0 12px; }
@media (max-width: 820px) { .rec-grid { grid-template-columns: 1fr 1fr; gap: 18px; max-width: 620px; } }
@media (max-width: 560px) { .rec-grid { grid-template-columns: 1fr; max-width: 360px; } }

.class-media { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.class-media .cm { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 3 / 4; background: var(--primary-soft); }
.class-media .cm img, .class-media .cm video { width: 100%; height: 100%; object-fit: cover; display: block; }
.class-media.single { grid-template-columns: 1fr; max-width: 480px; }
.class-media.single .cm { aspect-ratio: 4 / 3; }

.schedule-img { max-width: 560px; margin: 0 auto; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border-soft); }
.schedule-img img { width: 100%; height: auto; display: block; }

/* Live timetable */
.live-timetable { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; max-width: 1000px; margin: 0 auto; }
.tt-col { display: flex; flex-direction: column; gap: 12px; }
.tt-day { background: var(--bg-dark); color: #fff; font-weight: 800; text-align: center; padding: 12px 8px; border-radius: 12px; font-size: 16px; }
.tt-slot { background: #fff; border: 2px solid var(--border); border-radius: 12px; padding: 14px 8px; text-align: center; display: flex; flex-direction: column; gap: 4px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.tt-slot:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.tt-time { font-weight: 900; font-size: 17px; color: var(--text-head); }
.tt-name { font-weight: 800; font-size: 13.5px; letter-spacing: .01em; }
.tt-hot { border-color: #e23744; } .tt-hot .tt-name { color: #e23744; }
.tt-classic { border-color: #2d6cdf; } .tt-classic .tt-name { color: #2d6cdf; }
.tt-vinyasa { border-color: #ef8d2f; } .tt-vinyasa .tt-name { color: #ef8d2f; }
.tt-flex { border-color: #e84393; } .tt-flex .tt-name { color: #e84393; }
.tt-hatha { border-color: #e8a200; } .tt-hatha .tt-name { color: #e8a200; }
@media (max-width: 760px) { .live-timetable { grid-template-columns: 1fr 1fr; gap: 12px; max-width: 460px; } }
@media (max-width: 420px) { .live-timetable { grid-template-columns: 1fr; max-width: 300px; } }

.map-embed { width: 100%; height: 420px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border-soft); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 600px) { .map-embed { height: 320px; } }

/* Pricing layouts */
.start-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 320px)); gap: 22px; justify-content: center; }
.price-card--sm { padding: 30px 26px; }
.price-card--sm .amount { font-size: 38px; }
.price-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.price-grid-4 .price-card { padding: 28px 22px; }
.price-grid-4 .amount { font-size: 34px; }
.price-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1040px; margin: 0 auto; }
.price-subtitle { text-align: center; font-weight: 800; font-size: clamp(20px,2.4vw,26px); color: var(--text-head); margin: 8px 0 26px; }
@media (max-width: 980px) { .price-grid-4 { grid-template-columns: 1fr 1fr; } .price-grid-3 { grid-template-columns: 1fr; max-width: 460px; } }
@media (max-width: 620px) { .start-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; } .price-grid-4 { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; } }
@media (max-width: 560px) { .class-media { grid-template-columns: 1fr; gap: 14px; max-width: 360px; margin: 0 auto; } .class-media .cm { aspect-ratio: 4 / 5; } }

.class5-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.class5-grid .ph-band { aspect-ratio: 1 / 1; }
.class5-grid .cc-body { padding: 22px 20px 24px; }
.class5-grid .class-card h3 { font-size: 20px; }
.class5-grid .cc-body p { font-size: 14.5px; }
@media (max-width: 1100px) { .class5-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .class5-grid { grid-template-columns: 1fr 1fr; gap: 14px; } }
@media (max-width: 420px) { .class5-grid { grid-template-columns: 1fr; } }

.tst-shot { border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border-soft); background:#fff; }
.tst-shot img { width: 100%; height: auto; display: block; }
.tst-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }

/* Testimonials carousel */
.testi-carousel { position: relative; max-width: 1180px; margin: 0 auto; padding: 0 6px; }
.testi-track { direction: ltr; display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 6px 4px 20px; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
.testi-track::-webkit-scrollbar { height: 8px; }
.testi-track::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 10px; }
.testi-slide { flex: 0 0 auto; scroll-snap-align: center; width: 440px; height: 440px; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-md); background: #fff; border: 1px solid var(--border-soft); display: flex; align-items: center; justify-content: center; }
.testi-slide img, .testi-slide video { width: 100%; height: 100%; object-fit: contain; display: block; background: #fff; }
.testi-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-md); color: var(--text-head); font-size: 22px; line-height: 1; display: flex; align-items: center; justify-content: center; z-index: 4; cursor: pointer; transition: transform .15s, background .15s, color .15s; }
.testi-arrow:hover { background: var(--primary); color: var(--accent-contrast); transform: translateY(-50%) scale(1.07); }
.testi-prev { left: -12px; }
.testi-next { right: -12px; }
@media (max-width: 600px) { .testi-slide { width: 290px; height: 400px; } .testi-arrow { width: 44px; height: 44px; font-size: 19px; } .testi-prev { left: -2px; } .testi-next { right: -2px; } }

@media (max-width: 980px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .tst-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .site-header .logo-img { height: 50px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .tst-grid { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   CENTERED HERO + FULL-WIDTH VIDEO (Home)
   ========================================================= */
.hero-centered { text-align: center; padding: 70px 0 76px; }
.hero-head { display: inline-flex; align-items: center; gap: 42px; justify-content: center; flex-wrap: wrap; margin-bottom: 6px; }
.hero-logo-main { height: 162px; width: auto; display: block; margin-right: -16px; filter: drop-shadow(0 10px 26px rgba(242,176,30,.28)); }
.hero-centered h1 { font-size: clamp(34px, 5vw, 64px); font-weight: 900; line-height: 1.06; letter-spacing: -0.01em; }
.hero-centered h1 .he { display: block; font-size: 0.6em; color: var(--primary-dark); margin-top: 6px; }
.hero-text { max-width: 880px; margin: 26px auto 0; }
.hero-text p { font-size: 19px; color: var(--text-body); margin-bottom: 14px; line-height: 1.7; }
.hero-text p.lead-strong { font-weight: 700; color: var(--text-head); }
.hero-text p.lead-soft { color: var(--text-muted); }

.hero-media-row { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; margin-top: 46px; text-align: right; }
.hero-media-row .hero-text { margin: 0; max-width: none; }
.hero-media-row .hero-text p { font-size: 23px; line-height: 1.7; margin-bottom: 22px; }
.hero-media-row .hero-text p.lead-strong { font-size: 25px; line-height: 1.6; }
.hero-media-row .hero-text p.hero-invite { font-size: 19px; font-weight: 600; color: var(--primary-dark); line-height: 1.9; letter-spacing: .012em; margin-bottom: 0; }
.hero-media-row .hero-text p.hero-invite--mid { margin-bottom: 22px; }

/* Designed hero text */
.hero-intro { font-size: 20px; font-weight: 800; color: var(--text-head); margin-bottom: 14px; }
.hero-lead-center { max-width: 820px; margin: 20px auto 8px; text-align: center; font-size: 19px; font-weight: 600; color: var(--text-head); line-height: 1.9; letter-spacing: .012em; }
.hero-lead-center b, .hero-lead-center strong { font-weight: 600; color: var(--text-head); }
@media (max-width: 768px) { .hero-lead-center { font-size: 16px; line-height: 1.85; } }
.hero-points { display: grid; gap: 11px; margin: 0 0 24px; padding: 0; list-style: none; }
.hero-points li { position: relative; padding-right: 34px; font-size: 18.5px; font-weight: 600; color: var(--text-body); line-height: 1.4; }
.hero-points li::before { content: ""; position: absolute; right: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%; background: var(--primary-soft); box-shadow: inset 0 0 0 1.5px var(--primary-light); }
.hero-points li::after { content: "✓"; position: absolute; right: 6px; top: 1px; color: var(--primary-dark); font-weight: 900; font-size: 12px; line-height: 22px; }
.hero-promise { display: block; width: 80%; background: linear-gradient(135deg, var(--primary-soft) 0%, #fff 90%); border-inline-start: 4px solid var(--primary); border-radius: var(--r-md); padding: 18px 24px; margin: 4px 0 18px; box-shadow: var(--shadow-sm); text-align: center; }
.hero-media-row .hero-text .hero-promise p { font-size: 17px; font-weight: 700; color: var(--text-head); line-height: 1.55; margin: 0; }
.hero-q { font-size: 20px; font-weight: 900; color: var(--primary-dark); margin: 4px 0 14px; }
.hero-subpoints { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 8px; }
.hero-subpoints li { position: relative; padding-right: 22px; font-size: 17px; font-weight: 600; color: var(--text-body); line-height: 1.4; }
.hero-subpoints li::before { content: ""; position: absolute; right: 4px; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--primary); box-shadow: none; }
.hero-subpoints li::after { content: none; }
@media (max-width: 768px) {
  .hero-points li { font-size: 17px; }
  .hero-promise { width: 100%; }
  .hero-media-row .hero-text .hero-promise p { font-size: 15.5px; }
  .hero-subpoints li { font-size: 15.5px; }
  .hero-q { font-size: 18px; }
}
@media (max-width: 768px) {
  .hero-media-row .hero-text p { font-size: 19px; }
  .hero-media-row .hero-text p.lead-strong { font-size: 20px; }
  .hero-media-row .hero-text p.hero-invite { font-size: 16px; line-height: 1.85; }
}
.hero-video-side { width: clamp(280px, 40vw, 560px); border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lg); line-height: 0; background: var(--primary-soft); }
.hero-video-side video { width: 100%; height: auto; display: block; }

.hero-feature-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; max-width: 1320px; margin: 0 auto; padding-top: 54px; }
.hero-feature { text-align: center; padding: 6px 14px; position: relative; }
.hero-feature + .hero-feature::before { content: ""; position: absolute; right: -12px; top: 10%; height: 80%; width: 1px; background: var(--border); }
.hero-feature b { display: block; font-size: 20px; font-weight: 900; color: var(--text-head); margin-bottom: 5px; line-height: 1.3; }
.hero-feature span { font-size: 15px; color: var(--text-muted); font-weight: 600; }
@media (max-width: 1000px) and (min-width: 769px) {
  .hero-feature-row { grid-template-columns: 1fr 1fr; gap: 22px 30px; max-width: 640px; }
  .hero-feature:nth-child(odd) + .hero-feature::before { display: none; }
}

@media (max-width: 768px) {
  .hero-centered { padding: 44px 0 56px; }
  .hero-logo-main { height: 92px; }
  .hero-head { gap: 16px; }
  .hero-text p { font-size: 17px; }
  .hero-media-row { grid-template-columns: 1fr; gap: 26px; text-align: center; }
  .hero-video-side { width: 100%; max-width: 440px; margin: 0 auto; order: -1; }
  .hero-feature-row { grid-template-columns: 1fr; gap: 26px; padding-top: 40px; }
  .hero-feature + .hero-feature::before { display: none; }
  .hero-feature { border-top: 1px solid var(--border); padding-top: 22px; }
  .hero-feature:first-child { border-top: none; padding-top: 6px; }
}
