/* ───────────────────────────────────────────
   RESET & TOKENS
─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --clr-bg:        #f7f6f2;
  --clr-surface:   #ffffff;
  --clr-surface2:  #eef2e8;
  --clr-border:    rgba(0,0,0,0.08);
  --clr-orange:    #7AA341;
  --clr-orange2:   #95bc58;
  --clr-secondary: #2E394D;
  --clr-text:      #1a1f14;
  --clr-muted:     #6b7560;
  --clr-subtle:    #b8c4ab;

  --font-head:     'Space Grotesk', sans-serif;
  --font-body:     'DM Sans', sans-serif;

  --radius-sm:     6px;
  --radius-md:     14px;
  --radius-lg:     24px;
  --radius-pill:   999px;

  --shadow-glow:   0 0 60px rgba(122, 163, 65, 0.18);
  --shadow-card:   0 20px 60px rgba(0,0,0,0.1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

p {
  color: var(--clr-muted);
  line-height: 1.8;
  margin-bottom: 12px;
  font-size: 15px;
}


/* ───────────────────────────────────────────
   UTILITIES
─────────────────────────────────────────── */
.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clr-orange);
  border: 1px solid rgba(122,163,65,.35);
  background: rgba(122,163,65,.1);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}
.tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--clr-orange);
  border-radius: 50%;
  display: block;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-orange);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-primary:hover {
  background: var(--clr-orange2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(122,163,65,.4);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-secondary);
  color: #ffffff;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .04em;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 1px solid var(--clr-secondary);
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.btn-ghost:hover {
  background: #3d4e66;
  border-color: #3d4e66;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,57,77,.3);
}

/* ───────────────────────────────────────────
   NOISE OVERLAY
─────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .025;
  pointer-events: none;
  z-index: 9999;
}

/* ───────────────────────────────────────────
   NAVIGATION
─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background .3s, backdrop-filter .3s, border-color .3s;
}
nav.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 36px; height: 36px;
  background: var(--clr-orange);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  letter-spacing: -.02em;
}
.nav-logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--clr-text);
  letter-spacing: -.01em;
}
.nav-logo-text span { color: var(--clr-orange); }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  color: var(--clr-muted);
  text-decoration: none;
  letter-spacing: .03em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--clr-text); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-cta .btn-primary { padding: 10px 22px; font-size: 13px; }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ───────────────────────────────────────────
   HERO
─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}

/* Background grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(122,163,65,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122,163,65,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-eyebrow {
  margin-bottom: 24px;
}

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * {
  animation: hero-fade-up .7s cubic-bezier(.22,1,.36,1) both;
}
.hero-content > *:nth-child(1) { animation-delay: .2s; }
.hero-content > *:nth-child(2) { animation-delay: .3s; }
.hero-content > *:nth-child(3) { animation-delay: .4s; }
.hero-content > *:nth-child(4) { animation-delay: .5s; }
.hero-content > *:nth-child(5) { animation-delay: .6s; }
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  color: var(--clr-orange);
}
.hero-title .line-stroke {
  -webkit-text-stroke: 1px var(--clr-orange);
  color: transparent;
}
.hero-desc {
  font-size: 17px;
  color: var(--clr-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--clr-border);
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1;
  letter-spacing: -.02em;
}
.hero-stat-num span { color: var(--clr-orange); }
.hero-stat-label {
  font-size: 12px;
  color: var(--clr-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── Phone Mockup ── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-wrap {
  position: relative;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.phone-shadow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 30px;
  background: radial-gradient(ellipse, rgba(122,163,65,.28) 0%, transparent 70%);
  filter: blur(12px);
  animation: shadow-pulse 4s ease-in-out infinite;
}
@keyframes shadow-pulse {
  0%, 100% { opacity: .8; width: 200px; }
  50% { opacity: .4; width: 160px; }
}
.phone {
  width: 460px;
  background: transparent;
  border-radius: 0;
  border: none;
  box-shadow: none;
  overflow: visible;
  position: relative;
}
.phone-img {
  display: block;
  width: 100%;
  height: auto;
}
.phone-notch {
  display: none;
}
.phone-notch-pill {
  display: none;
}

/* ───────────────────────────────────────────
   APP SECTION
─────────────────────────────────────────── */
.section-app {
  background: var(--clr-surface);
  padding: 100px 0 120px;
  position: relative;
}
.section-app::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-orange), transparent);
  opacity: .3;
}

/* ── Clubhouse Section — blaue Akzente ── */
.section-clubhouse {
  background: rgba(100,149,237,.05);
}
.section-clubhouse::before {
  background: linear-gradient(90deg, transparent, #264681, transparent);
  opacity: .35;
}
.section-clubhouse .tag::before {
  background: #264681;
}
.section-clubhouse .tag {
  background: rgba(100,149,237,.12);
  color: #264681;
  border-color: rgba(100,149,237,.25);
}
.section-clubhouse .feat-arrow:hover {
  border-color: rgba(100,149,237,.35);
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-header .tag { margin-bottom: 20px; }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-title em {
  font-style: normal;
  color: var(--clr-orange);
}
.section-clubhouse .section-title em {
  color: #264681;
}
.section-desc {
  font-size: 17px;
  color: var(--clr-muted);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.7;
}

/* ── Feature Showcase ── */
.feat-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 96px;
}
.feat-showcase:last-of-type {
  margin-bottom: 80px;
}
.feat-showcase--flip {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.feat-showcase--flip .feat-panel {
  order: 2;
}
.feat-showcase--flip .feat-carousel-wrap {
  order: 1;
}

/* Left: static text */
.feat-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feat-panel > .tag {
  align-self: flex-start;
}
.feat-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -.04em;
  color: var(--clr-text);
  line-height: 1.15;
}
.feat-desc {
  font-size: 17px;
  color: var(--clr-muted);
  line-height: 1.75;
  max-width: 420px;
}
.feat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-orange);
  text-decoration: none;
  transition: gap .18s;
}
.feat-link:hover { gap: 10px; }

/* Right: carousel wrapper with outside arrows */
.feat-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.feat-media {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--clr-surface2);
  box-shadow: 0 20px 56px rgba(0,0,0,.09);
  position: relative;
}
.feat-slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.feat-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.feat-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.feat-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Arrows outside the image */
.feat-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  background: var(--clr-surface);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--clr-text);
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
  transition: background .18s, border-color .18s, transform .15s;
}
.feat-arrow:hover {
  background: var(--clr-surface2);
  border-color: rgba(122,163,65,.35);
  transform: scale(1.08);
}
.feat-arrow:disabled {
  opacity: .3;
  cursor: default;
  transform: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .feat-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feat-showcase--flip .feat-panel {
    order: 0;
  }
  .feat-showcase--flip .feat-carousel-wrap {
    order: 1;
  }
  .feat-media { aspect-ratio: 16/9; }
}
@media (max-width: 768px) {
  .feat-showcase { margin-bottom: 56px; }
  .feat-carousel-wrap { gap: 10px; }
  .feat-arrow { width: 36px; height: 36px; }
}



/* ───────────────────────────────────────────
   PRODUCT OVERVIEW (Two-col split)
─────────────────────────────────────────── */
.section-overview {
  background: var(--clr-surface);
  padding: 100px 0;
  position: relative;
}
.section-overview::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122,163,65,.22), transparent);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.overview-card {
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}
.overview-card-app {
  background: linear-gradient(135deg, rgba(122,163,65,.14), rgba(122,163,65,.06));
  border: 1px solid rgba(122,163,65,.22);
}
.overview-card-clubhouse {
  background: linear-gradient(135deg, rgba(100,149,237,.08), rgba(100,149,237,.02));
  border: 1px solid rgba(100,149,237,.15);
}
.overview-card::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  opacity: .06;
}
.overview-card-app::after { background: var(--clr-orange); }
.overview-card-clubhouse::after { background: #6495ed; }

.overview-card-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
}
.overview-card-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clr-orange);
  margin-bottom: 10px;
}
.overview-card-clubhouse .overview-card-label {
  color: #264681;
}
.overview-card-title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.overview-card-desc {
  font-size: 14px;
  color: var(--clr-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ───────────────────────────────────────────
   CTA FINAL
─────────────────────────────────────────── */
.section-final-cta {
  background: var(--clr-surface);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(122,163,65,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122,163,65,.07) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black, transparent);
}
.cta-orb {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,163,65,.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.cta-title em { font-style: normal; color: var(--clr-orange); }
.cta-desc {
  font-size: 17px;
  color: var(--clr-muted);
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 40px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ───────────────────────────────────────────
   FOOTER
─────────────────────────────────────────── */
footer {
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
  padding: 60px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--clr-muted);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 240px;
}
.footer-col-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: var(--clr-muted);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--clr-text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--clr-border);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 12px;
  color: var(--clr-orange);
}
.footer-copy a {
  color: var(--clr-muted);
  text-decoration: none;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 12px;
  color: var(--clr-orange);
  text-decoration: none;
  transition: color .2s;
}
.footer-legal a:hover { color: var(--clr-muted); }

/* ───────────────────────────────────────────
   SCROLL ANIMATIONS
─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }

/* ───────────────────────────────────────────
   RESPONSIVE
─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .nav-burger { display: flex; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 40px 0 60px;
  }
  .hero-visual { order: 1; }
  .phone { width: 220px; }
  .overview-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
}

/* ───────────────────────────────────────────
   MOBILE NAV (overlay)
─────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(245,247,242,.99);
  backdrop-filter: blur(20px);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--clr-text);
  text-decoration: none;
  letter-spacing: -.02em;
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--clr-orange); }
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--clr-muted);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

/* ───────────────────────────────────────────
   LEGAL PAGES (Impressum, Datenschutz)
─────────────────────────────────────────── */
.legal-hero {
  padding: 140px 0 60px;
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
}
.legal-hero .tag { margin-bottom: 20px; }
h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1.1;
  margin-bottom: 16px;
}
h1 em {
  font-style: normal;
  color: var(--clr-orange);
}
.legal-hero p {
  color: var(--clr-muted);
  font-size: 15px;
}
.legal-content {
  padding: 64px 0 100px;
}
.legal-content .legal-grid {
  max-width: 780px;
}
.legal-body section {
  margin-bottom: 48px;
}
.legal-body h2 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--clr-surface2);
  scroll-margin-top: 100px;
}
.legal-body h3,
.legal-body h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-text);
  margin: 20px 0 8px;
}
.legal-body p {
  color: var(--clr-muted);
  line-height: 1.8;
  margin-bottom: 12px;
  font-size: 15px;
}
.legal-body ul {
  margin: 0 0 12px 20px;
}
.legal-body ul li {
  color: var(--clr-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 4px;
}
.legal-body a {
  color: var(--clr-orange);
  text-decoration: none;
}
.legal-body a:hover { text-decoration: underline; }
.legal-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-top: 8px;
}
.legal-card p { margin-bottom: 4px; }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  color: var(--clr-muted);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color .2s;
}
.legal-back:hover { color: var(--clr-orange); }
.legal-back svg { flex-shrink: 0; }
.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(122,163,65,.1);
  border: 1px solid rgba(122,163,65,.25);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  font-size: 12px;
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--clr-orange);
  margin-bottom: 8px;
}

/* ───────────────────────────────────────────
   FAQ
─────────────────────────────────────────── */
.section-faq {
  padding: 96px 0;
  background: var(--clr-surface2);
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--clr-border);
  padding: 24px 0;
}
.faq-item:first-child {
  border-top: 1px solid var(--clr-border);
}
.faq-question {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 500;
  color: var(--clr-text);
  margin-bottom: 10px;
}
.faq-answer {
  font-size: 15px;
  color: var(--clr-muted);
  line-height: 1.7;
}

