﻿:root {
  --blue-900: #0d3b78;
  --blue-700: #1459ad;
  --blue-500: #2c7be5;
  --blue-100: #eaf2ff;
  --white: #ffffff;
  --gray-900: #162238;
  --gray-700: #48536a;
  --gray-300: #dbe4f0;
  --gray-100: #f5f8fc;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-soft: 0 12px 35px rgba(18, 52, 96, 0.13);
  --shadow-card: 0 8px 24px rgba(17, 50, 92, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--gray-900);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.9) 0 22%, transparent 22% 100%),
    repeating-linear-gradient(128deg, rgba(20, 89, 173, 0.055) 0 1px, transparent 1px 92px),
    linear-gradient(180deg, #eef5ff 0%, #f8fbff 42%, #e9f2ff 100%);
  line-height: 1.65;
  min-height: 100vh;
  opacity: 1;
  transition: opacity 0.45s ease;
}

html.js body {
  opacity: 0;
}

html.js body.page-loaded {
  opacity: 1;
}

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

main {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(246, 250, 255, 0.8) 0%, rgba(232, 242, 255, 0.72) 100%),
    radial-gradient(ellipse at 12% 18%, rgba(76, 143, 230, 0.18) 0%, transparent 34%),
    radial-gradient(ellipse at 86% 44%, rgba(239, 193, 109, 0.14) 0%, transparent 28%),
    repeating-linear-gradient(38deg, transparent 0 72px, rgba(20, 89, 173, 0.055) 72px 73px);
}

main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.48;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(20, 89, 173, 0.08) 18.2%, transparent 18.7% 58%, rgba(20, 89, 173, 0.07) 58.2%, transparent 58.8%),
    repeating-linear-gradient(0deg, transparent 0 108px, rgba(255, 255, 255, 0.58) 108px 109px);
  animation: backgroundDrift 18s ease-in-out infinite alternate;
}

main > * {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background:
    linear-gradient(135deg, rgba(7, 24, 49, 0.92), rgba(14, 63, 129, 0.86)),
    rgba(9, 28, 56, 0.9);
  box-shadow: 0 12px 30px rgba(9, 28, 56, 0.18);
  backdrop-filter: blur(14px);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled {
  background:
    linear-gradient(135deg, rgba(5, 18, 38, 0.96), rgba(11, 48, 96, 0.92)),
    rgba(9, 28, 56, 0.94);
  box-shadow: 0 14px 34px rgba(5, 18, 38, 0.28);
}

.video-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: linear-gradient(180deg, #071423 0%, #0d2540 100%);
}

.video-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 18, 35, 0.48) 0%, rgba(4, 12, 24, 0.74) 100%);
  z-index: 1;
}

.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.86);
}

.brand {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.brand img {
  height: 56px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  color: #edf4ff;
  font-weight: 700;
  padding: 0.35rem 0.1rem;
  position: relative;
}

.nav a.active,
.nav a:hover,
.nav a:focus-visible {
  color: #fff;
}

.nav a.active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7db5ff, #2c7be5);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(9, 28, 56, 0.36);
  backdrop-filter: blur(7px);
  pointer-events: none;
  z-index: 0;
}

.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.logo {
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.2px;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #efc16d, #67a4f6);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08), 0 0 22px rgba(103, 164, 246, 0.72);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #eff5ff;
  font-weight: 700;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.45rem 0.82rem;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.nav-links a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, #efc16d, #7db5ff);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(222, 235, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0.86rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-cta {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(26, 89, 171, 0.3);
  animation: ctaPulse 2.8s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.btn-cta:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(20, 89, 173, 0.32);
}

.section-offset {
  padding-top: 82px;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  place-items: center;
  background-image: url(obr1.jpg);
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 29, 58, 0.42) 0%, rgba(4, 19, 45, 0.65) 100%);
  background-size: 140% 140%;
  animation: heroGlow 9s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 790px;
}

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

.hero-shell {
  background: rgba(8, 28, 55, 0.42);
  border: 1px solid rgba(183, 210, 247, 0.2);
  border-radius: 24px;
  padding: 34px;
  backdrop-filter: blur(4px);
  box-shadow: 0 18px 42px rgba(5, 20, 43, 0.28);
}

.hero-kicker {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
  color: #bcd7ff;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}

.hero-copy-col {
  text-align: left;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero p {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: #e7eefc;
}

.hero-actions {
  margin-top: 1.9rem;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-tags {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-tags span {
  display: inline-flex;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: rgba(182, 215, 255, 0.18);
  border: 1px solid rgba(184, 213, 245, 0.35);
  color: #deebff;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-panel {
  display: grid;
  gap: 10px;
}

.hero-panel article {
  background: rgba(5, 25, 52, 0.56);
  border: 1px solid rgba(181, 211, 247, 0.22);
  border-radius: 16px;
  padding: 14px;
  text-align: left;
}

.hero-panel strong {
  display: block;
  font-size: 2rem;
  line-height: 1.1;
  color: #fff;
}

.hero-panel p {
  margin: 6px 0 0;
  font-size: 0.92rem;
  color: #d7e7ff;
}

.home-strip {
  border-top: 1px solid #e3ecfb;
  border-bottom: 1px solid #e3ecfb;
  background:
    linear-gradient(90deg, rgba(239, 193, 109, 0.16), transparent 18%, rgba(44, 123, 229, 0.12)),
    linear-gradient(90deg, #eff5ff 0%, #f8fbff 55%, #edf5ff 100%);
  overflow: hidden;
}

.strip-track {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  animation: stripFloat 12s ease-in-out infinite alternate;
}

.strip-track p {
  margin: 0;
  color: #2a4f85;
  font-weight: 700;
  white-space: nowrap;
  position: relative;
}

.strip-track p::after {
  content: "•";
  margin-left: 24px;
  color: #7fa8df;
}

.home-focus .section-head {
  text-align: center;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.focus-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-card);
  border-top: 4px solid #67a4f6;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

.focus-card::after,
.service-card::after,
.text-panel::after,
.long-copy::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -48px;
  top: -48px;
  border-radius: 999px;
  background: rgba(103, 164, 246, 0.12);
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}

.focus-card:hover::after,
.service-card:hover::after,
.text-panel:hover::after,
.long-copy:hover::after {
  transform: scale(1.3);
  opacity: 0.72;
}

.focus-card:nth-child(2) {
  border-top-color: #4f8ee6;
}

.focus-card:nth-child(3) {
  border-top-color: #2f73d5;
}

.focus-card h3 {
  margin: 0 0 8px;
}

.home-portal .section-head {
  text-align: center;
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.portal-grid .teaser-card {
  grid-column: auto;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  border: 1px solid rgba(20, 89, 173, 0.1);
}

.portal-grid .teaser-wide {
  background: linear-gradient(145deg, #ffffff 0%, #f2f7ff 100%);
}

.portal-grid .teaser-gallery {
  background: linear-gradient(145deg, #f8fbff 0%, #edf4ff 100%);
}

.home-portal .teaser-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from 210deg, rgba(53, 132, 241, 0.05), rgba(29, 98, 200, 0.35), rgba(53, 132, 241, 0.05));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.35s ease;
}

.home-portal .teaser-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(20, 76, 150, 0.18);
  border-color: rgba(20, 89, 173, 0.3);
}

.home-portal .teaser-card:hover::after {
  opacity: 1;
}

.home-portal .teaser-card:hover .teaser-link {
  color: #0d3b78;
}

.home-portal .teaser-card h3 {
  transition: transform 0.3s ease, color 0.3s ease;
}

.home-portal .teaser-card:hover h3 {
  transform: translateX(4px);
  color: #124f9c;
}

.home-portal .teaser-card p {
  flex: 1;
}

.home-focus.section {
  padding: 58px 0 46px;
}

.home-portal.section {
  padding: 46px 0 44px;
}

.home-cta-final {
  padding: 12px 0 68px;
}

.final-cta-box {
  background: linear-gradient(130deg, #0e3f81 0%, #1a5fb4 55%, #2f79dd 100%);
  color: #fff;
  border-radius: 24px;
  padding: 38px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(17, 62, 129, 0.28);
  position: relative;
  overflow: hidden;
}

.final-cta-box::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  top: -90px;
  left: -70px;
}

.final-cta-box::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  bottom: -100px;
  right: -40px;
}

.final-cta-box h2,
.final-cta-box p,
.final-cta-btn {
  position: relative;
  z-index: 1;
}

.final-cta-box h2 {
  margin: 0;
  color: #fff;
}

.final-cta-box p {
  margin: 10px 0 0;
  color: #e9f2ff;
}

.final-cta-btn {
  margin-top: 22px;
  background: #fff;
  color: #124f9c;
  box-shadow: 0 10px 24px rgba(10, 40, 82, 0.24);
}

.final-cta-btn:hover {
  color: #0d3b78;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: var(--white);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

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

.section {
  padding: 88px 0;
}

.section-head {
  margin-bottom: 2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue-700);
  font-weight: 800;
  font-size: 0.77rem;
}

.section h2,
.section h1 {
  margin: 0.3rem 0 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
}

.about-text {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

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

.feature-card,
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transform: translateY(var(--lift, 0)) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}

.feature-card:hover,
.service-card:hover {
  --lift: -6px;
  box-shadow: var(--shadow-soft);
}

.icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: var(--blue-100);
  color: var(--blue-700);
  font-weight: 800;
  margin-bottom: 12px;
}

.services-section {
  background: radial-gradient(circle at top right, #eaf2ff 0%, #f7faff 45%, #f3f7fd 100%);
}

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

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

.gallery-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  transition: transform 0.28s ease;
}

.gallery-grid img:hover {
  transform: scale(1.04);
}

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

.teaser-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.teaser-card h3 {
  margin: 0 0 10px;
}

.teaser-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue-700);
  font-weight: 700;
}

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

.teaser-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, 0.52) 50%, transparent 75%);
  transform: translateX(-130%);
}

.teaser-card:hover::before {
  animation: shine 0.9s ease;
}

.content-page .section {
  padding-top: 36px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.text-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-card);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.text-panel h3 {
  margin-top: 0;
}

.bullet-list {
  margin: 0 0 14px;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.long-copy {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}

.offer-intro-text {
  max-width: 980px;
  margin-bottom: 22px;
  color: #000;
}

.offer-intro-text p {
  margin: 0;
  color: #000;
}

.fleet-showcase {
  margin-bottom: 22px;
}

.fleet-highlight {
  margin-bottom: 0;
  background: linear-gradient(130deg, #0f4f9a 0%, #1f6ed8 55%, #2f86ef 100%);
  color: #fff;
  border-radius: 20px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  box-shadow: 0 16px 34px rgba(17, 74, 146, 0.25);
  position: relative;
  overflow: hidden;
  transition: border-radius 0.32s ease, box-shadow 0.32s ease, transform 0.32s ease;
}

.fleet-highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.18) 45%, transparent 72%);
  transform: translateX(-120%);
  pointer-events: none;
}

.fleet-showcase:has(.fleet-hover-note:hover) .fleet-highlight,
.fleet-showcase:has(.fleet-hover-note:focus-visible) .fleet-highlight {
  border-radius: 20px 20px 10px 10px;
  box-shadow: 0 22px 42px rgba(17, 74, 146, 0.3);
  transform: translateY(-2px);
  outline: none;
}

.fleet-showcase:has(.fleet-hover-note:hover) .fleet-highlight::after,
.fleet-showcase:has(.fleet-hover-note:focus-visible) .fleet-highlight::after {
  animation: certificateShine 1s ease;
}

.fleet-highlight .eyebrow {
  color: #d8eaff;
}

.fleet-highlight h2 {
  margin: 0.25rem 0 0.6rem;
  color: #fff;
}

.fleet-emphasis {
  color: #ffe28c;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 236, 176, 0.45);
  border-radius: 10px;
  padding: 0.08em 0.35em;
  box-decoration-break: clone;
}

.fleet-highlight p {
  margin: 0;
  color: #e9f3ff;
}

.fleet-hover-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.fleet-hover-note:hover,
.fleet-hover-note:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.38);
  outline: none;
  transform: translateY(-1px);
}

.fleet-stats {
  display: grid;
  gap: 10px;
  align-content: stretch;
}

.fleet-stats article {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(224, 239, 255, 0.25);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-height: 0;
}

.fleet-stats strong {
  font-size: 1.35rem;
  line-height: 1;
}

.fleet-stats span {
  font-size: 0.88rem;
  color: #eaf3ff;
}

.credibility-panel {
  margin: 22px 0 26px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
  align-items: stretch;
  padding: 24px;
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(255, 227, 155, 0.24), transparent 30%),
    linear-gradient(135deg, #071a35 0%, #123f78 54%, #0b2851 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 34px rgba(17, 74, 146, 0.22);
  position: relative;
  overflow: hidden;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.credibility-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 227, 155, 0.32) 42%, rgba(103, 164, 246, 0.22) 54%, transparent 78%);
  transform: translateX(-115%);
  pointer-events: none;
}

.credibility-panel::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  top: -90px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.credibility-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 227, 155, 0.42);
  box-shadow: 0 24px 48px rgba(9, 38, 84, 0.3);
}

.credibility-panel:hover::before {
  animation: certificateShine 1.05s ease;
}

.credibility-panel:hover::after {
  transform: scale(1.18) rotate(8deg);
  opacity: 0.9;
}

.credibility-copy,
.credibility-badges {
  position: relative;
  z-index: 1;
}

.credibility-panel .eyebrow {
  color: #ffe39b;
}

.credibility-panel h2 {
  margin: 0.25rem 0 0.75rem;
  color: #fff;
}

.credibility-panel p {
  margin: 0;
  color: #edf5ff;
}

.credibility-badges {
  display: grid;
  gap: 10px;
}

.credibility-badges article {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.credibility-badges article:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 227, 155, 0.34);
}

.credibility-badges span {
  display: block;
  margin-bottom: 4px;
  color: #cfe1ff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.credibility-badges strong {
  display: block;
  color: #fff;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.25;
}

.fleet-photo-grid {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transition: max-height 0.55s ease, opacity 0.32s ease, transform 0.42s ease, padding 0.42s ease;
}

.fleet-showcase:has(.fleet-hover-note:hover) .fleet-photo-grid,
.fleet-showcase:has(.fleet-hover-note:focus-visible) .fleet-photo-grid {
  max-height: 520px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  padding-top: 16px;
}

.fleet-photo-card {
  margin: 0;
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(17, 74, 146, 0.18);
  background: #dbeaff;
  transform: translateY(10px);
  transition: transform 0.42s ease, box-shadow 0.42s ease;
}

.fleet-showcase:has(.fleet-hover-note:hover) .fleet-photo-card,
.fleet-showcase:has(.fleet-hover-note:focus-visible) .fleet-photo-card {
  transform: translateY(0);
}

.fleet-showcase:has(.fleet-hover-note:hover) .fleet-photo-card:nth-child(2),
.fleet-showcase:has(.fleet-hover-note:focus-visible) .fleet-photo-card:nth-child(2) {
  transition-delay: 70ms;
}

.fleet-photo-card-offset {
  transform: none;
}

.fleet-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.fleet-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 29, 58, 0.02) 42%, rgba(8, 29, 58, 0.74) 100%);
  pointer-events: none;
}

.fleet-photo-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-weight: 800;
  line-height: 1.35;
  text-shadow: 0 2px 10px rgba(5, 20, 43, 0.38);
}

.fleet-photo-card:hover img {
  transform: scale(1.04);
}

.timeline-list {
  display: grid;
  gap: 14px;
}

.timeline-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--blue-500);
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
}

.timeline-item h3 {
  margin-top: 0;
}

.process-hover-page .timeline-list {
  gap: 16px;
}

.process-hover-page .process-card {
  position: relative;
  min-height: 150px;
  padding: 0;
  border: 1px solid #d5e4fb;
  border-left: 1px solid #d5e4fb;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 26px rgba(17, 74, 146, 0.12);
}

.process-hover-page .process-card-head {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  z-index: 2;
  background: linear-gradient(135deg, #175fb9 0%, #2f85ec 100%);
  display: flex;
  align-items: center;
  padding: 22px 28px;
  transition: transform 0.48s cubic-bezier(.23,1,.32,1);
}

.process-hover-page .process-card-head h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.process-hover-page .process-card-body {
  position: relative;
  z-index: 1;
  max-width: 58%;
  min-height: 150px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.process-hover-page .process-card-body p {
  margin: 0;
  line-height: 1.6;
  color: var(--gray-700);
}

.process-hover-page .process-card:hover .process-card-head,
.process-hover-page .process-card:focus-within .process-card-head {
  transform: translateX(56%);
}

.process-hover-page .process-card:hover .process-card-body,
.process-hover-page .process-card:focus-within .process-card-body {
  opacity: 1;
  transform: translateX(0);
}

.expanded-services .service-card p {
  margin-bottom: 0;
}

.large-gallery img {
  height: 230px;
}

.gallery-page-v2 {
  background:
    radial-gradient(circle at top left, rgba(44, 123, 229, 0.16), transparent 34%),
    linear-gradient(180deg, #f7faff 0%, #edf4ff 100%);
}

.gallery-page-v2 .gallery-page-shell {
  padding-top: 36px;
}

.gallery-page-v2 .gallery-intro {
  width: 100%;
  max-width: none;
}

.gallery-page-v2 .gallery-intro::before {
  content: "";
  display: block;
  width: 82px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #efc16d, rgba(20, 89, 173, 0.12));
}

.gallery-page-v2 .gallery-intro h1 {
  width: 100%;
  max-width: none;
  margin: 0.25rem 0 1rem;
  font-size: clamp(1.1rem, 5.35vw, 4rem);
  line-height: 1;
  white-space: nowrap;
  color: var(--blue-900);
}

.gallery-page-v2 .gallery-intro p {
  max-width: 690px;
  margin: 0;
  color: var(--gray-700);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
}

.gallery-page-v2 .gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.gallery-page-v2 .gallery-tile {
  position: relative;
  isolation: isolate;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #d9ecf6;
  box-shadow: 0 24px 70px rgba(7, 29, 57, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.72);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.gallery-page-v2 .gallery-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 29, 57, 0.05) 0%, rgba(7, 29, 57, 0.34) 38%, rgba(7, 29, 57, 0.96) 100%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), transparent 42%);
  opacity: 0.94;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.gallery-page-v2 .gallery-tile:hover,
.gallery-page-v2 .gallery-tile:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(7, 29, 57, 0.28);
  outline: none;
}

.gallery-page-v2 .gallery-tile:hover::before,
.gallery-page-v2 .gallery-tile:focus-visible::before {
  opacity: 0.98;
}

.gallery-page-v2 .gallery-tile img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: contain;
  transform: none;
  transition: transform 320ms ease, filter 320ms ease;
}

.gallery-page-v2 .gallery-tile:hover img,
.gallery-page-v2 .gallery-tile:focus-visible img {
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.03);
}

.gallery-page-v2 .gallery-tile figcaption {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  width: 100%;
  min-height: 132px;
  padding: 22px 22px 20px;
  color: #fff;
  transform: translateY(0);
  background:
    linear-gradient(180deg, rgba(7, 29, 57, 0), rgba(7, 29, 57, 0.72) 18%, rgba(7, 29, 57, 0.97) 100%);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.gallery-page-v2 .gallery-tile figcaption strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
}

.gallery-page-v2 .gallery-tile figcaption span {
  display: block;
  color: rgba(255, 255, 255, 0.94);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.page {
  min-height: 100vh;
  padding: 112px 0 78px;
}

.page-intro,
.gallery {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.page-intro {
  max-width: 820px;
  margin-bottom: 34px;
}

.page-intro h1 {
  margin: 0.25rem 0 1rem;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.04;
  color: var(--blue-900);
}

.page-intro p:last-child {
  color: var(--gray-700);
  font-size: 1.05rem;
}

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

.gallery .gallery-tile {
  margin: 0;
  min-height: 330px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 24px;
}

.contact-v2-top,
.contact-v2-bottom {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 24px;
}

.contact-v2-bottom {
  margin-top: 24px;
}

.contact-intro-card,
.contact-quick {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-card);
}

.contact-intro-card h2 {
  margin: 0 0 14px;
  line-height: 1.25;
}

.contact-badges {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-badges span {
  background: var(--blue-100);
  color: var(--blue-700);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.84rem;
  font-weight: 700;
}

.contact-quick h3 {
  margin-top: 0;
}

.contact-quick ul,
.contact-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.contact-steps {
  margin-top: 16px;
}

.contact-form,
.contact-info {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-card);
}

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

.contact-form label {
  display: block;
  font-weight: 600;
  color: var(--gray-700);
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  margin-top: 6px;
  padding: 0.82rem 0.95rem;
  border-radius: 12px;
  border: 1px solid var(--gray-300);
  font-family: inherit;
  font-size: 0.95rem;
  background: #fbfdff;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(44, 123, 229, 0.14);
}

.contact-form input[type="date"],
.contact-form input[type="month"],
.wizard-form input[type="date"],
.wizard-form input[type="month"] {
  padding-right: 2.9rem;
  border-color: #bcd2f2;
  background-image:
    linear-gradient(145deg, #ffffff 0%, #f0f6ff 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%231f6ed8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-size: auto, 18px;
  background-position: center, right 12px center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.contact-form input[type="date"]:hover,
.contact-form input[type="month"]:hover,
.wizard-form input[type="date"]:hover,
.wizard-form input[type="month"]:hover {
  border-color: #8fb5eb;
  transform: translateY(-1px);
}

.contact-form input[type="date"]:focus,
.contact-form input[type="month"]:focus,
.wizard-form input[type="date"]:focus,
.wizard-form input[type="month"]:focus {
  border-color: #2c7be5;
  box-shadow: 0 0 0 3px rgba(44, 123, 229, 0.2), 0 8px 18px rgba(44, 123, 229, 0.14);
}

.contact-form input[type="date"]::-webkit-calendar-picker-indicator,
.contact-form input[type="month"]::-webkit-calendar-picker-indicator,
.wizard-form input[type="date"]::-webkit-calendar-picker-indicator,
.wizard-form input[type="month"]::-webkit-calendar-picker-indicator {
  opacity: 0.02;
  cursor: pointer;
}

.contact-hub {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 20px;
}

.contact-cards {
  display: grid;
  gap: 12px;
}

.contact-showcase .contact-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(27, 79, 146, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-showcase .contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(12, 42, 79, 0.16);
}

.contact-page {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(244, 248, 255, 0) 0, #f5f8fc 520px),
    radial-gradient(circle at top left, rgba(44, 123, 229, 0.12), transparent 38%);
}

.contact-page.section-offset {
  padding-top: 0;
}

.contact-page > .section:not(.location-section) {
  padding-bottom: 0;
}

.contact-hero {
  position: relative;
  min-height: 520px;
  padding: 86px 0 74px;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(5, 20, 43, 0.94) 0%, rgba(14, 63, 129, 0.88) 56%, rgba(44, 123, 229, 0.72) 100%),
    url(obr1.jpg) center / cover;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(4, 16, 34, 0.08) 0%, rgba(4, 16, 34, 0.34) 100%);
  pointer-events: none;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 26px;
  align-items: center;
}

.contact-hero-copy h1 {
  margin: 0.2rem 0 1rem;
  max-width: 780px;
  font-size: clamp(2.15rem, 4vw, 3.7rem);
  line-height: 1.1;
}

.contact-hero-copy p {
  max-width: 700px;
  color: #e7f0ff;
  font-size: clamp(1rem, 2vw, 1.16rem);
}

.contact-hero .eyebrow {
  color: #cfe4ff;
}

.contact-actions {
  justify-content: flex-start;
  margin-top: 2rem;
}

.contact-hero-panel {
  background: rgba(7, 26, 52, 0.68);
  border: 1px solid rgba(220, 236, 255, 0.28);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 20px 42px rgba(5, 20, 43, 0.24);
  backdrop-filter: blur(8px);
}

.contact-hero-panel span {
  display: block;
  margin-bottom: 14px;
  color: #cfe4ff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.76rem;
}

.contact-hero-panel a {
  display: block;
  margin: 8px 0;
  color: #fff;
  font-size: clamp(1.35rem, 2.3vw, 1.8rem);
  font-weight: 800;
  line-height: 1.2;
}

.contact-hero-panel a:hover {
  color: #d9eaff;
}

.contact-hero-panel p {
  margin: 16px 0 0;
  color: #dceaff;
}

.contact-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.highlight-card {
  position: relative;
  min-height: 206px;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(145deg, #ffffff 0%, #f3f8ff 100%);
  border: 1px solid rgba(20, 89, 173, 0.1);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
  border-color: rgba(44, 123, 229, 0.24);
  box-shadow: var(--shadow-soft);
}

.highlight-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -50px;
  top: -42px;
  border-radius: 999px;
  background: rgba(44, 123, 229, 0.1);
}

.highlight-card strong {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: #fff;
  box-shadow: 0 8px 18px rgba(31, 110, 216, 0.24);
}

.highlight-card h2 {
  margin: 18px 0 8px;
  font-size: 1.14rem;
}

.highlight-card p {
  margin: 0;
  color: var(--gray-700);
}

.contact-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 20px;
  align-items: stretch;
}

.contact-showcase .main-contact {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 255, 0.98));
}

.contact-showcase .company-card {
  background: linear-gradient(145deg, #071a35 0%, #123f78 58%, #0b2851 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
}

.contact-showcase .company-card .contact-label,
.contact-showcase .company-card h2,
.contact-showcase .company-card address,
.contact-showcase .company-card dt,
.contact-showcase .company-card dd {
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
}

.contact-showcase .company-card .contact-label {
  color: #ffe39b;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 227, 155, 0.28);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
}

.contact-showcase .company-card h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  line-height: 1.22;
  margin-bottom: 16px;
}

.contact-showcase .company-card address {
  opacity: 1;
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 700;
}

.contact-showcase .company-card .company-details dt,
.contact-showcase .company-card .company-details dd {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.contact-showcase .company-card .company-details {
  margin-top: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 12px;
}

.contact-showcase .company-card .company-details dt,
.contact-showcase .company-card .company-details dd {
  margin: 0;
  padding: 10px 12px;
  border-top: 0;
  background: rgba(255, 255, 255, 0.12);
}

.contact-showcase .company-card .company-details dt {
  border-radius: 12px 0 0 12px;
  color: #ffe39b;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.contact-showcase .company-card .company-details dd {
  border-radius: 0 12px 12px 0;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.contact-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue-700);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.contact-card h2 {
  margin: 0 0 18px;
  font-size: clamp(1.35rem, 2.3vw, 1.8rem);
  line-height: 1.2;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-top: 10px;
  padding: 0.92rem 1rem;
  border-radius: 14px;
  background: #eef5ff;
  color: #154f9c;
  font-weight: 800;
  border: 1px solid #d4e4fb;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.contact-link::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #2c7be5;
  box-shadow: 0 0 0 5px rgba(44, 123, 229, 0.12);
}

.contact-link:hover {
  background: #e2efff;
  transform: translateX(3px);
}

.company-card address,
.location-copy address {
  font-style: normal;
}

.company-details {
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
}

.company-details dt {
  color: #bcd7ff;
  font-weight: 800;
  padding: 12px 0;
  border-top: 1px solid #dce8fb;
}

.company-details dd {
  margin: 0;
  font-weight: 800;
  padding: 12px 0;
  text-align: right;
  border-top: 1px solid #dce8fb;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 22px;
  align-items: stretch;
  padding-top: 0;
}

.location-copy {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(20, 89, 173, 0.1);
}

.location-copy h2 {
  margin: 0.25rem 0 0.7rem;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1.18;
}

.location-copy p {
  color: var(--gray-700);
}

.location-copy address {
  margin-top: 18px;
  display: grid;
  gap: 4px;
  color: var(--gray-900);
}

.location-copy address strong {
  color: var(--blue-900);
}

.location-tags {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.location-tags span {
  display: inline-flex;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 0.84rem;
  font-weight: 800;
}

.map-card {
  min-height: 420px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(20, 89, 173, 0.14);
  background: #eaf2ff;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: saturate(0.96) contrast(1.02);
}

.contact-card h3 {
  margin-top: 0;
}

.company-data {
  display: grid;
  gap: 6px;
}

.company-data p {
  margin: 0;
}

.contact-form-simple h3 {
  margin: 0 0 8px;
}

.contact-form-simple p {
  margin: 0 0 16px;
  color: var(--gray-700);
}

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

.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-card);
  border: 1px solid #dce8fb;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card::before {
  content: "\"";
  position: absolute;
  top: -22px;
  right: 12px;
  font-size: 6rem;
  line-height: 1;
  color: rgba(45, 123, 229, 0.12);
  font-weight: 800;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.review-stars {
  margin: 0 0 8px;
  letter-spacing: 0.08em;
  color: #f3b63a;
  font-size: 1.05rem;
}

.review-card h4 {
  margin: 12px 0 0;
  color: var(--blue-700);
}

.review-form {
  margin-top: 18px;
  background: linear-gradient(145deg, #ffffff 0%, #f3f8ff 100%);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(20, 89, 173, 0.14);
  border: 1px solid #dce8fb;
  position: relative;
  overflow: hidden;
}

.review-form::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(99, 167, 255, 0.14);
  top: -70px;
  right: -50px;
  pointer-events: none;
}

.review-form-head {
  position: relative;
  z-index: 1;
}

.review-form-head h3 {
  margin: 0;
}

.review-form-head p {
  margin: 6px 0 0;
  color: var(--gray-700);
  font-size: 0.93rem;
}

.review-form h3 {
  margin-top: 0;
}

.review-form input,
.review-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 0.82rem 0.95rem;
  border-radius: 12px;
  border: 1px solid var(--gray-300);
  font-family: inherit;
  font-size: 0.95rem;
  background: #fbfdff;
}

.review-form input:focus,
.review-form textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(44, 123, 229, 0.14);
}

.review-rating-row {
  margin-top: 14px;
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d4e4fb;
  background: #f6faff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.review-rating-row p {
  margin: 0;
  font-weight: 700;
  color: #285792;
}

.review-rating-row label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #d3e4fc;
  color: #c08a26;
  font-weight: 700;
  cursor: pointer;
}

.review-rating-row input {
  width: auto;
  margin: 0;
}

.review-meta-grid {
  position: relative;
  z-index: 1;
}

.review-tags {
  margin: 14px 0;
  border: 1px solid #d4e4fb;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: #f8fbff;
  position: relative;
  z-index: 1;
}

.review-tags legend {
  font-weight: 700;
  color: #2a5791;
  padding: 0 6px;
}

.review-tags label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.34rem 0.66rem;
  border: 1px solid #d2e1f8;
  border-radius: 999px;
  background: #fff;
  color: #355786;
  font-size: 0.86rem;
  cursor: pointer;
}

.review-tags input {
  width: auto;
  margin: 0;
}

.review-note {
  margin: 8px 0 0;
  font-size: 0.84rem;
  color: var(--gray-700);
  position: relative;
  z-index: 1;
}

.review-submit {
  margin-top: 16px;
  background: linear-gradient(135deg, #1f6ed8, #4691f6);
  box-shadow: 0 10px 22px rgba(31, 110, 216, 0.3);
  position: relative;
  z-index: 1;
}

.wizard-wrap {
  background: linear-gradient(150deg, #ffffff 0%, #f4f9ff 100%);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 16px 36px rgba(16, 52, 102, 0.16);
  border: 1px solid #dce8fb;
  position: relative;
  overflow: hidden;
}

.wizard-wrap::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(64, 146, 255, 0.11);
  top: -80px;
  right: -70px;
  pointer-events: none;
}

.wizard-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.wizard-bar {
  height: 8px;
  border-radius: 999px;
  background: #deebff;
  overflow: hidden;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.wizard-bar span {
  display: block;
  height: 100%;
  width: 33.333%;
  border-radius: inherit;
  background: linear-gradient(90deg, #378ff4 0%, #2c7be5 55%, #1d63cf 100%);
  box-shadow: 0 4px 12px rgba(36, 116, 225, 0.45);
  transition: width 0.35s ease;
}

.wizard-pill {
  border: 1px solid var(--gray-300);
  border-radius: 14px;
  background: rgba(247, 250, 255, 0.95);
  padding: 12px;
  font-weight: 700;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 8px;
}

.wizard-pill span {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dbe9ff;
  color: var(--blue-700);
  font-size: 0.84rem;
}

.wizard-pill.is-active {
  background: #ebf3ff;
  border-color: #9cc2f4;
  color: var(--blue-900);
  transform: translateY(-2px);
}

.wizard-pill.is-active span {
  background: var(--blue-500);
  color: #fff;
}

.wizard-pill.is-done {
  background: #edf8f2;
  border-color: #9fd4b3;
}

.wizard-pill.is-done span {
  background: #36a36a;
  color: #fff;
}

.wizard-form h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.wizard-form label {
  display: block;
  font-weight: 600;
  color: var(--gray-700);
  font-size: 0.92rem;
}

.wizard-form input,
.wizard-form select,
.wizard-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 0.82rem 0.95rem;
  border-radius: 12px;
  border: 1px solid #cfdff7;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fbfdff;
}

.wizard-form input:focus,
.wizard-form select:focus,
.wizard-form textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(44, 123, 229, 0.16);
}

.wizard-step {
  animation: fadeStep 0.35s ease;
  position: relative;
  z-index: 1;
}

.wizard-step.step-forward {
  animation: slideForward 0.32s ease;
}

.wizard-step.step-backward {
  animation: slideBackward 0.32s ease;
}

.wizard-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.wizard-back {
  color: var(--blue-900);
  background: #eaf2ff;
  border: 1px solid #c6dbfa;
}

.range-block {
  margin: 14px 0;
  background: #f4f8ff;
  border: 1px solid #d9e7fd;
  border-radius: 14px;
  padding: 14px;
}

.range-block label {
  font-weight: 700;
}

.range-block input[type="range"] {
  appearance: none;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d1e3fd 0%, #8cb9f4 100%);
  border: 0;
  margin-top: 10px;
}

.range-block input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 19px;
  height: 19px;
  border-radius: 999px;
  background: #1f6ed8;
  border: 2px solid #fff;
  box-shadow: 0 2px 10px rgba(31, 110, 216, 0.4);
}

.range-value {
  margin: 10px 0 0;
  color: #1a4f9d;
}

.chips-field {
  margin: 14px 0;
  border: 1px solid #d9e7fd;
  border-radius: 14px;
  padding: 12px;
  background: #f8fbff;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chips-field legend {
  font-weight: 700;
  color: #1f4f98;
  padding: 0 6px;
}

.chip-option {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #cbdcf6;
  background: #fff;
  font-size: 0.85rem;
  color: #345b93;
  cursor: pointer;
}

.chip-option input {
  width: auto;
  margin: 0;
}

.wizard-error {
  width: 100%;
  margin: 4px 0 0;
  color: #c53f3f;
  font-size: 0.83rem;
  font-weight: 700;
}

.contact-pref {
  margin: 12px 0;
  border: 1px solid #d9e7fd;
  border-radius: 12px;
  padding: 12px;
  background: #f8fbff;
  display: flex;
  gap: 18px;
  align-items: center;
}

.contact-pref legend {
  font-weight: 700;
  color: #1f4f98;
  padding: 0 6px;
}

.contact-pref label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.contact-pref input {
  width: auto;
  margin: 0;
}

.summary-box {
  margin-top: 14px;
  border-radius: 14px;
  padding: 14px;
  background: #eff5ff;
  border: 1px solid #cfe0fb;
}

.summary-box h4 {
  margin: 0 0 8px;
  color: #174f9f;
}

.summary-box ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 4px;
}

.consent-row {
  margin-top: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
}

.consent-row input {
  width: auto;
  margin-top: 4px;
}

.wizard-success {
  margin-top: 12px;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  background: #edf8f2;
  color: #1f7f4d;
  font-weight: 700;
}

@keyframes fadeStep {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideForward {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideBackward {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.btn-submit {
  margin-top: 14px;
  width: 100%;
  font-size: 1rem;
  padding: 0.95rem;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(76, 143, 230, 0.34), transparent 28%),
    linear-gradient(135deg, #08182d 0%, #0f2e58 48%, #0f1d33 100%);
  color: #d9e2f3;
  padding: 66px 0 58px;
  margin-top: 0;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, transparent 0 88px, rgba(255, 255, 255, 0.045) 88px 89px),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
  pointer-events: none;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-inner {
  width: min(1120px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand p {
  order: 1;
  margin-top: 0;
}

.footer-brand .footer-logo,
.footer-brand .footer-standalone-logo {
  order: 2;
}

.footer-brand .footer-logo-name {
  order: 3;
}

.footer-brand img {
  height: auto;
  width: 118px;
  max-height: 118px;
  object-fit: contain;
  margin-bottom: 10px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-nav a,
.footer-contact a {
  color: #deebff;
}

.footer-contact {
  font-style: normal;
}

.footer-bottom {
  width: min(1120px, 92%);
  margin: 18px auto 0;
  padding-top: 14px;
  border-top: 1px solid rgba(222, 235, 255, 0.12);
  color: #c7d6ee;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 28px;
}

.footer-grid > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid > div:first-child p {
  order: 1;
  margin-top: 0;
}

.footer-logo {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  order: 2;
  margin: 8px 0 0;
}

.footer-logo img {
  width: 118px;
  height: auto;
  max-height: 118px;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.footer-logo span,
.footer-logo-name {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
}

.footer-standalone-logo {
  width: 118px;
  height: auto;
  max-height: 118px;
  object-fit: contain;
  border-radius: 18px;
  margin-bottom: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.footer-logo-name {
  display: block;
  margin-bottom: 10px;
}

.site-footer h4 {
  margin-top: 0;
  color: #fff;
  position: relative;
}

.site-footer h4::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #efc16d, #67a4f6);
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

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

.site-footer a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer li a:hover {
  display: inline-block;
  transform: translateX(3px);
}

.content-page,
.page {
  background:
    linear-gradient(180deg, rgba(246, 250, 255, 0.86) 0%, rgba(231, 241, 255, 0.88) 100%),
    radial-gradient(ellipse at 8% 12%, rgba(44, 123, 229, 0.18) 0%, transparent 32%),
    radial-gradient(ellipse at 92% 30%, rgba(239, 193, 109, 0.16) 0%, transparent 24%),
    repeating-linear-gradient(135deg, transparent 0 86px, rgba(20, 89, 173, 0.055) 86px 87px);
}

.gallery-page-v2 {
  background:
    linear-gradient(180deg, rgba(243, 248, 255, 0.72) 0%, rgba(228, 240, 255, 0.84) 100%),
    radial-gradient(ellipse at top left, rgba(44, 123, 229, 0.22), transparent 36%),
    radial-gradient(ellipse at 84% 18%, rgba(239, 193, 109, 0.18), transparent 26%),
    repeating-linear-gradient(42deg, transparent 0 78px, rgba(20, 89, 173, 0.06) 78px 79px);
}

.contact-page {
  background:
    linear-gradient(180deg, rgba(244, 248, 255, 0) 0, rgba(231, 241, 255, 0.94) 520px),
    radial-gradient(ellipse at top left, rgba(44, 123, 229, 0.16), transparent 38%),
    radial-gradient(ellipse at 88% 32%, rgba(239, 193, 109, 0.13), transparent 28%),
    repeating-linear-gradient(130deg, transparent 0 90px, rgba(20, 89, 173, 0.05) 90px 91px);
}

.focus-card,
.teaser-card,
.about-text,
.feature-card,
.service-card,
.text-panel,
.long-copy,
.timeline-item,
.contact-intro-card,
.contact-quick,
.contact-form,
.contact-info,
.contact-showcase .contact-card:not(.main-contact):not(.company-card),
.review-card,
.wizard-wrap {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 249, 255, 0.94) 100%);
  border: 1px solid rgba(20, 89, 173, 0.11);
  box-shadow: 0 12px 28px rgba(17, 50, 92, 0.12);
}

.focus-card,
.service-card,
.text-panel,
.long-copy,
.teaser-card {
  backdrop-filter: blur(2px);
}

.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 1200;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, #4cc3ff 0%, var(--blue-500) 45%, #1f6ed8 100%);
  box-shadow: 0 2px 10px rgba(44, 123, 229, 0.4);
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 10px 24px rgba(26, 89, 171, 0.3);
  }
  50% {
    box-shadow: 0 14px 30px rgba(26, 89, 171, 0.5);
  }
}

@keyframes heroGlow {
  0%,
  100% {
    filter: saturate(100%);
    opacity: 1;
  }
  50% {
    filter: saturate(120%);
    opacity: 0.95;
  }
}

@keyframes shine {
  from {
    transform: translateX(-130%);
  }
  to {
    transform: translateX(130%);
  }
}

@keyframes certificateShine {
  from {
    transform: translateX(-115%);
  }
  to {
    transform: translateX(115%);
  }
}

@keyframes backgroundDrift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, -18px, 0);
  }
}

@keyframes stripFloat {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-18px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .contact-showcase,
  .contact-hero-grid,
  .location-section {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: sticky;
  }

  .site-header .brand {
    margin-bottom: 12px;
  }

  .site-header .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-page {
    padding-top: 0;
  }

  .about-layout,
  .contact-layout,
  .contact-hub,
  .contact-v2-top,
  .contact-v2-bottom,
  .content-grid,
  .fleet-photo-grid,
  .fleet-highlight,
  .credibility-panel {
    grid-template-columns: 1fr;
  }

  .fleet-photo-grid {
    max-height: none;
    opacity: 1;
    overflow: visible;
    pointer-events: auto;
    transform: none;
    padding-top: 16px;
  }

  .fleet-photo-card {
    transform: none;
  }

  .fleet-photo-card-offset {
    transform: none;
  }

  .home-hero-grid,
  .focus-grid {
    grid-template-columns: 1fr;
  }

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

  .portal-grid .teaser-card,
  .portal-grid .teaser-wide {
    grid-column: auto;
  }

  .portal-grid .teaser-card:first-child {
    grid-column: 1 / -1;
  }

  .home-portal .teaser-card:hover {
    transform: translateY(-6px);
  }

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

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

  .wizard-progress {
    grid-template-columns: 1fr;
  }

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

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-contact {
    grid-column: 1 / -1;
  }

  .process-hover-page .process-card {
    min-height: 0;
  }

  .process-hover-page .process-card-head {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
    padding: 18px 18px;
  }

  .process-hover-page .process-card-body {
    max-width: 100%;
    min-height: 0;
    opacity: 1;
    transform: none;
    padding: 16px 18px 18px;
  }
}

@media (max-width: 760px) {
  .site-header::before {
    display: none;
  }

  .navbar {
    min-height: 72px;
    position: relative;
  }

  .logo {
    font-size: 1.18rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 4%;
    right: 4%;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(235, 244, 255, 0.96));
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    border: 1px solid rgba(20, 89, 173, 0.14);
    border-radius: 20px;
    box-shadow: 0 18px 34px rgba(8, 28, 55, 0.24);
    transform: translateY(-8px) scale(0.98);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-links a {
    color: var(--blue-900);
    width: 100%;
    justify-content: space-between;
    min-height: 46px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(20, 89, 173, 0.08);
  }

  .nav-links a.is-active {
    color: var(--blue-700);
    background: #eaf2ff;
  }

  .nav-links a.is-active::after {
    left: 14px;
    right: auto;
    bottom: 8px;
    width: 36px;
  }

  .nav-links.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .btn-cta {
    display: none;
  }

  .section-offset {
    padding-top: 72px;
  }

  .hero {
    min-height: 76vh;
    padding: 34px 0;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .hero p {
    font-size: 0.98rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .feature-cards,
  .service-grid,
  .gallery-grid,
  .gallery,
  .gallery-page-v2 .gallery,
  .reviews-grid,
  .page-teasers,
  .focus-grid,
  .portal-grid,
  .field-grid,
  .footer-grid,
  .footer-inner,
  .contact-highlights {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    min-height: auto;
    padding: 56px 0 46px;
  }

  .gallery-page-v2 .gallery-page-shell {
    padding-top: 34px;
  }

  .gallery,
  .gallery-page-v2 .gallery {
    gap: 14px;
    margin-top: 34px;
  }

  .gallery-page-v2 .gallery-intro h1 {
    font-size: clamp(1.05rem, 5.05vw, 2.25rem);
  }

  .gallery-page-v2 .gallery-tile,
  .gallery-page-v2 .gallery-tile img {
    min-height: 260px;
  }

  .gallery-page-v2 .gallery-tile figcaption {
    transform: translateY(0);
  }

  .contact-actions {
    align-items: stretch;
  }

  .contact-actions .btn {
    width: 100%;
  }

  .contact-hero-panel,
  .contact-showcase .contact-card,
  .location-copy {
    padding: 20px;
    border-radius: 18px;
  }

  .contact-link {
    align-items: flex-start;
    font-size: 0.95rem;
  }

  .map-card,
  .map-card iframe {
    min-height: 330px;
  }

  .location-section {
    padding-top: 0;
  }

  .footer-contact {
    grid-column: auto;
  }

  .site-footer {
    padding: 44px 0;
  }

  .footer-grid,
  .footer-inner {
    gap: 26px;
  }

  .footer-grid > div:first-child,
  .footer-brand {
    align-items: flex-start;
  }

  .wizard-wrap {
    padding: 20px;
  }

  .contact-pref {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .section {
    padding: 58px 0;
  }

  .review-rating-row {
    align-items: flex-start;
  }

  .review-rating-row label {
    width: 100%;
    justify-content: space-between;
  }

  .final-cta-box {
    padding: 30px 20px;
  }

  .tilt-card {
    transform: none;
  }

  .credibility-panel:hover,
  .credibility-badges article:hover {
    transform: none;
  }
}

@media (max-width: 520px) {
  .container,
  .navbar {
    width: min(100% - 28px, 1120px);
  }

  .home-focus.section,
  .home-portal.section {
    padding: 42px 0;
  }

  .section h2,
  .section h1 {
    font-size: 1.75rem;
  }

  .focus-card,
  .teaser-card,
  .service-card,
  .text-panel,
  .long-copy {
    border-radius: 18px;
    padding: 20px;
  }

  .fleet-photo-card,
  .fleet-photo-card img {
    min-height: 250px;
  }

  .gallery-grid img {
    height: 180px;
  }
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  font-size: 1.35rem;
  background: linear-gradient(145deg, #e8f1ff, #dbeaff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
