/* === Amsterdam Uitbouw — Design System === */
/* Palette: midnight navy + brass gold, warm off-white base */

:root {
  --midnight: #111827;
  --navy: #1e293b;
  --slate: #334155;
  --brass: #b8860b;
  --brass-light: #d4a843;
  --brass-glow: rgba(184,134,11,.12);
  --cream: #faf9f6;
  --warm-white: #f1efe9;
  --sand: #e8e4db;
  --text: #1e1e1e;
  --text-muted: #5c5c5c;
  --border: #ddd8ce;
  --white: #ffffff;
  --shadow: 0 2px 12px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.1);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* === Typography === */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 12px;
}
.section-tag::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--brass);
}

.section-title { margin-bottom: 16px; color: var(--midnight); }
.section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 640px; margin: 0 auto 48px; }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--brass);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(184,134,11,.3);
}
.btn-primary:hover {
  background: var(--brass-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(184,134,11,.35);
}
.btn-dark {
  background: var(--midnight);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--midnight);
  border: 2px solid var(--midnight);
}
.btn-outline:hover {
  background: var(--midnight);
  color: var(--white);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--midnight);
}

/* === Header === */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,249,246,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}
header.scrolled {
  background: rgba(250,249,246,.96);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,.04);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--midnight);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--brass);
  font-weight: 900;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-weight: 800; font-size: 1.1rem; color: var(--midnight); letter-spacing: -.01em; }
.logo-sub { font-size: .65rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: .08em; }

nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
nav ul li a {
  padding: 8px 16px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--slate);
  border-radius: 8px;
  transition: all var(--transition);
}
nav ul li a:hover,
nav ul li a.active {
  color: var(--midnight);
  background: var(--brass-glow);
}
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: .85rem;
  border-radius: 8px;
  color: var(--slate);
}
.dropdown-menu a:hover { background: var(--cream); color: var(--midnight); }

.nav-cta a {
  background: var(--midnight) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 10px 20px !important;
  font-size: .85rem !important;
}
.nav-cta a:hover { background: var(--slate) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--midnight);
  border-radius: 2px;
  transition: var(--transition);
}

/* === Hero === */
.hero {
  padding: 160px 0 100px;
  background: var(--midnight);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 30%, rgba(184,134,11,.06) 100%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,134,11,.15);
  border: 1px solid rgba(184,134,11,.3);
  color: var(--brass-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 span { color: var(--brass-light); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats {
  display: flex;
  gap: 40px;
}
.hero-stat { text-align: left; }
.hero-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--brass-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(8px);
}
.hero-card-icon { font-size: 2rem; margin-bottom: 12px; }
.hero-card h4 { font-size: 1.1rem; margin-bottom: 6px; }
.hero-card p { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.5; }

/* === Page Hero (subpages) === */
.page-hero {
  padding: 140px 0 60px;
  background: var(--midnight);
  color: var(--white);
}
.breadcrumb {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.5); }
.breadcrumb a:hover { color: var(--brass-light); }
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.65); max-width: 640px; font-size: 1.05rem; }

/* === Sections === */
section { padding: 80px 0; }
section.bg-warm { background: var(--warm-white); }
section.bg-dark {
  background: var(--midnight);
  color: var(--white);
}
section.bg-dark .section-title { color: var(--white); }
section.bg-dark .section-sub { color: rgba(255,255,255,.6); }

/* === Services Grid === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brass);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brass);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.service-card h3 { margin-bottom: 10px; color: var(--midnight); font-size: 1.15rem; }
.service-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.6; margin-bottom: 16px; }
.service-card-link {
  color: var(--brass);
  font-weight: 700;
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-card-link:hover { gap: 8px; }

/* === Process / Werkwijze === */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  counter-reset: step;
}
.process-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: all var(--transition);
  counter-increment: step;
}
.process-step:hover {
  border-color: var(--brass);
  box-shadow: var(--shadow);
}
.process-step-num {
  position: absolute;
  top: -14px;
  left: 28px;
  background: var(--midnight);
  color: var(--brass-light);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .82rem;
}
.process-step h3 { margin-bottom: 8px; color: var(--midnight); }
.process-step p { color: var(--text-muted); font-size: .9rem; }

/* === Why Us === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  text-align: center;
  padding: 32px 20px;
}
.why-icon {
  width: 64px;
  height: 64px;
  background: var(--brass-glow);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
}
.why-card h4 { margin-bottom: 6px; font-size: 1rem; color: var(--midnight); }
.why-card p { font-size: .85rem; color: var(--text-muted); }

/* === Reviews === */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); }
.review-stars { color: var(--brass); font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.review-text {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px;
  height: 40px;
  background: var(--midnight);
  color: var(--brass-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .82rem;
}
.review-name { font-weight: 700; font-size: .88rem; }
.review-loc { font-size: .78rem; color: var(--text-muted); }

/* === FAQ === */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: var(--midnight);
  text-align: left;
}
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--brass);
  font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-q.open::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.7;
}
.faq-q.open + .faq-a {
  max-height: 300px;
  padding-bottom: 24px;
}
details.faq-item { border-bottom: 1px solid var(--border); }
details.faq-item summary.faq-q { list-style: none; }
details.faq-item summary.faq-q::-webkit-details-marker { display: none; }
details[open].faq-item summary.faq-q::after { transform: rotate(45deg); }
details[open].faq-item .faq-a { max-height: none; overflow: visible; padding-bottom: 24px; }
details.faq-item .faq-a p { color: var(--text-muted); font-size: .92rem; line-height: 1.7; }

/* === CTA Banner === */
.cta-banner {
  padding: 80px 0;
  background: var(--midnight);
  color: var(--white);
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.65); font-size: 1.05rem; margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* === Stats === */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-block { text-align: center; padding: 20px; }
.stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--brass);
  line-height: 1;
}
.stat-label {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: 6px;
}
section.bg-dark .stat-label { color: rgba(255,255,255,.5); }

/* === Content Detail (diensten pages) === */
.dienst-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.dienst-block.reverse { direction: rtl; }
.dienst-block.reverse > * { direction: ltr; }
.dienst-icon-wrap {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border: 1px solid var(--border);
}
.dienst-text h3 { margin-bottom: 12px; color: var(--midnight); }
.dienst-text p { color: var(--text-muted); margin-bottom: 16px; font-size: .95rem; }

.check-list { list-style: none; padding: 0; margin: 16px 0; }
.check-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.6;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brass);
  font-weight: 700;
}

/* === Neighborhood / Content Pages === */
.content-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.content-wrap h2 { margin: 40px 0 16px; color: var(--midnight); }
.content-wrap h3 { margin: 32px 0 12px; color: var(--midnight); }
.content-wrap p { color: var(--text-muted); margin-bottom: 16px; font-size: .95rem; }

/* === Werkgebied === */
.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.area-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.area-card:hover {
  border-color: var(--brass);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.area-card h3, .area-card h4 { color: var(--midnight); margin-bottom: 8px; font-size: 1.05rem; }
.area-card p { color: var(--text-muted); font-size: .88rem; margin-bottom: 12px; }
.area-card-link, .area-link { color: var(--brass); font-weight: 700; font-size: .85rem; }
section.bg-dark .area-card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); }
section.bg-dark .area-card h3, section.bg-dark .area-card h4 { color: var(--white); }
section.bg-dark .area-card p { color: rgba(255,255,255,.5); }

/* === Forms === */
.form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.form-copy .section-tag { margin-bottom: 12px; }
.form-copy .section-title { margin-bottom: 16px; }
.form-copy > p { color: var(--text-muted); margin-bottom: 28px; }
.form-trust { list-style: none; }
.form-trust li {
  padding: 8px 0;
  font-size: .9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-trust li::before {
  content: '✓';
  color: var(--brass);
  font-weight: 700;
  font-size: 1rem;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-card h3 { margin-bottom: 4px; color: var(--midnight); }
.form-card > p { color: var(--text-muted); font-size: .85rem; margin-bottom: 28px; }
.ghl-form { display: flex; flex-direction: column; gap: 16px; }
.ghl-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ghl-form__field { display: flex; flex-direction: column; gap: 4px; }
.ghl-form__label { font-size: .82rem; font-weight: 600; color: var(--midnight); }
.ghl-form__req { color: var(--brass); }
.ghl-form__input,
.ghl-form__select,
.ghl-form__textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: .9rem;
  font-family: inherit;
  background: var(--cream);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.ghl-form__input:focus,
.ghl-form__select:focus,
.ghl-form__textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px var(--brass-glow);
}
.ghl-form__input::placeholder,
.ghl-form__textarea::placeholder { color: #aaa; }
.ghl-form__textarea { resize: vertical; min-height: 80px; }
.ghl-form__submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px;
}
.ghl-invalid { border-color: #e53935 !important; }
.ghl-form__feedback {
  padding: 16px;
  border-radius: 10px;
  font-size: .9rem;
  margin-top: 8px;
}
.ghl-form__success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}
.ghl-form__error {
  background: #fbe9e7;
  color: #c62828;
  border: 1px solid #ef9a9a;
}
.ghl-form__error a { color: #c62828; text-decoration: underline; }

/* === Contact Page === */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 20px;
}
.contact-card h3 { margin-bottom: 20px; color: var(--midnight); }
.contact-detail {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--sand);
}
.contact-detail:last-child { border: none; }
.contact-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail a { color: var(--brass); font-weight: 600; }
.contact-detail a:hover { color: var(--brass-light); }
.contact-card-accent {
  background: var(--midnight);
  color: var(--white);
  border-color: var(--midnight);
}
.contact-card-accent h3 { color: var(--white); }
.contact-card-accent p { color: rgba(255,255,255,.7); margin-bottom: 16px; }

/* === Footer === */
footer {
  background: var(--midnight);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-sub { color: rgba(255,255,255,.5); }
.footer-brand .logo-mark { background: rgba(255,255,255,.1); }
.footer-brand > p { font-size: .88rem; line-height: 1.6; margin-bottom: 16px; }
.footer-nap span {
  display: block;
  font-size: .82rem;
  padding: 3px 0;
  color: rgba(255,255,255,.5);
}
.footer-col h4 {
  color: var(--white);
  font-size: .9rem;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-col ul li a {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  padding: 4px 0;
  display: block;
}
.footer-col ul li a:hover { color: var(--brass-light); }
.footer-col.footer-contact .fc-item {
  display: flex;
  gap: 10px;
  font-size: .85rem;
  padding: 6px 0;
}
.fc-icon { font-size: .9rem; flex-shrink: 0; }
.fc-text a { color: rgba(255,255,255,.5); }
.fc-text a:hover { color: var(--brass-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: var(--brass-light); }

/* === Float CTA === */
.float-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--brass);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 6px 24px rgba(184,134,11,.35);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}
.float-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(184,134,11,.4);
  background: var(--brass-light);
}

/* === About values === */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.value-card-icon { font-size: 2rem; margin-bottom: 12px; }
.value-card h4 { margin-bottom: 8px; color: var(--midnight); }
.value-card p { font-size: .88rem; color: var(--text-muted); }

/* === Mobile === */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .dienst-block { grid-template-columns: 1fr; gap: 32px; }
  .dienst-block.reverse { direction: ltr; }
  .form-section { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  nav ul {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    gap: 0;
  }
  nav ul.open { display: flex; }
  nav ul li a { padding: 14px 16px; font-size: .95rem; display: block; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
  }
  .nav-cta { margin-top: 8px; }
  .nav-cta a { display: block; text-align: center; }

  section { padding: 56px 0; }
  .hero { padding: 120px 0 64px; }
  .page-hero { padding: 110px 0 40px; }
  .hero-stats { gap: 24px; }
  .hero-stat-num { font-size: 1.6rem; }
  .services-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .ghl-form__row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .float-cta .cta-label { display: none; }
}
