/* ══════════════════════════════════════════
   Blackforest Hosting — Global CSS
   Mobile-first, vollständig responsiv
   ══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,900;1,9..144,400&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,700&display=swap');

/* ── CSS Variables ── */
:root {
  --forest-dark:   #1a2e1a;
  --forest-mid:    #2d4a2d;
  --forest-green:  #3a6b3a;
  --forest-bright: #6ab04c;
  --forest-light:  #a8d898;
  --accent-gold:   #c8a84b;
  --bg:            #f5f0e8;
  --bg-2:          #ede8dc;
  --bg-3:          #e5dfd0;
  --card:          #ffffff;
  --text:          #1a2e1a;
  --text-2:        #3d4d3d;
  --text-muted:    #6b7c6b;
  --border:        rgba(42,74,42,0.12);
  --border-2:      rgba(42,74,42,0.22);
  --shadow:        0 2px 16px rgba(26,46,26,0.08);
  --shadow-lg:     0 8px 40px rgba(26,46,26,0.13);
  --radius:        14px;
  --nav-h:         68px;
}

[data-theme="dark"] {
  --bg:       #0e1a0e;
  --bg-2:     #162216;
  --bg-3:     #1c2a1c;
  --card:     #1e2e1e;
  --text:     #e8f0e8;
  --text-2:   #b0c8b0;
  --text-muted:#7a9a7a;
  --border:   rgba(106,176,76,0.12);
  --border-2: rgba(106,176,76,0.22);
  --shadow:   0 2px 16px rgba(0,0,0,0.3);
  --shadow-lg:0 8px 40px rgba(0,0,0,0.4);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ══════════════════════════════════
   NAVIGATION
══════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
[data-theme="dark"] .nav {
  background: rgba(14,26,14,0.92);
}
.nav.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  color: var(--text);
  flex-shrink: 0;
}
.nav-logo-text strong { color: var(--forest-bright); }

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

.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--forest-bright); background: rgba(106,176,76,0.08); }

/* Dark Toggle */
.dark-toggle {
  width: 38px; height: 38px;
  border: 1px solid var(--border-2);
  border-radius: 9px;
  background: transparent;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s;
}
.dark-toggle:hover { color: var(--forest-bright); border-color: var(--forest-bright); }
.icon-sun { display: block; }
.icon-moon { display: none; }
[data-theme="dark"] .icon-sun { display: none; }
[data-theme="dark"] .icon-moon { display: block; }

/* Burger Menu */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px; height: 38px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border-2);
  border-radius: 9px;
  cursor: pointer;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--text);
  transition: all 0.25s;
  border-radius: 2px;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.18s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary { background: var(--forest-bright); color: #fff; }
.btn-primary:hover { background: #5a9a40; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(106,176,76,0.35); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border-2); }
.btn-outline:hover { border-color: var(--forest-bright); color: var(--forest-bright); }
.btn-ghost { background: transparent; color: var(--text-2); }
.btn-ghost:hover { color: var(--forest-bright); }
.btn-nav { background: var(--forest-dark); color: #fff; padding: 8px 18px; font-size: 13px; }
.btn-nav:hover { background: var(--forest-mid); }
.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 12px; }
.btn-block { width: 100%; }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 3rem) 0 4rem;
  background: linear-gradient(160deg, var(--forest-dark) 0%, #1e3a1e 50%, #2d5a2d 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-tree {
  position: absolute;
  bottom: 0;
  font-size: clamp(60px, 10vw, 120px);
  opacity: 0.15;
  animation: treeSway 6s ease-in-out infinite;
}
@keyframes treeSway {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50%       { transform: rotate(2deg) translateY(-8px); }
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(106,176,76,0.15);
  border: 1px solid rgba(106,176,76,0.3);
  border-radius: 100px;
  font-size: 13px;
  color: var(--forest-light);
  margin-bottom: 1.75rem;
  font-weight: 500;
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 900;
  color: #fff;
  line-height: 1.02;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}
.hero-title em {
  font-style: italic;
  color: var(--forest-bright);
  font-weight: 300;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-actions .btn-ghost { color: rgba(255,255,255,0.75); }
.hero-actions .btn-ghost:hover { color: var(--forest-bright); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 900; color: #fff; line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

/* ══════════════════════════════════
   SECTIONS
══════════════════════════════════ */
.section { padding: clamp(3rem, 8vw, 6rem) 0; }
.section-alt { background: var(--bg-2); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-bright);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ══════════════════════════════════
   FEATURE GRID
══════════════════════════════════ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.feature-icon { font-size: 32px; margin-bottom: 1rem; }
.feature-card h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 0.6rem; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ══════════════════════════════════
   PRICING
══════════════════════════════════ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.price-card-featured {
  border-color: var(--forest-bright);
  box-shadow: 0 0 0 1px var(--forest-bright), var(--shadow-lg);
  transform: scale(1.02);
}
.price-card-featured:hover { transform: scale(1.02) translateY(-3px); }
.price-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--forest-bright);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-name { font-size: 14px; font-weight: 700; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.5rem; }
.price-tag { display: flex; align-items: baseline; gap: 4px; margin-bottom: 0.75rem; }
.price-num { font-family: 'Fraunces', serif; font-size: 42px; font-weight: 900; color: var(--text); }
.price-per { font-size: 14px; color: var(--text-muted); }
.price-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.25rem; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 1.75rem; flex: 1; }
.price-features li { font-size: 13.5px; color: var(--text-2); }

/* ══════════════════════════════════
   TEAM
══════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest-dark), var(--forest-green));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 900;
  color: var(--forest-bright);
  margin: 0 auto 1rem;
}
.team-name { font-size: 17px; font-weight: 700; color: var(--text); }
.team-role { font-size: 12px; font-weight: 600; color: var(--forest-bright); letter-spacing: 0.06em; text-transform: uppercase; margin: 4px 0 0.75rem; }
.team-bio { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; }

/* ══════════════════════════════════
   LOCATION
══════════════════════════════════ */
.location-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.contact-details { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text-2); }
.contact-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.contact-item a { color: var(--forest-bright); }
.contact-item a:hover { text-decoration: underline; }

.location-visual { display: flex; justify-content: center; }
.location-card {
  background: var(--forest-dark);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  min-width: 280px;
}
.location-forest { font-size: 36px; line-height: 1.6; margin-bottom: 1.25rem; }
.location-name { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 700; color: #fff; }
.location-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.server-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 1.25rem;
  padding: 8px 16px;
  background: rgba(106,176,76,0.15);
  border: 1px solid rgba(106,176,76,0.3);
  border-radius: 100px;
  font-size: 12px;
  color: var(--forest-bright);
  font-weight: 600;
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--forest-bright);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.3); }
}

/* ══════════════════════════════════
   CTA
══════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--forest-dark) 0%, #2d5a2d 100%);
  padding: clamp(4rem, 10vw, 8rem) 0;
}
.cta-inner { text-align: center; }
.cta-trees { font-size: 28px; margin-bottom: 1.5rem; letter-spacing: 8px; }
.cta-title { font-family: 'Fraunces', serif; font-size: clamp(28px, 4vw, 50px); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 1rem; }
.cta-sub { font-size: 16px; color: rgba(255,255,255,0.65); margin-bottom: 2.5rem; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-ghost { color: rgba(255,255,255,0.75); }
.cta-section .btn-ghost:hover { color: var(--forest-bright); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
  background: var(--forest-dark);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Fraunces', serif;
  font-size: 16px; font-weight: 700;
  color: #fff; margin-bottom: 1rem;
}
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-address { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 1rem; line-height: 1.7; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-heading { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.footer-col a { font-size: 13.5px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col a:hover { color: var(--forest-bright); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
  font-size: 12px; color: rgba(255,255,255,0.3);
}

/* ══════════════════════════════════
   PRODUKTE SEITE (produkte.html)
══════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-h) + 3rem) 0 3rem;
  background: linear-gradient(160deg, var(--forest-dark) 0%, #2d5a2d 100%);
  text-align: center;
}
.page-hero h1 { font-family:'Fraunces',serif; font-size:clamp(32px,5vw,56px); font-weight:900; color:#fff; margin-bottom:1rem; }
.page-hero p { font-size:17px; color:rgba(255,255,255,0.65); max-width:520px; margin:0 auto; }

.tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: 100px;
  border: 1.5px solid var(--border-2);
  background: transparent;
  font-size: 14px; font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.tab-btn.active, .tab-btn:hover { background: var(--forest-bright); color: #fff; border-color: var(--forest-bright); }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.plan-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan-card.featured { border-color: var(--forest-bright); box-shadow: 0 0 0 1px var(--forest-bright); }
.plan-badge { position:absolute; top:-12px; left:1.5rem; background:var(--forest-bright); color:#fff; font-size:11px; font-weight:700; padding:3px 12px; border-radius:100px; }
.plan-cat { font-size:11px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--forest-bright); margin-bottom:0.5rem; }
.plan-name { font-family:'Fraunces',serif; font-size:22px; font-weight:700; color:var(--text); margin-bottom:0.5rem; }
.plan-price { display:flex; align-items:baseline; gap:4px; margin-bottom:0.75rem; }
.plan-price-num { font-family:'Fraunces',serif; font-size:36px; font-weight:900; color:var(--text); }
.plan-price-per { font-size:13px; color:var(--text-muted); }
.plan-desc { font-size:13.5px; color:var(--text-muted); line-height:1.65; margin-bottom:1.25rem; }
.plan-specs {
  background: var(--bg-2);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.plan-spec { display:flex; justify-content:space-between; font-size:12.5px; }
.plan-spec-label { color:var(--text-muted); }
.plan-spec-val { font-weight:600; color:var(--text); }
.plan-features-list { list-style:none; display:flex; flex-direction:column; gap:6px; margin-bottom:1.5rem; flex:1; }
.plan-features-list li { font-size:13px; color:var(--text-2); display:flex; align-items:flex-start; gap:7px; }
.plan-features-list li::before { content:'✓'; color:var(--forest-bright); font-weight:700; flex-shrink:0; }
.plan-highlight { font-size:12px; font-weight:600; color:var(--accent-gold); background:rgba(200,168,75,0.1); padding:6px 10px; border-radius:7px; margin-bottom:1rem; }

/* ══════════════════════════════════
   ALLGEMEINE SEITEN (Über uns etc.)
══════════════════════════════════ */
.prose-page {
  padding: calc(var(--nav-h) + 3rem) 0 5rem;
}
.prose-page h1 { font-family:'Fraunces',serif; font-size:clamp(28px,4vw,48px); font-weight:900; color:var(--text); margin-bottom:1.5rem; }
.prose-page h2 { font-family:'Fraunces',serif; font-size:clamp(20px,3vw,28px); font-weight:700; color:var(--text); margin:2.5rem 0 1rem; }
.prose-page p { font-size:15px; line-height:1.85; color:var(--text-2); margin-bottom:1rem; }
.prose-page ul { margin-left:1.5rem; margin-bottom:1rem; }
.prose-page li { font-size:15px; line-height:1.8; color:var(--text-2); }

/* Kontaktformular */
.contact-form { display:flex; flex-direction:column; gap:1rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-group { display:flex; flex-direction:column; gap:6px; }
.form-group label { font-size:12px; font-weight:700; color:var(--text-muted); text-transform:uppercase; letter-spacing:0.05em; }
.form-group input, .form-group textarea, .form-group select {
  padding: 11px 14px;
  border: 1.5px solid var(--border-2);
  border-radius: 9px;
  background: var(--card);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--forest-bright);
  box-shadow: 0 0 0 3px rgba(106,176,76,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ══════════════════════════════════
   RESPONSIVE — TABLET (≤900px)
══════════════════════════════════ */
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .price-card-featured { transform: none; }
  .price-card-featured:hover { transform: translateY(-3px); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .location-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .location-visual { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .form-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════
   RESPONSIVE — MOBILE (≤640px)
══════════════════════════════════ */
@media (max-width: 640px) {
  /* Nav */
  .nav-burger { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 4px;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    pointer-events: none;
    z-index: 999;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-link { padding: 12px 16px; font-size: 16px; border-radius: 10px; }
  .dark-toggle { align-self: flex-start; }
  .btn-nav { text-align: center; padding: 12px 16px; }

  /* Hero */
  .hero { padding-top: calc(var(--nav-h) + 2rem); padding-bottom: 3rem; }
  .hero-title { font-size: 40px; }
  .hero-sub { font-size: 15px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 0.75rem; }
  .hero-stat-divider { display: none; }

  /* Sections */
  .section { padding: 2.5rem 0; }
  .section-header { margin-bottom: 2rem; }

  /* Grids → Single column */
  .feature-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; }

  /* Footer */
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Location card */
  .location-card { min-width: unset; width: 100%; }

  /* Pricing */
  .price-grid { max-width: 100%; }
}

/* ══════════════════════════════════
   UTILITY
══════════════════════════════════ */
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }
