:root {
  --blue-950: #061327;
  --blue-900: #081b34;
  --blue-800: #0a2c59;
  --blue-700: #0d4384;
  --blue-600: #145fc4;
  --cyan-500: #18c7f5;
  --cyan-400: #49dcff;
  --slate-900: #111827;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --heritage: #e3342f;
  --shadow-soft: 0 18px 55px rgba(8, 27, 52, 0.12);
  --shadow-card: 0 14px 35px rgba(8, 27, 52, 0.08);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate-900);
  background: var(--slate-50);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body::selection {
  color: var(--blue-950);
  background: var(--cyan-400);
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(24, 199, 245, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 24px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue-800);
  border-radius: var(--radius-sm);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 18px;
}

.site-shell {
  overflow: hidden;
}

.container {
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(6, 19, 39, 0);
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  border-bottom-color: rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 36px rgba(8, 27, 52, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(300px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 1.4vw, 24px);
  min-height: 68px;
}

.site-header .header-inner {
  width: min(1560px, calc(100% - 64px));
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 300px;
}

.brand-logo-wrap {
  position: relative;
  display: block;
  width: clamp(180px, 15vw, 235px);
  aspect-ratio: 1251 / 241;
}

.brand-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.22s ease;
}

.brand-logo-on-light {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-on-dark {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-on-light {
  opacity: 1;
}

.site-footer .brand-logo-wrap {
  width: 210px;
}

.site-footer .footer-grid > section:first-child {
  display: grid;
  justify-items: center;
  text-align: center;
}

.site-footer .brand {
  justify-content: center;
  min-width: 0;
}

.site-footer .brand-logo-on-dark {
  opacity: 1;
}

.site-footer .brand-logo-on-light {
  opacity: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand-name {
  display: block;
  color: var(--white);
  font-size: 1.16rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  transition: color 0.22s ease;
}

.brand-subtitle {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.22s ease;
}

.site-header.is-scrolled .brand-name,
.site-header.is-menu-open .brand-name {
  color: var(--blue-950);
}

.site-header.is-scrolled .brand-subtitle,
.site-header.is-menu-open .brand-subtitle {
  color: var(--slate-600);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  cursor: pointer;
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-scrolled .menu-toggle,
.site-header.is-menu-open .menu-toggle {
  color: var(--blue-950);
  background: rgba(20, 95, 196, 0.08);
  border-color: rgba(20, 95, 196, 0.12);
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.main-nav {
  justify-self: center;
  min-width: 0;
}

.main-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2px, 0.35vw, 8px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.main-nav a,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  min-height: 38px;
  padding: 0 9px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 750;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.22s ease, background 0.22s ease;
}

.site-header.is-scrolled .main-nav a,
.site-header.is-scrolled .nav-trigger,
.site-header.is-menu-open .main-nav a,
.site-header.is-menu-open .nav-trigger {
  color: var(--slate-700);
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.nav-dropdown:hover .nav-trigger,
.nav-trigger[aria-expanded="true"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.is-scrolled .main-nav a[aria-current="page"],
.site-header.is-scrolled .nav-dropdown:hover .nav-trigger,
.site-header.is-scrolled .nav-trigger[aria-expanded="true"],
.site-header.is-menu-open .main-nav a:hover,
.site-header.is-menu-open .main-nav a[aria-current="page"],
.site-header.is-menu-open .nav-dropdown:hover .nav-trigger,
.site-header.is-menu-open .nav-trigger[aria-expanded="true"] {
  color: var(--blue-800);
  background: rgba(20, 95, 196, 0.08);
}

.nav-dropdown {
  position: relative;
}

.nav-trigger::after {
  width: 7px;
  height: 7px;
  margin-left: 9px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: min(760px, calc(100vw - 48px));
  padding: 16px;
  pointer-events: none;
  opacity: 0;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(203, 213, 225, 0.75);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(8, 27, 52, 0.18);
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown:hover .nav-panel,
.nav-dropdown:focus-within .nav-panel,
.nav-dropdown.is-open .nav-panel {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.nav-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.nav-service-grid a {
  display: flex;
  align-items: center;
  min-height: 48px;
  gap: 10px;
  padding: 11px 12px;
  color: var(--blue-950) !important;
  border-radius: 12px;
}

.nav-service-grid a:hover {
  background: rgba(20, 95, 196, 0.08);
}

.nav-service-grid svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: var(--cyan-500);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-width: 0;
}

.header-actions .phone-link {
  display: none;
}

.language-switcher {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: fixed;
  top: 50%;
  right: 18px;
  z-index: 60;
  padding: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(8, 27, 52, 0.16);
  backdrop-filter: blur(14px);
  transform: translateY(-50%);
}

.language-switcher a {
  display: grid;
  place-items: center;
  min-width: 34px;
  min-height: 30px;
  padding: 0 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.language-switcher a:hover,
.language-switcher a[aria-current="true"] {
  color: var(--blue-950);
  background: var(--white);
}

.site-header.is-scrolled ~ .language-switcher,
.site-header.is-menu-open ~ .language-switcher {
  background: rgba(20, 95, 196, 0.08);
  border-color: rgba(20, 95, 196, 0.14);
}

.site-header.is-scrolled ~ .language-switcher a,
.site-header.is-menu-open ~ .language-switcher a {
  color: var(--slate-600);
}

.site-header.is-scrolled ~ .language-switcher a:hover,
.site-header.is-scrolled ~ .language-switcher a[aria-current="true"],
.site-header.is-menu-open ~ .language-switcher a:hover,
.site-header.is-menu-open ~ .language-switcher a[aria-current="true"] {
  color: var(--white);
  background: var(--blue-800);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  color: var(--white);
  font-weight: 850;
  white-space: nowrap;
  transition: color 0.22s ease;
}

.site-header.is-scrolled .phone-link,
.site-header.is-menu-open .phone-link {
  color: var(--blue-950);
}

.phone-link svg,
.inline-icon {
  width: 18px;
  height: 18px;
  color: var(--cyan-500);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  color: var(--blue-950);
  font-weight: 850;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.header-actions .btn {
  flex: 0 0 auto;
  min-width: 156px;
  min-height: 44px;
}

.header-call-button {
  min-width: 166px;
}

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

.btn-primary {
  color: var(--blue-950);
  background: var(--cyan-500);
  box-shadow: 0 16px 36px rgba(24, 199, 245, 0.28);
}

.btn-primary:hover {
  background: var(--cyan-400);
  box-shadow: 0 20px 42px rgba(24, 199, 245, 0.36);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  border-color: rgba(73, 220, 255, 0.6);
  background: rgba(73, 220, 255, 0.14);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px rgba(8, 27, 52, 0.18);
}

.btn-ghost:hover {
  border-color: rgba(73, 220, 255, 0.62);
  background: rgba(73, 220, 255, 0.14);
}

.btn-outline {
  color: var(--blue-800);
  border-color: rgba(20, 95, 196, 0.2);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(8, 27, 52, 0.06);
}

.btn-outline:hover {
  border-color: rgba(24, 199, 245, 0.6);
}

.section {
  padding: 96px 0;
}

.section-tight {
  padding: 72px 0;
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(24, 199, 245, 0.16), transparent 28%),
    linear-gradient(135deg, var(--blue-950), var(--blue-900) 58%, var(--blue-800));
}

.section-white {
  background: var(--white);
}

.section-services {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f6f9fc 0%, #eef5fb 100%);
}

.section-services::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(24, 199, 245, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0));
}

.section-services > .container {
  position: relative;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 24px;
  height: 2px;
  content: "";
  background: var(--cyan-500);
}

.section-dark .section-kicker {
  color: var(--cyan-400);
}

.section-title {
  max-width: 740px;
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(2rem, 4vw, 3.05rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.section-dark .section-title,
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--slate-600);
  font-size: 1.08rem;
}

.section-dark .section-lead,
.section-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 54px;
}

.hero {
  position: relative;
  padding: 152px 0 82px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 19, 39, 0.98), rgba(8, 27, 52, 0.9) 42%, rgba(10, 44, 89, 0.58)),
    radial-gradient(circle at 76% 22%, rgba(24, 199, 245, 0.24), transparent 34%),
    var(--blue-950);
}

.home-hero {
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding: 112px 0 58px;
  overflow: hidden;
  background: var(--blue-950);
  isolation: isolate;
}

.home-hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--blue-950);
}

.home-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: var(--hero-image) center right / cover no-repeat;
  background-repeat: no-repeat;
  transform: scale(1.025);
  transition: opacity 0.9s ease, transform 7s ease;
}

.home-hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.home-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 19, 39, 0.82), rgba(8, 27, 52, 0.58) 32%, rgba(8, 27, 52, 0.12) 54%, rgba(6, 19, 39, 0) 72%),
    linear-gradient(180deg, rgba(6, 19, 39, 0.04), rgba(6, 19, 39, 0.06) 54%, rgba(6, 19, 39, 0.34));
}

.home-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.home-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.home-hero-copy {
  position: relative;
}

.home-hero-panel {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.home-hero-panel:not(.is-active) {
  position: absolute;
  inset: 0;
}

.home-hero-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.home-hero h1 {
  max-width: 700px;
  font-size: 4.25rem;
}

.home-hero .hero-copy {
  max-width: 620px;
  margin-top: 20px;
}

.home-hero .hero-actions {
  margin-top: 28px;
}

.home-hero .trust-strip {
  margin-top: 30px;
}

.hero-progress {
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
}

.hero-progress-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.hero-progress-button:hover,
.hero-progress-button.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.hero-progress-button svg,
.hero-progress-button span {
  grid-area: 1 / 1;
}

.hero-progress-button svg {
  width: 44px;
  height: 44px;
  transform: rotate(-90deg);
}

.hero-progress-track,
.hero-progress-ring {
  fill: none;
  stroke-width: 3;
}

.hero-progress-track {
  stroke: rgba(255, 255, 255, 0.2);
}

.hero-progress-ring {
  stroke: var(--cyan-400);
  stroke-dasharray: 119.38;
  stroke-dashoffset: 119.38;
  stroke-linecap: round;
}

.hero-progress-button.is-active .hero-progress-ring {
  animation: heroProgress 6.5s linear forwards;
}

.hero-progress-button span {
  font-size: 0.86rem;
  font-weight: 900;
}

@keyframes heroProgress {
  to {
    stroke-dashoffset: 0;
  }
}

.service-hero {
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: 112px 0 58px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6, 19, 39, 0.82), rgba(8, 27, 52, 0.58) 34%, rgba(8, 27, 52, 0.16) 58%, rgba(6, 19, 39, 0) 76%),
    linear-gradient(180deg, rgba(6, 19, 39, 0.04), rgba(6, 19, 39, 0.08) 54%, rgba(6, 19, 39, 0.36)),
    var(--hero-image) var(--service-hero-position, center right) / cover no-repeat,
    var(--blue-950);
}

.service-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.08);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--cyan-400);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  content: "";
  background: var(--cyan-500);
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.05rem, 5.4vw, 4.8rem);
  font-weight: 950;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 13px;
  color: var(--white);
  background: rgba(6, 19, 39, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.trust-item svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--cyan-400);
}

.trust-item span {
  font-weight: 850;
  line-height: 1.1;
  white-space: nowrap;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.section-heading-row .section-lead {
  max-width: 470px;
  margin: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card,
.info-card,
.related-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(203, 213, 225, 0.78);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(8, 27, 52, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-card,
.related-card {
  overflow: hidden;
  color: var(--white);
  background: var(--blue-900);
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.service-card::before,
.related-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 18% 18%, rgba(24, 199, 245, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(6, 19, 39, 0.93), rgba(8, 35, 67, 0.72) 42%, rgba(8, 35, 67, 0.18) 72%, rgba(6, 19, 39, 0.04)),
    linear-gradient(180deg, rgba(6, 19, 39, 0.04), rgba(6, 19, 39, 0.18)),
    var(--service-image);
  background-position: center;
  background-size: cover;
  transition: transform 0.24s ease;
}

.service-card::after,
.related-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  content: "";
  background: var(--cyan-500);
}

.service-card:hover,
.related-card:hover {
  transform: translateY(-5px);
  border-color: rgba(24, 199, 245, 0.6);
  box-shadow: var(--shadow-card);
}

.service-card:hover::before,
.related-card:hover::before {
  transform: scale(1.035);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  color: var(--cyan-500);
  background: rgba(20, 95, 196, 0.08);
  border-radius: 14px;
}

.service-card .card-icon,
.related-card .card-icon {
  color: var(--blue-950);
  background: var(--cyan-500);
}

.card-icon svg {
  width: 25px;
  height: 25px;
}

.service-card h3,
.info-card h3,
.related-card h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.2;
}

.service-card h3,
.related-card h3 {
  color: var(--white);
  font-size: 1.34rem;
  font-weight: 950;
  line-height: 1.08;
}

.service-card p,
.info-card p,
.related-card p {
  margin: 12px 0 0;
  color: var(--slate-600);
  font-size: 0.96rem;
}

.service-card p,
.related-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.5;
}

.service-card p,
.related-card p {
  margin-bottom: 24px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: auto;
  min-height: 48px;
  padding: 0 20px;
  color: var(--blue-950);
  font-weight: 900;
  line-height: 1;
  background: var(--cyan-500);
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(24, 199, 245, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.workflow-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f4f8fc 0%, #eaf2f8 100%);
}

.workflow-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(20, 95, 196, 0.08), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), transparent 42%);
}

.workflow-section > .container {
  position: relative;
}

.workflow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.workflow-grid::before {
  position: absolute;
  top: 38px;
  right: 11%;
  left: 11%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(24, 199, 245, 0.12), rgba(24, 199, 245, 0.72), rgba(24, 199, 245, 0.12));
}

.workflow-card {
  position: relative;
  min-height: 100%;
  padding: 0 8px;
  color: var(--blue-950);
}

.workflow-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin-bottom: 24px;
  color: var(--blue-950);
  font-size: 1.12rem;
  font-weight: 950;
  line-height: 1;
  background: var(--cyan-500);
  border: 10px solid #f4f8fc;
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(24, 199, 245, 0.26);
}

.workflow-card h3 {
  max-width: 260px;
  margin: 0;
  color: var(--blue-950);
  font-size: 1.16rem;
  font-weight: 950;
  line-height: 1.14;
}

.workflow-card p {
  max-width: 300px;
  margin: 12px 0 0;
  color: var(--slate-600);
  font-size: 0.98rem;
  line-height: 1.56;
}

.card-link:hover {
  transform: translateY(-2px);
  background: var(--cyan-400);
  box-shadow: 0 20px 42px rgba(24, 199, 245, 0.36);
}

.fleet-section {
  position: relative;
  overflow: hidden;
  padding: 52px 0;
  background:
    linear-gradient(90deg, rgba(6, 19, 39, 0.93), rgba(6, 19, 39, 0.82) 46%, rgba(8, 27, 52, 0.76)),
    linear-gradient(180deg, rgba(6, 19, 39, 0.08), rgba(6, 19, 39, 0.28)),
    url("images/flota-auto-oradea/flota-auto-oradea-3.jpeg") center / cover no-repeat,
    var(--blue-950);
}

.fleet-section::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 92px 92px;
  opacity: 0.14;
}

.fleet-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(32px, 4vw, 58px);
}

.fleet-copy {
  max-width: 720px;
}

.fleet-section .section-title {
  max-width: 660px;
  font-size: clamp(1.9rem, 2.75vw, 2.35rem);
}

.fleet-section .section-lead {
  max-width: 680px;
  font-size: 0.98rem;
  line-height: 1.55;
}

.fleet-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.fleet-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.fleet-benefit {
  display: flex;
  gap: 12px;
  min-height: 104px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(8, 27, 52, 0.14);
}

.fleet-benefit svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--cyan-400);
}

.fleet-benefit strong {
  display: block;
  color: var(--white);
  font-size: 0.94rem;
  line-height: 1.25;
}

.fleet-benefit span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  line-height: 1.38;
}

.fleet-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: repeat(2, minmax(118px, 1fr));
  gap: 12px;
  min-height: 368px;
  margin-top: 0;
}

.fleet-gallery-item {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.fleet-gallery-item::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(6, 19, 39, 0.02), rgba(6, 19, 39, 0.22)),
    linear-gradient(90deg, rgba(24, 199, 245, 0.14), transparent 42%);
}

.fleet-gallery-item-1 {
  grid-row: 1 / span 2;
}

.fleet-gallery-item-2 {
  grid-column: 2;
  grid-row: 1;
}

.fleet-gallery-item-3 {
  grid-column: 2;
  grid-row: 2;
}

.fleet-gallery-item-4 {
  display: none;
}

.fleet-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.gallery-trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}

.gallery-trigger::before {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  content: "+";
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
  background: rgba(6, 19, 39, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease, background 0.22s ease;
  backdrop-filter: blur(10px);
}

.gallery-trigger:hover::before,
.gallery-trigger:focus-visible::before {
  opacity: 1;
  transform: translateY(0);
}

.gallery-trigger:focus-visible {
  outline: 3px solid rgba(24, 199, 245, 0.82);
  outline-offset: 4px;
}

.home-lower-zone {
  overflow: hidden;
  background: #eaf2f7;
}

.why-proof-section {
  padding: 74px 0;
  background:
    linear-gradient(180deg, rgba(234, 242, 247, 0.9), rgba(222, 235, 243, 0.86)),
    url("images/workshop-hero.jpg") center / cover no-repeat;
}

.why-proof-bubble {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 34px;
  padding: 36px;
  overflow: hidden;
  color: var(--white);
  background: rgba(6, 19, 39, 0.24);
  border-radius: 22px;
  border: 1px solid rgba(175, 217, 235, 0.24);
  box-shadow: 0 28px 70px rgba(8, 27, 52, 0.22);
  backdrop-filter: blur(8px);
}

.why-proof-bubble::before,
.why-proof-bubble::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.why-proof-bubble::before {
  background: url("images/oradea-background.jpg") center / cover no-repeat;
  filter: blur(2px);
  opacity: 1;
  transform: scale(1.012);
}

.why-proof-bubble::after {
  background:
    linear-gradient(90deg, rgba(6, 19, 39, 0.66), rgba(6, 19, 39, 0.42) 48%, rgba(6, 19, 39, 0.56)),
    linear-gradient(180deg, rgba(6, 19, 39, 0.06), rgba(6, 19, 39, 0.2));
}

.why-proof-main,
.why-proof-highlights {
  position: relative;
  z-index: 1;
}

.why-proof-main .section-kicker {
  color: var(--cyan-400);
}

.why-proof-main .section-title {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(2rem, 3.2vw, 3.35rem);
}

.why-proof-main .section-lead {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
}

.proof-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.proof-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.why-proof-highlights {
  display: grid;
  gap: 14px;
}

.why-proof-highlight {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  background:
    linear-gradient(135deg, rgba(8, 27, 52, 0.62), rgba(10, 44, 89, 0.34)),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(175, 217, 235, 0.24);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(5px);
}

.cta-section {
  padding: 68px 0;
  background: var(--white);
}

.why-proof-highlight svg {
  width: 22px;
  height: 22px;
  color: var(--cyan-400);
}

.why-proof-highlight strong {
  display: block;
  color: var(--white);
  font-size: 1.03rem;
  font-weight: 900;
}

.why-proof-highlight span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
}

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

.check-grid.why-proof-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.check-grid.why-proof-cards .check-item:first-child {
  grid-column: 1 / -1;
}

.check-grid.why-proof-cards .check-item:nth-child(2),
.check-grid.why-proof-cards .check-item:nth-child(3) {
  grid-column: auto;
}

.check-item {
  display: flex;
  gap: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
}

.check-item svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--cyan-400);
}

.check-item strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.25;
}

.check-item span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.about-panel {
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.about-panel p {
  margin: 0;
  color: var(--slate-600);
  font-size: 1.08rem;
}

.legal-hero {
  min-height: 430px;
}

.legal-section {
  background:
    linear-gradient(180deg, #f6f9fc 0%, #ffffff 22%),
    var(--white);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 92px;
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(175, 194, 216, 0.75);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.legal-nav strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-950);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-nav nav {
  display: grid;
  gap: 8px;
}

.legal-nav a {
  display: block;
  padding: 10px 12px;
  color: var(--slate-700);
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.25;
  background: var(--slate-50);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.legal-nav a:hover,
.legal-nav a[aria-current="page"] {
  color: var(--blue-950);
  background: rgba(24, 199, 245, 0.12);
  border-color: rgba(24, 199, 245, 0.35);
}

.legal-content {
  padding: clamp(26px, 4vw, 54px);
  background: var(--white);
  border: 1px solid rgba(175, 194, 216, 0.72);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.legal-meta {
  display: inline-flex;
  max-width: 100%;
  margin-bottom: 26px;
  padding: 9px 13px;
  color: var(--blue-950);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
  background: rgba(24, 199, 245, 0.12);
  border: 1px solid rgba(24, 199, 245, 0.28);
  border-radius: 999px;
}

.legal-content h2 {
  margin: 34px 0 12px;
  color: var(--blue-950);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.18;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--slate-700);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-content p {
  margin: 0 0 14px;
}

.legal-content ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
}

.legal-content li {
  position: relative;
  padding-left: 26px;
}

.legal-content li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--cyan-500);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(24, 199, 245, 0.13);
}

.legal-content a {
  color: var(--blue-700);
  font-weight: 800;
}

.legal-contact {
  margin-top: 40px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(6, 19, 39, 0.96), rgba(10, 44, 89, 0.94)),
    var(--blue-950);
  border-radius: var(--radius-md);
}

.legal-contact h2,
.legal-contact p,
.legal-contact a {
  color: var(--white);
}

.legal-contact h2 {
  margin-top: 0;
}

.legal-contact p {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.78);
}

.legal-contact p:first-of-type {
  color: var(--white);
}

.credentials-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.credentials-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-950);
  font-weight: 800;
}

.credentials-list svg {
  width: 20px;
  height: 20px;
  color: var(--cyan-500);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 42px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 19, 39, 0.97), rgba(10, 44, 89, 0.94)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 96px);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(8, 27, 52, 0.2);
}

.cta-band::after {
  position: absolute;
  top: 0;
  right: -120px;
  bottom: 0;
  width: 380px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(24, 199, 245, 0.2));
  transform: skewX(-14deg);
}

.cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
}

.cta-content > * {
  min-width: 0;
}

.cta-band h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 2.45rem);
  line-height: 1.05;
}

.cta-band p {
  max-width: 660px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.cta-content .cta-actions {
  justify-content: center;
  margin-top: 0;
}

.cta-content .cta-actions .btn {
  width: min(100%, 340px);
  min-height: 60px;
  padding: 0 32px;
  font-size: 1.12rem;
  box-shadow: 0 22px 48px rgba(24, 199, 245, 0.32);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
}

.contact-appointment-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(246, 249, 252, 0.96), rgba(246, 249, 252, 0.82)),
    url("images/workshop-hero.jpg") center / cover no-repeat;
}

.contact-appointment-section .container {
  position: relative;
  z-index: 1;
}

.contact-card,
.map-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(175, 194, 216, 0.82);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
}

.contact-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.contact-list svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  color: var(--cyan-500);
  background: rgba(20, 95, 196, 0.08);
  border-radius: 12px;
}

.contact-list strong {
  display: block;
  color: var(--blue-950);
  line-height: 1.25;
}

.contact-list span,
.contact-list a {
  display: block;
  margin-top: 3px;
  color: var(--slate-600);
  font-weight: 650;
}

.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 330px;
  overflow: hidden;
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
}

.map-placeholder iframe {
  display: block;
  width: 100%;
  min-height: 330px;
  border: 0;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--blue-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.9fr 1fr;
  gap: 34px;
  padding: 64px 0 44px;
}

.footer-grid h2,
.footer-grid h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 1rem;
}

.footer-grid p {
  max-width: 320px;
  margin: 18px 0 0;
}

.site-footer .footer-grid > section:first-child p {
  max-width: 300px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 10px;
  line-height: 1.5;
}

.footer-links {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a:hover {
  color: var(--cyan-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-consent {
  position: fixed;
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 34px);
  left: clamp(14px, 3vw, 34px);
  z-index: 80;
  display: none;
  max-width: 1160px;
  margin: 0 auto;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 19, 39, 0.98), rgba(10, 44, 89, 0.96)),
    var(--blue-950);
  border: 1px solid rgba(73, 220, 255, 0.28);
  border-radius: var(--radius-lg);
  box-shadow: 0 26px 80px rgba(6, 19, 39, 0.36);
}

.cookie-consent.is-visible {
  display: block;
}

.cookie-consent-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
  padding: clamp(18px, 2.5vw, 26px);
}

.cookie-consent h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.18;
}

.cookie-consent p {
  max-width: 760px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
  line-height: 1.55;
}

.cookie-consent a {
  color: var(--cyan-400);
  font-weight: 800;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-button {
  min-height: 44px;
  padding: 0 16px;
  color: var(--white);
  font-weight: 850;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.cookie-button:hover {
  transform: translateY(-1px);
  border-color: rgba(73, 220, 255, 0.5);
  background: rgba(255, 255, 255, 0.13);
}

.cookie-button-primary {
  color: var(--blue-950);
  background: linear-gradient(135deg, var(--cyan-400), var(--cyan-500));
  border-color: transparent;
}

.cookie-button-primary:hover {
  background: linear-gradient(135deg, var(--cyan-400), #8be9ff);
}

.cookie-button-text {
  background: transparent;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(6, 19, 39, 0.62);
  backdrop-filter: blur(8px);
}

.cookie-modal.is-visible {
  display: grid;
}

.cookie-modal-panel {
  width: min(100%, 620px);
  max-height: min(720px, calc(100vh - 36px));
  overflow: auto;
  color: var(--slate-900);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 90px rgba(6, 19, 39, 0.32);
}

.cookie-modal-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 24px 14px;
}

.cookie-modal h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: 1.35rem;
  line-height: 1.15;
}

.cookie-modal p {
  margin: 8px 0 0;
  color: var(--slate-600);
}

.cookie-close {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  color: var(--blue-950);
  font-size: 1.5rem;
  line-height: 1;
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  border-radius: 50%;
  cursor: pointer;
}

.cookie-options {
  display: grid;
  gap: 12px;
  padding: 10px 24px 20px;
}

.cookie-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
}

.cookie-option strong {
  display: block;
  color: var(--blue-950);
  line-height: 1.2;
}

.cookie-option span {
  display: block;
  margin-top: 4px;
  color: var(--slate-600);
  font-size: 0.92rem;
  line-height: 1.45;
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  width: 54px;
  height: 30px;
}

.cookie-switch input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.cookie-switch-track {
  position: absolute;
  inset: 0;
  background: var(--slate-300);
  border-radius: 999px;
  transition: background 0.18s ease;
}

.cookie-switch-track::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  content: "";
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(8, 27, 52, 0.22);
  transition: transform 0.18s ease;
}

.cookie-switch input:checked + .cookie-switch-track {
  background: var(--cyan-500);
}

.cookie-switch input:checked + .cookie-switch-track::after {
  transform: translateX(24px);
}

.cookie-switch input:disabled + .cookie-switch-track {
  background: var(--blue-800);
  opacity: 0.86;
}

.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  padding: 18px 24px 24px;
  border-top: 1px solid var(--slate-200);
}

.cookie-modal-actions .cookie-button {
  color: var(--blue-950);
  border-color: var(--slate-200);
  background: var(--white);
}

.cookie-modal-actions .cookie-button-primary {
  background: linear-gradient(135deg, var(--cyan-400), var(--cyan-500));
  border-color: transparent;
}

.cookie-preferences-link {
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.service-hero h1 {
  font-size: clamp(2.9rem, 4.7vw, 4.35rem);
}

.service-content-zone {
  overflow: hidden;
  background: #f5f8fb;
}

.service-content-zone .section-white {
  background: var(--white);
}

.service-content-zone .service-symptoms-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(24, 199, 245, 0.1), transparent 28%),
    linear-gradient(180deg, #f3f8fc, #e8f1f8);
  isolation: isolate;
}

.service-content-zone .service-symptoms-section::before {
  display: none;
  content: none;
}

.service-content-zone .service-symptoms-section .symptom-card {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(175, 194, 216, 0.84);
  box-shadow: 0 18px 42px rgba(8, 27, 52, 0.07);
  backdrop-filter: blur(10px);
}

.service-content-zone .service-explain-section {
  padding: 62px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 19, 39, 0.94), rgba(8, 27, 52, 0.82) 42%, rgba(8, 27, 52, 0.5) 72%, rgba(8, 27, 52, 0.36)),
    linear-gradient(180deg, rgba(6, 19, 39, 0.2), rgba(6, 19, 39, 0.7)),
    var(--detail-image) center right / cover no-repeat,
    var(--blue-950);
}

.service-content-zone .service-explain-section .explain-grid {
  align-items: center;
}

.service-content-zone .service-explain-section .section-kicker {
  color: var(--cyan-400);
}

.service-content-zone .service-explain-section .section-title {
  color: var(--white);
}

.service-content-zone .service-explain-section .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

.service-content-zone .service-explain-section .explain-panel {
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.service-content-zone .service-explain-section .explain-list {
  gap: 8px;
}

.service-content-zone .service-explain-section .explain-list li {
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.service-content-zone .service-explain-section .explain-list svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  color: var(--cyan-400);
  background: rgba(24, 199, 245, 0.12);
}

.service-content-zone .service-explain-section .explain-list strong {
  color: var(--white);
}

.service-content-zone .service-explain-section .explain-list span {
  color: rgba(255, 255, 255, 0.72);
}

.service-content-zone .service-benefits-section {
  background: #f7fafc;
}

.service-content-zone .service-benefits-section .info-card {
  background: var(--white);
  border-color: rgba(203, 213, 225, 0.84);
  box-shadow: 0 14px 34px rgba(8, 27, 52, 0.05);
}

.service-content-zone .service-process-section {
  background:
    linear-gradient(180deg, #eaf2f8, #f5f8fb);
}

.service-content-zone .service-process-section .process-steps {
  position: relative;
}

.service-content-zone .service-process-section .process-steps::before {
  position: absolute;
  top: 47px;
  right: 7%;
  left: 7%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(24, 199, 245, 0.62), transparent);
}

.service-content-zone .service-process-section .process-step {
  z-index: 1;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(175, 194, 216, 0.82);
  box-shadow: 0 18px 42px rgba(8, 27, 52, 0.06);
  backdrop-filter: blur(10px);
}

.service-content-zone .service-gallery-section {
  color: var(--blue-950);
  padding: 74px 0;
  background:
    linear-gradient(180deg, #f7fbff 0%, #ffffff 42%, #eef6fb 100%);
}

.service-content-zone .service-gallery-section .section-title {
  color: var(--blue-950);
}

.service-content-zone .service-gallery-section .section-lead {
  color: var(--slate-600);
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: row;
  gap: 14px;
  margin-top: 30px;
}

.work-gallery-item {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(175, 194, 216, 0.72);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 44px rgba(8, 27, 52, 0.12);
}

.work-gallery-item::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, transparent 56%, rgba(6, 19, 39, 0.22)),
    linear-gradient(90deg, rgba(24, 199, 245, 0.08), transparent 44%);
}

.work-gallery-item-1 {
  grid-column: auto;
  grid-row: auto;
  aspect-ratio: 16 / 10;
}

.work-gallery-item-2,
.work-gallery-item-3 {
  grid-column: auto;
}

.work-gallery-item:last-child:nth-child(3n + 1) {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 5;
}

.work-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.work-gallery-item:hover img {
  transform: scale(1.035);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 3vw, 42px);
  background: rgba(3, 9, 18, 0.88);
  backdrop-filter: blur(14px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-panel {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  width: min(1180px, 100%);
  max-height: min(82vh, 820px);
  overflow: hidden;
  background: rgba(6, 19, 39, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.46);
}

.lightbox-image-wrap {
  display: grid;
  place-items: center;
  min-height: 0;
  background:
    radial-gradient(circle at 80% 15%, rgba(24, 199, 245, 0.12), transparent 24%),
    rgba(3, 9, 18, 0.42);
}

.lightbox-image {
  display: block;
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.lightbox-caption {
  display: none;
}

.lightbox-button {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
  backdrop-filter: blur(12px);
}

.lightbox-button:hover,
.lightbox-button:focus-visible {
  background: rgba(24, 199, 245, 0.28);
  transform: translateY(-1px);
}

.lightbox-close {
  top: 18px;
  right: 18px;
  font-size: 1.6rem;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  font-size: 2rem;
  transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-prev:focus-visible,
.lightbox-next:hover,
.lightbox-next:focus-visible {
  transform: translateY(calc(-50% - 1px));
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

body.lightbox-open {
  overflow: hidden;
}

.service-content-zone .service-cta-section {
  background: #f5f8fb;
}

.service-content-zone .service-related-section {
  background: #eef5fb;
}

.service-content-zone .service-faq-section {
  background: var(--white);
}

.service-content-zone .service-contact-section {
  background:
    linear-gradient(180deg, #eef5fb, #f7fafc);
}

.service-content-zone .faq-item,
.service-content-zone .contact-card,
.service-content-zone .map-card {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(175, 194, 216, 0.82);
  box-shadow: 0 18px 42px rgba(8, 27, 52, 0.06);
  backdrop-filter: blur(10px);
}

.service-content-zone .warning-panel {
  background: rgba(236, 248, 253, 0.78);
  border-color: rgba(24, 199, 245, 0.32);
  box-shadow: 0 18px 42px rgba(8, 27, 52, 0.06);
  backdrop-filter: blur(10px);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.68);
  list-style: none;
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.86);
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  content: "/";
  color: rgba(255, 255, 255, 0.4);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 13px;
  color: var(--white);
  font-weight: 850;
  white-space: nowrap;
  background: rgba(6, 19, 39, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
}

.badge svg {
  width: 17px;
  height: 17px;
  color: var(--cyan-400);
}

.symptom-grid,
.benefit-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.symptom-card {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 28px rgba(8, 27, 52, 0.04);
}

.symptom-card svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--cyan-500);
}

.symptom-card strong {
  color: var(--blue-950);
  line-height: 1.25;
}

.explain-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.explain-panel {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.explain-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.explain-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
}

.explain-list svg {
  width: 52px;
  height: 52px;
  padding: 13px;
  color: var(--cyan-500);
  background: rgba(20, 95, 196, 0.08);
  border-radius: 14px;
}

.explain-list strong {
  display: block;
  color: var(--blue-950);
}

.explain-list span {
  display: block;
  margin-top: 4px;
  color: var(--slate-600);
}

.warning-panel {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(24, 199, 245, 0.1), rgba(20, 95, 196, 0.06));
  border: 1px solid rgba(24, 199, 245, 0.32);
  border-left: 4px solid var(--cyan-500);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.warning-panel svg {
  width: 62px;
  height: 62px;
  padding: 16px;
  color: var(--blue-800);
  background: var(--white);
  border-radius: 16px;
}

.warning-panel h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: 1.7rem;
  line-height: 1.12;
}

.warning-panel p {
  max-width: 850px;
  margin: 10px 0 0;
  color: var(--slate-600);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  counter-increment: process;
}

.process-step::before {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  color: var(--blue-950);
  font-weight: 950;
  content: counter(process, decimal-leading-zero);
  background: var(--cyan-500);
  border-radius: 12px;
}

.process-step h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: 1.05rem;
  line-height: 1.2;
}

.process-step p {
  margin: 10px 0 0;
  color: var(--slate-600);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 940px;
  margin: 38px auto 0;
}

.faq-item {
  overflow: hidden;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 24px rgba(8, 27, 52, 0.04);
}

.faq-item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px 14px;
  color: var(--blue-950);
  font-weight: 900;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

.faq-item:not([open]) summary {
  padding-bottom: 22px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: var(--blue-800);
  content: "+";
  background: rgba(20, 95, 196, 0.08);
  border-radius: 50%;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  max-width: 780px;
  padding: 0 64px 24px 24px;
  margin: 0;
  color: var(--slate-600);
  line-height: 1.55;
  text-align: left;
}

.centered {
  text-align: center;
}

.centered .section-kicker {
  justify-content: center;
}

.centered .section-kicker::after {
  width: 24px;
  height: 2px;
  content: "";
  background: var(--cyan-500);
}

.centered .section-title,
.centered .section-lead {
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: minmax(172px, auto) minmax(0, 1fr) auto;
    gap: 16px;
  }

  .brand {
    justify-content: flex-start;
    min-width: 172px;
  }

  .brand-logo-wrap {
    width: 164px;
  }

  .brand-subtitle {
    display: none;
  }

  .main-nav a,
  .nav-trigger {
    padding: 0 8px;
    font-size: 0.88rem;
  }

  .header-actions {
    gap: 12px;
  }

  .header-actions .btn {
    min-width: 148px;
    min-height: 42px;
    padding: 0 16px;
  }

  .hero-grid,
  .split,
  .why-grid,
  .why-proof-bubble,
  .fleet-layout,
  .contact-grid,
  .explain-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }

  .legal-nav nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .services-grid,
  .workflow-grid,
  .fleet-gallery,
  .symptom-grid,
  .benefit-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fleet-gallery {
    grid-template-rows: none;
    min-height: 0;
  }

  .fleet-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fleet-benefit {
    min-height: 0;
  }

  .fleet-gallery-item,
  .fleet-gallery-item-1,
  .fleet-gallery-item-2,
  .fleet-gallery-item-3,
  .fleet-gallery-item-4 {
    display: block;
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .work-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-gallery-item,
  .work-gallery-item-1,
  .work-gallery-item-2,
  .work-gallery-item-3 {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-content-zone .service-process-section .process-steps::before {
    display: none;
  }
}

@media (min-width: 981px) and (max-width: 1320px) {
  .phone-link span {
    display: none;
  }

  .phone-link {
    justify-content: center;
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
  }

  .site-header.is-scrolled .phone-link,
  .site-header.is-menu-open .phone-link {
    background: rgba(20, 95, 196, 0.08);
    border-color: rgba(20, 95, 196, 0.12);
  }
}

@media (max-width: 980px) {
  .site-header {
    background: rgba(6, 19, 39, 0.1);
    backdrop-filter: blur(12px);
  }

  .site-header.is-menu-open {
    height: 100vh;
    overflow-y: auto;
    color: var(--white);
    background:
      radial-gradient(circle at 50% 18%, rgba(24, 199, 245, 0.18), transparent 28%),
      linear-gradient(145deg, rgba(6, 19, 39, 0.98), rgba(8, 27, 52, 0.98) 56%, rgba(10, 44, 89, 0.96));
  }

  .site-header.is-menu-open .brand-name,
  .site-header.is-menu-open .brand-subtitle,
  .site-header.is-menu-open .menu-toggle,
  .site-header.is-menu-open .header-actions .phone-link {
    color: var(--white);
  }

  .site-header.is-menu-open .brand-subtitle {
    color: rgba(255, 255, 255, 0.72);
  }

  .site-header.is-menu-open .menu-toggle {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
  }

  .site-header.is-menu-open .brand-logo-on-dark {
    opacity: 1;
  }

  .site-header.is-menu-open .brand-logo-on-light {
    opacity: 0;
  }

  .site-header.is-menu-open .brand-logo-wrap {
    width: min(290px, 42vw);
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 74px;
    gap: 16px;
  }

  .brand {
    justify-content: flex-start;
    min-width: 164px;
  }

  .brand-logo-wrap {
    width: 164px;
  }

  .site-header.is-menu-open .header-inner {
    min-height: 100vh;
    align-content: start;
    padding-top: 18px;
    padding-bottom: 30px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .site-header.is-menu-open .main-nav,
  .site-header.is-menu-open .header-actions {
    display: grid;
    gap: 10px;
  }

  .site-header.is-menu-open .main-nav {
    grid-column: 1 / -1;
    width: 100%;
    justify-self: center;
    margin-top: 18px;
  }

  .site-header.is-menu-open .header-actions {
    grid-column: 1 / -1;
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    justify-self: center;
    margin-top: 8px;
  }

  .language-switcher {
    display: inline-flex;
    flex-direction: row;
    top: auto;
    right: 16px;
    bottom: max(14px, env(safe-area-inset-bottom));
    padding: 4px;
    transform: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.16);
  }

  .language-switcher a {
    color: rgba(255, 255, 255, 0.88);
  }

  .language-switcher a:hover,
  .language-switcher a[aria-current="true"] {
    color: var(--blue-950);
    background: var(--white);
  }

  .main-nav ul {
    align-items: center;
    flex-direction: column;
    gap: 4px;
    width: min(calc(100vw - 48px), 620px);
    padding: 0;
    margin: 0 auto;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .main-nav a,
  .nav-trigger {
    justify-content: center;
    width: min(calc(100vw - 64px), 420px);
    min-height: 48px;
    color: var(--white) !important;
    padding: 0 12px;
    font-size: 1.34rem;
    font-weight: 900;
    text-align: center;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .nav-trigger::after {
    position: static;
    margin-left: 12px;
  }

  .nav-panel {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    pointer-events: auto;
    opacity: 1;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    transition: max-height 0.22s ease;
  }

  .nav-dropdown:hover .nav-panel,
  .nav-dropdown:focus-within .nav-panel,
  .nav-dropdown.is-open .nav-panel {
    transform: none;
  }

  .nav-dropdown {
    display: grid;
    width: min(calc(100vw - 64px), 420px);
    justify-items: center;
    text-align: center;
  }

  .nav-dropdown.is-open .nav-panel {
    max-height: 820px;
  }

  .nav-service-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 6px;
    width: min(calc(100vw - 64px), 420px);
    padding: 10px 0 8px;
    margin: 0 auto;
  }

  .nav-service-grid a {
    justify-content: center;
    width: min(calc(100vw - 80px), 390px);
    min-height: 38px;
    padding: 0 12px;
    font-size: 1rem;
    text-align: center;
    color: var(--white) !important;
    background: transparent;
    border: 0;
    border-radius: 0;
    opacity: 0.82;
  }

  .site-header.is-menu-open .nav-service-grid a[aria-current="page"] {
    color: var(--cyan-400) !important;
    background: transparent;
  }

  .nav-service-grid a:hover {
    color: var(--cyan-400) !important;
    background: transparent;
    opacity: 1;
  }

  .nav-service-grid svg {
    display: none;
  }

  .header-actions {
    gap: 12px;
    padding: 0;
    margin: 12px auto 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .header-actions .phone-link {
    justify-content: center;
    width: 100%;
    color: var(--white);
    min-height: 58px;
    font-size: 1.42rem;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
  }

  .header-actions .btn {
    width: 100%;
    min-height: 52px;
  }

  .home-hero h1 {
    font-size: 3.35rem;
  }

  .home-hero .hero-copy {
    max-width: 560px;
  }

  .hero-progress {
    align-self: flex-end;
  }
}

@media (min-width: 761px) and (max-width: 980px) {
  .site-header.is-menu-open .header-actions {
    display: none;
  }

  .service-hero {
    --service-hero-position: 42% center;
    min-height: 82svh;
    padding: 112px 0 42px;
  }

  .service-hero-diagnoza-auto-oradea {
    --service-hero-position: 38% center;
  }

  .service-hero-content {
    max-width: min(620px, calc(100vw - 48px));
  }

  .service-hero h1 {
    max-width: 100%;
    font-size: clamp(2.9rem, 8vw, 4rem);
    overflow-wrap: normal;
  }

  .service-hero .hero-copy {
    max-width: 620px;
    font-size: 1.12rem;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .container > *,
  .hero-grid > *,
  .split > *,
  .why-grid > *,
  .contact-grid > *,
  .explain-grid > *,
  .section-heading-row > *,
  .cta-content > * {
    min-width: 0;
  }

  .nav-dropdown {
    display: grid;
    width: min(calc(100vw - 48px), 420px);
    justify-items: center;
  }

  .nav-dropdown.is-open .nav-panel {
    max-height: 760px;
    overflow: visible;
  }

  .nav-panel {
    display: grid;
    justify-items: center;
  }

  .nav-service-grid {
    width: min(calc(100vw - 56px), 380px);
    gap: 10px;
    padding: 14px 0 14px;
    margin: 0 auto;
    justify-items: center;
  }

  .nav-service-grid a {
    justify-content: center;
    width: min(calc(100vw - 72px), 360px);
    min-height: 38px;
    padding: 0 10px;
    font-size: 1.06rem;
    font-weight: 800;
    text-align: center;
    color: rgba(255, 255, 255, 0.94) !important;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  }

  .site-header.is-menu-open .header-actions {
    display: grid;
    width: min(calc(100vw - 48px), 500px);
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    justify-content: center;
  }

  .header-actions {
    width: min(calc(100vw - 48px), 500px);
  }

  .header-actions .phone-link {
    width: 100%;
    min-height: 68px;
    padding: 0 30px;
    font-size: 1.48rem;
    white-space: nowrap;
  }

  .header-actions .btn {
    width: 100%;
    min-height: 56px;
  }

  .hero-actions,
  .cta-actions,
  .fleet-actions {
    align-items: stretch;
    min-width: 0;
    width: 100%;
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .fleet-actions .btn {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    white-space: normal;
  }

  .trust-strip,
  .services-grid,
  .workflow-grid,
  .fleet-benefits,
  .fleet-gallery,
  .why-proof-bubble,
  .check-grid,
  .symptom-grid,
  .benefit-grid,
  .related-grid,
  .process-steps,
  .footer-grid,
  .cta-content,
  .legal-nav nav {
    grid-template-columns: 1fr;
  }

  .fleet-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
  }

  .fleet-section {
    padding: 42px 0;
  }

  .fleet-benefits {
    grid-template-columns: 1fr;
  }

  .fleet-gallery-item {
    aspect-ratio: 1 / 1;
    border-radius: 18px;
  }

  .fleet-gallery-item-1 {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

  .fleet-gallery-item-4 {
    display: none;
  }

  .work-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .work-gallery-item,
  .work-gallery-item-1,
  .work-gallery-item-2,
  .work-gallery-item-3 {
    aspect-ratio: 16 / 11;
    border-radius: 18px;
  }

  .gallery-trigger::before {
    right: 10px;
    bottom: 10px;
    width: 36px;
    height: 36px;
    opacity: 1;
    transform: none;
    font-size: 1.2rem;
  }

  .lightbox {
    padding: 12px;
  }

  .lightbox-panel {
    max-height: 86vh;
    border-radius: 18px;
  }

  .lightbox-image {
    max-height: 86vh;
  }

  .lightbox-caption {
    display: none;
  }

  .lightbox-button {
    width: 42px;
    height: 42px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }

  .why-proof-bubble {
    padding: 26px;
    border-radius: 24px;
  }

  .why-proof-main .section-title {
    font-size: 2.2rem;
  }

  .why-proof-highlight {
    padding: 16px;
  }

  .workflow-grid::before {
    top: 0;
    bottom: 0;
    left: 38px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(24, 199, 245, 0.12), rgba(24, 199, 245, 0.68), rgba(24, 199, 245, 0.12));
  }

  .workflow-card {
    padding-left: 94px;
  }

  .workflow-number {
    position: absolute;
    top: 0;
    left: 0;
  }

  .workflow-card h3,
  .workflow-card p {
    max-width: none;
  }

  .section {
    padding: 52px 0;
  }

  .section-services {
    padding-bottom: 42px;
  }

  .service-content-zone .section,
  .service-content-zone .service-gallery-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .service-content-zone .service-explain-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .section-heading-row .section-lead {
    width: 100%;
    max-width: none;
  }

  .section-title,
  .section-lead,
  .cta-band h2,
  .cta-band p,
  .contact-list a,
  .contact-list span,
  .footer-links a,
  .service-card,
  .info-card,
  .related-card,
  .process-step,
  .symptom-card,
  .contact-card,
  .map-card,
  .about-panel,
  .legal-content,
  .legal-nav,
  .cookie-consent,
  .cookie-modal-panel {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero h1,
  .service-hero h1 {
    font-size: 2.55rem;
    overflow-wrap: anywhere;
  }

  .home-hero {
    align-items: end;
    min-height: 100svh;
    padding: 128px 0 34px;
  }

  .home-hero::before {
    background:
      linear-gradient(180deg, rgba(5, 10, 18, 0.08), rgba(5, 10, 18, 0.46) 44%, rgba(5, 10, 18, 0.86)),
      linear-gradient(90deg, rgba(5, 10, 18, 0.46), rgba(5, 10, 18, 0.08));
  }

  .home-hero-slide {
    background-position: center top;
  }

  .home-hero-slide-1 {
    background-position: 82% top;
  }

  .home-hero-slide-2 {
    background-position: 44% top;
  }

  .home-hero-slide-3 {
    background-position: 78% top;
  }

  .home-hero-slide-4 {
    background-position: 34% top;
  }

  .home-hero-inner {
    display: grid;
    gap: 22px;
  }

  .hero-progress {
    grid-auto-flow: column;
    justify-content: start;
    align-self: auto;
    gap: 10px;
  }

  .hero-progress-button {
    width: 44px;
    height: 44px;
  }

  .hero-progress-button svg {
    width: 40px;
    height: 40px;
  }

  .service-hero {
    --service-hero-position: 72% top;
    align-items: flex-end;
    min-height: 86svh;
    padding: 104px 0 26px;
    background:
      linear-gradient(180deg, rgba(6, 19, 39, 0.08), rgba(6, 19, 39, 0.48) 44%, rgba(6, 19, 39, 0.86)),
      linear-gradient(90deg, rgba(6, 19, 39, 0.48), rgba(6, 19, 39, 0.08)),
      var(--hero-image) var(--service-hero-position) / cover no-repeat,
      var(--blue-950);
  }

  .legal-hero {
    min-height: 62svh;
  }

  .legal-content {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .legal-meta {
    width: 100%;
    border-radius: var(--radius-sm);
  }

  .legal-content p,
  .legal-content li {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .cookie-consent {
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    border-radius: 18px;
  }

  .cookie-consent-panel {
    grid-template-columns: 1fr;
    align-items: stretch;
    padding: 18px;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .cookie-button {
    flex: 1 1 100%;
  }

  .cookie-modal {
    padding: 10px;
  }

  .cookie-modal-header,
  .cookie-options,
  .cookie-modal-actions {
    padding-right: 18px;
    padding-left: 18px;
  }

  .cookie-option {
    grid-template-columns: 1fr;
  }

  .cookie-modal-actions .cookie-button {
    flex: 1 1 100%;
  }

  .service-hero-incarcare-freon-oradea {
    --service-hero-position: 44% top;
  }

  .service-hero-diagnoza-auto-oradea {
    --service-hero-position: 38% center;
  }

  .home-hero-content {
    max-width: 560px;
  }

  .service-hero-content {
    max-width: 560px;
  }

  .home-hero h1 {
    font-size: 2.55rem;
  }

  .home-hero .hero-copy {
    font-size: 1.04rem;
  }

  .home-hero .trust-strip {
    margin-top: 28px;
  }

  .home-hero .trust-item {
    min-height: 40px;
    padding: 8px 11px;
    font-size: 0.9rem;
  }

  .services-grid,
  .symptom-grid,
  .benefit-grid,
  .related-grid,
  .work-gallery {
    gap: 14px;
  }

  .symptom-grid,
  .benefit-grid,
  .process-steps,
  .work-gallery {
    margin-top: 28px !important;
  }

  .fleet-section {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .badge {
    max-width: 100%;
    white-space: normal;
  }

  .cta-band {
    max-width: 100%;
    padding: 26px;
    border-radius: 22px;
  }

  .cta-content {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

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

  .cta-band h2 {
    font-size: 2rem;
    line-height: 1.08;
  }

  .cta-band p {
    font-size: 1rem;
  }

  .faq-list {
    margin-top: 30px;
  }

  .faq-item summary {
    gap: 14px;
    padding: 18px 18px 12px;
    font-size: 0.98rem;
  }

  .faq-item:not([open]) summary {
    padding-bottom: 18px;
  }

  .faq-item summary::after {
    width: 26px;
    height: 26px;
  }

  .faq-item p {
    padding: 0 18px 18px;
    font-size: 0.98rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .site-footer .footer-grid > section:first-child {
    justify-items: start;
    text-align: left;
  }

  .site-footer .brand {
    justify-content: flex-start;
  }

  .site-footer .footer-grid > section:first-child p {
    margin-right: 0;
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-slide,
  .home-hero-panel {
    transition: none;
  }

  .hero-progress-button.is-active .hero-progress-ring {
    animation: none;
    stroke-dashoffset: 0;
  }
}
