@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@500;600;700&family=Albert+Sans:wght@400;500;600&display=swap');

:root {
  --base: #0a0d14;
  --base-2: #0f1420;
  --base-3: #151c2e;
  --surface: #1a2235;
  --surface-2: #1f2940;
  --primary: #7c3aed;
  --accent: #06d6a0;
  --amber: #f59e0b;
  --text: #e8eaf0;
  --text-muted: #8b91a8;
  --text-dim: #5a6080;
  --border: color-mix(in oklch, var(--primary), transparent 75%);
  --border-soft: color-mix(in oklch, var(--text), transparent 90%);
  --primary-light: color-mix(in oklch, var(--primary), white 30%);
  --primary-glow: color-mix(in oklch, var(--primary), transparent 40%);
  --accent-light: color-mix(in oklch, var(--accent), white 20%);
  --accent-glow: color-mix(in oklch, var(--accent), transparent 50%);
  --primary-dim: color-mix(in oklch, var(--primary), var(--base) 60%);
  --accent-dim: color-mix(in oklch, var(--accent), var(--base) 70%);
  --surface-glow: color-mix(in oklch, var(--primary), var(--surface) 85%);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.5), 0 2px 6px rgba(0,0,0,0.3);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.6), 0 4px 12px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 20px var(--primary-glow), 0 4px 16px rgba(0,0,0,0.5);
  --shadow-accent: 0 0 20px var(--accent-glow), 0 4px 16px rgba(0,0,0,0.5);
  --hdr-h: 70px;
  --sec-pad: clamp(4rem, 8vw, 7rem);
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--base);
  color: var(--text);
  font-family: 'Albert Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.page-inner { padding-top: var(--hdr-h); }

h1, h2, h3, h4 {
  font-family: 'Crimson Pro', serif;
  line-height: 1.15;
  color: var(--text);
}

a { color: var(--accent); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--accent-light); }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.sec {
  padding: var(--sec-pad) 0;
}

.sec-tag {
  display: inline-block;
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.3em 0.9em;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.sec-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.sec-title em {
  font-style: italic;
  color: var(--primary-light);
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sec-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 1rem;
}

.sec-hd {
  text-align: center;
  margin-bottom: 3.5rem;
}

.mt-lg { margin-top: 2rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75em 1.75em;
  border-radius: var(--radius-md);
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-glow {
  background: linear-gradient(135deg, var(--primary), color-mix(in oklch, var(--primary), var(--accent) 30%));
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--primary-glow), 0 8px 24px rgba(0,0,0,0.5);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-soft);
}
.btn-ghost:hover {
  border-color: var(--primary-light);
  color: var(--primary-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent-dim);
  transform: translateY(-2px);
  color: var(--accent-light);
}

.btn-lg { padding: 0.9em 2.2em; font-size: 1rem; }


.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  background: color-mix(in oklch, var(--base), transparent 10%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
}

.hdr.hdr-visible { transform: translateY(0); }

.hdr-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  height: var(--hdr-h);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hdr-logo { display: flex; align-items: center; flex-shrink: 0; }

.hdr-nav { margin-left: auto; }

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-lnk {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  text-decoration: none;
}
.nav-lnk:hover, .nav-lnk.active {
  color: var(--text);
  background: color-mix(in oklch, var(--primary), transparent 85%);
}

.nav-arrow { font-size: 0.65rem; transition: transform 0.25s ease; }
.has-mega:hover .nav-arrow { transform: rotate(180deg); }

.has-mega { position: relative; }

.mega-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 680px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 40px var(--primary-glow);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
}
.has-mega:hover .mega-panel {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.mega-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  padding: 1.5rem;
}

.mega-col { padding: 0.5rem 1rem; }
.mega-col:not(:last-child) { border-right: 1px solid var(--border-soft); }
.mega-col.mega-highlight { background: color-mix(in oklch, var(--primary), transparent 90%); border-radius: var(--radius-md); }

.mega-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}

.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0.5rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s ease;
  margin-bottom: 0.25rem;
}
.mega-item:hover { background: color-mix(in oklch, var(--primary), transparent 85%); }

.mega-ico {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-dim);
  color: var(--primary-light);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.mega-txt { display: flex; flex-direction: column; }
.mega-txt strong { font-size: 0.85rem; color: var(--text); font-family: 'Albert Sans', sans-serif; font-weight: 600; }
.mega-txt small { font-size: 0.72rem; color: var(--text-muted); margin-top: 1px; }

.mega-desc { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.5; }
.mega-cta { width: 100%; justify-content: center; font-size: 0.82rem; padding: 0.6em 1em; }

.hdr-cta { margin-left: 1rem; font-size: 0.82rem; padding: 0.6em 1.4em; }

.hdr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
}
.hdr-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}


.hdr-flip {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--hdr-h);
  z-index: 999;
  perspective: 1200px;
}

.flip-inner {
  width: 100%; height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.flip-inner.is-flipped {
  transform: rotateX(-180deg);
  height: 100vh;
}

.flip-front, .flip-back {
  position: absolute;
  top: 0; left: 0; right: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: var(--base-2);
  border-bottom: 1px solid var(--border-soft);
}

.flip-front { height: var(--hdr-h); }

.flip-back {
  transform: rotateX(180deg);
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem clamp(1.25rem, 5vw, 2rem);
  gap: 0;
  overflow-y: auto;
}

.flip-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.5rem;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}
.flip-close:hover { color: var(--accent); }

.flip-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.25rem;
  margin-bottom: 2rem;
}
.flip-nav a {
  padding: 0.9rem 1rem;
  font-size: 1.1rem;
  font-family: 'Crimson Pro', serif;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  text-decoration: none;
  border-left: 3px solid transparent;
}
.flip-nav a:hover {
  background: var(--surface);
  border-left-color: var(--accent);
  color: var(--accent);
  padding-left: 1.5rem;
}

.flip-cta { align-self: stretch; justify-content: center; margin-top: auto; }


.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 55%;
  align-items: center;
  gap: 3rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 8rem) clamp(1.25rem, 4vw, 2.5rem) clamp(4rem, 8vw, 6rem);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 40%, color-mix(in oklch, var(--primary), transparent 80%), transparent 70%);
  pointer-events: none;
}

.hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.3em 1em;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-soft);
}

.stat-item { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-val {
  font-family: 'Crimson Pro', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.stat-lbl { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }

.hero-visual { position: relative; }

.hero-img-wrap { position: relative; }

.hero-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), 0 0 60px color-mix(in oklch, var(--primary), transparent 70%);
}

.hero-accent-card {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-md), 0 0 20px var(--primary-glow);
  backdrop-filter: blur(10px);
  min-width: 200px;
}

.accent-ico {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-dim);
  color: var(--primary-light);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-accent-card strong { font-size: 0.85rem; color: var(--text); display: block; font-family: 'Albert Sans', sans-serif; font-weight: 600; }
.hero-accent-card small { font-size: 0.72rem; color: var(--text-muted); }


.sec-intro { background: var(--base-2); }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-txt p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.intro-img { position: relative; }

.rnd-img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.intro-badge {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--base);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--shadow-accent);
}


.sec-pillars { background: var(--base); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.crd {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.crd::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.crd:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: var(--shadow-lg), 0 0 30px var(--primary-glow);
}
.crd:hover::before { opacity: 1; }

.crd-ico {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-dim);
  color: var(--primary-light);
  border-radius: var(--radius-md);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}
.crd:hover .crd-ico {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.crd-hdg {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.crd-txt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.crd-lnk {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s ease;
}
.crd-lnk:hover { gap: 0.7rem; color: var(--accent-light); }


.sec-benefits { background: var(--base-2); }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 3rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  transition: all 0.3s ease;
}
.benefit-item:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-md), 0 0 15px var(--primary-glow);
}

.benefit-chk {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 50%;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-item strong {
  display: block;
  font-family: 'Albert Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.benefit-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin: 0; }


.sec-visual { background: var(--base); }

.visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.visual-img-col { display: flex; flex-direction: column; gap: 1.25rem; }

.visual-img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.visual-img:first-child { aspect-ratio: 3/2; }
.visual-img-sm { aspect-ratio: 16/7; }

.visual-txt-col p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.visual-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }

.vl-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.vl-item i { color: var(--accent); font-size: 0.9rem; flex-shrink: 0; }


.sec-sleep { background: var(--base-2); }

.sleep-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.sleep-img .rnd-img { aspect-ratio: 3/4; }

.sleep-cards { display: flex; flex-direction: column; gap: 1rem; }

.sleep-crd {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  transition: all 0.3s ease;
}
.sleep-crd:hover {
  border-color: var(--border);
  transform: translateX(6px);
  box-shadow: var(--shadow-sm), -3px 0 0 var(--primary);
}

.sleep-num {
  font-family: 'Crimson Pro', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-dim);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
  transition: color 0.3s ease;
}
.sleep-crd:hover .sleep-num { color: var(--primary-light); }

.sleep-crd strong { display: block; font-size: 0.95rem; font-weight: 600; color: var(--text); margin-bottom: 0.35rem; }
.sleep-crd p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; margin: 0; }


.sec-cta-band { background: var(--base); padding: calc(var(--sec-pad) * 0.6) 0; }

.cta-band {
  background: linear-gradient(135deg, var(--surface), var(--surface-glow));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-lg), 0 0 40px var(--primary-glow);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, color-mix(in oklch, var(--primary), transparent 70%), transparent 60%);
  pointer-events: none;
}

.cta-band-txt h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 0.5rem; }
.cta-band-txt p { color: var(--text-muted); font-size: 1rem; }


.sec-hydration { background: var(--base-2); }

.hydration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hydration-txt p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.hydration-cards { display: flex; flex-direction: column; gap: 1rem; }

.h-crd {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  transition: all 0.3s ease;
}
.h-crd:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-sm), 0 0 15px var(--accent-glow);
}

.h-crd > i {
  font-size: 1.3rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.h-crd strong { display: block; font-size: 0.95rem; font-weight: 600; color: var(--text); margin-bottom: 0.35rem; }
.h-crd p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; margin: 0; }


.ftr {
  background: var(--base-2);
  border-top: 1px solid var(--border-soft);
  margin-top: auto;
}

.ftr-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.ftr-brand { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.ftr-tagline { font-size: 0.875rem; color: var(--text-muted); }

.ftr-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
}
.ftr-nav a { font-size: 0.875rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.ftr-nav a:hover { color: var(--accent); }

.ftr-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
}
.ftr-contact a, .ftr-contact span {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}
.ftr-contact a:hover { color: var(--accent); }
.ftr-contact i { color: var(--primary-light); }

.ftr-legal-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-soft);
  width: 100%;
}
.ftr-copy { font-size: 0.78rem; color: var(--text-dim); }
.ftr-legal-links { display: flex; gap: 1.5rem; }
.ftr-legal-links a { font-size: 0.78rem; color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.ftr-legal-links a:hover { color: var(--text-muted); }


.quick-bar {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.quick-bar.qb-visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.qb-btn {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-md);
}
.qb-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}


.pg-hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3.5rem);
  background: var(--base-2);
  border-bottom: 1px solid var(--border-soft);
}

.pg-hero-inner { max-width: 700px; }

.pg-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.pg-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
}


.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-txt p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.val-crd {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}
.val-crd:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 20px var(--primary-glow);
}
.val-crd .crd-ico { margin: 0 auto 1.25rem; }
.val-crd h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.75rem; }
.val-crd p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

.approach-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.approach-txt p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }

.approach-steps { display: flex; flex-direction: column; gap: 1rem; }

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  transition: all 0.3s ease;
}
.step-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm), 0 0 15px var(--primary-glow);
}

.step-num {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-dim);
  color: var(--primary-light);
  border-radius: 50%;
  font-family: 'Crimson Pro', serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.step-item strong { display: block; font-size: 0.95rem; font-weight: 600; color: var(--text); margin-bottom: 0.35rem; }
.step-item p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

.img-band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.band-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}
.band-img:hover { transform: scale(1.03); }

.sec-about-img-band { background: var(--base); }


.plans-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.plans-intro-grid p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }

.plans-intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.ptag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6em 1.2em;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-light);
  transition: all 0.25s ease;
}
.ptag:hover {
  background: var(--primary-dim);
  box-shadow: var(--shadow-sm), 0 0 10px var(--primary-glow);
}

.plans-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.plan-crd {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all 0.35s ease;
  position: relative;
}
.plan-crd:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 25px var(--primary-glow);
}

.plan-crd-featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-md), 0 0 30px var(--primary-glow);
}

.plan-featured-badge {
  position: absolute;
  top: -12px; right: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25em 0.9em;
  border-radius: 100px;
}

.plan-ico {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-dim);
  color: var(--primary-light);
  border-radius: var(--radius-md);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.plan-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: block;
}

.plan-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.plan-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.plan-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
  flex: 1;
}

.plan-includes li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: var(--text-muted);
}
.plan-includes li i { color: var(--accent); font-size: 0.75rem; flex-shrink: 0; }

.plan-btn { width: 100%; justify-content: center; margin-top: auto; }

.compare-table-wrap { overflow-x: auto; }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.compare-table th, .compare-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
}
.compare-table th {
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
  font-family: 'Albert Sans', sans-serif;
}
.compare-table td { color: var(--text-muted); }
.compare-table tr:hover td { background: color-mix(in oklch, var(--surface), transparent 50%); color: var(--text); }


.faq-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: start;
}

.faq-cats {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  position: sticky;
  top: calc(var(--hdr-h) + 2rem);
}

.faq-cat {
  padding: 0.7rem 1rem;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}
.faq-cat:hover { color: var(--text); background: var(--surface); }
.faq-cat.active {
  color: var(--accent);
  background: var(--accent-dim);
  border-left-color: var(--accent);
}

.faq-group { display: none; }
.faq-group.active { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq-item:hover { border-color: var(--border); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: color 0.2s ease;
}
.faq-q:hover { color: var(--accent); }
.faq-q i { font-size: 0.75rem; color: var(--text-dim); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); color: var(--accent); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-a p {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}


.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.contact-info h2 { margin-bottom: 2rem; }

.cinfo-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-soft);
}
.cinfo-item:last-of-type { border-bottom: none; }

.cinfo-ico {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-dim);
  color: var(--primary-light);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.cinfo-item strong { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.3rem; }
.cinfo-item p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.cinfo-item a { font-size: 0.9rem; color: var(--text-muted); transition: color 0.2s; }
.cinfo-item a:hover { color: var(--accent); }

.hours-block {
  margin-top: 2rem;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.hours-title {
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hours-title i { color: var(--accent); }

.hours-grid { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-muted);
}
.hours-row:last-child { border-bottom: none; }
.hours-val { font-weight: 600; color: var(--text); }
.hours-closed .hours-val { color: var(--text-dim); }

.hours-note { font-size: 0.78rem; color: var(--text-dim); line-height: 1.6; }

.frm-wizard {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.frm-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
}

.frm-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  cursor: default;
}

.frm-step span {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--surface-2);
  border: 2px solid var(--border-soft);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dim);
  transition: all 0.3s ease;
}

.frm-step small {
  font-size: 0.68rem;
  color: var(--text-dim);
  font-weight: 500;
  transition: color 0.3s ease;
}

.frm-step.active span {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.frm-step.active small { color: var(--primary-light); }
.frm-step.done span { background: var(--accent); border-color: var(--accent); color: var(--base); }
.frm-step.done small { color: var(--accent); }

.frm-step-line {
  flex: 1;
  height: 2px;
  background: var(--border-soft);
  margin: 0 0.75rem;
  margin-bottom: 1.2rem;
  min-width: 40px;
  transition: background 0.3s ease;
}

.frm-hdg {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.frm { }

.frm-panel { display: none; }
.frm-panel.active { display: flex; flex-direction: column; gap: 0; }

.frm-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.frm-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.req { color: var(--accent); }

.frm-field input,
.frm-field select,
.frm-field textarea {
  background: var(--base-2);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.frm-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%238b91a8' d='M8 10.5L2 4.5h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.frm-field input:focus,
.frm-field select:focus,
.frm-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.frm-field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.frm-check { flex-direction: row; align-items: flex-start; gap: 0.75rem; }

.check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.check-label input[type="checkbox"] {
  width: 18px; height: 18px;
  min-width: 18px;
  margin-top: 2px;
  background: var(--base-2);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  cursor: pointer;
  accent-color: var(--primary);
}

.frm-nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
  gap: 1rem;
}

.contact-map { margin-top: 0; }
.map-title { font-size: 1.3rem; font-weight: 600; margin-bottom: 1.25rem; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-md);
}


.thanks-sec {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: var(--sec-pad) 0;
}

.thanks-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.envelope-wrap { perspective: 800px; }

.envelope {
  width: 120px; height: 90px;
  position: relative;
  margin: 0 auto;
}

.env-body {
  width: 100%; height: 100%;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md), 0 0 30px var(--primary-glow);
}

.env-flap {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: var(--primary-dim);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform-origin: top center;
  animation: openFlap 1.2s ease 0.3s forwards;
}

.env-letter {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 70%; height: 60%;
  background: linear-gradient(135deg, var(--surface-2), var(--surface-glow));
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  animation: slideLetter 0.8s ease 1.3s forwards;
}

@keyframes openFlap {
  0% { transform: rotateX(0deg); }
  100% { transform: rotateX(-160deg); }
}

@keyframes slideLetter {
  0% { transform: translateX(-50%) translateY(100%); }
  100% { transform: translateX(-50%) translateY(-40%); }
}

.thanks-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  animation: fadeUpIn 0.6s ease 2s both;
}

.thanks-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  animation: fadeUpIn 0.6s ease 2.2s both;
}

.thanks-note {
  font-size: 0.82rem;
  color: var(--text-dim);
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  line-height: 1.65;
  animation: fadeUpIn 0.6s ease 2.4s both;
}

.thanks-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUpIn 0.6s ease 2.6s both;
}

@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}


.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 3rem clamp(1.25rem, 4vw, 2.5rem) var(--sec-pad);
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: calc(var(--hdr-h) + 2rem);
}

.legal-toc-mobile { display: none; }

.toc-desktop { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); padding: 1.5rem; }

.toc-hd {
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.toc-lnk {
  display: block;
  padding: 0.45rem 0.75rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: var(--radius-sm);
  border-left: 2px solid transparent;
  transition: all 0.2s ease;
  margin-bottom: 0.15rem;
}
.toc-lnk:hover { color: var(--text); background: var(--surface-2); }
.toc-lnk.toc-active {
  color: var(--accent);
  background: var(--accent-dim);
  border-left-color: var(--accent);
}

.legal-content { min-width: 0; }

.legal-header { margin-bottom: 2.5rem; }

.legal-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 0.5rem; }

.legal-meta {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.legal-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.legal-content section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-soft);
}
.legal-content section:last-child { border-bottom: none; }

.legal-content h2 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
  scroll-margin-top: calc(var(--hdr-h) + 2rem);
}

.legal-content a { color: var(--accent); }
.legal-content a:hover { color: var(--accent-light); }

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin: 1rem 0;
}
.cookie-table th, .cookie-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
}
.cookie-table th { background: var(--surface); font-weight: 600; color: var(--text); }
.cookie-table td { color: var(--text-muted); }

.toc-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
}
.toc-toggle:hover { border-color: var(--border); }
.toc-toggle i { transition: transform 0.3s ease; }
.toc-toggle.open i { transform: rotate(180deg); }

.toc-mobile-list {
  display: none;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.5rem 0;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}
.toc-mobile-list.open { display: flex; }
.toc-mobile-list .toc-lnk { padding: 0.6rem 1.25rem; }


.sec-plans-compare { background: var(--base-2); }
.sec-plans-intro { background: var(--base-2); }
.sec-plans-grid { background: var(--base); }


@media (max-width: 1100px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hdr-nav, .hdr-cta { display: none; }
  .hdr-burger { display: block; }
  .hdr { display: block; }
  .hdr-flip { display: block; }
  body.page-inner { padding-top: var(--hdr-h); }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--hdr-h) + 3rem);
    text-align: center;
  }
  .hero-content { order: 1; }
  .hero-visual { order: 0; display: none; }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; gap: 2rem; }

  .intro-grid,
  .visual-grid,
  .sleep-grid,
  .hydration-grid,
  .story-grid,
  .approach-split,
  .plans-intro-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .intro-img { display: none; }

  .faq-layout { grid-template-columns: 1fr; }
  .faq-cats { flex-direction: row; flex-wrap: wrap; position: static; }

  .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar .toc-desktop { display: none; }
  .legal-toc-mobile { display: block; }

  .cta-band { flex-direction: column; text-align: center; }

  .img-band-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 650px) {
  :root { --sec-pad: clamp(3rem, 7vw, 5rem); }

  .pillars-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .plans-cards { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }

  .hero-stats { flex-direction: column; align-items: center; gap: 1.5rem; border-top: none; padding-top: 0; }

  .img-band-grid { grid-template-columns: 1fr; }

  .quick-bar { bottom: 1rem; right: 1rem; }

  .frm-wizard { padding: 1.5rem; }

  .contact-grid { gap: 2rem; }

  .faq-cats { gap: 0.5rem; }
  .faq-cat { font-size: 0.78rem; padding: 0.5rem 0.75rem; }
}

@media (max-width: 400px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .thanks-actions { flex-direction: column; align-items: center; }
}