/* ═══════════════════════════════════════════════════════════════════════════
   HILDE UND SEPP – Shared Stylesheet
   Source of truth: Figma CokOhJuBA0dIibrENOaI68
   ═══════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@700;800&family=Lexend:wght@400&display=swap');

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #F2EDE4;
  color: #1A1A1A;
  font-family: 'Lexend', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

/* ── Tokens ─────────────────────────────────────────────────────────────── */
:root {
  --cream:  #F2EDE4;
  --orange: #E8522A;
  --yg:     #C8D64A;
  --pink:   #F0A0C8;
  --lav:    #C8B8F0;
  --blue:   #A1CFF9;
  --black:  #1A1A1A;
  --ph:     80px;   /* horizontal padding desktop */
  --pv:     72px;   /* vertical padding sections */
}

/* ── Typography helpers ─────────────────────────────────────────────────── */
.hl {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.6;
  display: block;
  margin-bottom: 14px;
}

/* ── NAV ────────────────────────────────────────────────────────────────── */
nav {
  background: var(--cream);
  padding: 0 var(--ph);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(26,26,26,0.06);
}

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

.nav-logo-img {
  height: 34px;
  width: auto;
}

.nav-wordmark {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--black);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-pill {
  background: var(--orange);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.btn-pill:hover { opacity: 0.88; }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
}

/* ── SECTIONS base ──────────────────────────────────────────────────────── */
.section {
  padding: var(--pv) var(--ph);
}

/* ── PAGE HEADER (dark) ─────────────────────────────────────────────────── */
.page-header {
  background: var(--black);
  padding: 72px var(--ph) 64px;
}
.page-header .label { color: var(--orange); opacity: 1; margin-bottom: 18px; }
.page-header h1 { color: #fff; font-size: clamp(52px, 7.5vw, 92px); }
.page-header .asterisk-note {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}

/* ── BG COLORS ──────────────────────────────────────────────────────────── */
.bg-cream  { background: var(--cream); }
.bg-yg     { background: var(--yg); }
.bg-lav    { background: var(--lav); }
.bg-blue   { background: var(--blue); }
.bg-orange { background: var(--orange); color: #fff; }
.bg-orange .label { opacity: 0.75; color: #fff; }
.bg-dark   { background: var(--black); color: #fff; }
.bg-dark .label { color: var(--yg); opacity: 1; }

/* ── CONTENT sections ───────────────────────────────────────────────────── */
.section h2 { font-size: clamp(26px, 3.5vw, 42px); margin-bottom: 20px; }
.section h3 { font-size: clamp(22px, 2.5vw, 32px); margin-bottom: 16px; }
.section p  { max-width: 680px; margin-bottom: 12px; }
.section p:last-child { margin-bottom: 0; }
.section address { font-style: normal; line-height: 1.7; opacity: 0.75; }

/* ── ARROW LIST ─────────────────────────────────────────────────────────── */
.arrow-list {
  list-style: none;
  margin-top: 4px;
}
.arrow-list li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  font-size: 16px;
  line-height: 1.5;
}
.arrow-list li::before {
  content: '→ ';
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  opacity: 0.45;
}
.arrow-list li:last-child { border-bottom: none; }

/* ── EMAIL DISPLAY ──────────────────────────────────────────────────────── */
.email-display {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 2.5vw, 30px);
  text-decoration: none;
  display: inline-block;
  margin-top: 6px;
  letter-spacing: -0.01em;
}
.email-display:hover { text-decoration: underline; text-underline-offset: 4px; }

.small-note {
  display: block;
  font-size: 13px;
  margin-top: 14px;
  opacity: 0.5;
}

/* ── BOLD HIGHLIGHT ─────────────────────────────────────────────────────── */
strong { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }

/* ── CONTACT FORM ───────────────────────────────────────────────────────── */
.contact-form {
  max-width: 520px;
  margin-top: 40px;
}

.form-field {
  margin-bottom: 0;
}

.form-field + .form-field { margin-top: 28px; }

.form-field label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.5;
  display: block;
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(26,26,26,0.2);
  padding: 8px 0 10px;
  font-family: 'Lexend', sans-serif;
  font-size: 17px;
  color: var(--black);
  outline: none;
  resize: none;
  transition: border-color 0.15s;
}
.form-field input:focus,
.form-field textarea:focus { border-bottom-color: var(--black); }
.form-field input::placeholder,
.form-field textarea::placeholder { opacity: 0.35; }
.form-field textarea { min-height: 100px; padding-top: 10px; }

.btn-send {
  display: inline-block;
  background: var(--lav);
  color: var(--black);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  margin-top: 28px;
  transition: opacity 0.15s;
  letter-spacing: 0.01em;
}
.btn-send:hover { opacity: 0.85; }

.form-note {
  font-size: 12px;
  opacity: 0.4;
  margin-top: 16px;
  display: block;
  max-width: 480px;
}

/* ── HAMBURGER MENU OVERLAY ─────────────────────────────────────────────── */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  justify-content: flex-end;
  background: rgba(26,26,26,0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.menu-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.menu-overlay .menu-nav {
  background: var(--cream);
  width: min(380px, 85vw);
  height: 100%;
  padding: 80px 48px 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.menu-overlay.is-open .menu-nav {
  transform: translateX(0);
}

.menu-nav a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 5vw, 40px);
  color: var(--black);
  text-decoration: none;
  line-height: 1.2;
  letter-spacing: -0.02em;
  padding: 10px 0;
  border-bottom: 1px solid rgba(26,26,26,0.08);
  transition: color 0.15s, opacity 0.15s;
  opacity: 0.85;
}

.menu-nav a:last-child { border-bottom: none; }
.menu-nav a:hover  { opacity: 1; color: var(--orange); }
.menu-nav a.active { opacity: 1; color: var(--orange); }

.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--black);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.55;
  z-index: 10;
  transition: opacity 0.15s;
}
.menu-close:hover { opacity: 1; }

/* ── BACK TO TOP (mobile footer) ────────────────────────────────────────── */
.back-to-top {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--black);
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  flex-shrink: 0;
  transition: opacity 0.15s;
}
.back-to-top:hover { opacity: 0.8; }

@media (max-width: 640px) {
  .back-to-top { display: flex; }
  .footer-links { display: none; }
}

/* ── FOOTER ─────────────────────────────────────────────────────────────── */
footer {
  background: var(--cream);
  border-top: 1px solid rgba(26,26,26,0.1);
  padding: 24px var(--ph);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  /* sit on top of overflowing CTA phone */
  position: relative;
  z-index: 20;
}

.footer-copy {
  font-size: 13px;
  opacity: 0.45;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-size: 13px;
  opacity: 0.45;
  text-decoration: none;
  transition: opacity 0.15s;
}
.footer-links a:hover { opacity: 0.8; }
.footer-links a.active { color: var(--orange); opacity: 1; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }

/* ═══════════════════════════════════════════════════════════════════════════
   LANDING PAGE SPECIFIC
   ═══════════════════════════════════════════════════════════════════════════ */

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 82vh;
}

.hero-left {
  background: var(--cream);
  padding: 72px var(--ph) 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-right {
  background: var(--lav);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
  position: relative;
}

.hero-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-logo img { height: 52px; }
.hero-logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 17px;
  line-height: 1.2;
}

.hero-eyebrow { color: var(--orange); margin-bottom: 18px; }

.hero-h1 { font-size: clamp(52px, 6.5vw, 88px); margin-bottom: 0; }

.hero-footnote { font-size: 13px; opacity: 0.55; font-style: italic; margin-top: 14px; }

.hero-body { font-size: 18px; line-height: 1.6; opacity: 0.75; margin-top: 28px; max-width: 520px; }

.btn-cta {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 32px;
  transition: opacity 0.15s;
  align-self: flex-start;
}
.btn-cta:hover { opacity: 0.88; }

.hero-ios-note { font-size: 12px; opacity: 0.4; margin-top: 12px; }

.hero-phone {
  width: min(280px, 55%);
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.28));
}

/* Phone mockup frame (black device shell) */
.phone-frame {
  background: #1a1a1a;
  border-radius: 40px;
  padding: 16px;
  overflow: hidden;
  display: block;
}
.phone-frame img {
  border-radius: 26px;
  width: 100%;
  display: block;
}

.hero-accent-star {
  position: absolute;
  bottom: 60px;
  left: 40px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 60px;
  color: var(--yg);
  line-height: 1;
  pointer-events: none;
}

/* ── ACCENT BAR (black, bottom of features section) ──────────────────────── */
.features-accent-bar {
  height: 67px;
  background: var(--black);
  width: 100%;
  margin-top: 0;
}

/* legacy / unused */
.accent-bar {
  height: 67px;
  background: var(--black);
  width: 100%;
}

/* ── LANDING PAGE FOOTER (orange desktop, blue mobile) ──────────────────── */
footer.footer-landing {
  background: var(--orange);
  border-top: none;
  color: var(--cream);
}
footer.footer-landing .footer-copy { color: rgba(242,237,228,0.7); opacity: 1; }
footer.footer-landing .footer-copy a { color: rgba(242,237,228,0.7); text-decoration: none; }
footer.footer-landing .back-to-top { display: none; }

/* ── SUBPAGE FOOTER VARIANTS ─────────────────────────────────────────────── */
footer.footer-dark {
  background: #0d0d0d;
  border-top: none;
  color: rgba(255,255,255,0.5);
}
footer.footer-dark .footer-copy { color: rgba(255,255,255,0.5); opacity: 1; }
footer.footer-dark .footer-links a { color: rgba(255,255,255,0.5); opacity: 1; }
footer.footer-dark .footer-links a:hover { color: #fff; }
footer.footer-dark .footer-links a.active { color: var(--orange); }

footer.footer-lav {
  background: var(--lav);
  border-top: none;
  color: var(--black);
}
footer.footer-lav .footer-copy { opacity: 0.6; }
footer.footer-lav .footer-links a { opacity: 0.6; color: var(--black); }
footer.footer-lav .footer-links a:hover { opacity: 1; }
footer.footer-lav .footer-links a.active { color: var(--orange); opacity: 1; }

/* ── NAV WORDMARK (subpages – text only, no icon) ─────────────────────────── */
.nav-wordmark-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--black);
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
}

/* Features section */
.features-section {
  background: var(--blue);
  padding: var(--pv) 0 0 0;
}
.features-section > .label { margin-bottom: 16px; padding-left: var(--ph); }
.features-section > h2 { font-size: clamp(32px, 4.5vw, 56px); max-width: 700px; margin-bottom: 48px; padding-left: var(--ph); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.feature-card {
  padding: 24px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-card.lav  { background: var(--lav); }
.feature-card.yg   { background: var(--yg); }
.feature-card.pink { background: var(--pink); }
.feature-card.org  { background: var(--orange); color: #fff; }
.feature-card.org .label { color: #fff; opacity: 0.7; }

.feature-icon-wrap {
  position: relative;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.icon-ellipse {
  width: 52px;
  height: 52px;
  display: block;
}
.icon-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35px;
  height: 35px;
}

.feature-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.feature-body { font-size: 14px; line-height: 1.6; opacity: 0.75; }

/* Screenshots section */
.screenshots-section {
  background: var(--yg);
  padding: var(--pv) var(--ph);
}
.screenshots-section h2 { font-size: clamp(28px, 4vw, 52px); margin-bottom: 40px; }

.phones-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: flex-end;
}

.phone-wrap { display: flex; flex-direction: column; gap: 12px; }
.phone-wrap img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.phone-caption {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  opacity: 0.55;
}

/* Für wen section */
.fuerwen-section {
  background: var(--lav);
  padding: var(--pv) var(--ph);
}

.fuerwen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.fuerwen-left { }
.fuerwen-left h2 { font-size: clamp(36px, 5vw, 64px); margin-bottom: 14px; }
.fuerwen-asterisk { font-style: italic; font-size: 13px; opacity: 0.5; margin-bottom: 20px; display: block; }
.fuerwen-body { font-size: 17px; line-height: 1.7; opacity: 0.8; max-width: 560px; }
.fuerwen-disclaimer { margin-top: 16px; font-size: 14px; opacity: 0.65; }
.fuerwen-disclaimer a { text-decoration: underline; text-underline-offset: 3px; }

.fuerwen-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
  padding: 0;
  align-self: stretch;
}

.fuerwen-bullet {
  height: 150px;
  padding: 0 24px 0 44px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
}
.fuerwen-bullet.orange { background: var(--orange); color: #fff; }
.fuerwen-bullet.yg     { background: var(--yg); }
.fuerwen-bullet.pink   { background: var(--pink); }

.bullet-check {
  width: 51px;
  height: 51px;
  flex-shrink: 0;
}

/* CTA section — matches Figma absolute layout */
.cta-section {
  background: var(--black);
  color: #fff;
  position: relative;
  min-height: 540px;
  overflow: visible;
}

.cta-yg-accent {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 80px;
  background: var(--yg);
}

.cta-pink-edge {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 60px;
  background: var(--pink);
}

.cta-left {
  padding: 100px 0 100px 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 820px;
  position: relative;
  z-index: 1;
}
.cta-left h2 { font-size: clamp(52px, 7vw, 88px); margin-bottom: 16px; }
.cta-left p { font-size: 18px; opacity: 0.6; max-width: 520px; margin-bottom: 28px; }

/* phone absolutely at top: 40px, right: 219px — matches Figma at 1440px */
.cta-phone-wrap {
  position: absolute;
  top: 40px;
  right: 219px;
  z-index: 10;
}

.cta-phone-frame {
  background: #808080;
  border-radius: 40px;
  width: 295px;
  height: 600px;
  overflow: hidden;
  padding: 16px;
}
.cta-phone-frame img {
  border-radius: 26px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.btn-cta-store {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  background: var(--cream);
  color: var(--black);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.btn-cta-store:hover { opacity: 0.88; }

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --ph: 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .phones-row { grid-template-columns: repeat(2, 1fr); }
  .fuerwen-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-phone-wrap { display: none; }
}

/* ── MOBILE 390px – dedicated Figma frames ──────────────────────────────── */
@media (max-width: 640px) {
  :root { --ph: 24px; --pv: 48px; }

  /* NAV */
  nav { padding: 0 24px; height: 56px; }

  /* ── HERO ── */
  .hero {
    display: flex;
    flex-direction: column;
    min-height: unset;
  }

  .hero-left {
    padding: 20px 24px 32px;
    order: 1;
  }

  /* Hide body text – not in mobile Figma frame */
  .hero-body { display: none; }

  .hero-h1 { font-size: clamp(44px, 12vw, 68px); }

  .hero-right {
    order: 2;
    min-height: 580px;
    padding: 48px 0 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    position: relative;
  }

  /* Black accent bar at bottom of hero – matches M/Hero AccentYG */
  .hero-right::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 55px;
    background: var(--black);
    z-index: 2;
  }

  .hero-phone {
    width: 295px;
    max-width: 80%;
    filter: none;
    position: relative;
    z-index: 1;
  }

  .hero-accent-star { display: none; }

  /* ── FEATURES ── */
  .features-section { padding: var(--pv) 0 0 0; }
  .features-section > .label { padding-left: 24px; }
  .features-section > h2 {
    font-size: clamp(28px, 8vw, 42px);
    padding-left: 24px;
    margin-bottom: 32px;
  }
  .features-grid { grid-template-columns: 1fr; gap: 0; }
  .feature-card { padding: 28px 24px 28px; }

  /* ── SCREENSHOTS ── */
  .screenshots-section { padding: var(--pv) 24px; }
  .phones-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .phone-wrap {
    align-items: center;
  }
  .phone-wrap .phone-frame {
    width: 295px;
    max-width: 100%;
  }

  /* ── FÜR WEN ── */
  .fuerwen-section { padding: var(--pv) 24px; }
  .fuerwen-grid { grid-template-columns: 1fr; gap: 0; }
  /* Hide bullet cards on mobile – not in M/FürWen Figma frame */
  .fuerwen-right { display: none; }
  .fuerwen-left h2 { font-size: clamp(34px, 9vw, 56px); }

  /* ── CTA / DOWNLOAD ── */
  .cta-yg-accent {
    /* Switch from vertical left strip → horizontal top strip */
    position: absolute;
    left: 0; right: 0; top: -8px;
    width: auto;
    bottom: auto;
    height: 40px;
  }
  .cta-pink-edge { display: none; }
  .cta-left {
    padding: 52px 24px 48px;
    max-width: 100%;
  }
  .cta-left h2 { font-size: clamp(40px, 10vw, 64px); margin-bottom: 12px; }
  .cta-left p { font-size: 16px; margin-bottom: 20px; }

  /* ── FOOTER LANDING – blue on mobile ── */
  footer.footer-landing {
    background: var(--blue);
    color: var(--black);
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    gap: 0;
  }
  footer.footer-landing .footer-copy { color: var(--black); opacity: 0.55; }
  footer.footer-landing .footer-landing-links { display: none; }
  footer.footer-landing .back-to-top {
    display: flex;
    background: #fff;
    color: var(--black);
  }

  /* ── GENERIC FOOTER (subpages) ── */
  footer:not(.footer-landing) {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-links { gap: 16px; flex-wrap: wrap; }
}
