/* ===========================
   AnchorCore – style.css
   Dark Mode · Gold · Modern
   =========================== */

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

:root {
  --bg:         #0a0a0a;
  --bg-card:    #111111;
  --bg-card2:   #0e0e0e;
  --border:     #1e1e1e;
  --border-h:   #2a2a2a;
  --gold:       #c9a84c;
  --gold-light: #e8c96a;
  --gold-dim:   #b8972a;
  --gold-bg:    rgba(201,168,76,.08);
  --gold-bg-h:  rgba(201,168,76,.14);
  --text:       #f0f0f0;
  --text-muted: #888888;
  --text-sub:   #444444;
  --radius:     12px;
  --radius-lg:  18px;
  --shadow:     0 4px 24px rgba(0,0,0,.5);
  --shadow-lg:  0 8px 48px rgba(0,0,0,.7);
  --transition: 0.25s ease;
  --font:       'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background-color: var(--bg);
  /* Global grid — visible on every section while scrolling */
  background-image:
    linear-gradient(rgba(201,168,76,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.022) 1px, transparent 1px);
  background-size: 52px 52px;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Fixed ambient glow — subtly follows the user through the whole page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 55% at 50% -5%,  rgba(201,168,76,.10) 0%, transparent 65%),
    radial-gradient(ellipse 55% 50% at 100% 45%, rgba(201,168,76,.05) 0%, transparent 68%),
    radial-gradient(ellipse 55% 50% at 0%   55%, rgba(201,168,76,.045) 0%, transparent 68%),
    radial-gradient(ellipse 75% 50% at 50% 110%, rgba(201,168,76,.07) 0%, transparent 65%);
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; }
ul { list-style: none; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #222; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dim); }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gold);
  color: #000;
  font-weight: 600;
  font-size: .95rem;
  font-family: var(--font);
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(201,168,76,.3);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--text);
  font-weight: 500;
  font-size: .95rem;
  border-radius: 8px;
  border: 1px solid var(--border-h);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-bg);
}
.btn-full { width: 100%; justify-content: center; }

/* ---- Sections ---- */
.section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
}

/* ========================
   NAVBAR
   ======================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  background: rgba(10,10,10,.95);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-anchor-icon { width: 28px; height: auto; }
.nav-brand {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 16px;
  font-size: .9rem;
  color: var(--text-muted);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.05); }
.btn-nav {
  background: var(--gold) !important;
  color: #000 !important;
  font-weight: 600 !important;
  margin-left: 8px;
}
.btn-nav:hover { background: var(--gold-light) !important; }

/* ---- Language Switcher ---- */
.lang-switcher {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border-h);
  border-radius: 7px;
  padding: 3px;
  margin: 0 6px;
}
.lang-btn {
  padding: 4px 10px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .8px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  font-family: var(--font);
  line-height: 1;
}
.lang-btn.active {
  background: var(--gold);
  color: #000;
}
.lang-btn:hover:not(.active) {
  color: var(--text);
  background: rgba(255,255,255,.06);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================
   HERO
   ======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 68px;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.035) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(201,168,76,.1) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 48px;
  padding-bottom: 96px;
}
.hero-logo {
  margin-bottom: 36px;
  animation: fadeUp .8s ease both;
}
.logo-full {
  width: min(580px, 92vw);
  height: auto;
}
.hero-desc {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.85;
  animation: fadeUp .8s .12s ease both;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
  animation: fadeUp .8s .22s ease both;
}
.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp .8s .32s ease both;
}
.badge {
  padding: 6px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-h);
  border-radius: 999px;
  font-size: .82rem;
  color: var(--text-muted);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-scroll-hint span {
  display: block;
  width: 20px;
  height: 32px;
  border: 2px solid var(--border-h);
  border-radius: 10px;
  position: relative;
}
.hero-scroll-hint span::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 1.8s ease infinite;
}

/* ========================
   LEISTUNGEN
   ======================== */
.leistungen { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: rgba(201,168,76,.28);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  border-color: rgba(201,168,76,.2);
  background: linear-gradient(145deg, #111 0%, #0f0d06 100%);
}
.service-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #000;
  background: var(--gold);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.service-icon {
  width: 46px;
  height: 46px;
  background: var(--gold-bg);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
}
.service-icon svg { width: 20px; height: 20px; }
.service-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; }
.service-card p { font-size: .88rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.75; }
.service-list li {
  font-size: .84rem;
  color: var(--text-muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-list li:last-child { border-bottom: none; }

/* ========================
   ÜBER UNS
   ======================== */
.ueber-uns {
  background: var(--bg-card2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: center;
}
.about-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.about-anchor-wrap {
  width: 140px;
  filter: drop-shadow(0 0 50px rgba(201,168,76,.25));
}
.about-anchor { width: 100%; }
.about-stats { display: flex; flex-direction: column; gap: 14px; width: 100%; }
.stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.stat-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  min-width: 60px;
}
.stat-label { font-size: .82rem; color: var(--text-muted); }
.about-text .section-label { display: block; margin-bottom: 12px; }
.about-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
}
.about-text p { font-size: .93rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.85; }
.about-values { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.value-item:hover { border-color: rgba(201,168,76,.2); }
.value-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
.value-item strong { display: block; font-size: .92rem; margin-bottom: 3px; }
.value-item span { font-size: .83rem; color: var(--text-muted); }

/* ========================
   KONTAKT
   ======================== */
.kontakt { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.contact-item:hover { border-color: rgba(201,168,76,.2); }
.contact-icon { font-size: 1.3rem; flex-shrink: 0; }
.contact-item strong { display: block; font-size: .88rem; color: var(--text); margin-bottom: 3px; }
.contact-item span { font-size: .83rem; color: var(--text-muted); line-height: 1.6; }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .8rem; font-weight: 500; color: var(--text-muted); letter-spacing: .3px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 15px;
  background: var(--bg);
  border: 1px solid var(--border-h);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font);
  font-size: .88rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-sub); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px rgba(201,168,76,.08);
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form-group select option { background: #1a1a1a; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input[type="checkbox"] {
  width: 17px; height: 17px;
  flex-shrink: 0; margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}
.form-check label { font-size: .8rem; color: var(--text-muted); line-height: 1.5; cursor: pointer; }
.form-success {
  display: none;
  text-align: center;
  padding: 14px;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 8px;
  color: var(--gold);
  font-size: .88rem;
  font-weight: 500;
}
.form-success.visible { display: block; animation: fadeUp .4s ease both; }

/* ========================
   FOOTER
   ======================== */
.footer {
  background: var(--bg-card2);
  border-top: 1px solid var(--border);
  padding: 52px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-anchor { width: 34px; height: auto; }
.footer-name { display: block; font-size: 1.1rem; font-weight: 600; color: var(--text); }
.footer-claim {
  display: block;
  font-size: .72rem;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 3px;
}
.footer-links { display: flex; gap: 4px; flex-wrap: wrap; justify-content: center; }
.footer-links a {
  padding: 6px 14px;
  font-size: .84rem;
  color: var(--text-muted);
  border-radius: 4px;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: .77rem;
  color: var(--text-sub);
  padding-top: 24px;
  border-top: 1px solid var(--border);
  width: 100%;
}

/* ========================
   ANIMATIONS
   ======================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollDot {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  80%  { opacity: 0; transform: translateX(-50%) translateY(12px); }
  100% { opacity: 0; transform: translateX(-50%) translateY(0); }
}

/* ========================
   SCROLL ANIMATIONS
   ======================== */

/* Shared: pointer-events blocked while invisible so nav stays clickable */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  will-change: opacity, transform, filter;
  backface-visibility: hidden;
  pointer-events: none;
}
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  pointer-events: auto;
}

/* Fade-up + blur (section headers, paragraphs) */
.reveal {
  transform: translateY(44px);
  filter: blur(7px);
  transition:
    opacity   .85s cubic-bezier(.16,1,.3,1),
    transform .85s cubic-bezier(.16,1,.3,1),
    filter    .85s cubic-bezier(.16,1,.3,1);
}

/* Slide from left + blur (about-text, left columns) */
.reveal-left {
  transform: translateX(-54px);
  filter: blur(5px);
  transition:
    opacity   .9s cubic-bezier(.16,1,.3,1),
    transform .9s cubic-bezier(.16,1,.3,1),
    filter    .9s cubic-bezier(.16,1,.3,1);
}

/* Slide from right + blur (about-visual, right columns) */
.reveal-right {
  transform: translateX(54px);
  filter: blur(5px);
  transition:
    opacity   .9s cubic-bezier(.16,1,.3,1),
    transform .9s cubic-bezier(.16,1,.3,1),
    filter    .9s cubic-bezier(.16,1,.3,1);
}

/* 3-D card rise (service cards, FAQ items, contact items) */
.reveal-scale {
  transform: perspective(900px) rotateX(14deg) translateY(30px) scale(.97);
  transform-origin: center top;
  filter: blur(6px);
  transition:
    opacity   .78s cubic-bezier(.16,1,.3,1),
    transform .78s cubic-bezier(.16,1,.3,1),
    filter    .78s cubic-bezier(.16,1,.3,1);
}

/* Active: every variant snaps to natural resting position */
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: none;
  filter: blur(0px);
}

/* ========================
   INLINE LINK
   ======================== */
.inline-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(201,168,76,.45);
  transition: text-decoration-color var(--transition), color var(--transition);
}
.inline-link:hover {
  color: var(--gold-light);
  text-decoration-color: var(--gold-light);
}

/* ========================
   ANYDESK BUTTON
   ======================== */
.anydesk-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  padding: 9px 18px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 8px;
  font-size: .83rem;
  font-weight: 600;
  letter-spacing: .4px;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.anydesk-btn:hover {
  background: var(--gold);
  color: #000;
}

/* ========================
   FAQ SECTION
   ======================== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 48px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item[open] {
  border-color: rgba(201,168,76,.45);
  box-shadow: 0 0 0 1px rgba(201,168,76,.15);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  list-style: none;
  gap: 14px;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question span { flex: 1; }
.faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0 22px 18px;
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.75;
  border-top: 1px solid var(--border);
}
.faq-answer p { margin: 14px 0 0; }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { flex-direction: row; justify-content: center; flex-wrap: wrap; }
  .about-stats { flex-direction: row; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 4px;
  }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(10,10,10,.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px 28px;
  }
  .nav-links a { padding: 12px 16px; font-size: .95rem; color: var(--text-muted); }
  .btn-nav { margin-left: 0 !important; }
  .burger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; align-items: stretch; }
  .stat { flex-direction: column; text-align: center; gap: 6px; }
  .stat-num { min-width: auto; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}
