/* ═══════════════════════════════════════════════════════════
   IMPLANT ZENTRUM BERLIN — Implantologie & Oralchirurgie
   Design System: Emerald Green (#059669) + Inter
   ═══════════════════════════════════════════════════════════ */

/* ═══ RESET & VARIABLES ═══ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #059669;
  --primary-rgb: 5, 150, 105;
  --primary-dark: #047857;
  --primary-light: #ecfdf5;
  --bg-light: #f6f7f8;
  --bg-dark: #0f1a17;
  --bg-card: #ffffff;
  --bg-card-dark: #142824;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  --yellow-400: #facc15;
  --red-400: #f87171;
  --red-500: #ef4444;
  --emerald-500: #10b981;
  --font-display: 'Inter', system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-xl: 0 12px 40px rgba(0,0,0,0.1);
  --shadow-2xl: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-primary: 0 8px 30px rgba(var(--primary-rgb), 0.25);
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-w: 1280px;
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--font-display);
  color: var(--slate-800);
  background: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* Material Icons — force ligature rendering */
.material-icons {
  font-family: 'Material Icons' !important;
  font-feature-settings: 'liga' !important;
  -webkit-font-feature-settings: 'liga' !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
}

/* ═══ DARK MODE ═══ */
[data-theme="dark"] {
  --bg-light: #0d1512;
  --bg-dark: #0f1a17;
  --bg-card: #142824;
  --bg-card-dark: #1a3830;
}
[data-theme="dark"] body { background: var(--bg-dark); color: var(--slate-100); }
[data-theme="dark"] .nav { background: rgba(15,26,23,0.92); border-color: rgba(var(--primary-rgb),0.1); }
[data-theme="dark"] .hero { background: var(--bg-dark); }
[data-theme="dark"] .stats { background: var(--bg-card); border-color: var(--slate-800); }
[data-theme="dark"] .services { background: var(--bg-dark); }
[data-theme="dark"] .service-card { background: var(--bg-card); border-color: var(--slate-700); }
[data-theme="dark"] .about { background: var(--bg-card); }
[data-theme="dark"] .process { background: var(--bg-dark); }
[data-theme="dark"] .process-step { background: var(--bg-card); border-color: var(--slate-700); }
[data-theme="dark"] .team-section { background: var(--bg-card); }
[data-theme="dark"] .team-card { background: var(--bg-dark); border-color: var(--slate-700); }
[data-theme="dark"] .reviews { background: var(--bg-dark); }
[data-theme="dark"] .review-card { background: var(--bg-card); border-color: var(--slate-700); }
[data-theme="dark"] .rating-card { background: var(--bg-card); border-color: var(--slate-700); }
[data-theme="dark"] .contact-sidebar { background: rgba(20,40,36,0.5); }
[data-theme="dark"] .form-inner { background: rgba(13,21,18,0.5); border-color: rgba(var(--primary-rgb),0.05); }
[data-theme="dark"] .form-input { background: var(--bg-dark); border-color: var(--slate-700); color: var(--white); }
[data-theme="dark"] .form-input:focus { border-color: var(--primary); }
[data-theme="dark"] .transport-section { background: var(--bg-dark); }
[data-theme="dark"] .transport-card h4 { color: var(--white); }
[data-theme="dark"] .footer { background: var(--slate-900); }
[data-theme="dark"] .cookie-banner { background: var(--bg-card); border-color: var(--slate-700); }
[data-theme="dark"] h1, [data-theme="dark"] h2, [data-theme="dark"] h3,
[data-theme="dark"] .stat-value, [data-theme="dark"] .nav-brand,
[data-theme="dark"] .team-name, [data-theme="dark"] .review-author,
[data-theme="dark"] .feature-title, [data-theme="dark"] .contact-form-title,
[data-theme="dark"] .process-title { color: var(--white); }
[data-theme="dark"] .hero-title { color: var(--white); }
[data-theme="dark"] .hero-text, [data-theme="dark"] .service-desc,
[data-theme="dark"] .about-text, [data-theme="dark"] .review-text,
[data-theme="dark"] .team-bio, [data-theme="dark"] .process-desc,
[data-theme="dark"] .transport-text { color: var(--slate-400); }
[data-theme="dark"] .section-title { color: var(--white); }
[data-theme="dark"] .section-desc { color: var(--slate-400); }
[data-theme="dark"] .stat-label { color: var(--slate-400); }
[data-theme="dark"] .nav-link { color: var(--slate-400); }
[data-theme="dark"] .nav-link:hover, [data-theme="dark"] .nav-link.active { color: var(--primary); }
[data-theme="dark"] .about-feature span { color: var(--slate-200); }
[data-theme="dark"] .feature-content-col h2 { color: var(--white); }
[data-theme="dark"] .hours-day { color: var(--slate-400); }
[data-theme="dark"] .hours-time { color: var(--white); }
[data-theme="dark"] .filter-btn { color: var(--slate-300); }
[data-theme="dark"] .filter-bar { background: rgba(20,40,36,0.5); border-color: var(--slate-700); }
[data-theme="dark"] .join-card { border-color: rgba(var(--primary-rgb),0.3); background: rgba(var(--primary-rgb),0.05); }
[data-theme="dark"] .join-icon { background: var(--bg-dark); }
[data-theme="dark"] .hours-row { border-color: rgba(30,41,59,0.5); }
[data-theme="dark"] .hours-day { color: var(--slate-400); }
[data-theme="dark"] .hours-time { color: var(--white); }
[data-theme="dark"] .feature-highlight { background: var(--bg-card); }
[data-theme="dark"] .trust-section { background: var(--bg-card); border-color: var(--slate-700); }

/* ═══ UTILITY: CONTAINER ═══ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 640px) { .container { padding: 0 24px; } }
@media (min-width: 1024px) { .container { padding: 0 32px; } }

/* ═══ 1. DEMO BANNER ═══ */
.demo-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10000;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.3);
}
.demo-banner span {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.8rem;
}
.demo-banner a {
  background: var(--white);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.82rem;
  transition: var(--transition);
  white-space: nowrap;
}
.demo-banner a:hover {
  background: #ecfdf5;
  transform: scale(1.05);
}

/* ═══ 2. NAVIGATION ═══ */
.nav {
  position: fixed;
  top: 42px;
  left: 0; right: 0;
  z-index: 9999;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(var(--primary-rgb),0.1);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}
@media (min-width: 640px) { .nav-inner { padding: 0 24px; } }
@media (min-width: 1024px) { .nav-inner { padding: 0 32px; } }
.nav-brand-group { display: flex; align-items: center; gap: 10px; }
.nav-icon {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.nav-icon .material-icons { font-size: 22px; }
.nav-brand {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--slate-900);
  text-transform: uppercase;
}
.nav-brand-accent { color: var(--primary); }
.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-600);
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link.active { border-bottom: 2px solid var(--primary); padding-bottom: 2px; }
.nav-cta {
  background: var(--primary);
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb),0.2);
}
.nav-cta:hover { background: var(--primary-dark); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cta-wrap { display: none; }
@media (min-width: 1024px) { .nav-cta-wrap { display: block; } }

/* Mobile menu button */
.mobile-menu-btn {
  display: flex;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: none;
  color: var(--slate-600);
}
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }
.mobile-menu-btn .material-icons { font-size: 28px; }

/* Theme toggle */
.theme-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--slate-200);
  background: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--slate-500);
  transition: all 0.3s;
}
.theme-toggle:hover { color: var(--primary); border-color: var(--primary); }
.theme-toggle .material-icons { font-size: 18px; }
.theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle { border-color: var(--slate-700); color: var(--slate-400); }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 114px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index: 9998;
  padding: 24px 24px 32px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  background: var(--slate-100);
  color: var(--slate-600);
  margin-bottom: 8px;
  transition: all 0.2s;
}
.mobile-menu-close:hover { background: var(--slate-200); }
[data-theme="dark"] .mobile-menu-close { background: rgba(255,255,255,0.08); color: var(--slate-400); }
[data-theme="dark"] .mobile-menu-close:hover { background: rgba(255,255,255,0.14); }
[data-theme="dark"] .mobile-menu { background: rgba(15,26,23,0.98); }
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--slate-700);
  border-radius: var(--radius-md);
  transition: all 0.2s;
}
[data-theme="dark"] .mobile-menu a { color: var(--slate-300); }
.mobile-menu a:hover { background: var(--primary-light); color: var(--primary); }
.mobile-menu .mobile-cta {
  margin-top: 16px;
  text-align: center;
  background: var(--primary);
  color: var(--white);
  padding: 16px;
  border-radius: var(--radius-lg);
  font-weight: 700;
}

/* ═══ 3. HERO ═══ */
.hero {
  position: relative;
  height: 75vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 114px;
}
@media (min-width: 768px) { .hero { height: 85vh; min-height: 600px; } }
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 35%, #a7f3d0 65%, #6ee7b7 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    radial-gradient(circle at 20% 50%, var(--primary) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--primary) 1px, transparent 1px),
    radial-gradient(circle at 60% 80%, var(--primary) 1px, transparent 1px);
  background-size: 80px 80px, 120px 120px, 100px 100px;
}
[data-theme="dark"] .hero-bg {
  background: linear-gradient(135deg, #0c1a1a 0%, #0f2b24 40%, #0d3b2e 80%, #0e4535 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
}
[data-theme="dark"] .hero-overlay {
  background: linear-gradient(90deg, rgba(12,22,18,0.7) 0%, rgba(12,22,18,0.3) 50%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
@media (min-width: 640px) { .hero-content { padding: 0 24px; } }
@media (min-width: 1024px) { .hero-content { padding: 0 32px; } }
.hero-inner { max-width: 640px; }
.hero-badge {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(var(--primary-rgb),0.1);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-title .accent { color: var(--primary); }
.hero-text {
  font-size: 1.125rem;
  color: var(--slate-600);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.75;
}
.hero-buttons { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 640px) { .hero-buttons { flex-direction: row; gap: 16px; } }
.btn-primary {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
  box-shadow: 0 8px 24px rgba(var(--primary-rgb),0.3);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(var(--primary-rgb),0.35); }
.btn-primary .material-icons { font-size: 20px; }
.btn-secondary {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--slate-200);
  padding: 14px 24px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
  color: var(--slate-800);
}
[data-theme="dark"] .btn-secondary { background: rgba(30,41,59,0.8); border-color: var(--slate-700); color: var(--slate-200); }
.btn-secondary:hover { background: var(--white); }

/* ═══ 4. STATS ═══ */
.stats {
  padding: 48px 0;
  background: var(--white);
  border-bottom: 1px solid var(--slate-100);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.stat-stars { display: flex; justify-content: center; color: var(--yellow-400); }
.stat-stars .material-icons { font-size: 20px; }
.stat-label {
  font-size: 0.8rem;
  color: var(--slate-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ═══ 5. SERVICES ═══ */
.services {
  padding: 64px 0;
  background: var(--bg-light);
}
@media (min-width: 768px) { .services { padding: 96px 0; } }
.section-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.section-title {
  margin-top: 8px;
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.2;
}
.section-desc {
  margin-top: 16px;
  max-width: 640px;
  color: var(--slate-500);
  font-size: 1rem;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-desc { margin-left: auto; margin-right: auto; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.service-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: rgba(var(--primary-rgb),0.3);
  transform: translateY(-4px);
}
.service-icon {
  width: 56px; height: 56px;
  background: rgba(var(--primary-rgb),0.1);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s;
  overflow: hidden;
}
.service-icon .material-icons { font-size: 24px; color: var(--primary); transition: color 0.3s; }
.service-card:hover .service-icon { background: var(--primary); }
.service-card:hover .service-icon .material-icons { color: var(--white); }
.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--slate-900);
}
[data-theme="dark"] .service-title { color: var(--white); }
.service-desc {
  color: var(--slate-500);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap 0.3s;
}
.service-link:hover { gap: 8px; }
.service-link .material-icons { font-size: 16px; transition: transform 0.3s; }
.service-card:hover .service-link .material-icons { transform: translateX(4px); }

/* ═══ 6. ABOUT / FEATURE HIGHLIGHT ═══ */
.about {
  padding: 64px 0;
  background: var(--white);
  overflow: hidden;
}
@media (min-width: 768px) { .about { padding: 96px 0; } }
.about-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) { .about-grid { flex-direction: row; gap: 64px; } }
.about-image-col {
  width: 100%;
  position: relative;
}
@media (min-width: 1024px) { .about-image-col { width: 50%; } }
.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
}
.about-visual-stat {
  background: var(--white);
  padding: 28px 20px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.3s;
}
.about-visual-stat:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
.about-visual-stat .material-icons {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 12px;
}
.about-visual-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}
.about-visual-label {
  font-size: 0.75rem;
  color: var(--slate-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
[data-theme="dark"] .about-visual-stat {
  background: var(--bg-dark);
  border-color: var(--slate-700);
}
[data-theme="dark"] .about-visual-label { color: var(--slate-400); }
.about-quote-block {
  margin-top: 24px;
  background: var(--primary);
  padding: 28px 32px;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  position: relative;
}
.about-quote-block .material-icons {
  color: rgba(255,255,255,0.25);
  font-size: 36px;
  position: absolute;
  top: 16px; left: 20px;
}
.about-quote-block p {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  font-style: italic;
  padding-left: 8px;
}
.about-quote-author {
  display: block;
  margin-top: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  padding-left: 8px;
}
.about-content-col { width: 100%; }
@media (min-width: 1024px) { .about-content-col { width: 50%; } }
.about-text {
  margin-top: 24px;
  font-size: 1.1rem;
  color: var(--slate-500);
  line-height: 1.75;
}
.about-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-feature .check-icon {
  color: var(--primary);
  background: rgba(var(--primary-rgb),0.1);
  border-radius: var(--radius-full);
  padding: 4px;
  font-size: 14px;
  flex-shrink: 0;
  line-height: 1;
}
.about-feature span { font-weight: 500; }
.about-cta {
  margin-top: 40px;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 12px 32px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--primary); color: var(--white); }

/* ═══ 6b. FEATURE HIGHLIGHT (from services page 2) ═══ */
.feature-highlight {
  padding: 48px 0 64px;
}
@media (min-width: 768px) { .feature-highlight { padding: 80px 0 96px; } }
.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
}
@media (min-width: 1024px) { .feature-grid { flex-direction: row; } }
.feature-img-col {
  flex: 1;
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}
.feature-visual {
  background: linear-gradient(135deg, #022c22 0%, #059669 100%);
  border-radius: var(--radius-2xl);
  padding: 64px 40px;
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  width: 100%;
}
@media (min-width: 768px) { .feature-visual { min-height: 360px; } }
@media (min-width: 1024px) { .feature-visual { min-height: 440px; } }
.feature-visual-icon {
  width: 88px; height: 88px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  overflow: hidden;
}
.feature-visual-icon .material-icons { font-size: 36px; }
.feature-visual-badge {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 28px;
}
.feature-visual-label {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.7;
  margin-bottom: 4px;
}
.feature-visual-title {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.feature-content-col { flex: 1; }
.feature-content-col h2 {
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--slate-900);
}
.feature-content-col h2 .accent { color: var(--primary); }
.feature-content-col > p {
  margin-top: 24px;
  font-size: 1.1rem;
  color: var(--slate-600);
  line-height: 1.75;
}
[data-theme="dark"] .feature-content-col > p { color: var(--slate-400); }
.features-checklist {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .features-checklist { grid-template-columns: repeat(2, 1fr); } }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feature-item .material-icons { color: var(--primary); font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.feature-title { font-weight: 700; color: var(--slate-900); }
.feature-subtitle { font-size: 0.85rem; color: var(--slate-500); }

/* ═══ 7. TREATMENT PROCESS ═══ */
.process {
  padding: 64px 0;
  background: var(--bg-light);
}
@media (min-width: 768px) { .process { padding: 96px 0; } }
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  counter-reset: step;
}
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-200);
  position: relative;
  text-align: center;
  transition: all 0.3s;
  counter-increment: step;
}
.process-step:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.process-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(var(--primary-rgb),0.12);
  line-height: 1;
  margin-bottom: 16px;
}
.process-number::before { content: "0" counter(step); }
.process-icon {
  width: 64px; height: 64px;
  background: rgba(var(--primary-rgb),0.1);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
  overflow: hidden;
}
.process-icon .material-icons { font-size: 26px; }
.process-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 8px;
}
.process-desc {
  font-size: 0.9rem;
  color: var(--slate-500);
  line-height: 1.7;
}

/* ═══ 8. TEAM ═══ */
.team-section {
  padding: 64px 0;
  background: var(--white);
}
@media (min-width: 768px) { .team-section { padding: 96px 0; } }
.team-hero { text-align: center; margin-bottom: 16px; }
.team-hero h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--slate-900);
}
.team-hero .accent { color: var(--primary); }
.team-hero p {
  font-size: 1.1rem;
  color: var(--slate-600);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}
[data-theme="dark"] .team-hero p { color: var(--slate-400); }

/* Filter tabs */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  padding: 4px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  margin: 0 auto 48px;
}
@media (min-width: 768px) { .filter-bar { gap: 16px; width: fit-content; } }
.filter-btn {
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.8rem;
  background: none;
  color: var(--slate-600);
  transition: all 0.2s;
}
@media (min-width: 768px) { .filter-btn { padding: 8px 24px; font-size: 0.9rem; } }
.filter-btn:hover { background: rgba(var(--primary-rgb),0.1); }
.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.team-card:hover { box-shadow: var(--shadow-xl); }
.team-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
@media (min-width: 768px) { .team-img-wrap { aspect-ratio: 4/5; } }
.team-avatar {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(var(--primary-rgb),0.08), rgba(var(--primary-rgb),0.18));
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.04em;
  transition: all 0.5s;
}
.team-card:hover .team-avatar { background: linear-gradient(135deg, rgba(var(--primary-rgb),0.12), rgba(var(--primary-rgb),0.25)); }
[data-theme="dark"] .team-avatar {
  background: linear-gradient(135deg, rgba(var(--primary-rgb),0.1), rgba(var(--primary-rgb),0.22));
}
.team-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--primary);
  display: flex; align-items: center; gap: 4px;
  box-shadow: var(--shadow-sm);
}
.team-badge .material-icons { font-size: 12px; }
.team-info { padding: 32px; }
.team-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 4px;
}
.team-role {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.team-bio {
  color: var(--slate-600);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
[data-theme="dark"] .team-bio { color: var(--slate-400); }
.team-socials { display: flex; gap: 16px; }
.team-socials a {
  color: var(--primary);
  transition: opacity 0.2s;
}
.team-socials a:hover { opacity: 0.7; }

/* Join card */
.join-card {
  border: 2px dashed rgba(var(--primary-rgb),0.3);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
  background: rgba(var(--primary-rgb),0.03);
  transition: background 0.3s;
}
.join-card:hover { background: rgba(var(--primary-rgb),0.08); }
.join-icon {
  width: 64px; height: 64px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.join-icon .material-icons { font-size: 26px; }
.join-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--slate-900);
}
[data-theme="dark"] .join-card h3 { color: var(--white); }
.join-card p {
  color: var(--slate-600);
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.7;
}
[data-theme="dark"] .join-card p { color: var(--slate-400); }
.join-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
}
.join-link:hover { text-decoration: underline; }

/* ═══ 9. REVIEWS / TESTIMONIALS ═══ */
.reviews {
  padding: 64px 0 96px;
  background: var(--bg-light);
}
.reviews-hero {
  text-align: center;
  margin-bottom: 32px;
}
.reviews-hero .badge {
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(var(--primary-rgb),0.1);
  border-radius: var(--radius-full);
}
.reviews-hero h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.15;
  margin-bottom: 16px;
}
[data-theme="dark"] .reviews-hero h2 { color: var(--white); }
.reviews-hero h2 .accent { color: var(--primary); }
.reviews-hero p {
  font-size: 1.1rem;
  color: var(--slate-600);
  max-width: 640px;
  margin: 0 auto;
}
[data-theme="dark"] .reviews-hero p { color: var(--slate-400); }

/* Rating card */
.rating-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  padding: 24px;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin: 0 auto 48px;
  max-width: 100%;
}
@media (min-width: 768px) {
  .rating-card { flex-direction: row; gap: 48px; padding: 32px; }
}
.rating-stars { display: flex; gap: 4px; margin-bottom: 8px; }
.rating-stars .material-icons { font-size: 28px; color: var(--yellow-400); }
.rating-score { font-size: 2.5rem; font-weight: 900; }
.rating-source { font-size: 0.85rem; color: var(--slate-500); font-weight: 500; }
.rating-divider {
  height: 1px; width: 80px;
  background: var(--slate-200);
}
[data-theme="dark"] .rating-divider { background: var(--slate-700); }
@media (min-width: 768px) {
  .rating-divider { height: 64px; width: 1px; }
}
.rating-count { font-size: 1.5rem; font-weight: 700; margin-bottom: 4px; }
.rating-label { font-size: 0.85rem; color: var(--slate-500); font-style: italic; }
.rating-verified {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--emerald-500);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
}
.rating-verified .material-icons { font-size: 16px; }
.rating-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 12px 32px;
  border-radius: var(--radius-md);
  font-weight: 700;
  transition: all 0.2s;
  box-shadow: var(--shadow-primary);
}
.rating-cta:hover { transform: translateY(-2px); }
.rating-cta .material-icons { font-size: 20px; }

/* Reviews grid */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-stars { display: flex; gap: 4px; color: var(--yellow-400); margin-bottom: 16px; }
.review-stars .material-icons { font-size: 20px; }
.review-text {
  color: var(--slate-700);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 0.95rem;
}
[data-theme="dark"] .review-text { color: var(--slate-300); }
.review-footer { display: flex; align-items: center; gap: 16px; }
.review-avatar {
  width: 40px; height: 40px;
  background: rgba(var(--primary-rgb),0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
}
.review-author { font-weight: 700; color: var(--slate-900); }
[data-theme="dark"] .review-author { color: var(--white); }
.review-date { font-size: 0.75rem; color: var(--slate-500); }
.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  color: var(--primary);
  font-weight: 700;
  border-bottom: 2px solid rgba(var(--primary-rgb),0.2);
  padding-bottom: 4px;
  transition: all 0.2s;
  margin-top: 48px;
}
.load-more-btn:hover { border-color: var(--primary); }

/* Trust section */
.trust-section {
  background: var(--white);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  padding: 80px 0 64px;
}
.trust-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1024px) { .trust-grid { flex-direction: row; } }
.trust-left { max-width: 500px; }
@media (min-width: 1024px) { .trust-left { width: 50%; } }
.trust-left h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 16px;
}
[data-theme="dark"] .trust-left h2 { color: var(--white); }
.trust-left p { color: var(--slate-600); margin-bottom: 32px; }
[data-theme="dark"] .trust-left p { color: var(--slate-400); }
.trust-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  opacity: 0.6;
  filter: grayscale(1);
  transition: all 0.5s;
}
.trust-partners:hover { filter: grayscale(0); opacity: 1; }
.trust-partner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.trust-right {
  display: flex;
  justify-content: center;
}
@media (min-width: 1024px) { .trust-right { width: 50%; justify-content: flex-end; } }
.trust-cta-card {
  padding: 32px;
  background: var(--bg-light);
  border-radius: var(--radius-2xl);
  border: 2px dashed var(--slate-300);
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
[data-theme="dark"] .trust-cta-card { background: var(--bg-dark); border-color: var(--slate-700); }
.trust-cta-icon {
  width: 48px; height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 6px 20px rgba(var(--primary-rgb),0.4);
  overflow: hidden;
}
.trust-cta-icon .material-icons { font-size: 22px; }
.trust-cta-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.trust-cta-card p {
  font-size: 0.85rem;
  color: var(--slate-500);
  margin-bottom: 24px;
}
.trust-cta-btn {
  background: var(--primary);
  color: var(--white);
  padding: 16px 40px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.2s;
  box-shadow: var(--shadow-primary);
}
.trust-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(var(--primary-rgb),0.35); }

/* ═══ 10. CTA BAND ═══ */
.cta-band {
  padding: 64px 0;
  background: var(--primary);
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-band p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 640px) { .cta-band-buttons { flex-direction: row; } }
.cta-band-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--primary);
  padding: 14px 24px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.cta-band-btn-white:hover { background: var(--bg-light); transform: translateY(-2px); }
.cta-band-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  transition: all 0.2s;
  background: rgba(var(--primary-rgb),0.2);
  font-size: 0.95rem;
}
.cta-band-btn-outline:hover { background: rgba(255,255,255,0.1); }

/* ═══ 11. CONTACT & MAP ═══ */
.contact-section {
  display: grid;
  grid-template-columns: 1fr;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 16px;
  gap: 0;
}
@media (min-width: 640px) { .contact-section { padding: 0 24px; } }
@media (min-width: 1024px) {
  .contact-section {
    grid-template-columns: 1fr 1fr;
    padding: 0 32px;
  }
}
.map-col {
  position: relative;
  width: 100%;
  min-height: 350px;
  height: 50vh;
  max-height: 500px;
  background: var(--slate-200);
  border: 2px solid var(--slate-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: inset 0 0 0 4px var(--white), var(--shadow-md);
}
@media (min-width: 1024px) {
  .map-col {
    height: auto;
    min-height: 100%;
    max-height: none;
    border-right: 3px solid var(--primary);
  }
}
.map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
[data-theme="dark"] .map-col {
  filter: brightness(0.8) contrast(1.1);
  border-color: var(--slate-700);
  box-shadow: inset 0 0 0 4px var(--bg-dark), var(--shadow-md);
}
[data-theme="dark"] .map-col { border-right-color: var(--primary); }

/* Contact sidebar */
.contact-sidebar {
  background: var(--white);
  padding: 32px;
}
@media (min-width: 768px) { .contact-sidebar { padding: 64px; } }
.contact-sidebar-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) { .info-grid { grid-template-columns: 1fr 1fr; } }
.info-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 12px;
}
.info-address {
  font-style: normal;
  color: var(--slate-600);
  line-height: 1.7;
}
[data-theme="dark"] .info-address { color: var(--slate-400); }
.info-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--slate-600);
  margin-bottom: 8px;
  font-size: 0.95rem;
}
[data-theme="dark"] .info-contact-item { color: var(--slate-400); }
.info-contact-item .material-icons {
  color: var(--primary);
  font-size: 20px;
  flex-shrink: 0;
  width: 20px;
  line-height: 1;
}
.info-divider {
  border: none;
  height: 1px;
  background: var(--slate-100);
}
[data-theme="dark"] .info-divider { background: var(--slate-800); }

/* Hours */
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--slate-50);
  margin-bottom: 8px;
}
.hours-row:last-child { border-bottom: none; margin-bottom: 0; }
.hours-day { color: var(--slate-600); }
.hours-time { font-weight: 500; color: var(--slate-900); }
.hours-closed { color: var(--slate-400); font-style: italic; }

/* Contact form */
.form-inner {
  background: var(--bg-light);
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(var(--primary-rgb),0.05);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) { .form-inner { padding: 32px; } }
.contact-form-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 6px;
  margin-left: 4px;
}
.form-input {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: all 0.2s;
  color: var(--slate-800);
}
.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb),0.1);
}
textarea.form-input { resize: vertical; min-height: 100px; }
.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  margin-bottom: 8px;
}
.form-checkbox {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
  flex-shrink: 0;
  cursor: pointer;
}
.form-checkbox-label {
  font-size: 0.8rem;
  color: var(--slate-500);
  line-height: 1.5;
  cursor: pointer;
}
.form-checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
}
[data-theme="dark"] .form-checkbox-label { color: var(--slate-400); }
.form-submit {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  padding: 16px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb),0.2);
  margin-top: 8px;
}
.form-submit:hover { background: var(--primary-dark); }
.form-submit .material-icons { font-size: 18px; }

/* Transport section */
.transport-section {
  padding: 64px 0;
  background: var(--white);
}
@media (min-width: 768px) { .transport-section { padding: 80px 0; } }
.transport-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .transport-grid { grid-template-columns: repeat(3, 1fr); gap: 48px; } }
.transport-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
@media (min-width: 768px) {
  .transport-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.transport-card .transport-icon {
  width: 52px; height: 52px;
  min-width: 52px;
  background: rgba(var(--primary-rgb),0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  overflow: hidden;
  margin-top: 2px;
}
@media (min-width: 768px) {
  .transport-card .transport-icon {
    width: 64px; height: 64px;
    min-width: 64px;
    margin-top: 0;
    margin-bottom: 24px;
  }
}
.transport-card:hover .transport-icon { background: var(--primary); color: var(--white); }
.transport-icon .material-icons {
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) { .transport-icon .material-icons { font-size: 26px; } }
.transport-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 4px;
}
@media (min-width: 768px) { .transport-card h4 { font-size: 1.2rem; margin-bottom: 12px; } }
.transport-text {
  color: var(--slate-600);
  line-height: 1.6;
  font-size: 0.9rem;
}
@media (min-width: 768px) { .transport-text { font-size: 0.95rem; line-height: 1.7; } }

/* ═══ 12. FOOTER ═══ */
.footer {
  background: var(--slate-900);
  color: var(--slate-300);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-brand-group { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.footer-brand {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
}
.footer-brand .accent { color: var(--primary); }
.footer-desc { font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: 40px; height: 40px;
  background: var(--slate-800);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.footer-social:hover { background: var(--primary); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }
.footer h4 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 24px;
  font-size: 1rem;
}
.footer-hours { font-size: 0.9rem; }
.footer-hours li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.footer-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  padding-top: 16px;
}
.footer-phone .material-icons { font-size: 18px; flex-shrink: 0; line-height: 1; }
.footer-address { font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.footer-service-heading { margin-top: 24px; }
.footer-links { font-size: 0.9rem; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid var(--slate-800);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--slate-500);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { transition: color 0.2s; }
.footer-legal a:hover { color: var(--primary); }
.footer-emergency {
  background: var(--slate-800);
  padding: 16px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--red-500);
}
.footer-emergency .label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-emergency .name { font-size: 0.9rem; font-weight: 500; margin-bottom: 8px; }
.footer-emergency .phone { font-size: 1.15rem; font-weight: 700; color: var(--white); }

/* Footer CTA */
.footer-cta-col {
  grid-column: 1 / -1;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.footer-cta-col h4 { margin-bottom: 12px; }
.footer-cta-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.85;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(var(--primary-rgb),0.3);
}
.footer-cta-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--primary-rgb),0.4);
}

/* ═══ 13. COOKIE CONSENT ═══ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px; right: 24px;
  z-index: 100;
  max-width: 420px;
  margin-left: auto;
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 24px;
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--slate-200);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.4s, opacity 0.4s;
}
.cookie-banner.hidden { transform: translateY(120%); opacity: 0; pointer-events: none; }
.cookie-icon {
  background: rgba(var(--primary-rgb),0.1);
  padding: 8px;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}
.cookie-icon .material-icons { color: var(--primary); font-size: 24px; }
.cookie-content h5 { font-weight: 700; color: var(--slate-900); margin-bottom: 4px; }
[data-theme="dark"] .cookie-content h5 { color: var(--white); }
.cookie-content p {
  font-size: 0.85rem;
  color: var(--slate-500);
  margin-bottom: 16px;
  line-height: 1.6;
}
.cookie-buttons { display: flex; gap: 12px; }
.cookie-accept {
  background: var(--primary);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 700;
  transition: background 0.2s;
}
.cookie-accept:hover { background: var(--primary-dark); }
.cookie-settings {
  background: var(--slate-100);
  color: var(--slate-700);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 700;
  transition: background 0.2s;
}
[data-theme="dark"] .cookie-settings { background: var(--slate-800); color: var(--slate-300); }
.cookie-settings:hover { background: var(--slate-200); }
[data-theme="dark"] .cookie-settings:hover { background: var(--slate-700); }

/* ═══ 14. SCROLL REVEAL ═══ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed { 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; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ═══ 15. MOBILE BANNER/NAV FIX ═══ */

/* — Tablet / small desktop (≤1024px) — */
@media (max-width: 1024px) {
  .nav { top: 42px; }
  .hero { margin-top: 114px; }
  .mobile-menu { top: 114px; }
}

/* — Mobile (≤768px) — */
@media (max-width: 768px) {
  .demo-banner {
    flex-wrap: nowrap;
    padding: 8px 12px;
    gap: 10px;
  }
  .demo-banner span {
    font-size: 0.6rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    flex: 1;
  }
  .demo-banner a {
    font-size: 0.68rem;
    padding: 4px 12px;
    flex-shrink: 0;
  }
  /* Banner is now ~34px tall */
  .nav { top: 34px; }
  .nav-inner { height: 64px; padding: 0 12px; }
  .hero { margin-top: 98px; min-height: 400px; }
  .mobile-menu { top: 98px; }

  /* Nav brand */
  .nav-brand { font-size: 1rem; }
  .nav-icon { width: 34px; height: 34px; }
  .nav-icon .material-icons { font-size: 18px; }

  /* Theme toggle + lang switcher smaller */
  .theme-toggle { width: 32px; height: 32px; }
  .theme-toggle .material-icons { font-size: 16px; }
  .lang-trigger { padding: 4px 8px; font-size: 12px; }

  /* Section spacing tighter */
  .section-header { margin-bottom: 40px; }

  /* About visual grid on mobile */
  .about-visual { gap: 12px; }
  .about-visual-stat { padding: 20px 12px; }
  .about-visual-number { font-size: 1.5rem; }
  .about-quote-block { padding: 20px 24px; }
  .about-quote-block p { font-size: 1rem; }

  /* Feature highlight */
  .feature-visual { padding: 40px 24px; min-height: 240px; }

  /* Trust section */
  .trust-section { padding: 48px 0; }
  .trust-left h2 { font-size: 1.4rem; }

  /* Contact form */
  .contact-sidebar { padding: 24px 16px; }

  /* Footer */
  .footer { padding: 48px 0 32px; }
  .footer-grid { gap: 32px; margin-bottom: 40px; }
}

/* — Small mobile (≤480px) — */
@media (max-width: 480px) {
  .demo-banner {
    padding: 6px 8px;
    gap: 6px;
  }
  .demo-banner span {
    font-size: 0.5rem;
    letter-spacing: 0.5px;
  }
  .demo-banner a {
    font-size: 0.6rem;
    padding: 3px 8px;
  }
  /* Banner is now ~28px tall */
  .nav { top: 28px; }
  .nav-inner { height: 56px; padding: 0 10px; }
  .hero { margin-top: 84px; min-height: 360px; height: 65vh; }
  .mobile-menu { top: 84px; padding: 16px; }

  .nav-brand { font-size: 0.9rem; }
  .nav-icon { width: 30px; height: 30px; }
  .nav-icon .material-icons { font-size: 16px; }
  .mobile-menu-btn { width: 36px; height: 36px; }
  .mobile-menu-btn .material-icons { font-size: 24px; }

  /* Hero content */
  .hero-badge { font-size: 0.6rem; margin-bottom: 12px; }
  .hero-text { font-size: 0.95rem; margin-bottom: 24px; }
  .hero-buttons { gap: 10px; }
  .btn-primary, .btn-secondary { padding: 12px 20px; font-size: 0.9rem; }

  /* Stats */
  .stats { padding: 32px 0; }
  .stats-grid { gap: 20px; }
  .stat-value { font-size: 1.5rem; }

  /* Services */
  .service-card { padding: 24px; }

  /* Process */
  .process-step { padding: 24px; }
  .process-icon { width: 48px; height: 48px; }
  .process-icon .material-icons { font-size: 22px; }
  .process-number { font-size: 2.2rem; }

  /* Team */
  .team-info { padding: 20px; }

  /* Reviews */
  .review-card { padding: 24px; }
  .rating-card { padding: 16px; gap: 16px; }

  /* CTA band */
  .cta-band { padding: 40px 0; }
  .cta-band p { margin-bottom: 24px; }

  /* Footer CTA col */
  .footer-cta-col { padding: 24px 16px; }
}

/* ═══ 16. LANGUAGE SWITCHER ═══ */
.lang-switcher{position:relative;flex-shrink:0}
.lang-trigger{display:flex;align-items:center;gap:5px;padding:6px 10px;border-radius:6px;background:transparent;border:1.5px solid rgba(0,0,0,.1);font-size:13px;font-weight:600;cursor:pointer;transition:all .2s;color:inherit}
.lang-trigger:hover{border-color:currentColor}
.lang-chevron{width:10px;height:10px;transition:transform .2s}
.lang-dropdown{position:absolute;top:calc(100% + 6px);right:0;background:#fff;border:1.5px solid rgba(0,0,0,.08);border-radius:8px;box-shadow:0 8px 24px rgba(0,0,0,.12);min-width:150px;z-index:200;opacity:0;visibility:hidden;transform:translateY(-4px);transition:all .2s}
.lang-dropdown.show{opacity:1;visibility:visible;transform:translateY(0)}
.lang-option{display:block;width:100%;padding:8px 14px;text-align:left;font-size:13px;font-weight:500;color:#666;background:none;border:none;cursor:pointer;transition:all .15s}
.lang-option:first-child{border-radius:7px 7px 0 0}
.lang-option:last-child{border-radius:0 0 7px 7px}
.lang-option:hover{background:#f8f8f8}
.lang-option.active{font-weight:700;background:rgba(0,0,0,.03)}

/* Dark theme overrides for language switcher */
[data-theme="dark"] .lang-trigger{border-color:rgba(255,255,255,.15);color:var(--slate-200)}
[data-theme="dark"] .lang-trigger:hover{border-color:rgba(255,255,255,.4)}
[data-theme="dark"] .lang-dropdown{background:var(--bg-card);border-color:var(--slate-700);box-shadow:0 8px 24px rgba(0,0,0,.4)}
[data-theme="dark"] .lang-option{color:var(--slate-300)}
[data-theme="dark"] .lang-option:hover{background:rgba(255,255,255,.06)}
[data-theme="dark"] .lang-option.active{color:var(--white);background:rgba(255,255,255,.08)}

