/* ============================================================
   websiteerstellen-lassen.de – Stylesheet v1.0
   CI: Blau/Cyan – Dark Theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* Backgrounds */
  --bg:        #060810;
  --bg-2:      #0a0e18;
  --bg-card:   #0f1420;
  --bg-card-2: #141a28;

  /* Text */
  --text:      #eef2f8;
  --text-2:    #a8b4cc;
  --text-muted:#8896b0;

  /* Brand – Blau/Cyan */
  --purple:        #2563EB;
  --purple-bright: #3B82F6;
  --purple-deep:   #1D4ED8;
  --purple-soft:   #93C5FD;
  --pink-accent:   #06B6D4;

  /* Gradienten */
  --grad-brand:  linear-gradient(135deg, #60A5FA, #2563EB, #1D4ED8);
  --grad-warm:   linear-gradient(135deg, #2563EB, #06B6D4);
  --grad-subtle: linear-gradient(135deg, rgba(37,99,235,.12), rgba(6,182,212,.08));
  --grad-glow:   radial-gradient(ellipse 60% 50% at 60% 50%, rgba(37,99,235,.15) 0%, transparent 70%);

  /* Helle Sektionen */
  --light-bg:    #f0f4fa;
  --light-text:  #0f1828;
  --light-text-2:#4a5570;
  --light-border:rgba(15,24,40,.1);

  /* Borders */
  --border:      rgba(255,255,255,.07);
  --border-warm: rgba(37,99,235,.22);

  /* Layout */
  --max-w:  1280px;
  --pad-x:  clamp(1.25rem, 5vw, 2.5rem);
  --nav-h:  88px;
  --r:      .75rem;
  --r-lg:   1.25rem;
  --r-xl:   2rem;

  /* Fonts */
  --f-display: 'Outfit', sans-serif;
  --f-body:    'Outfit', sans-serif;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 { font-family: var(--f-display); line-height: 1.15; }

h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }

p { color: var(--text-2); font-size: 1.0625rem; }

.text-gradient {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--f-display);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--purple-soft);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--grad-warm);
  border-radius: 2px;
}

/* ============================================================
   4. LAYOUT HELPERS
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-dark  { background: var(--bg); }
.section-card  { background: var(--bg-2); }
.section-light {
  background: var(--light-bg);
  color: var(--light-text);
}
.section-light p { color: var(--light-text-2); }
.section-light .section-label { color: var(--purple-deep); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ============================================================
   5. HEADER & NAV
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background .3s, box-shadow .3s;
}

.header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-warm);
  z-index: 1;
}

.header.scrolled {
  background: rgba(6,6,10,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.nav-logo img {
  display: block;
  width: auto;
  height: 48px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-link {
  font-family: var(--f-display);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-2);
  padding: .5rem .9rem;
  border-radius: var(--r);
  transition: color .2s, background .2s;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
  background: rgba(37,99,235,.1);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 2px;
  background: var(--grad-warm);
  border-radius: 2px;
}

/* Dropdown */
.nav-item { position: relative; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + .75rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--r-lg);
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: .6rem 1rem;
  font-size: .875rem;
  color: var(--text-2);
  border-radius: var(--r);
  transition: background .15s, color .15s;
}

.nav-dropdown a:hover {
  background: rgba(37,99,235,.12);
  color: var(--text);
}

.nav-cta {
  font-family: var(--f-display);
  font-size: .875rem;
  font-weight: 700;
  padding: .6rem 1.4rem;
  border-radius: 100px;
  background: var(--grad-warm);
  color: #fff;
  transition: opacity .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(37,99,235,.3);
}

.nav-cta:hover {
  opacity: .9;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(37,99,235,.45);
}

/* Burger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ============================================================
   6. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(37,99,235,.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(6,182,212,.06) 0%, transparent 55%),
    linear-gradient(rgba(6,6,10,.85), rgba(6,6,10,.97)),
    url('/hero.webp') center center / cover no-repeat;
  z-index: 0;
}

#bg-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding-top: var(--nav-h);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(37,99,235,.12);
  border: 1px solid rgba(37,99,235,.25);
  border-radius: 100px;
  padding: .45rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--purple-soft);
  margin-bottom: 1.75rem;
  font-family: var(--f-display);
  letter-spacing: .04em;
}

.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--purple-bright);
  box-shadow: 0 0 8px var(--purple-bright);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(.85); }
}

.hero h1 { margin-bottom: 1.5rem; }

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-2);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--text-muted);
  font-size: .75rem;
  font-family: var(--f-display);
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: bobble 2s infinite;
}

@keyframes bobble {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

.hero-scroll svg { opacity: .5; }

/* ============================================================
   7. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--f-display);
  font-weight: 700;
  border-radius: 100px;
  cursor: pointer;
  transition: all .2s;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--grad-warm);
  color: #fff;
  padding: .85rem 2rem;
  font-size: 1rem;
  box-shadow: 0 4px 24px rgba(37,99,235,.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(37,99,235,.55);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  padding: .85rem 1.75rem;
  font-size: 1rem;
  border: 1px solid var(--border-warm);
}

.btn-secondary:hover {
  background: rgba(37,99,235,.1);
  border-color: var(--purple);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.0625rem;
}

/* ============================================================
   8. CARDS
   ============================================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}

.card:hover {
  border-color: var(--border-warm);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(37,99,235,.12);
}

.card-icon {
  width: 52px; height: 52px;
  border-radius: var(--r);
  background: rgba(37,99,235,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--purple-bright);
  font-size: 1.4rem;
}

.card h3 { margin-bottom: .6rem; }
.card p  { font-size: .9375rem; }

/* ============================================================
   9. PRICING CARDS
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.25rem 2rem;
  position: relative;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(37,99,235,.15);
}

.pricing-card.featured {
  border-color: var(--purple);
  background: linear-gradient(160deg, rgba(37,99,235,.08), var(--bg-card));
  box-shadow: 0 0 0 1px rgba(37,99,235,.3), 0 20px 50px rgba(37,99,235,.2);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-warm);
  color: #fff;
  font-family: var(--f-display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-name {
  font-family: var(--f-display);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--purple-soft);
  margin-bottom: .75rem;
}

.pricing-price {
  font-family: var(--f-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: .25rem;
}

.pricing-price span {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-2);
}

.pricing-note {
  font-size: .825rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: var(--text-2);
}

.pricing-features li .check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(37,99,235,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-bright);
  font-size: .65rem;
  margin-top: 2px;
}

.pricing-features li .check.no {
  background: rgba(255,255,255,.04);
  color: var(--text-muted);
}

/* ============================================================
   10. PROCESS STEPS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--pink-accent), transparent);
  opacity: .3;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.1rem;
  background: linear-gradient(135deg, rgba(37,99,235,.15), rgba(6,182,212,.08));
  color: var(--purple-bright);
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}

.process-step h3 {
  font-size: 1rem;
  margin-bottom: .4rem;
}

.process-step p {
  font-size: .875rem;
}

/* ============================================================
   11. STATS / TRUST BAR
   ============================================================ */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
  background: var(--bg-2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-num {
  font-family: var(--f-display);
  font-size: 2.25rem;
  font-weight: 800;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: .25rem;
}

.stat-label {
  font-size: .875rem;
  color: var(--text-muted);
}

/* ============================================================
   12. FAQ ACCORDION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .2s;
}

.faq-item.open {
  border-color: var(--border-warm);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
}

.faq-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(37,99,235,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-bright);
  font-size: .9rem;
  transition: transform .25s, background .2s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(37,99,235,.2);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: .9375rem;
}

/* ============================================================
   13. CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(37,99,235,.12) 0%, transparent 70%),
    var(--bg-2);
  z-index: 0;
}

.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p  { margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ============================================================
   14. FOOTER
   ============================================================ */
.footer {
  background: #040408;
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand p {
  font-size: .9rem;
  color: #a09ab0;
  margin-top: 1rem;
  max-width: 280px;
  line-height: 1.7;
}

.footer-brand .nav-logo img {
  height: 32px;
  filter: brightness(0) invert(1) opacity(.6);
}

.footer-col h3 {
  font-family: var(--f-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8a8598;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-col ul a {
  font-size: .875rem;
  color: #a09ab0;
  transition: color .2s;
}

.footer-col ul a:hover { color: var(--purple-soft); }

.footer-contact a {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: #a09ab0;
  transition: color .2s;
}

.footer-contact a:hover { color: var(--purple-soft); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0;
}

.footer-bottom,
.footer-bottom a {
  font-size: .8125rem;
  color: #8a8598;
}

.footer-bottom a:hover { color: var(--purple-soft); }

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

/* ============================================================
   15. SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }
[data-reveal][data-delay="4"] { transition-delay: .4s; }

/* ============================================================
   16. PAGE HERO (Unterseiten)
   ============================================================ */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(37,99,235,.1) 0%, transparent 60%),
    linear-gradient(rgba(6,6,10,.88), rgba(6,6,10,.97)),
    url('/hero.webp') center center / cover no-repeat;
  z-index: 0;
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero .page-hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-2);
  max-width: 580px;
}

/* ============================================================
   17. UTILITY
   ============================================================ */
.text-center { text-align: center; }
.mt-1  { margin-top: .5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.mb-1  { margin-bottom: .5rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }
.mb-4  { margin-bottom: 2rem; }
.mb-6  { margin-bottom: 3rem; }
.mb-8  { margin-bottom: 4rem; }

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header.centered { text-align: center; }
.section-header.centered p { margin: .75rem auto 0; max-width: 560px; }
.section-header p { margin-top: .75rem; }

/* Accessibility: Links immer durch mehr als Farbe erkennbar */
p a, .footer-bottom a, .faq-answer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
p a { color: #93C5FD; } /* heller als --purple-soft, ~5.5:1 auf --bg */
p a:hover { color: #BFDBFE; }

/* ============================================================
   18. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before  { display: none; }
  .pricing-grid          { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .footer-grid           { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .grid-2, .grid-3       { grid-template-columns: 1fr; }
  .stats-grid            { grid-template-columns: repeat(2, 1fr); }

  .nav-links             { display: none; }
  .nav-links.open        {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(6,6,10,.97);
    backdrop-filter: blur(20px);
    padding: calc(var(--nav-h) + 2rem) var(--pad-x) 2rem;
    align-items: flex-start;
    z-index: 90;
    overflow-y: auto;
  }
  .nav-links.open .nav-link { font-size: 1.4rem; padding: .75rem 0; }
  .nav-links.open .nav-cta  { margin-top: 1rem; }
  .nav-dropdown             { position: static; transform: none; opacity: 1; visibility: visible;
                               background: transparent; border: none; padding-left: 1rem; box-shadow: none; }

  .nav-toggle { display: flex; z-index: 95; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .stats-grid   { grid-template-columns: 1fr; }
  .grid-4       { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn          { width: 100%; justify-content: center; }
}
