/* ═══════════════════════════════════════════════════════════
   AIRCOOLED ADVISORY — STYLESHEET
   Light luxury automotive aesthetic · Cream + Gold + Slate
═══════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  --bg-primary:    #faf9f5;
  --bg-secondary:  #f0ede5;
  --bg-card:       #ffffff;
  --bg-card-hover: #fffdf7;

  --gold:          #b8922a;
  --gold-light:    #d4a83a;
  --gold-deep:     #9a7820;
  --gold-dim:      rgba(184, 146, 42, 0.1);
  --gold-border:   rgba(184, 146, 42, 0.25);

  --text-primary:  #1c1a16;
  --text-muted:    #5c5650;
  --text-dim:      #9c9490;

  --border:        rgba(0, 0, 0, 0.09);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;

  --shadow-sm:     0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-card:   0 2px 20px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04);
  --shadow-gold:   0 0 40px rgba(184, 146, 42, 0.12);

  --font-display:  'Rajdhani', sans-serif;
  --font-sans:     'DM Sans', system-ui, -apple-system, sans-serif;

  --nav-height:    72px;
  --transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; background-color: #14120c; }

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

ul { list-style: none; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.8rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); }

p { color: var(--text-muted); }

/* ── LAYOUT HELPERS ──────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.section {
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.section-dark { background: var(--bg-secondary); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-sub {
  margin-top: 0.9rem;
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  box-shadow: 0 4px 20px rgba(184, 146, 42, 0.3);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
  background: var(--gold-dim);
}

/* Hero ghost needs light version */
.hero-actions .btn-ghost {
  color: rgba(245, 240, 232, 0.9);
  border-color: rgba(245, 240, 232, 0.35);
}
.hero-actions .btn-ghost:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.1);
}

.btn-full { width: 100%; justify-content: center; }

/* ── NAVIGATION ──────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(250, 249, 245, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 2px 16px rgba(0, 0, 0, 0.06);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* ── Text wordmark ── */
.logo-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  transition: color var(--transition);
  /* decorative lines via flex */
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Left and right lines */
.logo-wordmark::before,
.logo-wordmark::after {
  content: '';
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
  opacity: 0.85;
  transition: width var(--transition);
}

.logo-accent {
  color: var(--gold);
}

/* Scrolled state */
#navbar.scrolled .logo-wordmark {
  color: var(--text-primary);
}

/* Footer: always white */
.footer .logo-wordmark {
  color: #fff;
}



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

.nav-link {
  padding: 0.5rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: #fff; }

#navbar.scrolled .nav-link { color: var(--text-muted); }
#navbar.scrolled .nav-link:hover { color: var(--text-primary); }

.nav-link.nav-cta {
  margin-left: 0.5rem;
  background: var(--gold);
  color: #fff !important;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-sm);
}
.nav-link.nav-cta:hover {
  background: var(--gold-deep);
  color: #fff !important;
}
/* Ensure CTA never inherits the scrolled nav text colour */
#navbar.scrolled .nav-link.nav-cta,
#navbar.scrolled .nav-link.nav-cta:hover {
  background: var(--gold) !important;
  color: #fff !important;
  box-shadow: 0 2px 12px rgba(184, 146, 42, 0.28);
}
#navbar.scrolled .nav-link.nav-cta:hover {
  background: var(--gold-deep) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
#navbar.scrolled .nav-toggle span { background: var(--text-primary); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────────── */
/* Hero stays cinematic/dark — the image is dark, text is white */
#hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 15s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(20,18,12,0.92) 42%, rgba(20,18,12,0.3) 100%),
    linear-gradient(to top, rgba(20,18,12,0.65) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-height) + 3rem) clamp(1.25rem, 4vw, 3rem) 6rem;
  max-width: min(900px, 100%);
  margin-left: max(1.25rem, 50vw - 600px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
}

.hero-title {
  margin-bottom: 1.5rem;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.hero-title em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(245, 240, 232, 0.72);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-weight: 300;
}
.hero-subtitle strong {
  color: rgba(245, 240, 232, 0.95);
  font-weight: 500;
}

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

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold-light));
}

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

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

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 1rem;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}

.stat-text {
  font-size: clamp(1rem, 2vw, 1.4rem) !important;
  letter-spacing: 0.02em;
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── CARDS / SERVICES (legacy, kept for safety) ──────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 1.5rem;
  align-items: start;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}

.card-featured {
  background: linear-gradient(135deg, #fffbf0 0%, #fffef9 100%);
  border-color: var(--gold-border);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}
.card-featured:hover { transform: translateY(-12px); }

.card-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--gold);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}

.card-icon {
  width: 52px;
  height: 52px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.card h3 { margin-bottom: 0.75rem; }
.card p { font-size: 0.93rem; margin-bottom: 1.25rem; }

.card-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.card-list li {
  font-size: 0.83rem;
  color: var(--text-muted);
  padding-left: 1.1rem;
  position: relative;
}
.card-list li::before {
  content: '◈';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.5rem;
  top: 0.37em;
}

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

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.pricing-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}

.pricing-card-featured {
  background: linear-gradient(160deg, #fff9e6 0%, #fffdf5 100%);
  border-color: var(--gold);
  transform: translateY(-10px);
  box-shadow: 0 8px 50px rgba(184, 146, 42, 0.14);
}
.pricing-card-featured:hover {
  transform: translateY(-14px);
  box-shadow: 0 12px 60px rgba(184, 146, 42, 0.22);
}

.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(184, 146, 42, 0.35);
}

.pricing-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pricing-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--gold);
  background: var(--gold-dim);
  border-radius: 10px;
  padding: 10px;
}

.pricing-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.pricing-card h3 {
  font-size: 1.2rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-price {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--gold-deep);
  line-height: 1;
  letter-spacing: 0.03em;
}

.price-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.02em;
  font-weight: 400;
}

.pricing-desc {
  font-size: 0.88rem;
  line-height: 1.72;
  flex-grow: 0;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex-grow: 1;
  margin-bottom: 0.5rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.feature-check {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05em;
}

.pricing-feature-muted {
  color: var(--text-dim) !important;
}
.pricing-feature-muted span {
  color: var(--text-dim);
}

.pricing-cta { margin-top: auto; }

.pricing-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.82rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.pricing-note span { color: var(--gold); }

/* ── PROCESS / ABLAUF ────────────────────────────────────── */
.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 2rem;
}

.process-line { display: none; }

.process-step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.process-step:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

/* Number + icon row */
.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(184, 146, 42, 0.28);
  line-height: 1;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  flex-shrink: 0;
}
.process-step:hover .step-number { color: var(--gold); }

.step-icon {
  width: 32px;
  height: 32px;
  color: rgba(184, 146, 42, 0.28);
  /* no background, no border-radius, no padding */
  background: none;
  border-radius: 0;
  padding: 0;
  flex-shrink: 0;
  margin-bottom: 4px; /* slight optical alignment with number baseline */
  transition: color var(--transition);
}
.process-step:hover .step-icon { color: var(--gold); }

.step-content h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.step-content p { font-size: 0.9rem; }


/* ── ABOUT ───────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 50px rgba(0, 0, 0, 0.14);
}
.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
}
.about-image:hover img { transform: scale(1.03); }

.about-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-primary);
}
.about-image-badge span { color: var(--gold); }
.about-image-badge strong { font-weight: 600; }

.about-content .section-tag { text-align: left; }
.about-content h2 { margin-bottom: 1.25rem; }
.about-content p { margin-bottom: 1rem; font-size: 0.97rem; }
.about-content p strong { color: var(--text-primary); font-weight: 600; }

.about-features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1.75rem 0 2rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.feature-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5em;
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 1.5rem;
  align-items: start;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.testimonial-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.testimonial-featured {
  border-color: var(--gold-border);
  background: linear-gradient(135deg, #fffbf0, #fff);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-size: 0.92rem;
  line-height: 1.78;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-deep);
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; margin-bottom: 0.15rem; color: var(--text-primary); }
.testimonial-author span { font-size: 0.78rem; color: var(--text-dim); }

/* ── COVERAGE / EINSATZGEBIET ────────────────────────────── */
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.coverage-content h2 { margin-bottom: 1rem; }
.coverage-content p { margin-bottom: 2rem; }

.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.coverage-tag {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-deep);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  transition: all var(--transition);
}
.coverage-tag:hover {
  background: rgba(184, 146, 42, 0.2);
  border-color: var(--gold);
}

/* ── MAP VISUAL ──────────────────────────────────────────── */
.coverage-map-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-bg {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  animation: mapPulse 3s ease-in-out infinite;
}
.map-ring-1 { width: 100px; height: 100px; animation-delay: 0s; }
.map-ring-2 { width: 200px; height: 200px; animation-delay: 0.5s; opacity: 0.5; }
.map-ring-3 { width: 340px; height: 340px; animation-delay: 1s; opacity: 0.25; }

@keyframes mapPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.04); }
}

.map-dot {
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(184, 146, 42, 0.5);
  z-index: 2;
}

.map-pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  animation: dotPulse 2s ease-in-out infinite;
  opacity: 0;
}

@keyframes dotPulse {
  0%   { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

.map-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -170%);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-deep);
  white-space: nowrap;
  letter-spacing: 0.08em;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.map-city {
  position: absolute;
  font-size: 0.72rem;
  color: var(--text-dim);
  white-space: nowrap;
  font-weight: 500;
}
.map-city-bonn   { bottom: 18%; left: 47%; }
.map-city-dus    { top: 15%; right: 12%; }
.map-city-aachen { left: 5%; top: 42%; }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

/* ── FORM ────────────────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.form-group-full { grid-column: 1 / -1; }

label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
label span { color: var(--gold); }
label .label-opt {
  text-transform: none;
  font-weight: normal;
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0;
  margin-left: 0.2rem;
}

input, textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
input::placeholder, textarea::placeholder { color: var(--text-dim); }
input:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}

textarea { resize: vertical; min-height: 130px; }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.form-consent input[type="checkbox"] {
  width: auto;
  margin-top: 0.2em;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.link-inline { color: var(--gold); text-decoration: underline; }

/* ── CONTACT INFO ────────────────────────────────────────── */
.contact-info { display: flex; flex-direction: column; gap: 1rem; }

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.25rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.contact-card:hover { border-color: var(--gold-border); transform: translateX(4px); box-shadow: var(--shadow-card); }

.contact-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  background: var(--gold-dim);
  border-radius: 10px;
  padding: 10px;
  flex-shrink: 0;
}
.contact-icon-wa { color: #1a9e4a; background: rgba(37, 211, 102, 0.1); }

.contact-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.2rem;
}
.contact-value {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
  transition: color var(--transition);
}
.contact-value:hover { color: var(--gold-deep); }

.contact-hours {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 0.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-hours h3 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.87rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:last-child { color: var(--text-primary); font-weight: 600; }
.hours-closed span { color: var(--text-dim) !important; }

/* ── FOOTER ──────────────────────────────────────────────── */
/* Footer intentionally stays dark as visual anchor */
.footer {
  background: #1c1a14;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 4rem;
  /* Override tokens for dark footer context */
  --text-primary:  #f0ece4;
  --text-muted:    #8a857e;
  --text-dim:      #55504a;
  --border:        rgba(255, 255, 255, 0.07);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem) 3rem;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 3rem;
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
  color: #f0ece4;
}
.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.8;
  color: var(--text-dim);
}

.footer-nav h3, .footer-contact h3 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a {
  font-size: 0.87rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold-light); }

.footer-contact p {
  font-size: 0.87rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}
.footer-contact a { transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem);
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-dim); }

/* ── SCROLL ANIMATIONS ───────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — comprehensive mobile-first system
   Breakpoints: 900 · 768 · 640 · 480px
═══════════════════════════════════════════════════════════ */

/* ── 900 px — tablet landscape ───────────────────────────── */
@media (max-width: 900px) {
  /* Layouts */
  .about-grid,
  .coverage-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .about-image { order: -1; }
  .coverage-map-visual { display: none; }

  /* Footer */
  .footer-container { grid-template-columns: 1fr 1fr; gap: 2rem; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-card-featured {
    transform: none;
    order: -1;
    box-shadow: 0 4px 30px rgba(184,146,42,0.16);
  }
  .pricing-card-featured:hover { transform: translateY(-4px); }

  /* Process */
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── 768 px — tablet portrait / large phone ──────────────── */
@media (max-width: 768px) {

  /* ─ Navigation ─ */
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    flex-direction: column;
    background: rgba(250, 249, 245, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.2rem;
    transform: translateY(-110%);
    transition: transform var(--transition);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); }

  .nav-link {
    padding: 0.85rem 1rem;
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    color: var(--text-muted) !important;
    border-radius: var(--radius-sm);
  }
  .nav-link:hover { color: var(--text-primary) !important; background: var(--bg-secondary); }
  .nav-link.nav-cta {
    margin-left: 0;
    margin-top: 0.5rem;
    justify-content: center;
    color: #fff !important;
  }
  .nav-toggle { display: flex; }

  .logo-wordmark::before,
  .logo-wordmark::after { display: none; }

  /* ─ Hero ─ */
  .hero-content {
    margin-left: 0;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-bottom: 5rem;
  }
  .hero-overlay {
    background:
      linear-gradient(to right, rgba(20,18,12,0.9) 0%, rgba(20,18,12,0.6) 100%),
      linear-gradient(to top, rgba(20,18,12,0.7) 0%, transparent 60%);
  }

  /* ─ Stats bar ─ */
  .stats-container { flex-wrap: wrap; gap: 0; }
  .stat-divider { display: none; }
  .stat-item {
    flex: 0 0 50%;
    min-width: unset;
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 1rem;
  }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  /* ─ Section headers ─ */
  .section-header { margin-bottom: 2.5rem; }

  /* ─ About ─ */
  .about-image { max-height: 380px; }
  .about-image img { height: 380px; object-fit: cover; }

  /* ─ Testimonials ─ */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* ─ Process ─ */
  .process-timeline { grid-template-columns: 1fr; }
  .process-step { flex-direction: row; gap: 1.5rem; align-items: flex-start; }
  .step-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; flex-shrink: 0; width: 60px; }
  .step-number { font-size: 2.5rem; }
  .step-icon { width: 26px; height: 26px; }

  /* ─ Contact form ─ */
  .contact-grid { gap: 2.5rem; }
  .contact-info-item { gap: 1rem; }

  /* ─ Coverage ─ */
  .coverage-list { grid-template-columns: 1fr 1fr; }

  /* ─ Cards (Leistungen) ─ */
  .card-featured,
  .pricing-card-featured { transform: none; }

  /* ─ Footer ─ */
  .footer-container { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* ── 640 px — large phone ─────────────────────────────────── */
@media (max-width: 640px) {

  /* ─ Global section spacing ─ */
  .section { padding: clamp(3.5rem, 8vw, 5rem) 0; }

  /* ─ Buttons: full width in hero ─ */
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* ─ Hero badge ─ */
  .hero-badge { font-size: 0.68rem; }

  /* ─ Stats: single column ─ */
  .stat-item {
    flex: 0 0 100%;
    border-right: none !important;
  }
  .stat-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }

  /* ─ Cards / Leistungen ─ */
  .cards-grid { grid-template-columns: 1fr; }
  .card { padding: 1.75rem; }

  /* ─ Pricing ─ */
  .pricing-card { padding: 1.5rem 1.5rem 1.75rem; }
  .pricing-grid { max-width: 100%; }

  /* ─ Process: back to simple column ─ */
  .process-step {
    flex-direction: column;
    gap: 1rem;
  }
  .step-header {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  .step-number { font-size: 3rem; }

  /* ─ Contact form ─ */
  .form-group textarea { min-height: 130px; }

  /* ─ Testimonials ─ */
  .testimonial-card { padding: 1.5rem; }

  /* ─ Coverage region list ─ */
  .coverage-list { grid-template-columns: 1fr; }

  /* ─ Legal pages ─ */
  .service-cards { grid-template-columns: 1fr; }
}

/* ── 480 px — small phone ─────────────────────────────────── */
@media (max-width: 480px) {

  /* Typography scale */
  h1 { font-size: clamp(2.2rem, 10vw, 2.8rem); }
  h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  h3 { font-size: clamp(1rem, 5vw, 1.2rem); }

  /* Logo wordmark slightly smaller and prevent wrapping */
  .logo-wordmark { 
    font-size: 1.4rem; 
    gap: 0.3rem;
  }
  .logo-wordmark::before,
  .logo-wordmark::after { 
    display: none; /* Hide decorative lines on small mobile devices to prevent layout breaking */
  }

  /* Hero */
  .hero-content { padding-bottom: 4.5rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-scroll { display: none; }

  /* Nav: tighter padding */
  #navbar { height: 60px; }
  :root { --nav-height: 60px; }
  .nav-links { top: 60px; }

  /* Cards */
  .card { padding: 1.5rem; }
  .card-icon { width: 42px; height: 42px; margin-bottom: 1rem; }

  /* Pricing */
  .price-amount { font-size: 1.6rem; }

  /* Buttons */
  .btn { padding: 0.8rem 1.5rem; font-size: 0.875rem; }

  /* Contact */
  .form-input,
  .form-select,
  .form-textarea {
    font-size: 16px; /* prevents iOS auto-zoom */
  }

  /* Footer */
  .footer-bottom p { font-size: 0.75rem; }
  .footer-bottom { display: flex; flex-direction: column; gap: 0.5rem; align-items: center; }
  .footer-bottom a { display: inline; }

  /* Scroll to top (if present) */
  .scroll-top { bottom: 1rem; right: 1rem; width: 40px; height: 40px; }
}

