/* ═══════════════════════════════════════════════════════════════════
   SEOX — main.css
   Gemeinsame Styles für alle Seiten.
   Enthält: Tokens, Reset, Utilities, Navigation, Footer, Responsive.
   ═══════════════════════════════════════════════════════════════════ */

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 8px 16px;
  background: var(--pink);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
}

/* ─── Design Tokens ──────────────────────────────────────────── */
:root {
  --pink:        #d4238a;
  --pink-mid:    #e83da0;
  --pink-light:  #f472c0;
  --pink-pale:   #fdf0f8;
  --pink-dark:   #9e1868;
  /* Secondary accent — KI/GEO/LLMO only (indigo-violet), keeps magenta as the brand */
  --ki:          #5b4be0;
  --ki-mid:      #7b6cf0;
  --ki-dark:     #3f33ad;
  --black:       #0b0b0b;
  --gray-950:    #111111;
  --gray-900:    #1c1c1e;
  --gray-700:    #3a3a3c;
  --gray-500:    #6e6e73;
  --gray-400:    #8e8e93;
  --gray-300:    #c8c8ca;
  --gray-200:    #d1d1d6;
  --gray-100:    #f2f2f7;
  --gray-50:     #f8f8f8;
  --white:       #ffffff;
  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --max-w:        1200px;
  --nav-h:        72px;
  --section-py:   96px;
}

/* ─── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

/* ─── Focus Visible (Accessibility) ────────────────────────── */
:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn:focus-visible, .nav-cta:focus-visible {
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(212, 35, 138, 0.2);
}
.nav-toggle:focus-visible, .theme-toggle:focus-visible {
  outline-offset: 4px;
  border-radius: 50%;
}
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 0;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Utilities ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(212,35,138,0.35);
}
.btn-primary:hover { background: var(--pink-dark); box-shadow: 0 6px 24px rgba(212,35,138,0.35); }
.btn-ghost {
  background: transparent;
  color: var(--gray-900);
  border: 1.5px solid var(--gray-300);
}
.btn-ghost:hover { border-color: var(--gray-700); background: var(--gray-100); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── Section Headers ────────────────────────────────────────── */
.section-label {
  display: inline-block;
  padding: 4px 12px;
  background: var(--pink-pale);
  border: 1px solid rgba(212,35,138,0.2);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
}
.section-label a { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.section-label a:hover { border-bottom-color: var(--pink); }
.section-heading a { color: inherit; text-decoration: none; border-bottom: 2px solid transparent; transition: border-color 0.2s; }
.section-heading a:hover { border-bottom-color: var(--pink); }
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

/* ─── Navigation — Glassmorphism Floating Pill ─────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 14px 20px 0;
  pointer-events: none;
  height: auto;
  background: transparent;
  border: none;
  transition: padding 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav.scrolled {
  padding-top: 8px;
  background: transparent;
  border: none;
  box-shadow: none;
}
.nav-inner {
  max-width: none;
  margin: 0;
  padding: 0 8px 0 20px;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  pointer-events: auto;
  position: relative;

  /* Glassmorphism */
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.06),
    0 1px 3px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
/* Bottom light streak */
.nav-inner::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1.5px;
  background: radial-gradient(ellipse, rgba(212, 35, 138, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: width 0.4s ease, opacity 0.4s ease;
}
/* Ambient glow */
.nav-inner::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 20px;
  background: radial-gradient(ellipse, rgba(212, 35, 138, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.5;
  transition: opacity 0.4s ease;
}
/* Scroll state — denser glass */
.nav.scrolled .nav-inner {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.nav.scrolled .nav-inner::after {
  width: 160px;
}

.nav-logo {
  display: flex;
  align-items: center;
  margin-right: 8px;
  flex-shrink: 0;
}
.nav-logo-full {
  height: 28px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.nav-logo:hover .nav-logo-full {
  opacity: 0.8;
}
.nav-divider {
  width: 1px;
  height: 24px;
  background: rgba(0, 0, 0, 0.1);
  margin: 0 6px;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-500);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--black);
  background: rgba(0, 0, 0, 0.05);
}
.nav-link.active {
  color: var(--black);
  background: rgba(0, 0, 0, 0.06);
}
.nav-link-icon {
  width: 16px;
  height: 16px;
  opacity: 0.55;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.nav-link:hover .nav-link-icon,
.nav-link.active .nav-link-icon {
  opacity: 0.9;
}
.nav-cta {
  margin-left: 6px;
  padding: 9px 20px;
  font-size: 13px;
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(212, 35, 138, 0.35);
}
.nav-cta:hover {
  box-shadow: 0 4px 20px rgba(212, 35, 138, 0.5);
}

/* ─── Theme Toggle (Nav) ──────────────────────────────────── */
.nav-inner > .theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 6px 0 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.nav-inner > .theme-toggle:hover {
  background: rgba(0,0,0,0.1);
  transform: scale(1.1);
}
html[data-theme="dark"] .nav-inner > .theme-toggle {
  background: rgba(255,255,255,0.1);
}
html[data-theme="dark"] .nav-inner > .theme-toggle:hover {
  background: rgba(255,255,255,0.18);
}
.nav-inner > .theme-toggle svg { width: 20px; height: 20px; }
.nav-inner > .theme-toggle .icon-sun { display: none; }
.nav-inner > .theme-toggle .icon-moon { display: block; }
html[data-theme="dark"] .nav-inner > .theme-toggle .icon-sun { display: block; }
html[data-theme="dark"] .nav-inner > .theme-toggle .icon-moon { display: none; }

/* ─── Mega Menu ────────────────────────────────────────────── */
.nav-item-mega { position: relative; }
.nav-item-mega > .nav-link { display: flex; align-items: center; gap: 4px; }
.nav-link-chevron {
  width: 12px; height: 12px; transition: transform 0.25s;
}
.nav-item-mega:hover .nav-link-chevron { transform: rotate(180deg); }

.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 1280px;
  max-width: calc(100vw - 40px);
  background: linear-gradient(135deg, #120835, #1a0a2e, #1e0d3d);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(0,0,0,0.25), 0 2px 8px rgba(0,0,0,0.1);
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  z-index: 200;
}
.mega-menu::before {
  content: ''; position: absolute;
  top: -16px; left: 0; right: 0; height: 16px;
}
.nav-item-mega:hover .mega-menu {
  opacity: 1; visibility: visible;
  pointer-events: auto; transform: translateX(-50%) translateY(0);
}
/* Hover bridge — keeps the mega-menu open while the cursor crosses the gap
   from the nav item down to the panel (inline override makes it fixed/top:84px,
   leaving a ~14px dead gap). This sits on the nav-item side and, as a hover
   descendant, holds :hover continuously. Only present on hover → no stray clicks. */
.nav-item-mega:hover::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -40px;
  right: -40px;
  height: 40px;
  z-index: 199;
}

.mega-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-bottom: 20px; padding-left: 4px;
}
.mega-cols {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
}
.mega-col {
  padding: 0 24px;
}
.mega-col-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.mega-col-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  margin-bottom: 20px;
}
.mega-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  padding: 6px 0;
  transition: color 0.15s;
  text-decoration: none;
}
.mega-link:hover { color: var(--pink-mid); }
.mega-link .arrow { transition: transform 0.15s; }
.mega-link:hover .arrow { transform: translateX(3px); }
.mega-badge-new {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  background: linear-gradient(135deg, var(--pink), var(--pink-mid));
  color: #fff; padding: 2px 6px; border-radius: 4px; line-height: 1;
  white-space: nowrap;
}
.mega-shape {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
}

.mega-divider {
  height: 1px; background: rgba(255,255,255,0.1);
  margin: 20px 0;
}
.mega-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px; border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
}
.mega-footer-text {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7);
}
.mega-footer-text strong { color: var(--pink-mid); }
.mega-footer-link {
  font-size: 13px; font-weight: 600; color: var(--pink-mid);
  display: flex; align-items: center; gap: 4px;
  transition: gap 0.2s; text-decoration: none;
}
.mega-footer-link:hover { gap: 8px; }

/* ─── Mega Menu Body (cols + promo) ─── */
.mega-body {
  display: flex;
  gap: 28px;
}
.mega-body .mega-cols { flex: 1; min-width: 0; }
.mega-promo-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 280px;
  flex-shrink: 0;
}

/* ─── Mega Promo Card ─── */
@property --mega-promo-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes mega-promo-shimmer {
  to { --mega-promo-angle: 360deg; }
}
.mega-promo {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(212,35,138,0.08), rgba(180,60,200,0.06));
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.mega-promo::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1.5px;
  background: conic-gradient(from var(--mega-promo-angle), #d4238a, #f472c0, rgba(255,255,255,0.1), #d4238a);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: mega-promo-shimmer 3s linear infinite;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.mega-promo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,35,138,0.2);
}
.mega-promo:hover::before { opacity: 1; }
.mega-promo-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #d4238a, #e83da0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(212,35,138,0.3);
}
.mega-promo-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 4px;
}
.mega-promo-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.mega-promo-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  flex: 1;
}
.mega-promo-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}
.mega-promo-feature svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.mega-promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--pink-mid);
  transition: gap 0.25s ease;
}
.mega-promo:hover .mega-promo-cta { gap: 10px; }

/* Compact variant */
.mega-promo-compact {
  padding: 14px 16px;
  border-radius: 12px;
}
.mega-promo-compact-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ─── Mobile Nav — Glassmorphism ────────────────────────────── */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s;
  margin-left: 4px;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}
.nav-toggle-bar {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gray-500);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gray-500);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle-bar::before { transform: translateY(-6px); }
.nav-toggle-bar::after  { transform: translateY(6px); }

/* Open state */
.nav-toggle.is-open .nav-toggle-bar { background: transparent; }
.nav-toggle.is-open .nav-toggle-bar::before { transform: rotate(45deg); background: #fff; }
.nav-toggle.is-open .nav-toggle-bar::after  { transform: rotate(-45deg); background: #fff; }

/* Nav pill becomes dark when mobile menu is open */
.nav.mob-open .nav-inner {
  background: rgba(12, 10, 26, 0.95) !important;
  border-color: rgba(255,255,255,0.1) !important;
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
}
.nav.mob-open .nav-logo-full { filter: brightness(0) invert(1); }
.nav.mob-open .theme-toggle { background: rgba(255,255,255,0.1); }
.nav.mob-open .theme-toggle:hover { background: rgba(255,255,255,0.18); }

.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: linear-gradient(135deg, #0c0a1a 0%, #131025 50%, #1a0e30 100%);
  padding: 80px 0 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.35s;
  z-index: 998;
  display: flex;
  flex-direction: column;
}
.nav-mobile.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ─── Mobile Menu Section Groups ─────────────────────────── */
.nav-mob-section {
  padding: 16px 24px 8px;
}
.nav-mob-section + .nav-mob-section {
  border-top: 1px solid rgba(255,255,255,0.06);
}
.nav-mob-section-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.3);
  padding: 0 0 8px;
  margin: 0;
}
.nav-mobile a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-radius: 10px;
  border: none;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.nav-mobile a:hover,
.nav-mobile a:active {
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.nav-mob-arrow {
  margin-left: auto;
  color: rgba(255,255,255,0.2);
  font-size: 14px;
  transition: transform 0.2s, color 0.2s;
}
.nav-mobile a:hover .nav-mob-arrow {
  transform: translateX(3px);
  color: #d4238a;
}
.nav-mob-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(212,35,138,0.2);
  color: #e83da0;
  line-height: 1.3;
}

/* ─── Mobile Menu Main Links ──────────────────────────────── */
.nav-mob-main {
  padding: 12px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.nav-mob-main a {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  padding: 14px 12px;
}

/* ─── Mobile Menu Promo Cards ─────────────────────────────── */
.nav-mob-promos {
  padding: 8px 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.nav-mob-promo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.nav-mob-promo:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(212,35,138,0.3);
}
.nav-mob-promo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex-shrink: 0;
}
.nav-mob-promo-text {
  flex: 1;
  min-width: 0;
}
.nav-mob-promo-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.nav-mob-promo-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.3;
  margin-top: 2px;
}
.nav-mob-promo-cta {
  font-size: 12px;
  font-weight: 600;
  margin-left: auto;
  flex-shrink: 0;
}

/* ─── Mobile Menu CTA ─────────────────────────────────────── */
.nav-mobile .nav-mob-cta-wrap {
  padding: 16px 24px 8px;
}
.nav-mobile .btn {
  display: block;
  margin: 0;
  padding: 16px 20px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  border-radius: 14px;
  background: linear-gradient(135deg, #d4238a, #e83da0);
  color: #fff;
  border: none;
  letter-spacing: 0.3px;
}
.nav-mobile .btn:hover {
  background: linear-gradient(135deg, #e83da0, #d4238a);
}

/* ─── Mobile Menu Footer ──────────────────────────────────── */
.nav-mob-footer {
  margin-top: auto;
  padding: 14px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.nav-mob-footer-text {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.nav-mob-footer-text strong {
  color: rgba(255,255,255,0.6);
}
.nav-mob-footer-link {
  font-size: 12px;
  font-weight: 600;
  color: #d4238a;
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  background: #fafafa;
  padding-top: 72px;
  padding-bottom: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 60px;
}
.footer-brand .nav-logo { color: var(--black); margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gray-500);
  transition: background 0.15s, color 0.15s;
}
.footer-social a:hover { background: rgba(212,35,138,0.1); color: var(--pink); border-color: rgba(212,35,138,0.2); }
.footer-col .footer-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--gray-700);
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--black); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-copy {
  font-size: 13px;
  color: var(--gray-500);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 13px;
  color: var(--gray-500);
  transition: color 0.15s;
}
.footer-legal a:hover { color: var(--gray-700); }

/* ─── Responsive (shared) ────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta {
    font-size: 12px;
    padding: 7px 14px;
    margin-left: auto;
  }
  .nav-toggle { display: flex; }
  .nav-inner { padding: 0 8px 0 18px; }
}
@media (max-width: 768px) {
  :root { --section-py: 64px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .section-heading { font-size: clamp(24px, 6vw, 36px); }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .section-heading { font-size: clamp(24px, 6vw, 36px); }
}
