/* ============================================================
   JFM Agency – Styles
   Hell & freundlich · Rosé-Gold & Champagner · moderne Sans
   (Bezug zum Logo: Schwarz/Silber im Hero, Footer & CTA)
   ============================================================ */

:root {
  /* Helle Flächen */
  --cream:     #EBE3D9;   /* Haupt-Hintergrund (etwas abgedunkelt, blendet weniger) */
  --cream-2:   #E1D6CA;   /* alternierende Sektion (blush) */
  --white:     #ffffff;   /* Karten */

  /* Dunkle Flächen (Hero / CTA / Footer) */
  --espresso:  #0c0a09;   /* warmes Fast-Schwarz (Logo strahlt) */
  --espresso-2:#171210;

  /* Text auf hell */
  --ink:       #2a211d;
  --ink-soft:  #6f5f57;
  --ink-mute:  #9a887f;

  /* Text auf dunkel */
  --on-dark:      #f4e9e2;
  --on-dark-soft: #cbb6ac;
  --on-dark-mute: #9c8880;

  /* Linien */
  --line:      rgba(42, 33, 29, 0.12);
  --line-soft: rgba(42, 33, 29, 0.07);
  --line-dark: rgba(255, 255, 255, 0.12);

  /* Rosé-Gold / Champagner Akzente */
  --rose:       #c77b6e;
  --rose-deep:  #b5646f;
  --gold:       #c9a36b;
  --rose-grad:      linear-gradient(120deg, #ecab9c 0%, #d98b7c 48%, #c9a36b 100%);
  --rose-grad-soft: linear-gradient(135deg, #f8ddd2 0%, #f1ccbd 100%);

  /* Schrift */
  --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-logo: 'Jost', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  --silver-grad: linear-gradient(168deg, #ffffff 0%, #e0e0e0 42%, #a4a4a4 100%);

  --maxw: 1140px;
  --radius: 18px;
  --shadow: 0 14px 40px rgba(74, 45, 35, 0.10);
  --shadow-lg: 0 22px 60px rgba(74, 45, 35, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 800px; }

/* ---------- Akzent-Text ---------- */
.accent {
  background: var(--rose-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.btn-lg { padding: 17px 38px; font-size: 0.86rem; }

.btn-primary {
  background: var(--rose-grad);
  color: #3a201a;
  box-shadow: 0 10px 26px rgba(199, 123, 110, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(199, 123, 110, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--rose);
  color: var(--rose);
  transform: translateY(-3px);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease),
              border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(235, 227, 217, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  box-shadow: 0 6px 24px rgba(74, 45, 35, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Echtes Logo (Bild) im Header, hell/dunkel je nach Scroll-Zustand */
.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.brand-logo {
  height: 58px;
  width: auto;
  display: block;
  transition: height 0.4s var(--ease);
}
.site-header.scrolled .brand-logo { height: 48px; }
.brand-logo--dark { display: none; }
.site-header.scrolled .brand-logo--light { display: none; }
.site-header.scrolled .brand-logo--dark { display: block; }

.nav { display: flex; align-items: center; gap: 24px; }
.nav-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.3s var(--ease);
  position: relative;
  white-space: nowrap;
}
.site-header.scrolled .nav-link { color: var(--ink-soft); }
.site-header.scrolled .nav-link:hover { color: var(--ink); }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  border-radius: 2px;
  background: var(--rose-grad);
  transition: width 0.3s var(--ease);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { width: 100%; }
.nav-cta { margin-left: 6px; }

/* ---------- Sprachwähler ---------- */
.lang { position: relative; }
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 1px solid var(--line-dark);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 13px;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease);
}
.lang-btn:hover { border-color: var(--rose); }
.flag {
  display: inline-block;
  width: 21px;
  height: 14px;
  border-radius: 3px;
  overflow: hidden;
  flex: 0 0 auto;
  line-height: 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}
.flag svg { display: block; width: 100%; height: 100%; }
.lang-caret {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.8;
  transition: transform 0.3s var(--ease);
}
.lang.open .lang-caret { transform: rotate(180deg); }
.site-header.scrolled .lang-btn { color: var(--ink); border-color: var(--line); }

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 168px;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 6px;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  z-index: 120;
}
.lang.open .lang-menu { opacity: 1; visibility: visible; transform: none; }
.lang-menu li { margin: 0; }
.lang-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--ink);
  padding: 10px 12px;
  border-radius: 8px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.lang-menu button:hover { background: var(--cream-2); }
.lang-menu button[aria-selected="true"] { color: var(--rose); font-weight: 600; }

/* Burger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}
.nav-toggle span {
  width: 26px; height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.35s var(--ease), opacity 0.3s var(--ease), background 0.4s var(--ease);
}
.site-header.scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle.open span { background: var(--ink); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO (dunkel – Logo strahlt)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(140% 100% at 50% -10%, #1b1512 0%, #100c0a 46%, #070605 100%);
  color: var(--on-dark);
}
.hero-inner { position: relative; z-index: 2; max-width: 820px; }

/* Original-Logo im Hero (exakte Darstellung) */
.hero-logo-wrap {
  position: relative;
  display: inline-block;
  margin: 0 auto 24px;
  line-height: 0;
}
.hero-logo {
  width: clamp(260px, 66vw, 384px);
  height: auto;
  display: block;
}

/* Leuchtender LED-Streifen, der um das Herz läuft (Farbe = "Jetzt bewerben"-Button) */
.hero-heart-led {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.heart-led {
  fill: none;
  stroke: url(#ledGrad);
  stroke-width: 15;
  stroke-linecap: round;
  stroke-dasharray: 560 1510;
  filter: url(#ledGlow);
  animation: led-run 4.5s linear infinite;
}
.heart-led-core {
  fill: none;
  stroke: #f9ddd1;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 560 1510;
  animation: led-run 4.5s linear infinite;
}
@keyframes led-run {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -2070; }
}
@media (prefers-reduced-motion: reduce) {
  .heart-led, .heart-led-core { animation: none; }
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 6.4vw, 4.6rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  color: #fff;
}
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.16rem);
  color: var(--on-dark-soft);
  max-width: 600px;
  margin: 0 auto 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.hero .btn-ghost { color: var(--on-dark); border-color: var(--line-dark); }
.hero .btn-ghost:hover { border-color: var(--rose); color: #fff; }
.hero-note {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark-mute);
}

.scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  z-index: 2;
}
.scroll-hint span {
  position: absolute;
  top: 8px; left: 50%;
  width: 3px; height: 8px;
  margin-left: -1.5px;
  background: var(--rose);
  border-radius: 2px;
  animation: scrolldot 1.8s var(--ease) infinite;
}
@keyframes scrolldot {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 100px 0; }
.section-alt { background: var(--cream-2); }
.section-dark {
  background: radial-gradient(120% 120% at 50% 0%, #171210 0%, var(--espresso) 70%);
  color: var(--on-dark);
}

.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-eyebrow {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}
.section-dark .section-eyebrow { color: var(--gold); }
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 4.6vw, 3rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.section-dark .section-title { color: #fff; }
.section-lead { color: var(--ink-soft); font-size: 1.06rem; }
.section-dark .section-lead { color: var(--on-dark-soft); }

/* ---------- Plattform-Logos (Streifen unter dem Hero) ---------- */
.logos-strip { background: var(--cream); padding: 44px 0 10px; }
.logos-label {
  text-align: center;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 24px;
}
.logos-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.plat-logo {
  height: 34px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.plat-logo--chip { height: 30px; border-radius: 7px; }
.plat-logo-link { display: inline-flex; }
.plat-logo:hover,
.plat-logo-link:hover .plat-logo { opacity: 1; transform: translateY(-2px); }

/* ---------- Erfahrungsberichte: Chat-Fenster-Optik ---------- */
.chat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.chat-mock {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line-soft);
  background: var(--white);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.chat-mock:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.chat-mock-header {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  background: #075E54;
}
.chat-avatar {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.76rem;
}
.chat-mock-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  color: #fff;
}

.chat-mock-body {
  background: #E7EFE9;
  padding: 12px 10px;
}
.chat-bubble {
  position: relative;
  max-width: 96%;
  background: var(--white);
  border-radius: 9px 9px 9px 2px;
  padding: 8px 10px 5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}
.chat-bubble::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 0;
  border-color: transparent var(--white) transparent transparent;
}
.chat-bubble p {
  margin: 0 0 5px;
  font-size: 0.74rem;
  line-height: 1.4;
  color: var(--ink);
}
.chat-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  font-size: 0.6rem;
  color: var(--ink-mute);
}
.chat-check { width: 11px; height: auto; color: #4FC3F7; }

@media (max-width: 900px) {
  .chat-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 560px) {
  .chat-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- Cards (Vorteile) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(199, 123, 110, 0.35);
}
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--rose-grad-soft);
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--ink);
}
.card p { color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- Steps (Ablauf) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 28px;
}
.step {
  position: relative;
  padding: 34px 28px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.step:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  background: var(--rose-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  margin-bottom: 12px;
  line-height: 1;
}
.step-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; color: var(--ink); }
.step p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Safety ---------- */
.safety {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.safety-list { list-style: none; margin-top: 26px; }
.safety-list li {
  position: relative;
  padding: 14px 0 14px 34px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.safety-list li:last-child { border-bottom: none; }
.safety-list li::before {
  content: "♥";
  position: absolute;
  left: 0; top: 15px;
  color: var(--rose);
  font-size: 0.95rem;
}
.safety-list strong { color: var(--ink); font-weight: 600; }

.safety-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--rose-grad);
  color: #fff;
  text-align: center;
  max-width: 290px;
  margin: 0 auto;
  padding: 40px;
  box-shadow: 0 24px 60px rgba(199, 123, 110, 0.35);
}
.badge-heart { font-size: 3rem; margin-bottom: 8px; color: #fff; }
.safety-badge p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.1;
}
.safety-badge span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.9;
}

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}
.faq-item[open] { border-color: rgba(199, 123, 110, 0.4); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 56px 22px 26px;
  font-size: 1.02rem;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--ink);
  position: relative;
  transition: color 0.3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--rose);
  transition: transform 0.35s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--rose); }
.faq-body { padding: 0 26px 24px; color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- Form (Tally) – weiße Karte im dunklen Abschnitt ---------- */
.form-wrap {
  background: #ffffff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.form-wrap iframe { width: 100%; border: 0; display: block; }

/* ---------- CRM-Empfehlung (Affiliate) ---------- */
.crm-section { background: var(--cream); }
.crm-card {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 48px 40px;
  overflow: hidden;
}
.crm-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--rose-grad);
}
.crm-logo {
  display: block;
  height: 46px;
  width: auto;
  max-width: 80%;
  margin: 4px auto 22px;
  border-radius: 9px;
}
.crm-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  background: var(--rose-grad-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.crm-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 3.6vw, 2.1rem);
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--ink);
}
.crm-text {
  color: var(--ink-soft);
  font-size: 1.02rem;
  max-width: 560px;
  margin: 0 auto 28px;
}
.crm-disclosure {
  margin-top: 18px;
  font-size: 0.76rem;
  color: var(--ink-mute);
}

/* ============================================================
   FOOTER (dunkel)
   ============================================================ */
.site-footer {
  background: var(--espresso);
  color: var(--on-dark);
  border-top: 1px solid var(--line-dark);
  padding: 60px 0 30px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand { max-width: 340px; }
.footer-logo { width: 68px; margin-bottom: 16px; }
.footer-claim { color: var(--on-dark-soft); font-size: 0.95rem; }
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.footer-social-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark-mute);
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--on-dark-soft);
  font-size: 0.88rem;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.social-link svg { color: var(--rose); transition: color 0.3s var(--ease); }
.social-link:hover { color: #fff; transform: translateY(-1px); }
.social-link:hover svg { color: var(--gold); }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-content: flex-start;
}
.footer-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  transition: color 0.3s var(--ease);
}
.footer-nav a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 24px;
  color: var(--on-dark-mute);
  font-size: 0.8rem;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .scroll-hint span { animation: none; }
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 140px 24px 100px;
}
.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--ink);
}
.legal h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 36px 0 12px;
  color: var(--ink);
}
.legal p, .legal li { color: var(--ink-soft); margin-bottom: 12px; font-size: 0.98rem; }
.legal ul { padding-left: 22px; margin-bottom: 12px; }
.legal a { color: var(--rose); text-decoration: underline; }
.legal .placeholder {
  background: var(--rose-grad-soft);
  padding: 2px 8px;
  border-radius: 6px;
  color: #6b3a30;
  font-weight: 500;
}
.legal .back {
  display: inline-block;
  margin-bottom: 30px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
}
.legal .back:hover { color: var(--rose-deep); }
.legal-note {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--rose);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 40px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  box-shadow: var(--shadow);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .safety { grid-template-columns: 1fr; gap: 40px; }
  .safety-badge { order: -1; }
}

@media (max-width: 1100px) {
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(80vw, 340px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 22px;
    padding: 104px 40px 40px;
    overflow-y: auto;
    background: rgba(235, 227, 217, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-left: 1px solid var(--line);
    box-shadow: -20px 0 60px rgba(74, 45, 35, 0.12);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }
  .nav.open { transform: translateX(0); }
  .nav-link,
  .site-header.scrolled .nav-link { font-size: 1rem; color: var(--ink-soft); white-space: normal; overflow-wrap: break-word; max-width: 100%; }
  .nav-link:hover,
  .site-header.scrolled .nav-link:hover { color: var(--ink); }
  .nav-cta { margin-left: 0; margin-top: 8px; }
  .nav-toggle { display: flex; }

  .lang { align-self: flex-start; }
  .lang-menu { left: 0; right: auto; }
  .site-header .lang-btn,
  .site-header.scrolled .lang-btn { color: var(--ink); border-color: var(--line); }

  .section { padding: 74px 0; }
  .footer-inner { flex-direction: column; gap: 30px; }
}

@media (max-width: 420px) {
  .container { padding: 0 18px; }
  .hero-actions .btn { width: 100%; }
}
