/* ============================================================
   junbanghe — Premium Gewerbe-Versicherung Design System
   ONLY class selectors (BEM). NO element selectors.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

/* ── Reset (only allowed element selectors) ── */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── Custom Properties ── */
:root {
  /* Backgrounds */
  --c-bg:           #FFFFFF;
  --c-bg-alt:       #F4F7FB;
  --c-bg-card:      #FFFFFF;
  --c-bg-muted:     #EEF3F9;
  --c-bg-dark:      #0C2340;

  /* Primary */
  --c-primary:      #1B4F8C;
  --c-primary-dk:   #0E3366;
  --c-primary-lt:   #E8F0FB;
  --c-primary-mid:  #3A6CAD;

  /* Accent */
  --c-accent:       #E8A020;
  --c-accent-lt:    #FEF6E6;
  --c-accent-dk:    #C07010;

  /* Green */
  --c-ok:           #1A7A48;
  --c-ok-lt:        #E5F5EE;

  /* Text */
  --c-text:         #0D1E35;
  --c-text-sec:     #2C4060;
  --c-text-muted:   #5A7A9A;
  --c-text-light:   #8AA0BA;

  /* Borders */
  --c-border:       #D8E4F0;
  --c-border-soft:  #EBF2FA;

  /* CTA */
  --c-cta:          #1B4F8C;
  --c-cta-hov:      #0E3366;

  /* Shadows */
  --shadow-xs:   0 1px 4px rgba(27,79,140,0.06);
  --shadow-sm:   0 2px 10px rgba(27,79,140,0.08);
  --shadow-md:   0 4px 24px rgba(27,79,140,0.10);
  --shadow-lg:   0 8px 48px rgba(27,79,140,0.14);
  --shadow-card: 0 2px 16px rgba(13,30,53,0.07);

  /* Radii */
  --radius-xs:   4px;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;

  /* Layout */
  --container:   1240px;
  --section-py:  clamp(64px, 8vw, 112px);
  --transition:  all 0.3s ease;

  /* Fonts */
  --font-display: 'Playfair Display', serif;
  --font-body:    'Manrope', sans-serif;
}

/* ── Preloader ── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--c-bg);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader__ring {
  width: 56px;
  height: 56px;
  border: 3px solid var(--c-border-soft);
  border-top-color: var(--c-primary);
  border-radius: 50%;
  animation: preloader-spin 1s linear infinite;
}

@keyframes preloader-spin {
  to { transform: rotate(360deg); }
}

.preloader__text {
  margin-top: 18px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--c-primary);
  letter-spacing: 0.04em;
}

.page-ready .preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ── Disclosure Bar ── */
.disclosure {
  background: var(--c-primary-lt);
  border-bottom: 1px solid var(--c-border);
  padding: 8px 16px;
  text-align: center;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.disclosure__text {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--c-primary);
  line-height: 1.4;
  letter-spacing: 0.01em;
}

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
  transition: var(--transition);
}

.navbar--scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar__logo-icon {
  width: 36px;
  height: 36px;
  color: var(--c-primary);
}

.navbar__logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--c-primary);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.navbar__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--c-text-sec);
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-primary);
  transition: width 0.25s ease;
}

.navbar__link:hover {
  color: var(--c-primary);
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar__cta {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--c-bg);
  background: var(--c-cta);
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.navbar__cta:hover {
  background: var(--c-cta-hov);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1010;
}

.navbar__hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar__hamburger--active .navbar__hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger--active .navbar__hamburger-line:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger--active .navbar__hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.navbar__overlay {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--c-bg);
  z-index: 1005;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: right 0.35s ease;
}

.navbar__overlay--open {
  right: 0;
}

.navbar__overlay-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  color: var(--c-text);
  text-decoration: none;
  transition: color 0.25s ease;
}

.navbar__overlay-link:hover {
  color: var(--c-primary);
}

.navbar__overlay-cta {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--c-bg);
  background: var(--c-cta);
  padding: 14px 40px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  margin-top: 12px;
}

/* ── Hero ── */
.hero {
  background: var(--c-bg-alt);
  padding: clamp(48px, 6vw, 96px) 24px;
}

.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero__tag {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-primary);
  display: inline-block;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  color: var(--c-text);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
  color: var(--c-text-sec);
  max-width: 540px;
}

.hero__disclaimer {
  background: var(--c-bg-muted);
  padding: 10px 16px;
  border-radius: var(--radius-xs);
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__pill {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--c-ok);
  background: var(--c-ok-lt);
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.hero__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image-wrapper {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  max-width: 100%;
}

.hero__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ── Buttons ── */
.btn--primary {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--c-bg);
  background: var(--c-cta);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary:hover {
  background: var(--c-cta-hov);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--c-primary);
  background: transparent;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--c-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn--secondary:hover {
  background: var(--c-primary);
  color: var(--c-bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--white {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--c-primary);
  background: var(--c-bg);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn--white:hover {
  background: var(--c-accent);
  color: var(--c-bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ── Stats Strip ── */
.stats-strip {
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 40px 24px;
}

.stats-strip__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stats-strip__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stats-strip__number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--c-primary);
}

.stats-strip__label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--c-text-sec);
  line-height: 1.5;
}

.stats-strip__source {
  margin-top: 20px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--c-text-light);
}

/* ── Section Utilities ── */
.section {
  padding: var(--section-py) 24px;
}

.section--alt {
  background: var(--c-bg-alt);
}

.section--dark {
  background: var(--c-bg-dark);
}

.section__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.section__header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.2;
  color: var(--c-text);
  margin-bottom: 16px;
}

.section__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.7;
  color: var(--c-text-sec);
}

/* ── Pillar Cards ── */
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pillar-card {
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid var(--c-border-soft);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pillar-card--1 { background: var(--c-primary-lt); }
.pillar-card--2 { background: var(--c-accent-lt); }
.pillar-card--3 { background: var(--c-ok-lt); }

.pillar-card__number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 42px;
  color: var(--c-primary);
  opacity: 0.2;
  margin-bottom: 8px;
}

.pillar-card--2 .pillar-card__number { color: var(--c-accent-dk); }
.pillar-card--3 .pillar-card__number { color: var(--c-ok); }

.pillar-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--c-text);
  margin-bottom: 14px;
  line-height: 1.3;
}

.pillar-card__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--c-text-sec);
  line-height: 1.7;
  margin-bottom: 16px;
}

.pillar-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pillar-card__list-item {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--c-text-sec);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.pillar-card__list-item::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: var(--c-primary);
  font-weight: 700;
}

.pillar-card--2 .pillar-card__list-item::before { color: var(--c-accent-dk); }
.pillar-card--3 .pillar-card__list-item::before { color: var(--c-ok); }

/* ── Gap Section (2-col with image) ── */
.gap__grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 48px;
  align-items: center;
}

.gap__image-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.gap__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.gap__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gap__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--c-text-sec);
  line-height: 1.7;
}

.gap__text-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--c-text);
  margin-bottom: 4px;
}

.gap__callout {
  background: var(--c-accent-lt);
  border-left: 4px solid var(--c-accent);
  border-radius: var(--radius-xs);
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--c-text-sec);
  line-height: 1.7;
}

.gap__callout-emoji {
  font-size: 18px;
  margin-right: 8px;
}

.gap__disclaimer {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--c-text-light);
  font-style: italic;
}

/* ── Options Grid ── */
.options__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.option-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: var(--transition);
}

.option-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-primary);
}

.option-card__icon {
  width: 48px;
  height: 48px;
  color: var(--c-primary);
  margin-bottom: 16px;
}

.option-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--c-text);
  margin-bottom: 12px;
}

.option-card__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--c-text-sec);
  line-height: 1.7;
  margin-bottom: 14px;
}

.option-card__for {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  color: var(--c-primary);
  background: var(--c-primary-lt);
  padding: 6px 12px;
  border-radius: var(--radius-xl);
  display: inline-block;
}

/* ── Timing Section ── */
.timing__image-wrapper {
  max-width: 600px;
  margin: 0 auto 48px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.timing__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.timing__phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.phase-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.phase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--c-primary);
}

.phase-card--2::before { background: var(--c-accent); }
.phase-card--3::before { background: var(--c-ok); }

.phase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.phase-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--c-text);
  margin-bottom: 12px;
}

.phase-card__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--c-text-sec);
  line-height: 1.7;
}

.timing__example {
  background: var(--c-bg-muted);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
}

.timing__example-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--c-text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.timing__example-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--c-text-sec);
  line-height: 1.8;
}

.timing__example-note {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--c-text-light);
  font-style: italic;
  margin-top: 10px;
}

/* ── Consultation Section ── */
.consultation__grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 48px;
  align-items: center;
}

.consultation__image-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.consultation__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.consultation__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.consultation__checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.consultation__check-item {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--c-text-sec);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}

.consultation__check-icon {
  width: 22px;
  height: 22px;
  color: var(--c-ok);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── FAQ ── */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item--active {
  border-color: var(--c-primary);
  box-shadow: var(--shadow-sm);
}

.faq-item__question {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--c-text);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.25s ease;
}

.faq-item__question:hover {
  color: var(--c-primary);
}

.faq-item__icon {
  width: 20px;
  height: 20px;
  color: var(--c-text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item--active .faq-item__icon {
  transform: rotate(180deg);
  color: var(--c-primary);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item__answer-inner {
  padding: 0 24px 20px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--c-text-sec);
  line-height: 1.8;
}

/* ── About Section ── */
.about__text {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.about__paragraph {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--c-text-sec);
  line-height: 1.7;
  text-align: center;
}

.about__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-card__emoji {
  font-size: 32px;
  margin-bottom: 14px;
  display: block;
}

.about-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--c-text);
  margin-bottom: 10px;
}

.about-card__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--c-text-sec);
  line-height: 1.7;
}

/* ── CTA Final ── */
.cta-final {
  position: relative;
  padding: clamp(64px, 8vw, 112px) 24px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-final__overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 35, 64, 0.78);
}

.cta-final__inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-final__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(26px, 3vw, 40px);
  color: var(--c-bg);
  line-height: 1.2;
}

.cta-final__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.cta-final__note {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
}

/* ── Footer ── */
.footer {
  background: var(--c-bg-dark);
  padding: 64px 24px 0;
}

.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer__logo-icon {
  width: 32px;
  height: 32px;
  color: var(--c-bg);
}

.footer__logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--c-bg);
}

.footer__email {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer__email:hover {
  color: var(--c-accent);
}

.footer__slogan {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.footer__disclaimer-small {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}

.footer__col-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--c-bg);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer__link:hover {
  color: var(--c-accent);
}

.footer__contact-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.footer__bottom-disclosure {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  max-width: 800px;
  line-height: 1.6;
}

.footer__copyright {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ── Cookie Popup ── */
.cookie-popup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9000;
  background: var(--c-bg-card);
  border-top: 2px solid var(--c-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 24px 28px;
  max-width: 380px;
  display: none;
  flex-direction: column;
  gap: 14px;
}

.cookie-popup--visible {
  display: flex;
  animation: cookie-slide-in 0.4s ease;
}

@keyframes cookie-slide-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-popup__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--c-text);
}

.cookie-popup__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--c-text-sec);
  line-height: 1.6;
}

.cookie-popup__link {
  color: var(--c-primary);
  text-decoration: underline;
}

.cookie-popup__buttons {
  display: flex;
  gap: 10px;
}

.cookie-popup__btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: var(--radius-xs);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-popup__btn--accept {
  background: var(--c-cta);
  color: var(--c-bg);
}

.cookie-popup__btn--accept:hover {
  background: var(--c-cta-hov);
}

.cookie-popup__btn--decline {
  background: var(--c-bg-alt);
  color: var(--c-text-sec);
}

.cookie-popup__btn--decline:hover {
  background: var(--c-border);
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Review / Article Page ── */
.article {
  padding: var(--section-py) 24px;
}

.article__inner {
  max-width: 840px;
  margin: 0 auto;
}

.article__category {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 16px;
  display: block;
}

.article__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.2;
  color: var(--c-text);
  margin-bottom: 20px;
}

.article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
}

.article__meta-item {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--c-text-muted);
}

.article__hero-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin-bottom: 40px;
  object-fit: cover;
}

.article__section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--c-text);
  margin-top: 48px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.article__paragraph {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--c-text-sec);
  line-height: 1.8;
  margin-bottom: 16px;
}

.article__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  padding-left: 8px;
}

.article__list-item {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--c-text-sec);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.article__list-item::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--c-primary);
  font-weight: 700;
}

.article__callout {
  background: var(--c-accent-lt);
  border-left: 4px solid var(--c-accent);
  border-radius: var(--radius-xs);
  padding: 20px 24px;
  margin: 24px 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--c-text-sec);
  line-height: 1.7;
}

.article__table-wrapper {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
}

.article__table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 13px;
}

.article__table-head {
  background: var(--c-primary);
}

.article__table-th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--c-bg);
  white-space: nowrap;
}

.article__table-td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--c-border-soft);
  color: var(--c-text-sec);
  line-height: 1.5;
}

.article__table-row:nth-child(even) {
  background: var(--c-bg-alt);
}

.article__pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 24px 0;
}

.article__pros,
.article__cons {
  border-radius: var(--radius-sm);
  padding: 24px;
}

.article__pros { background: var(--c-ok-lt); border: 1px solid rgba(26,122,72,0.15); }
.article__cons { background: #FEF2F2; border: 1px solid rgba(220,38,38,0.15); }

.article__pros-title,
.article__cons-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 12px;
}

.article__pros-title { color: var(--c-ok); }
.article__cons-title { color: #DC2626; }

.article__pros-list,
.article__cons-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article__pros-item,
.article__cons-item {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--c-text-sec);
  line-height: 1.6;
  padding-left: 24px;
  position: relative;
}

.article__pros-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-ok);
  font-weight: 700;
}

.article__cons-item::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #DC2626;
  font-weight: 700;
}

.article__cta-box {
  background: var(--c-primary-lt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  margin-top: 48px;
}

.article__cta-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  color: var(--c-text);
  margin-bottom: 12px;
}

.article__cta-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--c-text-sec);
  margin-bottom: 20px;
}

/* ── Order Page ── */
.order {
  padding: var(--section-py) 24px;
}

.order__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 48px;
  align-items: start;
}

.order__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.order__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--c-text);
  line-height: 1.2;
}

.order__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--c-text-sec);
  line-height: 1.8;
}

.order__subtitle {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--c-text);
  margin-top: 16px;
}

.order__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order__list-item {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--c-text-sec);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.order__list-item::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: var(--c-primary);
  font-weight: 700;
}

.order__note-box {
  background: var(--c-bg-muted);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.7;
}

/* Sticky Card */
.sticky-card {
  position: sticky;
  top: 100px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sticky-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--c-text);
}

.sticky-card__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--c-text-sec);
}

.sticky-card__price-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--c-text-muted);
}

.sticky-card__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--c-ok);
}

.sticky-card__disclosure {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--c-text-light);
  line-height: 1.5;
}

.sticky-card__trust {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sticky-card__trust-item {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--c-text-sec);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-card__trust-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.sticky-card__disclaimer-box {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-xs);
  padding: 16px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

/* ── Contact Page ── */
.contact {
  padding: var(--section-py) 24px;
}

.contact__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact__form-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--c-text);
  margin-bottom: 8px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--c-text-sec);
}

.contact__input,
.contact__select,
.contact__textarea {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--c-text);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xs);
  padding: 12px 16px;
  transition: border-color 0.25s ease;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}

.contact__input:focus,
.contact__select:focus,
.contact__textarea:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px var(--c-primary-lt);
}

.contact__textarea {
  min-height: 140px;
  resize: vertical;
}

.contact__submit {
  align-self: flex-start;
}

.contact__success {
  display: none;
  background: var(--c-ok-lt);
  border: 1px solid rgba(26,122,72,0.2);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--c-ok);
}

.contact__success--visible {
  display: block;
  animation: cookie-slide-in 0.4s ease;
}

.contact__error {
  font-family: var(--font-body);
  font-size: 12px;
  color: #DC2626;
  display: none;
}

.contact__field--error .contact__input,
.contact__field--error .contact__select,
.contact__field--error .contact__textarea {
  border-color: #DC2626;
}

.contact__field--error .contact__error {
  display: block;
}

.contact__info-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__info-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--c-text);
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--c-text-sec);
  line-height: 1.6;
}

.contact__info-icon {
  width: 20px;
  height: 20px;
  color: var(--c-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__info-link {
  color: var(--c-primary);
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact__info-link:hover {
  color: var(--c-primary-dk);
}

.contact__note-box {
  background: var(--c-bg-muted);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-top: 12px;
}

/* ── Legal Pages ── */
.legal {
  padding: var(--section-py) 24px;
}

.legal__inner {
  max-width: 840px;
  margin: 0 auto;
}

.legal__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--c-text);
  margin-bottom: 12px;
}

.legal__updated {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 40px;
}

.legal__section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--c-text);
  margin-top: 40px;
  margin-bottom: 14px;
}

.legal__subsection-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--c-text);
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--c-text-sec);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  padding-left: 8px;
}

.legal__list-item {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--c-text-sec);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.legal__list-item::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--c-primary);
  font-weight: 700;
}

.legal__link {
  color: var(--c-primary);
  text-decoration: underline;
}

.legal__divider {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 32px 0;
}

/* ── Pillars Image ── */
.pillars__image-wrapper {
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center;
}

.pillars__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content {
    align-items: center;
  }

  .hero__subtitle {
    max-width: 100%;
  }

  .hero__pills {
    justify-content: center;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__image {
    order: -1;
  }

  .hero__image-wrapper {
    max-width: 480px;
  }

  .pillars__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

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

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

  .timing__phases {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto 40px;
  }

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

  .about__cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

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

  .sticky-card {
    position: static;
  }

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

  .article__pros-cons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar__links {
    display: none;
  }

  .navbar__cta {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .navbar__overlay {
    display: flex;
  }

  .stats-strip__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .options__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

@media (max-width: 480px) {
  .hero__buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn--primary,
  .btn--secondary {
    width: 100%;
    justify-content: center;
  }

  .stats-strip__grid {
    grid-template-columns: 1fr;
  }

  .cookie-popup {
    right: 12px;
    left: 12px;
    max-width: none;
  }
}
