@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('assets/fonts/barlow-300.ttf') format('truetype');
}

@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/barlow-400.ttf') format('truetype');
}

@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/barlow-500.ttf') format('truetype');
}

@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/barlow-600.ttf') format('truetype');
}

@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/barlow-condensed-400.ttf') format('truetype');
}

@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/barlow-condensed-600.ttf') format('truetype');
}

@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/barlow-condensed-700.ttf') format('truetype');
}

@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('assets/fonts/barlow-condensed-800.ttf') format('truetype');
}

:root {
  --primary: #0e4f4a;
  --accent: #1a8a82;
  --accent-light: #22a89e;
  --gray-light: #f4f4f2;
  --gray-mid: #e0ddd8;
  --gray-dark: #6b6b6b;
  --text: #1a2332;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* TOP CONTACT BAR */
.top-contact-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  z-index: 1100;
  background: #0a3f3b;
  color: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: transform 0.25s ease;
}
.top-contact-inner {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.top-contact-left,
.top-contact-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.top-contact-left {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.top-contact-left a,
.top-contact-right a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
}
.top-contact-right a {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.top-main-site-link {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.72rem;
  opacity: 0.95;
  border-right: 1px solid rgba(255,255,255,0.25);
  padding-right: 0.75rem;
  margin-right: 0.15rem;
}
.top-contact-right a:hover,
.top-contact-left a:hover {
  color: var(--accent-light);
}
.top-sep { opacity: 0.45; }

/* NAV */
nav {
  position: fixed;
  top: 40px; left: 0; right: 0;
  z-index: 1000;
  background: rgba(14,79,74,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--accent);
  transition: top 0.25s ease;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-weg-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--white);
  text-decoration: none;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 0.35rem 0.55rem;
  line-height: 1;
  transition: background 0.2s, color 0.2s;
}
.nav-weg-link:hover {
  background: rgba(255,255,255,0.28);
  color: var(--accent-light);
}
.nav-brand-sep {
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  user-select: none;
}
.logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.03em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.logo span { color: var(--accent-light); }
.logo-image { height: 34px; width: auto; display: block; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent-light); }
.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--accent-light) !important; }

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--primary);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(14,79,74,0.95) 45%, rgba(14,79,74,0.5) 100%),
    url('assets/images/tiefgaragenreinigung.jpg');
  background-size: cover;
  background-position: center right;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,138,130,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,138,130,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 104px;
  width: 100%;
}

body.topbar-hidden .top-contact-bar { transform: translateY(-100%); }
body.topbar-hidden nav { top: 0; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.0;
  color: var(--white);
  max-width: 680px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 em { font-style: normal; color: var(--accent-light); }
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); }
.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  text-decoration: none;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--accent-light); background: rgba(26,138,130,0.15); }
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 4rem;
  max-width: 480px;
  animation: fadeUp 0.6s 0.4s ease both;
}
.stat-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  padding: 1.2rem 2rem;
  flex: 1;
}
.stat-item:last-child { border-right: 1px solid rgba(255,255,255,0.12); }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--accent-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

/* SECTIONS */
section { padding: 5rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--accent); }
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--gray-dark);
  line-height: 1.7;
  font-weight: 300;
  max-width: 560px;
}
.services-header .section-desc a { color: var(--accent); font-weight: 500; }
.services-header .section-desc a:hover { text-decoration: underline; }

/* DETAIL SERVICES */
.detail-services-section { background: var(--white); }
.detail-services-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.detail-service-card {
  border: 1px solid var(--gray-mid);
  background: #fbfbfa;
  padding: 1.5rem;
}
.detail-service-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--gray-dark);
  margin-bottom: 0.7rem;
}
.detail-service-card ul { margin-left: 1.15rem; }
.detail-service-card li {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text);
}

/* LEISTUNGEN */
.services-section { background: var(--gray-light); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1.5rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-mid);
  border: 1px solid var(--gray-mid);
}
.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: #f8faf9; }
.service-icon { width: 48px; height: 48px; margin-bottom: 1.5rem; color: var(--accent); }
.service-num {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--gray-mid);
  line-height: 1;
  transition: color 0.3s;
}
.service-card:hover .service-num { color: rgba(26,138,130,0.12); }
.service-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.service-desc { font-size: 0.92rem; color: var(--gray-dark); line-height: 1.65; }

/* PHOTO */
.photo-section { background: var(--primary); padding: 5rem 2rem; }
.photo-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 6px;
}
.photo-item { overflow: hidden; position: relative; }
.photo-item:first-child { grid-row: 1 / 3; }
.photo-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.82) saturate(0.85);
}
.photo-item:hover img { transform: scale(1.04); filter: brightness(0.95) saturate(1); }
.photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.2rem;
  background: linear-gradient(transparent, rgba(14,79,74,0.85));
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

/* PROZESS */
.process-section { background: var(--white); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 3rem;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 2rem; left: 2rem; right: 2rem;
  height: 2px;
  background: var(--gray-mid);
  z-index: 0;
}
.process-step { padding: 0 1.5rem; position: relative; z-index: 1; }
.step-num {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 1.4rem; color: var(--accent);
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}
.process-step:hover .step-num { background: var(--accent); color: white; border-color: var(--accent); }
.step-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.25rem; margin-bottom: 0.6rem; }
.step-desc { font-size: 0.9rem; color: var(--gray-dark); line-height: 1.6; }

/* KUNDEN */
.clients-section { background: var(--gray-light); }
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 3rem;
  background: var(--gray-mid);
  border: 1px solid var(--gray-mid);
}
.client-card { background: var(--white); padding: 2rem 1.5rem; display: flex; flex-direction: column; align-items: flex-start; gap: 0.75rem; }
.client-icon { width: 36px; height: 36px; color: var(--accent); }
.client-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.1rem; }
.client-desc { font-size: 0.85rem; color: var(--gray-dark); line-height: 1.55; }

/* WHY */
.why-section { background: var(--primary); color: var(--white); position: relative; overflow: hidden; }
.why-section::before {
  content: 'B+';
  position: absolute; right: -2rem; bottom: -3rem;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 20rem;
  color: rgba(255,255,255,0.03); line-height: 1; pointer-events: none;
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2.5rem; }
.why-feature { display: flex; flex-direction: column; gap: 0.5rem; }
.why-feature-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--accent-light); }
.why-feature-desc { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.55; }
.why-image { position: relative; height: 460px; }
.why-image img, .why-image video { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.8) saturate(0.8); }
.why-badge {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--accent); padding: 1.5rem; color: white;
}
.why-badge-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 2.5rem; line-height: 1; }
.why-badge-text { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

/* KONTAKT */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; }
.contact-phone-line {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  color: var(--text);
  margin-bottom: 2.2rem;
}
.contact-phone-line a { color: inherit; text-decoration: none; }
.contact-phone-line span { color: rgba(26,35,50,0.45); }
.contact-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.contact-meta-item { display: flex; flex-direction: column; gap: 0.45rem; }
.contact-company {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.1;
}
.contact-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.5rem 0; border-bottom: 1px solid var(--gray-mid); }
.contact-item:last-child { border-bottom: none; }
.contact-item-icon {
  width: 44px; height: 44px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: white;
}
.contact-item-icon svg { width: 20px; height: 20px; }
.contact-item-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-dark); font-weight: 600; margin-bottom: 0.35rem; }
.contact-item-value {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text);
  max-width: 32rem;
}
.contact-item-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(14, 85, 80, 0.25);
  transition: color 0.2s, border-color 0.2s;
}
.contact-item-link:hover { color: var(--accent); border-bottom-color: rgba(14, 85, 80, 0.45); }
.contact-phone-block {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text);
}
.contact-phone-block p { margin: 0 0 0.85rem; }
.contact-phone-block p:last-child { margin-bottom: 0; }
.contact-phone-block strong {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-dark);
  margin-bottom: 0.35rem;
}
.contact-phone-block a {
  display: inline-block;
  color: var(--text);
  text-decoration: none;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  padding: 0.1rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.contact-phone-block a:hover { color: var(--accent); border-bottom-color: rgba(14, 85, 80, 0.35); }
.contact-form { background: var(--gray-light); padding: 2.5rem; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-feedback { min-height: 1.25rem; margin: 0 0 0.75rem; font-size: 0.9rem; color: var(--gray-dark); }
.form-feedback.is-error { color: #b42318; }
.form-feedback.is-success { color: #0e5550; }
.contact-form .form-submit:disabled { opacity: 0.65; cursor: not-allowed; }
.form-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.5rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.4rem; color: var(--gray-dark); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.8rem 1rem;
  border: 1px solid var(--gray-mid); background: var(--white);
  font-family: 'Barlow', sans-serif; font-size: 0.95rem; color: var(--text);
  outline: none; transition: border-color 0.2s; border-radius: 2px; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%; padding: 1rem;
  background: var(--primary); color: white; border: none;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
  transition: background 0.2s; margin-top: 0.5rem; border-radius: 2px;
}
.form-submit:hover { background: var(--accent); }

/* FOOTER */
footer { background: #0c8f88; color: rgba(255,255,255,0.88); padding: 3rem 2rem 2rem; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: nowrap; gap: 1.2rem;
  padding: 1.25rem 0 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.5rem; color: white; text-decoration: none; display: inline-flex; align-items: center; }
.footer-logo-image { height: 34px; width: auto; display: block; }
.footer-logo span { color: var(--accent-light); }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.88); margin-top: 0.6rem;}
.footer-links { display: flex; gap: 1rem; list-style: none; flex-wrap: nowrap; align-items: center; }
.footer-links a { color: rgba(255,255,255,0.92); text-decoration: none; font-size: 0.9rem; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 0.8; }
.footer-link-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.92);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.footer-link-btn:hover { opacity: 0.8; }
.footer-links li { white-space: nowrap; }
.footer-contact-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-contact-block h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}
.footer-contact-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.75rem;
  margin-bottom: 1.15rem;
  max-width: 52rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.5;
}
.footer-contact-details a {
  color: rgba(255, 255, 255, 0.98);
  text-decoration: none;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  border-bottom: 1px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
}
.footer-contact-details a:hover {
  border-bottom-color: rgba(255, 255, 255, 0.45);
}
.footer-contact-group { margin: 0; color: #ffffff; }
.footer-contact-group strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 640px) {
  .footer-contact-details {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
}
.footer-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
}
.footer-contact-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  padding: 0.85rem 1rem;
}
.footer-contact-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-contact-item p {
  margin: 0.05rem 0;
  color: rgba(255,255,255,0.94);
  line-height: 1.4;
  font-size: 0.95rem;
}
.footer-bottom { max-width: 1200px; margin: 1.5rem auto 0; display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; font-size: 0.95rem; text-align: center; }

/* LEGAL MODALS */
.legal-modal {
  position: fixed;
  inset: 0;
  background: rgba(7, 31, 29, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1.5rem;
}
.legal-modal.is-open { display: flex; }
.legal-modal-panel {
  width: min(760px, 100%);
  max-height: 85vh;
  overflow-y: auto;
  background: #ffffff;
  color: var(--text);
  border-radius: 4px;
  padding: 1.8rem;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}
.legal-modal-panel h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.legal-modal-panel p { line-height: 1.65; margin-bottom: 0.8rem; color: #2c3644; }
.legal-modal-close {
  position: absolute;
  top: 0.6rem;
  right: 0.8rem;
  border: none;
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  color: #5b6673;
  cursor: pointer;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: rgba(7, 31, 29, 0.96);
  color: #ffffff;
  z-index: 2100;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 4px;
  display: none;
  gap: 0.9rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner p { margin: 0; max-width: 760px; line-height: 1.5; font-size: 0.9rem; color: rgba(255,255,255,0.9); }
.cookie-actions { display: flex; gap: 0.65rem; }
.cookie-btn {
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 0.55rem 0.8rem;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.82rem;
}
.cookie-btn-primary { background: var(--accent); color: #fff; }
.cookie-btn-secondary { background: transparent; border-color: rgba(255,255,255,0.45); color: #fff; }
body.modal-open { overflow: hidden; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* MOBILE */
@media (max-width: 900px) {
  .detail-services-grid { grid-template-columns: 1fr; }
  .top-contact-left { font-size: 0.8rem; }
  .top-contact-right { gap: 0.6rem; }
  .top-contact-right a { font-size: 0.7rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .process-step { padding: 0 0 2rem; }
  .clients-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-meta-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .photo-item { height: 220px; }
  .photo-item:first-child { grid-row: auto; }
  .footer-contact-grid { grid-template-columns: 1fr; gap: 1rem; }
  .footer-contact-details { max-width: none; }
  .footer-inner { flex-wrap: wrap; justify-content: center; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 600px) {
  .top-contact-inner { padding: 0 1rem; }
  .top-contact-left .top-address,
  .top-contact-left .top-sep { display: none; }
  .top-contact-left { min-width: 0; }
  .top-contact-right a { font-size: 0.68rem; }
  .top-contact-right { gap: 0.45rem; flex-wrap: wrap; justify-content: flex-end; }
  .top-main-site-link {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    width: 100%;
    text-align: right;
    font-size: 0.65rem;
  }
  .services-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr 1fr; }
  .why-features { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-meta-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-company { font-size: 1.7rem; }
  .logo-image, .footer-logo-image { height: 30px; }
  .hero-stats { flex-wrap: wrap; }
  .stat-item { flex: 1 1 40%; border-right: 1px solid rgba(255,255,255,0.12); }
  .footer-inner { flex-direction: column; gap: 0.7rem; }
  .footer-links { flex-wrap: wrap; gap: 0.85rem; justify-content: center; }
  .footer-contact-block h3 { font-size: 1.2rem; }
  .footer-contact-item h4 { font-size: 1.1rem; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; }
}

/* 404 / error page */
.page-error-main {
  min-height: calc(100vh - 200px);
  padding: 6.5rem 2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}
.page-error-inner {
  max-width: 38rem;
  margin: 0 auto;
}
.page-error-code {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(4rem, 14vw, 7.5rem);
  line-height: 1;
  color: var(--accent-light);
  opacity: 0.95;
  margin: 0;
}
.page-error-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  line-height: 1.15;
  color: #ffffff;
  margin: 1rem 0 1rem;
}
.page-error-text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
  margin: 0 0 2rem;
}
.page-error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
footer.page-error-footer {
  margin-top: 0;
}
.page-error-footer-inner {
  border-bottom: none;
  padding-bottom: 0.75rem;
}
