/* ===================================================
   MH-KKE Startseite – Haupt-Stylesheet
   Mölls-Hüfing Kälte-, Klima- und Energietechnik
   =================================================== */

/* ─── Design Tokens ─── */
:root {
  --white:       #ffffff;
  --off-white:   #f5f7fa;
  --mist:        #eef1f6;
  --navy:        #0f2340;
  --navy-mid:    #1a3458;
  --blue:        #1e5fa8;
  --blue-light:  #2d7dd2;
  --accent:      #3a9be0;
  --accent-soft: #e8f4fd;
  --gray-100:    #f0f2f5;
  --gray-200:    #dde2ea;
  --gray-400:    #8a95a3;
  --gray-600:    #4a5568;
  --gray-800:    #1e2a35;
  --text-body:   #2d3748;
  --text-light:  #5a6478;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 4px rgba(15,35,64,.06);
  --shadow-md:   0 4px 16px rgba(15,35,64,.10);
  --shadow-lg:   0 12px 40px rgba(15,35,64,.14);
  --font-head:   'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --font-body:   'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --max-w:       1200px;
  --transition:  .22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Typography ─── */
.eyebrow {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.18; color: var(--navy); }
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }
p { color: var(--text-body); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30,95,168,.30);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.8);
}
.btn-outline-dark {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-dark:hover {
  background: var(--blue);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--blue);
  border-color: transparent;
  padding-left: 0;
  font-size: .875rem;
}
.btn-ghost:hover { color: var(--navy); gap: 12px; }

/* ─── Navigation ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
}
.logo-sub {
  font-size: .68rem;
  color: var(--gray-400);
  letter-spacing: .03em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: .82rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 6px 9px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--blue); background: var(--accent-soft); }
.nav-links a.active { color: var(--blue); }
.nav-cta { flex-shrink: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: transparent;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .25s;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  flex-direction: column;
  padding: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.mobile-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--navy);
  padding: 4px;
}
.mobile-nav { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mobile-nav a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--blue); }
.mobile-menu-cta { margin-top: 32px; }
.mobile-menu-cta .btn { width: 100%; justify-content: center; }

/* ─── Hero ─── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  min-height: 86vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10,22,40,.88) 0%, rgba(15,35,64,.72) 50%, rgba(10,28,56,.55) 100%);
  z-index: 1;
}
.hero-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img-wrap img,
.hero-placeholder-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-placeholder-bg {
  background: linear-gradient(135deg, #0a2038 0%, #1a3e6e 40%, #1e5fa8 70%, #2d7dd2 100%);
}
/* Tech grid overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.03) 0px, transparent 1px, transparent 60px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.03) 0px, transparent 1px, transparent 60px);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(58,155,224,.18);
  border: 1px solid rgba(58,155,224,.35);
  color: #7dc8f0;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3rem);
}
.hero h1 span { color: var(--accent); }
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,.78);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.88);
  font-size: .8rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 100px;
}
.hero-badge svg { flex-shrink: 0; color: var(--accent); }
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.hero-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-card-icon svg { width: 22px; height: 22px; color: #fff; }
.hero-card-body h4 { color: var(--white); font-size: .95rem; margin-bottom: 4px; }
.hero-card-body p { color: rgba(255,255,255,.65); font-size: .82rem; line-height: 1.5; }

/* ─── Trust bar ─── */
.trust-bar {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.08);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
  padding: 0 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 16px;
  color: rgba(255,255,255,.8);
  font-size: .83rem;
  font-weight: 500;
  flex: 1;
  min-width: 150px;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.trust-item:last-child { border-right: none; }
.trust-item svg { color: var(--accent); flex-shrink: 0; }

/* ─── Section utility ─── */
.section { padding: 88px 0; }
.section-sm { padding: 64px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); }
.section-mist { background: var(--mist); }
.section-header { margin-bottom: 52px; }
.section-header-center { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section-header h2 { margin-top: 10px; margin-bottom: 14px; }
.section-header p,
.section-header-center p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ─── Services ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--blue);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 26px; height: 26px; color: var(--blue); }
.service-card h3 { margin-bottom: 10px; color: var(--navy); font-size: 1.05rem; }
.service-card p { font-size: .875rem; color: var(--text-light); line-height: 1.65; flex: 1; margin-bottom: 20px; }

/* ─── Why section ─── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.why-text h2 { margin: 10px 0 20px; }
.why-text > p { font-size: 1.025rem; color: var(--text-light); margin-bottom: 36px; line-height: 1.75; }
.why-points { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-point-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 2px solid var(--blue);
  color: var(--blue);
  font-weight: 700;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-head);
}
.why-point-body h4 { font-size: .95rem; margin-bottom: 4px; color: var(--navy); }
.why-point-body p { font-size: .855rem; color: var(--text-light); line-height: 1.6; }
.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.why-stat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.why-stat-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  grid-column: span 2;
}
.why-stat-icon { font-size: 2rem; margin-bottom: 8px; }
.why-stat-label { font-size: .8rem; font-weight: 600; color: var(--text-light); letter-spacing: .05em; text-transform: uppercase; }
.why-stat-card.featured .why-stat-label { color: rgba(255,255,255,.6); }
.why-stat-value { font-size: 1.35rem; font-weight: 700; color: var(--navy); font-family: var(--font-head); margin-top: 4px; }
.why-stat-card.featured .why-stat-value { color: var(--white); }
.why-stat-card.featured .why-stat-icon { color: var(--accent); }

/* ─── Process ─── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blue);
  color: var(--blue);
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--font-head);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
}
.process-step.active .process-num {
  background: var(--blue);
  color: var(--white);
}
.process-step h3 { font-size: .95rem; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: .825rem; color: var(--text-light); line-height: 1.6; }

/* ─── Private / Commercial split sections ─── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
}
.split-visual {
  position: relative;
  overflow: hidden;
  min-height: 440px;
}
.split-visual-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.split-visual-placeholder.home-bg {
  background: linear-gradient(135deg, #d4e8f8 0%, #a8d4f0 40%, #7abde8 100%);
}
.split-visual-placeholder.business-bg {
  background: linear-gradient(135deg, #0f2340 0%, #1a3458 40%, #1e5fa8 70%);
}
.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-content {
  padding: 64px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.split-section.flipped .split-visual { order: 2; }
.split-section.flipped .split-content { order: 1; background: var(--navy); }
.split-section.flipped h2 { color: var(--white); }
.split-section.flipped p { color: rgba(255,255,255,.75); }
.split-section.flipped .split-bullets li { color: rgba(255,255,255,.75); }
.split-section.flipped .split-bullets li::before { color: var(--accent); }
.split-bullets {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin: 20px 0 32px;
}
.split-bullets li {
  font-size: .875rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.split-bullets li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── Maintenance ─── */
.maintenance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.maintenance-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 36px;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}
.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-icon svg { width: 20px; height: 20px; color: #fff; }
.benefit-item h4 { font-size: .9rem; color: var(--navy); }
.benefit-item p { font-size: .82rem; color: var(--text-light); }
.maintenance-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 380px;
  position: relative;
}
.maintenance-visual img { width: 100%; height: 100%; object-fit: cover; }
.maintenance-placeholder {
  width: 100%;
  height: 100%;
  min-height: 380px;
  background: linear-gradient(135deg, #1a3458 0%, #1e5fa8 60%, #2d7dd2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}

/* ─── Gallery ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--gray-100);
  cursor: pointer;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-card:hover img { transform: scale(1.05); }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.75) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-tag {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 6px;
}
.gallery-desc { color: rgba(255,255,255,.9); font-size: .82rem; line-height: 1.4; }
.gallery-badge-always {
  position: absolute;
  top: 12px;
  left: 12px;
}

/* ─── FAQ ─── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--blue); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-question.open .faq-icon {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding-bottom: 20px;
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.75;
}
.faq-answer.open { display: block; }

/* ─── CTA Banner ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1e5fa8 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(58,155,224,.08);
  top: -200px;
  right: -100px;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 96px 24px;
}
.cta-inner h2 { color: var(--white); margin: 12px 0 16px; }
.cta-inner p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 580px; margin: 0 auto 36px; line-height: 1.75; }
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.btn-white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.btn-white:hover { background: var(--off-white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,255,255,.25); }

/* ─── Regional Section ─── */
.regional-section {
  background: var(--navy);
  color: var(--white);
}
.regional-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.regional-text h2 { color: var(--white); margin: 10px 0 18px; }
.regional-text p { color: rgba(255,255,255,.78); line-height: 1.75; margin-bottom: 16px; font-size: 1rem; }
.regional-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 32px;
}
.regional-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 100px;
}
.regional-tag svg { color: var(--accent); flex-shrink: 0; }
.regional-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.regional-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.regional-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.regional-card-icon svg { width: 20px; height: 20px; color: #fff; }
.regional-card h4 { color: var(--white); font-size: .9rem; margin-bottom: 2px; }
.regional-card p { color: rgba(255,255,255,.6); font-size: .8rem; line-height: 1.5; }

/* ─── Footer ─── */
.site-footer {
  background: #08172b;
  color: rgba(255,255,255,.7);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 64px 24px 48px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}
.footer-name { font-family: var(--font-head); font-size: .9rem; font-weight: 700; color: var(--white); }
.footer-brand p { font-size: .855rem; line-height: 1.7; margin-bottom: 20px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
}
.footer-contact-item svg { color: var(--accent); flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--white); }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: .855rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-hours { font-size: .855rem; line-height: 1.8; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-legal a:hover { color: var(--white); }

/* ─── Logo Images ─── */
.header-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}
.hero-logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.hero-logo-img {
  width: 185px;
  height: auto;
  border-radius: 14px;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,.6));
}

/* ─── Contact Grid ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

/* ─── Responsive ─── */
@media (max-width: 1140px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .regional-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .trust-bar-inner { flex-direction: column; }
  .trust-item { width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 14px 16px; }
  .trust-item:last-child { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .split-section { grid-template-columns: 1fr; }
  .split-section.flipped .split-visual { order: 0; }
  .split-section.flipped .split-content { order: 1; }
  .split-visual { min-height: 260px; }
  .split-content { padding: 40px 24px; }
  .split-bullets { grid-template-columns: 1fr; }
  .maintenance-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .header-logo-img { width: 40px; height: 40px; }
  .hero-logo-img { width: 100px; }
  .contact-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .regional-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  .hero-logo-img { width: 80px; }
}
