@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --dark: #2C2C2C;
  --red: #C0392B;
  --red-dark: #a93226;
  --white: #FFFFFF;
  --gray-light: #F4F4F4;
  --gray-mid: #E2E2E2;
  --text: #3A3A3A;
  --text-muted: #777777;
  --nav-h: 80px;
  --radius: 4px;
  --ease: all 0.3s ease;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.18);
  --font-title: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: var(--font-title); font-weight: 800; line-height: 1.1; letter-spacing: 0.03em; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-red { color: var(--red); }
.text-white { color: var(--white); }

.stripe {
  display: block;
  width: 44px;
  height: 4px;
  background: var(--red);
  margin-bottom: 16px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.75;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

.btn-red { background: var(--red); color: var(--white) !important; }
.btn-red:hover { background: var(--red-dark); color: var(--white) !important; transform: translateY(-2px); box-shadow: 0 6px 22px rgba(192,57,43,0.35); }

.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: #1a1a1a; transform: translateY(-2px); }

.btn-white { background: var(--white); color: var(--red); font-weight: 700; }
.btn-white:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); }

.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: var(--white); color: var(--dark); }

/* Scroll Animations */
.anim { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.anim.in { opacity: 1; transform: translateY(0); }
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }
.anim-delay-5 { transition-delay: 0.5s; }
.anim-delay-6 { transition-delay: 0.6s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  min-height: var(--nav-h);
  z-index: 1000;
  background: var(--dark);
  display: flex;
  align-items: center;
  overflow: visible;
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,0.4); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  overflow: visible;
}

.nav__logo { flex-shrink: 0; overflow: visible; display: flex; align-items: center; }
.nav__logo img {
  display: block;
  width: auto;
  max-width: 200px;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  object-position: left center;
}

.nav__right { display: flex; align-items: center; gap: 32px; }

.nav__links { display: flex; align-items: center; gap: 30px; }

.nav__link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
  transition: color 0.25s;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s;
}
.nav__link:hover, .nav__link.active { color: var(--white); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

.nav__cta { padding: 10px 20px; font-size: 0.88rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--ease); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('images/2025/03/g03aa202e3623955c5eda3a6141ac7f663440ab29c3280b759db718232a224aedfe79f3ea78c1cc0989769875393bc0cb_1280-768889.jpg') center/cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(44,44,44,0.88) 0%, rgba(44,44,44,0.55) 60%, rgba(44,44,44,0.35) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 22px;
}

.hero__title {
  font-size: clamp(2.8rem, 7.5vw, 5.8rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.03;
  max-width: 820px;
  margin-bottom: 22px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 38px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.hero__scroll svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }

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

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--dark);
  padding: 140px 0 72px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 120px; height: 5px;
  background: var(--red);
}
.page-hero__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.page-hero__breadcrumb { font-size: 0.88rem; color: rgba(255,255,255,0.5); }
.page-hero__breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.page-hero__breadcrumb a:hover { color: var(--red); }
.page-hero__breadcrumb span { margin: 0 8px; }

/* ============================================================
   INTRO SECTION (homepage)
   ============================================================ */
.intro { padding: 100px 0; background: var(--white); }

.intro__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.intro__text .section-title { color: var(--dark); }
.intro__text p { font-size: 1.03rem; color: var(--text); line-height: 1.78; margin-bottom: 14px; }

.intro__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--dark);
  color: var(--white);
  padding: 13px 22px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 12px;
  letter-spacing: 0.02em;
}
.intro__badge svg { width: 20px; height: 20px; stroke: var(--red); fill: none; stroke-width: 2; flex-shrink: 0; }

.intro__img-wrap { position: relative; }
.intro__img-wrap::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 3px solid var(--red);
  border-radius: var(--radius);
  z-index: 0;
}
.intro__img-wrap img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius); position: relative; z-index: 1; }

/* ============================================================
   SERVICES PREVIEW GRID (homepage)
   ============================================================ */
.services-preview { padding: 100px 0; background: var(--gray-light); }

.services-preview__header { text-align: center; margin-bottom: 60px; }
.services-preview__header .section-intro { margin: 0 auto; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.service-card {
  position: relative;
  height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  display: block;
  text-decoration: none;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover .service-card__img { transform: scale(1.06); }
.service-card:hover .service-card__arrow { opacity: 1; transform: translateX(0); }

.service-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,44,44,0.93) 0%, rgba(44,44,44,0.18) 55%, transparent 100%);
}

.service-card__bottom { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 16px 16px; }

.service-card__name {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.04em;
  display: block;
}

.service-card__arrow {
  position: absolute;
  bottom: 18px;
  right: 16px;
  color: var(--red);
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--ease);
}
.service-card__arrow svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* ============================================================
   USP SECTION (homepage)
   ============================================================ */
.usp { padding: 100px 0; background: var(--dark); }

.usp__header { text-align: center; margin-bottom: 60px; }
.usp__header .stripe { margin: 0 auto 16px; }
.usp__header .section-title { color: var(--white); }
.usp__header .section-intro { color: rgba(255,255,255,0.6); margin: 0 auto; }

.usp__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; }

.usp__item { text-align: center; }

.usp__icon {
  width: 66px; height: 66px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.usp__icon svg { width: 28px; height: 28px; stroke: var(--white); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.usp__name {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 10px;
}
.usp__desc { font-size: 0.93rem; color: rgba(255,255,255,0.62); line-height: 1.7; }

/* ============================================================
   PROFESSIONALS (homepage)
   ============================================================ */
.professionals { padding: 100px 0; background: var(--white); }

.professionals__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.professionals__content .section-title { color: var(--dark); }
.professionals__content p { font-size: 1.03rem; color: var(--text); line-height: 1.78; margin-bottom: 14px; }

.professionals__list { margin: 20px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.professionals__list li { display: flex; align-items: center; gap: 12px; font-weight: 500; font-size: 0.97rem; }
.professionals__list li::before { content: ''; width: 8px; height: 8px; background: var(--red); border-radius: 50%; flex-shrink: 0; }

.professionals__img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { background: var(--red); padding: 80px 0; text-align: center; color: var(--white); }

.cta-banner__title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.cta-banner__sub { font-size: 1.08rem; opacity: 0.88; margin-bottom: 32px; }
.cta-banner__actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   DIENSTEN PAGE — SERVICE SECTIONS
   ============================================================ */
.dienst { padding: 80px 0; }
.dienst:nth-child(even) { background: var(--gray-light); }

.dienst__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.dienst:nth-child(even) .dienst__inner { direction: rtl; }
.dienst:nth-child(even) .dienst__content,
.dienst:nth-child(even) .dienst__img-wrap { direction: ltr; }

.dienst__label { font-family: var(--font-body); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; display: block; }

.dienst__title { font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--dark); margin-bottom: 18px; }

.dienst__desc { font-size: 1.03rem; color: var(--text); line-height: 1.8; margin-bottom: 28px; }

.dienst__img { width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 100px 0; background: var(--white); }

.contact__inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; }

.contact__block-title {
  font-family: var(--font-title);
  font-size: 1.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark);
  margin-bottom: 30px;
}

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

.contact__icon {
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact__icon svg { width: 20px; height: 20px; stroke: var(--white); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.contact__item-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px; }
.contact__item-value { font-size: 1rem; font-weight: 500; color: var(--dark); }
.contact__item-value a { color: var(--dark); transition: color 0.2s; }
.contact__item-value a:hover { color: var(--red); }

.contact__hours-box { background: var(--gray-light); padding: 22px 24px; border-radius: var(--radius); border-left: 4px solid var(--red); margin: 28px 0; }
.contact__hours-title { font-family: var(--font-title); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--dark); margin-bottom: 8px; }
.contact__hours-val { font-size: 0.95rem; color: var(--text); }

.contact__company { font-size: 0.88rem; color: var(--text-muted); line-height: 1.9; margin-top: 10px; }

.contact__map { margin-top: 28px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-mid); }
.contact__map iframe { width: 100%; height: 260px; border: none; display: block; }

/* Form */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--dark); margin-bottom: 7px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 15px;
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { height: 148px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-consent { font-size: 0.82rem; color: var(--text-muted); margin-top: 14px; line-height: 1.6; }
.form-consent a { color: var(--red); text-decoration: underline; }

/* ============================================================
   LEGAL PAGES (privacy / cookies)
   ============================================================ */
.legal { padding: 100px 0; background: var(--white); }
.legal__inner { max-width: 780px; margin: 0 auto; }
.legal h2 { font-size: 1.45rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--dark); margin-top: 44px; margin-bottom: 12px; }
.legal p { font-size: 0.97rem; color: var(--text); line-height: 1.8; margin-bottom: 14px; }
.legal ul { margin: 10px 0 18px 22px; list-style: disc; }
.legal ul li { margin-bottom: 6px; font-size: 0.97rem; line-height: 1.7; }
.legal a { color: var(--red); text-decoration: underline; }
.legal strong { color: var(--dark); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); color: rgba(255,255,255,0.68); padding: 64px 0 0; }

.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.09); }

.footer__logo img { max-width: 140px; max-height: 48px; width: auto; height: auto; object-fit: contain; display: block; margin-bottom: 14px; }

.footer__brand {
  font-family: var(--font-title);
  font-size: 1.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
}
.footer__brand span { color: var(--red); }

.footer__tagline { font-size: 0.9rem; color: rgba(255,255,255,0.55); margin-bottom: 22px; line-height: 1.6; }

.footer__contact-item { display: flex; align-items: center; gap: 9px; font-size: 0.88rem; margin-bottom: 9px; }
.footer__contact-item svg { width: 15px; height: 15px; stroke: var(--red); fill: none; stroke-width: 2; flex-shrink: 0; }
.footer__contact-item a { color: rgba(255,255,255,0.68); transition: color 0.2s; }
.footer__contact-item a:hover { color: var(--red); }

.footer__col-title { font-family: var(--font-title); font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); margin-bottom: 18px; }

.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 0.88rem; color: rgba(255,255,255,0.58); transition: color 0.2s; }
.footer__links a:hover { color: var(--red); }

.footer__bottom {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
}
.footer__bottom a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer__bottom a:hover { color: var(--red); }
.footer__legal { display: flex; gap: 18px; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: var(--dark);
  color: var(--white);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.35);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.cookie-banner.show { transform: translateY(0); }

.cookie-banner__text { font-size: 0.88rem; color: rgba(255,255,255,0.82); line-height: 1.55; max-width: 680px; }
.cookie-banner__text a { color: var(--red); text-decoration: underline; }

.cookie-banner__btns { display: flex; gap: 10px; flex-shrink: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .usp__grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .intro__inner, .professionals__inner { grid-template-columns: 1fr; gap: 48px; }
  .intro__img-wrap::before { display: none; }
  .intro__img-wrap img, .professionals__img { height: 360px; }
  .dienst__inner { grid-template-columns: 1fr; gap: 40px; }
  .dienst:nth-child(even) .dienst__inner { direction: ltr; }
  .dienst__img { height: 320px; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 28px rgba(0,0,0,0.35);
  }
  .nav__links.open { display: flex; }
  .nav__link { padding: 14px 24px; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav__link::after { display: none; }

  .hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .service-card { height: 220px; }

  .usp__grid { grid-template-columns: 1fr; gap: 28px; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .hero__actions { flex-direction: column; align-items: flex-start; }

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

  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { height: 240px; }
}
