:root {
  --bg: #0b0c0f;
  --bg-soft: #111318;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f5efe3;
  --muted: rgba(245, 239, 227, 0.72);
  --accent: #d6b26f;
  --accent-2: #f4ddb0;
  --danger: #f0a17a;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 0%, rgba(214, 178, 111, 0.18), transparent 30%),
    radial-gradient(circle at 80% 18%, rgba(214, 178, 111, 0.08), transparent 28%),
    linear-gradient(180deg, #0f1014 0%, #090a0d 100%);
  font-family: Georgia, "Times New Roman", serif;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 10, 13, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.site-header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-mark {
  width: auto;
  height: 42px;
  max-width: 260px;
  object-fit: contain;
  padding: 0;
}

.brand-kicker,
.eyebrow {
  color: var(--accent);
  font: 700 0.74rem/1.2 Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.brand-subline,
.hero-lead,
.hero-bullet,
.micro-note,
.section-intro p,
.funnel-card p,
.split-copy p,
.stat-card p,
.fit-card li,
.process-card p,
.faq-card p,
.footer-copy,
.gallery-label,
.authority-copy p {
  font-family: Arial, sans-serif;
  color: var(--muted);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  font: 600 0.94rem/1 Arial, sans-serif;
  color: rgba(245, 239, 227, 0.86);
}

.cta-button,
.secondary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font: 800 0.94rem/1 Arial, sans-serif;
  transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}

.cta-button {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #18120a;
  box-shadow: 0 18px 38px rgba(214, 178, 111, 0.18);
}

.secondary-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.ghost-button {
  border: none;
  background: transparent;
  color: var(--accent);
  font-weight: 600;
  padding: 0;
  min-height: auto;
}

.cta-button:hover,
.secondary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.cta-button-small {
  min-height: 48px;
  padding: 0.8rem 1.2rem;
}

.hero {
  padding: 4.2rem 0 2.6rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.84fr);
  gap: 2.8rem;
  align-items: start;
}

.hero-copy-wrap h1 {
  max-width: 16ch;
  margin: 0.75rem 0 0.5rem;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.hero-copy-wrap h1 span {
  display: block;
  color: var(--accent);
}

.hero-subheading {
  font-family: Arial, sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--accent);
  margin: 0.5rem 0 1.5rem;
  line-height: 1.3;
  font-weight: 700;
}

.hero-lead {
  max-width: 35rem;
  font-size: 1.04rem;
  line-height: 1.78;
}

.hero-bullets {
  display: grid;
  gap: 0.8rem;
  max-width: 34rem;
  margin: 1.5rem 0 0;
}

.hero-bullet {
  position: relative;
  padding: 1rem 1.2rem 1rem 3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
}

.hero-bullet::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent), #9b7640);
  box-shadow: 0 0 18px rgba(214, 178, 111, 0.35);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.micro-note {
  max-width: 34rem;
  margin-top: 1rem;
  font-size: 0.92rem;
}

.hero-stage {
  position: relative;
}

.book-showcase {
  position: relative;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.spotlight {
  position: absolute;
  inset: -10% auto auto -10%;
  width: 70%;
  height: 65%;
  background: radial-gradient(circle, rgba(214, 178, 111, 0.22), transparent 65%);
  pointer-events: none;
}

.book-image {
  width: 100%;
  max-width: 280px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  margin-bottom: 1.2rem;
}

.book-credit {
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  color: var(--accent);
  margin: 0.4rem 0 0;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-proof-card {
  max-width: 26rem;
  padding: 1rem 1.05rem 1.2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.hero-proof-card p {
  margin: 0.45rem 0 0;
  font: 400 0.96rem/1.65 Arial, sans-serif;
  color: var(--muted);
}

.proof-strip {
  padding: 0 0 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.stat-card,
.funnel-card,
.process-card,
.fit-card,
.final-cta,
.faq-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 1.4rem;
}

.stat-value {
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--accent);
  font-weight: 700;
}

.section {
  padding: 5rem 0 0;
}

.section-intro {
  max-width: 58rem;
  margin-bottom: 1.8rem;
}

.section-intro.narrow {
  max-width: 52rem;
}

.section-intro h2,
.split-copy h2,
.final-cta h2,
.authority-copy h2 {
  margin: 0.65rem 0 0.9rem;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.section-intro p,
.split-copy p,
.final-cta p {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.8;
}

.section-copy {
  font-family: Arial, sans-serif;
  font-size: 1.04rem;
  line-height: 1.8;
  color: var(--muted);
}

.card-grid {
  display: grid;
  gap: 1.2rem;
}

.card-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.funnel-card {
  padding: 1.6rem;
}

.funnel-card h3,
.process-card h3,
.fit-card h3,
.faq-card h3 {
  margin: 0 0 0.9rem;
  font-size: 1.35rem;
}

.funnel-card p,
.process-card p,
.faq-card p {
  margin: 0;
  line-height: 1.78;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 1.4rem;
  align-items: start;
}

.mechanism-list,
.fit-grid,
.process-grid,
.faq-list {
  display: grid;
  gap: 1rem;
}

.mechanism-item {
  padding: 1.2rem 1.25rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  font: 700 1rem/1.45 Arial, sans-serif;
  color: var(--text);
}

.stack-card {
  min-height: 220px;
}

.stack-badge,
.step-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(214, 178, 111, 0.14);
  color: var(--accent);
  font: 800 0.78rem/1 Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.qualification-panel {
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.fit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fit-card {
  padding: 1.4rem;
}

.fit-card ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.8rem;
}

.fit-card-warning {
  border-color: rgba(240, 161, 122, 0.18);
  background: rgba(240, 161, 122, 0.06);
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-card {
  padding: 1.5rem;
}

.process-card h3 {
  margin-top: 1rem;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  padding: 1.8rem;
  background:
    radial-gradient(circle at top right, rgba(214, 178, 111, 0.14), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.final-cta-actions {
  display: grid;
  gap: 0.9rem;
  align-content: center;
  min-width: 280px;
}

.faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-card {
  padding: 1.5rem;
}

.site-footer {
  padding: 2.4rem 0 3rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links {
  display: flex;
  gap: 1rem;
  font: 600 0.94rem/1 Arial, sans-serif;
}

.mobile-booking-bar {
  display: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

.before-after-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  padding: 1rem;
}

.before-after-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.before-after-wrapper.active {
  cursor: grabbing;
}

.before-image,
.after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.2);
}

.after-image {
  clip-path: inset(0 0 0 50%);
  transition: clip-path 0.05s ease-out;
}

.slider-handle {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: translateX(-50%);
  z-index: 10;
  box-shadow: 0 0 12px rgba(214, 178, 111, 0.5);
  cursor: col-resize;
}

.slider-handle::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(214, 178, 111, 0.1);
  border: 2px solid var(--accent);
}

.slider-handle::after {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid var(--accent);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.gallery-label {
  margin-top: 1rem;
  font-size: 0.95rem;
  text-align: center;
}

.card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  padding: 2rem;
}

.legal-page {
  padding: 3rem 0;
}

.section-title {
  margin: 0.65rem 0 1.2rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.legal-copy {
  font-family: Arial, sans-serif;
  color: var(--muted);
  line-height: 1.8;
}

.legal-copy p {
  margin: 0 0 1rem;
}

.legal-copy a {
  color: var(--accent);
}

.legal-copy a:hover {
  text-decoration: underline;
}

.legal-copy code {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.9em;
}

.authority-section {
  background: linear-gradient(180deg, rgba(214, 178, 111, 0.08), rgba(214, 178, 111, 0.03));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.authority-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.authority-image {
  position: relative;
}

.founder-photo {
  width: 100%;
  max-width: 320px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.34);
}

.authority-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.authority-stat {
  text-align: center;
}

.authority-stat strong {
  display: block;
  font-size: 2rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.authority-stat span {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.4;
}

.community-block {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 780px;
}

.community-copy h3 {
  margin: 0.6rem 0 1.1rem;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.community-copy p {
  font-family: Arial, sans-serif;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 1rem;
}

.community-thumb {
  margin: 0.3rem 0 0.6rem;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  width: 160px !important;
  max-width: 160px !important;
}

.community-thumb-right {
  float: right;
  margin-left: 1rem;
}

.community-thumb-left {
  float: left;
  margin-right: 1rem;
}

.community-thumb img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  object-fit: cover;
}

.community-thumb figcaption {
  padding: 0.35rem 0.55rem 0.45rem;
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.35;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

@media (max-width: 680px) {
  .community-block {
    margin-top: 2rem;
    padding-top: 2rem;
  }
  .community-thumb {
    width: 120px !important;
    max-width: 120px !important;
  }
}

.problem-hook {
  max-width: 820px;
  margin: 0 auto 2.4rem;
  padding: 1.9rem 1.9rem 1.7rem;
  border: 1px solid rgba(240, 122, 110, 0.35);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(240, 122, 110, 0.14), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.3);
}

.problem-hook .eyebrow {
  color: var(--danger);
}

.problem-hook h2 {
  margin: 0.7rem 0 1rem;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.problem-hook-lead {
  margin: 0 0 0.9rem;
  font-family: Arial, sans-serif;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--muted);
}

.problem-hook-kicker {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 1.04rem;
  line-height: 1.65;
  color: var(--text);
  font-weight: 600;
  padding-top: 0.9rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

@media (max-width: 680px) {
  .problem-hook {
    padding: 1.4rem 1.2rem;
    border-radius: 20px;
  }
  .problem-hook h2 {
    font-size: 1.5rem;
  }
}

.history-section {
  position: relative;
}

.history-section::before {
  content: "";
  position: absolute;
  inset: 2rem 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 178, 111, 0.25), transparent);
}

.history-panel {
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
}

.history-highlights {
  display: grid;
  gap: 0.9rem;
}

.history-highlight {
  padding: 1.1rem 1.2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(214, 178, 111, 0.08), rgba(255, 255, 255, 0.02));
}

.history-highlight strong {
  display: block;
  color: var(--accent);
  font: 800 1.15rem/1 Arial, sans-serif;
  letter-spacing: 0.02em;
  margin-bottom: 0.45rem;
}

.history-highlight span {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

.pros-section {
  background: linear-gradient(180deg, rgba(214, 178, 111, 0.05), rgba(214, 178, 111, 0.02));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pros-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}

.pros-card {
  padding: 1.8rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pros-badge {
  align-self: flex-start;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(214, 178, 111, 0.14);
  color: var(--accent);
  font: 800 0.74rem/1 Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.pros-card h3 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.pros-card p {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

.pros-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.pros-list li {
  position: relative;
  padding-left: 1.6rem;
  font-family: Arial, sans-serif;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--muted);
}

.pros-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent), #9b7640);
  box-shadow: 0 0 12px rgba(214, 178, 111, 0.35);
}

.pros-list-accent li {
  color: var(--text);
  font-weight: 600;
}

.pros-closing {
  margin-top: 0.3rem;
  color: var(--text) !important;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .site-header-row,
  .hero-layout,
  .split-panel,
  .authority-layout,
  .stats-grid,
  .card-grid-three,
  .card-grid-two,
  .fit-grid,
  .process-grid,
  .faq-list,
  .final-cta,
  .authority-stats,
  .pros-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .site-header-row {
    grid-template-columns: 1fr auto;
    padding: 1rem 0;
  }

  .brand {
    display: block;
  }

  .brand-mark {
    height: 46px;
    max-width: 260px;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .final-cta-actions {
    min-width: 0;
  }

  .book-showcase {
    min-height: auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .founder-photo {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-copy-wrap h1 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .hero-subheading {
    font-size: clamp(1rem, 2vw, 1.2rem);
  }

  .before-after-wrapper {
    height: 300px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 1.2rem, calc(100% - 1.2rem));
  }

  .site-header {
    background: rgba(9, 10, 13, 0.92);
  }

  .site-header-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    min-height: auto;
  }

  .hero-copy-wrap h1 {
    max-width: 100%;
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    line-height: 1.2;
  }

  .hero-subheading {
    font-size: 1rem;
    margin: 0.8rem 0 1.2rem;
  }

  .section-intro h2,
  .split-copy h2,
  .final-cta h2,
  .authority-copy h2 {
    font-size: 1.85rem;
    line-height: 1.04;
  }

  .book-showcase,
  .qualification-panel,
  .funnel-card,
  .process-card,
  .faq-card,
  .stat-card,
  .final-cta {
    border-radius: 24px;
  }

  .hero-actions,
  .footer-row,
  .footer-links {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-button,
  .secondary-button {
    width: 100%;
    min-height: 54px;
    font-size: 0.9rem;
  }

  .hero {
    padding: 2.2rem 0 1.6rem;
  }

  .hero-layout {
    gap: 1.5rem;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-bullets {
    gap: 0.7rem;
    margin: 1.1rem 0;
  }

  .hero-bullet {
    padding: 0.9rem 0.95rem 0.9rem 2.5rem;
    border-radius: 18px;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .hero-bullet::before {
    left: 0.8rem;
    top: 0.95rem;
    width: 0.9rem;
    height: 0.9rem;
  }

  .book-showcase {
    padding: 1.2rem;
  }

  .book-image {
    max-width: 220px;
    margin-bottom: 1rem;
  }

  .book-credit {
    font-size: 0.88rem;
    margin-bottom: 1rem;
  }

  .hero-proof-card {
    margin-top: 0;
    padding: 0.9rem 0.95rem;
  }

  .stats-grid,
  .card-grid-three,
  .card-grid-two,
  .fit-grid,
  .process-grid,
  .faq-list {
    gap: 0.9rem;
  }

  .funnel-card,
  .process-card,
  .faq-card,
  .stat-card,
  .fit-card,
  .final-cta {
    padding: 1.15rem;
  }

  .section {
    padding-top: 3rem;
  }

  .section-intro {
    margin-bottom: 1.1rem;
  }

  .footer-row {
    padding-bottom: 5rem;
  }

  .mobile-booking-bar {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 120;
    display: flex;
    gap: 0.65rem;
    padding: 0.7rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 22px;
    background: rgba(8, 10, 12, 0.9);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  }

  .mobile-booking-bar .cta-button,
  .mobile-booking-bar .secondary-button {
    min-height: 50px;
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
    flex: 1;
  }

  .before-after-wrapper {
    height: 240px;
  }

  .gallery-label {
    font-size: 0.9rem;
  }

  .authority-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
  }

  .authority-stat strong {
    font-size: 1.3rem;
  }

  .authority-stat span {
    font-size: 0.75rem;
  }
}

/* Quiz Section */
.quiz-section {
  position: relative;
}

.quiz-form {
  display: grid;
  gap: 1.1rem;
  max-width: 920px;
  margin: 2rem auto 0;
}

.quiz-question {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  padding: 1.5rem 1.6rem 1.3rem;
  margin: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.quiz-question.is-answered {
  border-color: rgba(214, 178, 111, 0.32);
  background: linear-gradient(180deg, rgba(214, 178, 111, 0.08), rgba(255, 255, 255, 0.02));
}

.quiz-legend {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 0 0 1rem;
  font-family: Arial, sans-serif;
  color: var(--text);
}

.quiz-number {
  flex: 0 0 auto;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  background: rgba(214, 178, 111, 0.14);
  color: var(--accent);
  font: 800 0.9rem/1 Arial, sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}

.quiz-question-text {
  font: 700 1.05rem/1.45 Arial, sans-serif;
  color: var(--text);
  padding-top: 0.35rem;
}

.quiz-answers {
  display: grid;
  gap: 0.55rem;
}

.quiz-answer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
  font-family: Arial, sans-serif;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--muted);
}

.quiz-answer:hover {
  border-color: rgba(214, 178, 111, 0.35);
  background: rgba(214, 178, 111, 0.05);
  color: var(--text);
  transform: translateY(-1px);
}

.quiz-answer input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.quiz-answer-letter {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 178, 111, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: 800 0.85rem/1 Arial, sans-serif;
  color: var(--accent);
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.quiz-answer-text {
  flex: 1;
}

.quiz-answer:has(input:checked) {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(214, 178, 111, 0.18), rgba(214, 178, 111, 0.08));
  color: var(--text);
}

.quiz-answer:has(input:checked) .quiz-answer-letter {
  background: var(--accent);
  color: #18120a;
  border-color: var(--accent);
}

.quiz-submit-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
}

.quiz-submit {
  min-width: 260px;
}

.quiz-hint {
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--danger);
  margin: 0;
}

.quiz-result {
  max-width: 820px;
  margin: 2.5rem auto 0;
  padding: 2rem;
  border: 1px solid rgba(214, 178, 111, 0.35);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(214, 178, 111, 0.12), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  animation: quizFadeIn 0.5s ease forwards;
  transition: background 0.4s ease, border-color 0.4s ease;
}

/* Low score (< 50 %): rot – Warnung / Verbesserungspotenzial */
.quiz-result.is-low {
  border-color: rgba(240, 90, 90, 0.55);
  background: linear-gradient(180deg, rgba(240, 90, 90, 0.22), rgba(240, 90, 90, 0.05));
}
.quiz-result.is-low .quiz-result-fill {
  background: linear-gradient(90deg, #f05a5a, #f0a17a);
}
.quiz-result.is-low .quiz-result-score,
.quiz-result.is-low .eyebrow {
  color: #f8aaaa;
}
.quiz-result.is-low .quiz-result-card h3 {
  color: #ffd0d0;
}

/* Mid score (50–69 %): Gold – solides Fundament mit Luft nach oben */
.quiz-result.is-mid {
  border-color: rgba(214, 178, 111, 0.55);
  background: linear-gradient(180deg, rgba(214, 178, 111, 0.2), rgba(214, 178, 111, 0.04));
}
.quiz-result.is-mid .quiz-result-fill {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.quiz-result.is-mid .quiz-result-score,
.quiz-result.is-mid .eyebrow {
  color: var(--accent);
}

/* High score (>= 70 %): Grün/Blau – starker Performer */
.quiz-result.is-high {
  border-color: rgba(104, 200, 160, 0.55);
  background: linear-gradient(180deg, rgba(104, 200, 160, 0.22), rgba(104, 200, 160, 0.05));
}
.quiz-result.is-high .quiz-result-fill {
  background: linear-gradient(90deg, #68c8a0, #6ed3d8);
}
.quiz-result.is-high .quiz-result-score,
.quiz-result.is-high .eyebrow {
  color: #a8e7cc;
}
.quiz-result.is-high .quiz-result-card h3 {
  color: #d4f5e6;
}

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

.quiz-result-meter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.quiz-result-bar {
  position: relative;
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.quiz-result-fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.quiz-result-score {
  font: 800 1.6rem/1 Arial, sans-serif;
  color: var(--accent);
  letter-spacing: -0.01em;
}

.quiz-result-card h3 {
  margin: 0.6rem 0 0.9rem;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.quiz-result-card p {
  margin: 0 0 1.4rem;
  font-family: Arial, sans-serif;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--muted);
}

.quiz-result-cta {
  display: inline-flex;
}

.quiz-explanations {
  max-width: 920px;
  margin: 2.5rem auto 0;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
}

.quiz-explanations-title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
}

.quiz-explanations-intro {
  margin: 0 0 1.6rem;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.quiz-explanations-list {
  display: grid;
  gap: 1.2rem;
}

.quiz-explanation {
  padding: 1.3rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
}

.quiz-explanation-head {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 0.7rem;
}

.quiz-explanation-num {
  flex: 0 0 auto;
  color: var(--accent);
  font: 800 0.85rem/1.2 Arial, sans-serif;
  letter-spacing: 0.08em;
  padding-top: 0.15rem;
}

.quiz-explanation-q {
  font: 700 1rem/1.45 Arial, sans-serif;
  color: var(--text);
}

.quiz-explanation-correct {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
}

.quiz-correct-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(214, 178, 111, 0.2);
  color: var(--accent);
  font: 800 0.75rem/1 Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.quiz-correct-text {
  font-family: Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
}

.quiz-explanation-text {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--muted);
}

@media (max-width: 680px) {
  .quiz-question {
    padding: 1.2rem 1.1rem;
    border-radius: 18px;
  }

  .quiz-legend {
    gap: 0.7rem;
    padding-bottom: 0.8rem;
  }

  .quiz-number {
    width: 2rem;
    height: 2rem;
    font-size: 0.8rem;
  }

  .quiz-question-text {
    font-size: 0.98rem;
  }

  .quiz-answer {
    padding: 0.7rem 0.85rem;
    font-size: 0.92rem;
    gap: 0.7rem;
  }

  .quiz-answer-letter {
    width: 1.7rem;
    height: 1.7rem;
    font-size: 0.78rem;
  }

  .quiz-submit {
    width: 100%;
    min-width: 0;
  }

  .quiz-result,
  .quiz-explanations {
    padding: 1.4rem;
    border-radius: 20px;
  }

  .quiz-result-meter {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .quiz-result-score {
    font-size: 1.3rem;
    justify-self: start;
  }
}

/* Standalone Quiz Page */
.quiz-hero {
  padding: 3.8rem 0 1rem;
}

.quiz-hero-inner {
  max-width: 860px;
  text-align: center;
  margin: 0 auto;
}

.quiz-hero-title {
  margin: 0.8rem auto 1.2rem;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 22ch;
}

.quiz-hero-title span {
  color: var(--accent);
  white-space: nowrap;
}

.quiz-hero-lead {
  margin: 0 auto;
  max-width: 58ch;
  font-family: Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
}

.quiz-hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

.quiz-hero-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.9rem 1.3rem;
  border: 1px solid rgba(214, 178, 111, 0.3);
  border-radius: 18px;
  background: rgba(214, 178, 111, 0.06);
  min-width: 130px;
}

.quiz-hero-badge strong {
  color: var(--accent);
  font: 800 1.3rem/1 Arial, sans-serif;
  letter-spacing: -0.01em;
}

.quiz-hero-badge span {
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.quiz-outro-section {
  padding-top: 3rem;
}

.quiz-outro {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.4rem 2rem;
  text-align: center;
  border: 1px solid rgba(214, 178, 111, 0.35);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(214, 178, 111, 0.12), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.quiz-outro h2 {
  margin: 0.6rem auto 1rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 24ch;
}

.quiz-outro p {
  margin: 0 auto 1.8rem;
  max-width: 58ch;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

.quiz-outro-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.cta-button-xl {
  min-height: 64px;
  padding: 1.1rem 1.8rem;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}

@media (max-width: 680px) {
  .quiz-hero {
    padding: 2.4rem 0 0.5rem;
  }

  .quiz-hero-badges {
    gap: 0.6rem;
  }

  .quiz-hero-badge {
    min-width: 0;
    flex: 1 1 130px;
    padding: 0.75rem 0.9rem;
  }

  .quiz-outro {
    padding: 1.8rem 1.2rem;
    border-radius: 22px;
  }

  .cta-button-xl {
    min-height: 56px;
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
    width: 100%;
  }

  .quiz-outro-actions .secondary-button {
    width: 100%;
  }
}

/* Social Links */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.3rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: 700 0.85rem/1 Arial, sans-serif;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease, color 0.2s ease;
}

.social-link:hover {
  transform: translateY(-1px);
  color: var(--accent);
  border-color: var(--accent);
}

.social-link svg {
  display: block;
  flex: 0 0 auto;
}

.social-link-instagram:hover {
  background: linear-gradient(135deg, rgba(214, 49, 114, 0.15), rgba(229, 56, 99, 0.15));
  border-color: rgba(229, 56, 99, 0.5);
  color: #f5c4ca;
}

.social-link-youtube:hover {
  background: rgba(255, 0, 0, 0.12);
  border-color: rgba(255, 50, 50, 0.5);
  color: #ffb3b3;
}

.site-footer .footer-row {
  flex-wrap: wrap;
}

@media (max-width: 680px) {
  .social-links {
    gap: 0.6rem;
    justify-content: center;
    width: 100%;
  }
}

/* WhatsApp Float – dezent, nur Icon */
.wa-float {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25d366;
  color: #0a2914;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  opacity: 0.92;
}

.wa-float:hover {
  transform: translateY(-2px);
  background: #1ea857;
  opacity: 1;
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.35);
}

.wa-float-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wa-float-icon svg {
  width: 24px;
  height: 24px;
}

.wa-float-bubble {
  display: none;
}

@media (max-width: 680px) {
  .wa-float {
    bottom: 5.2rem; /* über mobile-booking-bar */
    right: 0.8rem;
    width: 44px;
    height: 44px;
  }
  .wa-float-icon svg {
    width: 22px;
    height: 22px;
  }
}
