/* ================================================
   MESS- UND PRÜFDIENST ERKRATH — ONEPAGER STYLES
   ================================================ */

/* ── CSS-Variablen ── */
:root {
  --primary:        #1a2744;
  --primary-dark:   #111c30;
  --primary-light:  #263660;
  --accent:         #e8a020;
  --accent-dark:    #c78515;
  --accent-light:   rgba(232, 160, 32, 0.12);
  --bg-light:       #f6f8fc;
  --border:         #e2e8f0;
  --text:           #2c3e50;
  --muted:          #718096;
  --white:          #ffffff;
  --shadow-sm:      0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow:         0 6px 30px rgba(0, 0, 0, 0.10);
  --shadow-lg:      0 16px 56px rgba(0, 0, 0, 0.14);
  --radius:         10px;
  --ease:           all 0.28s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

p { color: var(--muted); margin-bottom: 1rem; }

a, a:hover, a:focus { text-decoration: none; }

img { max-width: 100%; }

/* ── Section Padding ── */
.section { padding: 100px 0; }

/* ── Section Heading ── */
.section-head { margin-bottom: 64px; }

.section-head h2 {
  font-size: 2.25rem;
  margin-bottom: 14px;
  color: var(--primary);
}

.section-head p {
  max-width: 580px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 15px;
}

/* ── Tag (Overline-Label) ── */
.tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

/* ── Buttons ── */
.btn-main {
  display: inline-block;
  padding: 13px 34px;
  background: var(--accent);
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.4px;
  border-radius: 6px;
  border: 2px solid var(--accent);
  transition: var(--ease);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

.btn-main:hover, .btn-main:focus {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 160, 32, 0.35);
}

.btn-main.w-100 { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block;
  padding: 13px 34px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.4px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: var(--ease);
}

.btn-ghost:hover, .btn-ghost:focus {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}


/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--ease);
}

.site-nav {
  padding: 18px 0;
  background: transparent;
  transition: var(--ease);
}

#site-header.scrolled .site-nav {
  background: var(--primary-dark);
  padding: 10px 0;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.35);
}

/* Brand / Logo */
.site-brand {
  display: flex;
  align-items: center;
  padding: 0;
}

.site-logo {
  height: 90px;
  width: auto;
  display: block;
  transition: var(--ease);
}

#site-header.scrolled .site-logo {
  height: 64px;
}

.site-brand:hover .site-logo {
  opacity: 0.85;
}

/* Nav Links */
.site-nav .navbar-nav .nav-item .nav-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 5px;
  transition: var(--ease);
}

.site-nav .navbar-nav .nav-item .nav-link:hover {
  color: var(--accent);
}

/* CTA Button in Nav */
.site-nav .navbar-nav .nav-item .nav-link.nav-btn {
  background: var(--accent);
  color: var(--primary);
  font-weight: 600;
  padding: 8px 22px;
  margin-left: 10px;
  border-radius: 6px;
}

.site-nav .navbar-nav .nav-item .nav-link.nav-btn:hover {
  background: var(--accent-dark);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 160, 32, 0.4);
}

/* Hamburger Toggler */
.site-toggler {
  background: none;
  border: none;
  outline: none !important;
  padding: 5px;
  cursor: pointer;
}

.site-toggler .bar {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  border-radius: 2px;
  transition: var(--ease);
}

/* Mobile Nav Dropdown */
@media (max-width: 991px) {
  .site-nav .navbar-collapse {
    background: var(--primary-dark);
    margin-top: 12px;
    border-radius: 8px;
    padding: 8px 0 14px;
    box-shadow: var(--shadow-lg);
  }

  .site-nav .navbar-nav .nav-item .nav-link {
    padding: 9px 22px;
  }

  .site-nav .navbar-nav .nav-item .nav-link.nav-btn {
    margin: 8px 22px 4px;
    display: inline-block;
  }
}


/* ════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--primary);
}

/* Multi-layer gradient background */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--primary-dark)  0%,
    var(--primary)       45%,
    var(--primary-light) 100%
  );
  z-index: 0;
}

/* Decorative golden glow (top-right) */
.hero-section::after {
  content: "";
  position: absolute;
  top: -15%;
  right: -8%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 160, 32, 0.10) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 140px 0 90px;
}

.hero-badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  border: 1px solid rgba(232, 160, 32, 0.28);
  border-radius: 50px;
  padding: 6px 20px;
  margin-bottom: 30px;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.70);
  max-width: 600px;
  margin: 0 auto 44px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 76px;
}

/* Stats bar */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat {
  padding: 0 44px;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.50);
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.14);
  flex-shrink: 0;
}

/* Scroll Hint Arrow */
.hero-scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-hint a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.45);
  font-size: 17px;
  transition: var(--ease);
  animation: bobDown 2.2s ease-in-out infinite;
}

.hero-scroll-hint a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@keyframes bobDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}


/* ════════════════════════════════════════
   LEISTUNGEN / SERVICES
════════════════════════════════════════ */
.services-section {
  background: var(--bg-light);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 38px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
  height: calc(100% - 30px);
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

/* Animated top accent bar */
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-icon-wrap {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  padding: 18px;
  transition: var(--ease);
}

.service-card:hover .service-icon-wrap {
  background: var(--primary);
}

.service-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--ease);
}

.service-card:hover .service-icon-wrap img {
  filter: brightness(0) invert(1);
}

.service-card h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}


/* ════════════════════════════════════════
   ÜBER UNS
════════════════════════════════════════ */
.about-section {
  background: var(--white);
  padding: 100px 0;
}

.about-left {
  padding-right: 60px;
}

.about-left h2 {
  font-size: 2.25rem;
  margin-top: 8px;
  margin-bottom: 20px;
}

.about-left p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.82;
}

.about-left .btn-main {
  margin-top: 12px;
}

/* 2×2 Highlight Grid */
.about-right {
  padding-left: 20px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.highlight-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: var(--ease);
}

.highlight-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.highlight-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
}

.highlight-card h6 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.highlight-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}


/* ════════════════════════════════════════
   TEAM
════════════════════════════════════════ */
.team-section {
  background: var(--bg-light);
}

.team-card {
  text-align: center;
  padding: 38px 20px 30px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
  margin-bottom: 24px;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.team-card.lead-card {
  border: 2px solid var(--accent);
}

/* Avatar Circle with Initials */
.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent);
  font-size: 1.55rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  letter-spacing: 1px;
  transition: var(--ease);
}

.team-card:hover .team-avatar {
  transform: scale(1.06);
}

.team-avatar.secondary {
  background: var(--bg-light);
  color: var(--primary);
  border: 2px solid var(--border);
}

.team-card h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.team-card span {
  font-size: 12.5px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.5px;
}


/* ════════════════════════════════════════
   KONTAKT
════════════════════════════════════════ */
.contact-section {
  background: var(--primary);
  padding: 100px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 70px;
  align-items: start;
}

/* Info Panel */
.contact-info-panel .tag.tag-light { color: var(--accent); }

.contact-info-panel h2 {
  color: var(--white);
  font-size: 2.25rem;
  margin: 10px 0 16px;
}

.contact-info-panel > p {
  color: rgba(255, 255, 255, 0.60);
  font-size: 14.5px;
  margin-bottom: 38px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px;
}

.cicon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 16px;
}

.contact-list li div { padding-top: 4px; }

.contact-list li strong {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
  letter-spacing: 0.4px;
}

.contact-list li a,
.contact-list li span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--ease);
}

.contact-list li a:hover { color: var(--accent); }

/* Form Panel */
.contact-form-panel {
  background: var(--white);
  border-radius: 14px;
  padding: 46px 42px;
  box-shadow: var(--shadow-lg);
}

.contact-form .row {
  margin-left: -8px;
  margin-right: -8px;
}

/* Formular-Hinweistext */
.form-hint {
  display: block;
  margin-top: 5px;
  margin-bottom: 2px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

/* Formular-Feedback */
.form-feedback {
  margin-top: 14px;
  padding: 14px 18px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.form-feedback.feedback-success {
  background: rgba(34, 197, 94, 0.10);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #166534;
}

.form-feedback.feedback-error {
  background: rgba(239, 68, 68, 0.10);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #991b1b;
}

.contact-form .row > [class*="col"] {
  padding-left: 8px;
  padding-right: 8px;
}

.contact-form .form-control {
  width: 100%;
  height: 48px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  padding: 10px 16px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--bg-light);
  transition: var(--ease);
  margin-bottom: 14px;
  -webkit-appearance: none;
}

.contact-form .form-control:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232, 160, 32, 0.13);
}

.contact-form .form-control::placeholder { color: #a0aec0; }

.contact-form textarea.form-control {
  height: auto;
  resize: none;
}

/* Nice Select Override */
.nice-select {
  width: 100% !important;
  height: 48px !important;
  line-height: 45px !important;
  border: 1.5px solid var(--border) !important;
  border-radius: 7px !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px !important;
  color: #a0aec0 !important;
  background: var(--bg-light) !important;
  margin-bottom: 14px;
  float: none !important;
  transition: var(--ease) !important;
}

.nice-select.open {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(232, 160, 32, 0.13) !important;
}

.nice-select .list { border-radius: 7px !important; }


/* ════════════════════════════════════════
   LEGAL MODALS (Impressum & Datenschutz)
════════════════════════════════════════ */
.legal-modal .modal-dialog {
  margin: 40px auto;
  max-width: 740px;
}

.legal-modal .modal-content {
  border: none;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Modal Header */
.legal-modal .modal-header {
  background: var(--primary);
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: none;
}

.modal-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.modal-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  border: 1px solid rgba(232, 160, 32, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
}

.legal-modal .modal-title {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}

.modal-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 7px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  cursor: pointer;
  transition: var(--ease);
  flex-shrink: 0;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

/* Modal Body */
.legal-modal .modal-body {
  padding: 36px 32px;
  max-height: 70vh;
  overflow-y: auto;
  background: var(--white);
}

/* Scrollbar styling */
.legal-modal .modal-body::-webkit-scrollbar {
  width: 5px;
}
.legal-modal .modal-body::-webkit-scrollbar-track {
  background: var(--bg-light);
}
.legal-modal .modal-body::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 10px;
}
.legal-modal .modal-body::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}

/* Legal Content Typography */
.legal-intro {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  background: var(--bg-light);
  border-left: 3px solid var(--accent);
  padding: 10px 16px;
  border-radius: 0 6px 6px 0;
  margin-bottom: 28px;
}

.legal-content h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin: 28px 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-content h3 i {
  color: var(--accent);
  font-size: 13px;
  width: 16px;
}

.legal-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0;
}

.legal-content a {
  color: var(--primary);
  font-weight: 500;
  transition: var(--ease);
}

.legal-content a:hover {
  color: var(--accent);
}

.legal-card-info {
  background: var(--bg-light);
  border-radius: 8px;
  padding: 18px 20px;
  margin: 8px 0 0;
}

.legal-card-info p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.legal-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 28px 0;
}

.legal-list {
  padding-left: 20px;
  margin: 8px 0 12px;
}

.legal-list li {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 4px;
  line-height: 1.6;
}

/* Modal Backdrop */
.modal-backdrop.show { opacity: 0.55; }

/* Standalone Legal Page (Fallback) */
.legal-page-hero {
  background: var(--primary);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.legal-page-hero::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 160, 32, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.legal-page-hero .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
  transition: var(--ease);
}

.legal-page-hero .back-link:hover {
  color: var(--accent);
}

.legal-page-hero h1 {
  font-size: 2.5rem;
  color: var(--white);
  margin: 0;
}

.legal-page-section {
  padding: 70px 0 100px;
  background: var(--bg-light);
}

.legal-page-card {
  background: var(--white);
  border-radius: 14px;
  padding: 50px 56px;
  box-shadow: var(--shadow);
}

@media (max-width: 767px) {
  .legal-modal .modal-dialog { margin: 16px; }
  .legal-modal .modal-header { padding: 18px 20px; }
  .legal-modal .modal-body   { padding: 24px 20px; }
  .legal-page-hero h1        { font-size: 1.9rem; }
  .legal-page-card           { padding: 32px 24px; }
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.site-footer {
  background: var(--primary-dark);
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-row p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  transition: var(--ease);
}

.footer-links a:hover { color: var(--accent); }


/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */

/* Large screens */
@media (max-width: 1200px) {
  .hero-title { font-size: 4rem; }
  .about-left { padding-right: 40px; }
}

/* Tablets */
@media (max-width: 991px) {
  .section         { padding: 80px 0; }
  .about-section   { padding: 80px 0; }
  .contact-section { padding: 80px 0; }

  .hero-title { font-size: 3.2rem; }

  .about-left {
    padding-right: 15px;
    margin-bottom: 48px;
  }

  .about-right { padding-left: 0; }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .section         { padding: 70px 0; }
  .about-section   { padding: 70px 0; }
  .contact-section { padding: 70px 0; }

  .hero-title  { font-size: 2.5rem; }
  .hero-text   { font-size: 0.97rem; }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 30px;
  }
  .stat-divider { display: none; }
  .stat { padding: 0 20px; }

  .section-head h2 { font-size: 1.85rem; }

  .about-highlights { grid-template-columns: 1fr; }

  .contact-form-panel { padding: 32px 24px; }

  .footer-row {
    flex-direction: column;
    text-align: center;
  }
}

/* Small mobile */
@media (max-width: 575px) {
  .hero-title { font-size: 2rem; }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn-ghost { margin-left: 0; }
}
