﻿/* =========================================
   STYLE2_V2.CSS - Homepage improvements (typography + CTA section)
   ========================================= */

/* 1) GLOBAL VARIABLES & RESET */
:root {
  --opel-yellow: #FFD700;
  --opel-black: #000000;
  --opel-dark: #0b0b0c;
  --opel-dark-grey: #1a1a1a;
  --opel-grey: #4a4a4a;
  --bg: #28292d;
  --text-white: #ffffff;
  --text-light: rgba(255, 255, 255, .78);
  --text-muted: rgba(255, 255, 255, .62);
  --border: rgba(255, 255, 255, .10);
  --border-strong: rgba(255, 255, 255, .16);
  --shadow: 0 14px 40px rgba(0, 0, 0, .35);
  --font-main: 'Manrope', sans-serif;

  /* Merged Variables */
  --bg-black: #0B0B0C;
  --bg-dark: #1a1b1e;
  --bg-mid: #2B2E33;
  --lite-bg: #efefef;
  --lite-card: #ffffff;
  --lite-border: rgba(0, 0, 0, .10);
  --lite-shadow: 0 18px 40px rgba(0, 0, 0, .12);
  --lite-shadow-strong: 0 24px 60px rgba(0, 0, 0, .18);
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  margin: 0;
  padding: 0;
  background-color: var(--bg);
  color: var(--text-white);
}

a {
  text-decoration: none;
  transition: all .25s ease;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.container--wide {
  max-width: 1600px;
}

/* Headings (no forced uppercase) */
h1,
h2,
h3,
h4 {
  font-family: var(--font-main);
  margin: 0 0 14px 0;
  line-height: 1.12;
  letter-spacing: -.02em;
}

h1 {
  font-weight: 800;
  font-size: clamp(34px, 3.8vw, 64px);
}

h2 {
  font-weight: 800;
  font-size: clamp(28px, 2.6vw, 44px);
}

h3 {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -.01em;
}

.nowrap {
  white-space: nowrap;
}

.section-title {
  text-align: center;
  margin-bottom: 12px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 64px;
  height: 3px;
  background: var(--opel-yellow);
  margin: 16px auto 0;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  font-size: 16px;
}

/* =========================================
   2) HERO SECTION
   ========================================= */
.omicron-hero-wrapper {
  position: relative;
  width: 100%;
  min-height: 520px;

  background: linear-gradient(120deg,
      var(--opel-black) 0%,
      var(--opel-black) 45%,

      var(--opel-grey) 45%,
      var(--opel-grey) 50%,

      var(--opel-yellow) 50%,
      var(--opel-yellow) 70%,

      var(--opel-grey) 70%,
      var(--opel-grey) 75%,

      var(--opel-black) 75%,
      var(--opel-black) 100%);

  display: flex;
  flex-direction: column;
  color: var(--text-white);
}

/* NAV */
.omicron-nav {
  width: 100%;
  padding: 40px 0 25px 0;
  z-index: 10;
}

.omicron-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.omicron-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.omicron-logo {
  opacity: 0;
  animation: slideInFromLeft 1s ease-out forwards;
}

.omicron-logo img {
  height: 96px;
  width: auto;
  display: block;
}

.omicron-logo a {
  display: block;
}

.omicron-slogan {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  line-height: 1;
  opacity: 0;
  animation: slideInFromRight 1s ease-out forwards;
  animation-delay: .2s;
}

.brand-opel {
  font-size: 44px;
  color: var(--opel-yellow);
  font-weight: 800;
  letter-spacing: 1px;
}

.brand-service {
  font-size: 22px;
  color: var(--text-white);
  font-weight: 600;
  letter-spacing: 3px;
  margin-left: 2px;
}

/* Right Nav */
.omicron-nav-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.omicron-top-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 800;
}

.phone-item {
  padding: 8px 18px;
  border: 2px solid #000;
  border-radius: 30px;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(6px);
}

.social-item {
  width: 40px;
  height: 40px;
  justify-content: center;
  background: #000;
  color: var(--opel-yellow);
  border-radius: 50%;
}

.phone-item:hover {
  background: #000;
  color: var(--opel-yellow);
  transform: translateY(-2px);
}

.social-item:hover {
  background: var(--opel-yellow);
  color: #000;
  transform: translateY(-3px);
}

/* Menu */
.omicron-menu {
  display: flex;
  gap: 12px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.omicron-menu li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.omicron-menu a {
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 8px 12px;
  border-radius: 8px;
  display: block;
}

/* Sub-menu Dropdown */
.omicron-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 240px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateY(10px);
  padding: 10px 0;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  z-index: 100;
  list-style: none;
  margin: 0;
}

.omicron-menu li:hover>.sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.omicron-menu .sub-menu li {
  display: block;
  width: 100%;
}

.omicron-menu .sub-menu a {
  display: block;
  padding: 10px 20px;
  border-radius: 0;
  text-transform: none;
  /* Make submenu less shouty */
  font-size: 14px;
  color: #000000;
}

.omicron-menu .sub-menu a:hover {
  background-color: #f5f5f5;
  color: var(--opel-yellow);
}

/* Hide Astra native toggle button in custom menu */
.omicron-menu .ast-menu-toggle {
  display: none !important;
}

.omicron-nav--home .omicron-menu>li>a {
  color: #000000;
}

.omicron-nav--home .omicron-menu>li>a:hover {
  color: #ffffff;
  background-color: #000000;
}

.omicron-nav--inner .omicron-menu a {
  color: #ffffff;
}

.omicron-nav--inner .omicron-menu a:hover {
  color: #000000;
  background-color: #ffffff;
}

/* Hero Content */
.omicron-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 5% 0;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.omicron-text {
  flex: 1;
  z-index: 5;
  max-width: 640px;
  opacity: 0;
  animation: omicronFadeUp 1s ease-out forwards;
  animation-delay: .45s;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--opel-yellow);
  color: #000;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  margin: 0 0 14px 0;
  box-shadow: 0 10px 18px rgba(0, 0, 0, .18);
}


.omicron-text h1 {
  margin: 0 0 14px 0;
  color: var(--text-white);
  text-transform: none;
}

.omicron-text h1 span {
  color: var(--opel-yellow);
}

.hero-subtitle {
  margin: 0 0 22px 0;
  color: var(--text-light);
  font-size: 18px;
  line-height: 1.6;
  max-width: 560px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.omicron-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--opel-yellow);
  color: var(--opel-black);
  padding: 14px 26px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
  cursor: pointer;
  border: 2px solid transparent;
}

.omicron-btn:hover {
  transform: translateY(-3px);
  background-color: #ffffff;
  color: var(--opel-black);
}

.omicron-btn--ghost {
  background: rgba(0, 0, 0, .20);
  color: #ffffff;
  border-color: rgba(255, 255, 255, .25);
  box-shadow: none;
}

.omicron-btn--ghost:hover {
  background: #000;
  color: var(--opel-yellow);
  border-color: #000;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.hero-trust i {
  color: var(--opel-yellow);
  margin-right: 6px;
}

.omicron-image {
  flex: 1.2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.omicron-car {
  width: 110%;
  max-width: 860px;
  height: auto;
  display: block;
  transform: translateX(200px);
  opacity: 0;
  animation: omicronDriveIn 1.2s cubic-bezier(.2, .8, .2, 1) forwards;
  animation-delay: .25s;
  filter: drop-shadow(0 24px 24px rgba(0, 0, 0, .35));
}

/* Animations */
@keyframes omicronDriveIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes omicronFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* =========================================
   3) SERVICES SECTION
   ========================================= */
.services-grid-section {
  padding: 90px 0 78px;
  background-color: #2c2f34;
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  align-items: stretch;
}

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.service-card {
  background: rgba(0, 0, 0, .18);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, .10), rgba(0, 0, 0, 0) 55%);
  opacity: 0;
  transition: opacity .25s ease;
}

.service-card:hover {
  border-color: rgba(255, 215, 0, .55);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card:hover::before {
  opacity: 1;
}

.icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: rgba(255, 215, 0, .08);
  border: 1px solid rgba(255, 215, 0, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  position: relative;
  z-index: 1;
}

.service-icon-img {
  max-height: 44px;
  width: auto;
  display: block;
}

.service-card h3 {
  margin: 0 0 10px 0;
  color: #ffffff;
  text-transform: none;
  position: relative;
  z-index: 1;
}

.service-desc {
  margin: 0 0 auto 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.read-more {
  margin-top: 18px;
  font-size: 12px;
  color: var(--opel-yellow);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.read-more i {
  font-size: 11px;
}


/* =========================================
   4) FREE CHECK CTA SECTION
   ========================================= */
.free-check-section {
  padding: 78px 0;
  position: relative;
  overflow: hidden;
  background-color: #24262b;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.free-check-section::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -14%;
  width: 62%;
  height: 190%;
  background: var(--opel-yellow);
  transform: skewX(-18deg);
  opacity: .95;
}

.free-check {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 24px;
  background: rgba(0, 0, 0, .55);
  border: 1px solid rgba(0, 0, 0, .35);
  border-radius: 18px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.free-check__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: var(--opel-yellow);
  font-weight: 900;
  letter-spacing: .12em;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  margin: 0 0 14px 0;
  width: max-content;
}

.free-check__content h2 {
  margin: 0 0 12px 0;
  color: #fff;
}

.free-check__lead {
  margin: 0 0 18px 0;
  color: rgba(255, 255, 255, .80);
  line-height: 1.7;
  font-size: 16px;
  max-width: 560px;
}

.free-check__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 10px 0;
}

.free-check__note {
  margin: 8px 0 0 0;
  color: rgba(255, 255, 255, .70);
  font-size: 13px;
}

.free-check__list {
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  padding: 22px 22px 10px 22px;
}

.free-check__list h3 {
  margin: 0 0 14px 0;
  color: #fff;
  font-size: 16px;
}

.checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 0;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, .85);
  font-size: 13px;
  line-height: 1.5;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #000;
  box-shadow: inset 0 0 0 2px rgba(255, 215, 0, .95);
}


/* =========================================
   5) ESHOP BANNER SECTION
   ========================================= */
.eshop-banner-section {
  padding: 78px 0;
  background-color: #2b2e33;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.eshop-banner-container {
  display: flex;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.76) 52%, rgba(0, 0, 0, 0.20) 100%),
    url('../images/eshop-banner-2.jpg');
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  min-height: 416px;
  position: relative;
  overflow: hidden;
}

.eshop-left {
  width: 66%;
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.shop-label {
  background-color: #101113;
  color: var(--opel-yellow);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 18px;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 10px;
}

.eshop-left h2 {
  color: #ffffff;
  font-size: clamp(26px, 2.4vw, 44px);
  margin: 0 0 14px 0;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.06;
  text-transform: none;
}

.text-highlight {
  color: var(--opel-yellow);
}

.eshop-left p {
  color: rgba(255, 255, 255, .74);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 22px 0;
  max-width: 92%;
}

.eshop-btn {
  background-color: var(--opel-yellow);
  color: #000;
  padding: 14px 22px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: none;
  border: 2px solid transparent;
}

.eshop-btn:hover {
  background-color: #fff;
  transform: translateY(-2px);
}



/* =========================================
   5.5) FOLLOW + LOCATION SECTION
   ========================================= */
.follow-location-section {
  padding: 72px 0;
  background-color: #24262b;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.follow-location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.follow-card,
.location-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .26);
  padding: 34px;
}

.follow-card::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 20% 20%, rgba(255, 215, 0, .16), rgba(0, 0, 0, 0) 55%);
  pointer-events: none;
}

.follow-title {
  margin: 0 0 10px 0;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.follow-subtitle {
  margin: 0 0 18px 0;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 15px;
  max-width: 520px;
}

.follow-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--opel-yellow);
  color: #000;
  border: 2px solid transparent;
}

.follow-btn:hover {
  transform: translateY(-2px);
  background: #fff;
}

.follow-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .22);
  color: #fff;
}

.follow-btn--ghost:hover {
  background: #000;
  color: var(--opel-yellow);
  border-color: #000;
}

.location-address {
  margin: 0 0 18px 0;
  color: rgba(255, 255, 255, .86);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
}

.location-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: #000;
  color: var(--opel-yellow);
  border: 1px solid rgba(255, 215, 0, .30);
}

.location-btn:hover {
  background: var(--opel-yellow);
  color: #000;
  transform: translateY(-2px);
}


/* =========================================
   6) FOOTER
   ========================================= */
.site-footer {
  background-color: #0a0a0a;
  padding: 56px 0 40px;
  color: rgba(255, 255, 255, .70);
  border-top: 1px solid rgba(255, 255, 255, .10);
  text-align: left;
}

.site-footer .footer-top {
  text-align: center;
  margin: 0 auto 26px;
  max-width: 980px;
}

.site-footer .footer-title {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.site-footer .footer-lead {
  margin: 0 auto;
  color: rgba(255, 255, 255, .68);
  font-size: 15px;
  line-height: 1.6;
  max-width: 720px;
}

.footer-divider {
  margin-top: 28px;
}

.footer-divider__accent {
  display: block;
  width: 78px;
  height: 3px;
  background: #FFD400;
  border-radius: 999px;
  margin: 0 auto 16px;
  box-shadow: 0 10px 30px rgba(255, 212, 0, .16);
}

.footer-divider::after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, .10);
}

.footer-credits p {
  margin: 5px 0;
  font-size: 14px;
}

.credits-secondary {
  font-size: 12px;
  opacity: .75;
}


/* =========================================
   6.2) FOOTER - FOLLOW + LOCATION (moved here)
   ========================================= */
.footer-follow-location {
  margin-bottom: 26px;
}

.site-footer .follow-location {
  margin: 0;
}

.site-footer .follow-card,
.site-footer .location-card {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .12);
}

.site-footer .footer-credits {
  text-align: center;
  margin-top: 18px;
}



/* =========================================
   6.5) MOBILE MENU (Burger)
   ========================================= */
.omicron-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, .14);
  color: var(--opel-yellow);
  cursor: pointer;
  transition: all .25s ease;
}

.omicron-burger:hover {
  background: var(--opel-yellow);
  color: #000;
  transform: translateY(-2px);
}

body.menu-open {
  overflow: hidden;
}

.omicron-mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .58);
  display: none;
  padding: 18px;
  z-index: 9999;
}

.omicron-mobile-menu.is-open {
  display: block;
}

.omicron-mobile-menu__panel {
  max-width: 560px;
  margin: 96px auto 0 auto;
  background: var(--opel-dark);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.omicron-mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.omicron-mobile-menu__title {
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -.01em;
}

.omicron-mobile-close {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.omicron-mobile-close:hover {
  background: rgba(255, 255, 255, .08);
}

.omicron-mobile-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  color: #fff;
  font-weight: 900;
  margin: 10px 0 14px 0;
}

.omicron-mobile-links a {
  display: block;
  padding: 12px 10px;
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  letter-spacing: .02em;
}

.omicron-mobile-links a:hover {
  background: rgba(255, 215, 0, .10);
  color: var(--opel-yellow);
}

.omicron-mobile-socials {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.omicron-mobile-socials .social-item {
  width: 46px;
  height: 46px;
  background: var(--opel-yellow);
  color: #000;
  border: 1px solid rgba(0, 0, 0, .25);
  box-shadow: 0 10px 18px rgba(0, 0, 0, .25);
}

.omicron-mobile-socials .social-item:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

/* =========================================
   7) RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .omicron-hero-wrapper {
    background: linear-gradient(160deg, var(--opel-black) 40%, var(--opel-grey) 50%, var(--opel-yellow) 50.1%);
  }

  .omicron-nav {
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, .68);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 14px 0;
  }

  .omicron-nav-right {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .omicron-menu {
    display: none;
  }

  .omicron-burger {
    display: inline-flex;
  }

  .info-item {
    color: #fff;
  }

  .phone-item {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .12);
    color: #fff;
  }

  .phone-item:hover {
    background: var(--opel-yellow);
    color: #000;
    border-color: var(--opel-yellow);
    transform: translateY(-2px);
  }

  .omicron-top-info .social-item {
    display: none;
  }

  .omicron-content {
    flex-direction: column;
    text-align: center;
    padding-top: 34px;
  }

  .omicron-text {
    max-width: 760px;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  /* Mobile readability on yellow background */
  .hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, .92);
    color: #000;
    padding: 7px 10px;
    border-radius: 999px;
    font-weight: 900;
  }

  .hero-trust i {
    color: #000;
  }

  .omicron-image {
    justify-content: center;
    width: 100%;
    margin-top: 26px;
  }

  .omicron-car {
    width: 100%;
    transform: translateX(0);
    animation-name: omicronFadeUp;
  }

  .service-card {
    text-align: center;
  }

  .icon-wrapper {
    margin: 0 auto 16px auto;
  }

  .free-check {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .free-check-section::before {
    top: -55%;
    right: -30%;
    width: 90%;
    height: 220%;
    transform: skewX(-12deg);
  }

  .checklist {
    grid-template-columns: 1fr;
  }

  .eshop-left {
    width: 100%;
    padding: 38px;
  }

  .follow-location {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 680px) {
  .omicron-top-info .phone-item {
    display: none;
  }

  .omicron-nav {
    padding: 12px 0;
  }
}

@media (max-width: 480px) {
  .omicron-logo img {
    height: 80px;
  }

  .omicron-content {
    padding-top: 44px;
  }

  .hero-trust span {
    padding: 6px 9px;
    font-size: 12px;
  }

  .site-footer {
    padding: 52px 0 36px;
  }

  .site-footer .footer-title {
    font-size: 22px;
  }

  .site-footer .footer-lead {
    font-size: 14px;
  }
}




/* =========================================
   7) FOOTER β€” MINIMAL (v7)
   ========================================= */
.site-footer {
  padding: 52px 0 38px;
}

.site-footer .footer-top {
  margin-bottom: 16px;
}

.site-footer .footer-title {
  margin-bottom: 0;
}

.site-footer .footer-contact {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 56px;
  padding: 22px 0 14px;
}

.site-footer .footer-col {
  flex: 1;
  min-width: 280px;
}

.site-footer .footer-col__title {
  margin: 0 0 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.site-footer .footer-socials {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer .footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .88);
  font-weight: 800;
  text-decoration: none;
  padding: 6px 0;
}

.site-footer .footer-social i {
  width: 20px;
  text-align: center;
  color: var(--opel-yellow);
  font-size: 18px;
}

.site-footer .footer-social span {
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  padding-bottom: 2px;
}

.site-footer .footer-social:hover {
  color: #fff;
}

.site-footer .footer-social:hover span {
  border-bottom-color: var(--opel-yellow);
  color: var(--opel-yellow);
}

.site-footer .footer-address {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.55;
}

.site-footer .footer-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--opel-yellow);
  font-weight: 900;
  text-decoration: none;
}

.site-footer .footer-link i {
  color: var(--opel-yellow);
}

.site-footer .footer-link:hover {
  text-decoration: underline;
}

.site-footer .footer-divider {
  margin-top: 8px;
}

@media (max-width: 820px) {
  .site-footer .footer-contact {
    flex-direction: column;
    gap: 18px;
    padding: 18px 0 10px;
  }

  .site-footer .footer-top {
    text-align: left;
  }
}


/* =========================================
   6.X) FOOTER V8 (Logo + Mini Profile + Map)
   ========================================= */
.site-footer {
  padding: 56px 0 36px;
}

.site-footer .footer-main {
  display: flex;
  gap: 56px;
  align-items: flex-start;
  padding: 8px 0 18px;
}

.site-footer .footer-left {
  flex: 1.3;
  min-width: 0;
}

.site-footer .footer-right {
  flex: 0.9;
  min-width: 0;
}

.site-footer .footer-brandline {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.site-footer .footer-logo img {
  width: 58px;
  height: auto;
  display: block;
}

.site-footer .footer-brandname {
  font-weight: 800;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.1;
}

.site-footer .footer-brandtag {
  margin-top: 4px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.25;
}

.site-footer .footer-about {
  margin: 0 0 16px;
  max-width: 720px;
  color: rgba(255, 255, 255, .68);
  line-height: 1.65;
  font-size: 14px;
}

.site-footer .footer-about strong {
  color: #ffffff;
  font-weight: 800;
}

.site-footer .footer-socials-inline {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.site-footer .footer-social-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .86);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}

.site-footer .footer-social-chip i {
  color: var(--opel-yellow);
}

.site-footer .footer-social-chip:hover {
  border-color: rgba(255, 212, 0, .60);
  background: rgba(255, 212, 0, .08);
}

.site-footer .footer-right .footer-col__title {
  margin: 0 0 12px;
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
}

.site-footer .footer-map {
  margin-top: 14px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
}

.site-footer .footer-map iframe {
  display: block;
  width: 100%;
  height: 260px;
}

@media (max-width: 900px) {
  .site-footer .footer-main {
    flex-direction: column;
    gap: 24px;
  }

  .site-footer .footer-logo img {
    width: 54px;
  }

  .site-footer .footer-about {
    font-size: 14px;
  }

  .site-footer .footer-map iframe {
    height: 240px;
  }
}

@media (max-width: 520px) {
  .site-footer {
    padding: 46px 0 32px;
  }

  .site-footer .footer-map iframe {
    height: 220px;
  }
}

/* Services page styles (keeps the same Omicron / Opel black-yellow language) */

/* :root variables moved to top */

.nobr {
  white-space: nowrap;
}

.omicron-hero-services {
  position: relative;
  background: radial-gradient(circle at 60% 40%, rgba(255, 255, 255, .10), rgba(0, 0, 0, 0) 45%),
    linear-gradient(135deg, rgba(0, 0, 0, .85), rgba(0, 0, 0, .65)),
    url("../images/services/hero-workshop.jpg") center/cover no-repeat;
}

.omicron-hero-services::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(0, 0, 0, .25), rgba(0, 0, 0, .85) 70%),
    linear-gradient(120deg, rgba(255, 212, 0, .10) 0%, rgba(255, 212, 0, 0) 40%);
  pointer-events: none;
}

.services-hero {
  position: relative;
  z-index: 1;
  padding: 76px 0 70px;
}

.services-hero__inner {
  display: flex;
}

.services-hero__content {
  max-width: 720px;
  padding: 10px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-badge--yellow {
  background: var(--opel-yellow);
  border-color: var(--opel-yellow);
  color: #000;
}

.services-hero__title {
  margin: 18px 0 12px;
  font-size: 56px;
  line-height: 1.02;
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.services-hero__subtitle {
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 20px;
  max-width: 680px;
}

.services-hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  letter-spacing: .03em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.btn--primary {
  background: var(--opel-yellow);
  color: #000;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .35);
}

.btn--primary:hover {
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-color: rgba(255, 255, 255, .12);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-2px);
}

.services-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  margin: 10px 0 18px;
}

.services-hero__trust i {
  color: var(--opel-yellow);
  margin-right: 6px;
}

.services-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.services-hero__chips a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .35);
  border: 1px solid rgba(255, 255, 255, .10);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.services-hero__chips a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 212, 0, .55);
  background: rgba(0, 0, 0, .45);
}

/* Intro */
.services-intro {
  padding: 64px 0 26px;
  background: #2B2E33;
}

.section-title {
  color: #fff;
  text-align: center;
  margin: 0;
  font-size: 36px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  max-width: 860px;
  margin: 14px auto 0;
  text-align: center;
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  line-height: 1.75;
}

/* Service rows */
.services-list {
  background: #2B2E33;
  padding: 26px 0 70px;
}

.service-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 22px;
  align-items: stretch;
  margin: 22px 0;
}

.service-row--reverse {
  grid-template-columns: 1fr 1.05fr;
}

.service-row--reverse .service-card {
  order: 2;
}

.service-row--reverse .service-media {
  order: 1;
}

.service-card {
  background: rgba(0, 0, 0, .35);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  padding: 22px 22px 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 212, 0, .12);
  border: 1px solid rgba(255, 212, 0, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--opel-yellow);
  margin-bottom: 14px;
}

.service-card h3 {
  color: #fff;
  font-size: 22px;
  margin: 0 0 10px;
}

.service-card p {
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
  margin: 0 0 12px;
}

.service-bullets {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.7;
}

.service-actions {
  margin-top: 14px;
}

.mini-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--opel-yellow);
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
}

.mini-link:hover {
  text-decoration: underline;
}

.service-media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(0, 0, 0, .35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .22);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 320px;
  filter: contrast(1.05) saturate(1.02);
}

/* Free check block */
.free-check-block {
  background: linear-gradient(135deg, #24272c 0%, #2b2e33 55%, #2b2e33 100%);
  padding: 70px 0 78px;
  position: relative;
  overflow: hidden;
}

.free-check-block::before {
  content: "";
  position: absolute;
  top: -35%;
  right: -8%;
  width: 52%;
  height: 180%;
  background: var(--opel-yellow);
  transform: skewX(-18deg);
  opacity: 1;
}

.free-check-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items: start;
}

.free-check-left {
  background: rgba(0, 0, 0, .38);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 22px 44px rgba(0, 0, 0, .25);
}

.free-check-left h2 {
  margin: 14px 0 10px;
  color: #fff;
  font-size: 34px;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.free-check-left p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.75;
}

.free-check-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 12px 0 8px;
}

.free-check-left small {
  color: rgba(255, 255, 255, .55);
}

.free-check-right {
  background: rgba(0, 0, 0, .18);
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, .18);
}

.checklist h3 {
  margin: 0 0 10px;
  color: #111;
  font-weight: 900;
}

.checklist {
  background: rgba(255, 212, 0, .18);
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 14px;
  padding: 16px 16px 14px;
}

.checklist ul {
  margin: 0;
  padding-left: 18px;
  columns: 2;
  column-gap: 24px;
  color: #111;
  line-height: 1.75;
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .services-hero__title {
    font-size: 48px;
  }

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

  .service-row--reverse .service-card {
    order: 1;
  }

  .service-row--reverse .service-media {
    order: 2;
  }

  .service-media img {
    min-height: 260px;
  }

  .free-check-inner {
    grid-template-columns: 1fr;
  }

  .checklist ul {
    columns: 1;
  }
}

@media (max-width: 768px) {
  .services-hero {
    padding: 70px 0 56px;
  }

  .services-hero__title {
    font-size: 38px;
  }

  .services-hero__subtitle {
    font-size: 16px;
  }

  /* make trust on yellow readable if it overlaps; keep them as chips */
  .services-hero__trust span {
    background: rgba(0, 0, 0, .35);
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .10);
  }

  /* Hide phone pill in header on mobile to keep burger clean */
  .omicron-top-info .phone-item {
    display: none;
  }

  .checklist ul {
    columns: 1;
  }
}

/*
  SERVICES_STYLE3.CSS
  Body/layout inspired by the light (white/grey) services-list reference image,
  while keeping header/menu colors + CTA text from style2_v8.
*/

/* :root variables moved to top */

/* Light main area only (hero wrapper stays dark/brand) */
.services-page--light {
  background: var(--lite-bg);
  color: #111;
}

/* Sections */
.services-light {
  padding: 62px 0 22px;
}

.services-light+.services-light {
  padding-top: 18px;
}

/* Section header: title + horizontal rule (like the reference image) */
.light-section-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 22px;
}

.light-section-head h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #111;
  white-space: nowrap;
}

.light-section-head::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(0, 0, 0, .18);
}

/* Service rows */
.light-row {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 26px;
  align-items: stretch;
  margin: 28px 0;
}

.light-row--reverse {
  grid-template-columns: 1fr 420px;
}

.light-row--reverse .light-card {
  order: 2;
}

.light-row--reverse .light-media {
  order: 1;
}

/* Cards */
.light-card {
  background: var(--lite-card);
  border: 1px solid var(--lite-border);
  border-radius: 14px;
  padding: 24px 24px 20px;
  box-shadow: var(--lite-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.light-card--dark {
  background: #0e0e10;
  border-color: rgba(255, 255, 255, .10);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .25);
}

.light-card-top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.light-icon {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 2px solid var(--opel-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  flex: 0 0 54px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .10);
}

.light-card--dark .light-icon {
  background: transparent;
  color: var(--opel-yellow);
  box-shadow: none;
}

.light-title {
  margin: 4px 0 6px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #111;
  line-height: 1.15;
}

.light-card--dark .light-title {
  color: #fff;
}

.light-text {
  margin: 0;
  color: rgba(0, 0, 0, .62);
  line-height: 1.65;
  font-size: 14px;
}

.light-card--dark .light-text {
  color: rgba(255, 255, 255, .70);
}

.light-divider {
  height: 1px;
  background: rgba(0, 0, 0, .12);
  margin: 16px 0 14px;
}

.light-card--dark .light-divider {
  background: rgba(255, 255, 255, .16);
}

.light-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
  justify-content: space-between;
}

/* Reuse the CTA look from style2_v8, but make them more "rect" like the reference */
.light-actions .omicron-btn,
.tile-actions .omicron-btn {
  padding: 10px 16px;
  font-size: 12px;
  border-radius: 12px;
}

.light-actions .omicron-btn--ghost {
  border-color: rgba(0, 0, 0, .26);
  color: #000;
}

.light-card--dark .light-actions .omicron-btn--ghost {
  border-color: rgba(255, 255, 255, .22);
  color: #fff;
}

/* Media */
.light-media {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .10);
  box-shadow: var(--lite-shadow);
  background: #dcdcdc;
}

.light-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
  filter: contrast(1.04) saturate(1.02);
}

/* Tiles section (two wide banners like the reference bottom area) */
.services-light-tiles {
  padding: 18px 0 64px;
}

.tiles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.service-tile {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 260px;
  background: var(--tile-img) center/cover no-repeat;
  border: 1px solid rgba(0, 0, 0, .10);
  box-shadow: var(--lite-shadow-strong);
}

.service-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .70) 0%, rgba(0, 0, 0, .42) 52%, rgba(0, 0, 0, .08) 100%);
}

.tile-content {
  position: absolute;
  left: 22px;
  bottom: 20px;
  right: 22px;
  color: #fff;
  max-width: 560px;
}

.tile-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.tile-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 2px solid var(--opel-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--opel-yellow);
}

.tile-title {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.tile-text {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .80);
  font-size: 14px;
  line-height: 1.6;
  max-width: 520px;
}

.tile-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tile-actions .omicron-btn--ghost {
  background: rgba(0, 0, 0, .18);
  border-color: rgba(255, 255, 255, .20);
  color: #fff;
}

.tile-actions .omicron-btn--ghost:hover {
  background: #000;
  color: var(--opel-yellow);
  border-color: #000;
}

/* Responsive */
@media (max-width: 1100px) {

  .light-row,
  .light-row--reverse {
    grid-template-columns: 1fr;
  }

  .light-row--reverse .light-card {
    order: 1;
  }

  .light-row--reverse .light-media {
    order: 2;
  }

  .tiles-grid {
    grid-template-columns: 1fr;
  }

  .tile-content {
    max-width: 640px;
  }
}

@media (max-width: 520px) {
  .light-section-head h2 {
    font-size: 16px;
    letter-spacing: .12em;
  }

  .light-card {
    padding: 20px;
  }

  .light-card-top {
    gap: 12px;
  }

  .light-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .light-media img {
    min-height: 220px;
  }

  .service-tile {
    min-height: 240px;
  }
}