:root {
  --blue-900: #123b6d;
  --blue-800: #1f4f91;
  --blue-700: #235a9f;
  --blue-100: #eaf4ff;
  --blue-050: #f4f9ff;
  --cyan: #42c5e8;
  --text: #1f2933;
  --muted: #667585;
  --white: #ffffff;
  --line: rgba(31, 79, 145, 0.14);
  --shadow: 0 24px 70px rgba(18, 59, 109, 0.16);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--blue-050);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.is-lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

h1,
h2,
h3,
p,
a,
span,
strong,
li {
  overflow-wrap: break-word;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(66, 197, 232, 0.8);
  outline-offset: 4px;
}

.nowrap {
  white-space: nowrap;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background:
    radial-gradient(circle at 82% 0%, rgba(255, 255, 255, 0.12), transparent 30%),
    linear-gradient(to top left, #314f8a 0%, #28589f 62%, #28589f 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 42px rgba(18, 59, 109, 0.18);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1220px, calc(100% - 32px));
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 230px;
  color: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.78rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand img {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 18px;
  object-fit: cover;
  display: block;
  background: #28589f;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-700), var(--cyan));
  box-shadow: 0 12px 28px rgba(35, 90, 159, 0.22);
}

.brand-mark svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: #d9f5ff;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  box-shadow: 0 14px 30px rgba(18, 59, 109, 0.22);
}

.nav-cta {
  color: #1f4f91;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(7, 30, 65, 0.2);
}

.button.secondary {
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--line);
}

.button.white {
  color: var(--blue-900);
  background: var(--white);
}

.call-button {
  min-width: 204px;
  min-height: 64px;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 24px;
  line-height: 1.15;
  white-space: nowrap;
}

.call-button span,
.call-button strong {
  display: block;
}

.cta-actions .button {
  min-width: 204px;
  min-height: 64px;
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(18, 59, 109, 0.24);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  padding: 11px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 99px;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(66, 197, 232, 0.18), transparent 30%),
    linear-gradient(180deg, #f8fcff 0%, var(--blue-050) 78%);
}

.hero::after,
.services::before,
.trust::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' d='M0 72l60-12c60-12 180-36 300-28s240 48 360 52 240-28 360-38 240 2 300 8l60 6v80H0Z'/%3E%3C/svg%3E") center bottom / cover no-repeat;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    radial-gradient(circle, rgba(35, 90, 159, 0.22) 1px, transparent 1px),
    linear-gradient(135deg, transparent 44%, rgba(66, 197, 232, 0.18) 45%, transparent 46%);
  background-size: 34px 34px, 190px 190px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  align-items: center;
  gap: 68px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-700);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.eyebrow.light {
  color: #c7efff;
}

h1,
h2,
h3 {
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(2.55rem, 6.1vw, 6.35rem);
  white-space: nowrap;
}

.hero h2 {
  max-width: 760px;
  margin: 10px 0 22px;
  color: #163f73;
  font-size: clamp(1.65rem, 3vw, 3.05rem);
  hyphens: none;
}

.hero-text {
  max-width: 680px;
  margin: 0 0 24px;
  color: #44576a;
  font-size: 1.12rem;
}

.trust-badge {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --spot-x: 50%;
  --spot-y: 50%;
  width: min(330px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 26px 28px 30px;
  margin-bottom: 24px;
  color: var(--blue-900);
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(255, 255, 255, 0.98), rgba(234, 244, 255, 0.82) 42%, rgba(255, 255, 255, 0.76) 100%);
  border: 1px solid rgba(66, 197, 232, 0.36);
  border-radius: 28px;
  box-shadow: 0 16px 42px rgba(35, 90, 159, 0.12);
  font-weight: 900;
  transform-style: preserve-3d;
  transition: transform 140ms ease, box-shadow 180ms ease, background 180ms ease;
  will-change: transform;
}

.trust-badge span {
  color: #304156;
  font-size: 1rem;
  text-align: center;
  white-space: nowrap;
}

.trust-badge img {
  width: 225px;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.12));
  transition: filter 180ms ease;
}

.trust-badge:hover {
  transform: perspective(760px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-5px);
  box-shadow: 0 26px 60px rgba(18, 59, 109, 0.22);
}

.trust-badge:hover img,
.graf-card:hover img {
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.24));
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  width: min(330px, 100%);
}

.hero-actions .button {
  flex: 1 1 0;
  min-width: 0;
  justify-content: center;
  text-align: center;
}

.hero-media {
  position: absolute;
  top: 0;
  right: -8vw;
  bottom: -24px;
  width: min(72vw, 1160px);
  min-height: calc(100% + 48px);
  background-image:
    linear-gradient(90deg, rgba(244, 249, 255, 1) 0%, rgba(244, 249, 255, 0.92) 13%, rgba(244, 249, 255, 0.52) 31%, rgba(244, 249, 255, 0.08) 54%, rgba(244, 249, 255, 0) 76%),
    linear-gradient(180deg, rgba(244, 249, 255, 0.38) 0%, rgba(244, 249, 255, 0.06) 42%, rgba(244, 249, 255, 0.9) 100%),
    url("assets/hero-graf-truck.jpeg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
  opacity: 0.94;
  transform: scale(1.04);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 12%, #000 36%),
    linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 12%, #000 36%),
    linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
  mask-composite: intersect;
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero-media::before {
  inset: -24px -22px -36px -150px;
  background:
    linear-gradient(180deg, var(--blue-050) 0%, rgba(244, 249, 255, 0.72) 5%, rgba(244, 249, 255, 0) 20%),
    linear-gradient(90deg, var(--blue-050) 0%, rgba(244, 249, 255, 0.86) 20%, rgba(244, 249, 255, 0) 43%),
    linear-gradient(270deg, var(--blue-050) 0%, rgba(244, 249, 255, 0.72) 8%, rgba(244, 249, 255, 0) 22%),
    linear-gradient(0deg, var(--blue-050) 0%, rgba(244, 249, 255, 0.82) 10%, rgba(244, 249, 255, 0) 28%);
}

.hero-media::after {
  top: -20px;
  right: -18px;
  bottom: -28px;
  width: 230px;
  background: linear-gradient(90deg, rgba(244, 249, 255, 0), rgba(244, 249, 255, 0.96));
  filter: blur(18px);
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.split-heading h2,
.trust-panel h2,
.contact-copy h2,
.cta-inner h2 {
  margin: 0 0 16px;
  color: var(--blue-900);
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.section-heading p,
.split-heading p,
.trust-panel p,
.contact-copy p {
  color: var(--muted);
  margin: 0;
}

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

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

.service-card {
  min-height: 278px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 249, 255, 0.9)),
    var(--white);
  box-shadow: 0 18px 48px rgba(18, 59, 109, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(66, 197, 232, 0.48);
  box-shadow: 0 26px 64px rgba(18, 59, 109, 0.14);
}

.service-card h3 {
  margin: 20px 0 10px;
  color: var(--blue-900);
  font-size: 1.18rem;
}

.service-card p {
  margin: 0;
  color: #526578;
}

.icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--blue-700);
  font-size: 1.65rem;
  font-weight: 900;
  background: linear-gradient(145deg, rgba(66, 197, 232, 0.2), rgba(35, 90, 159, 0.12));
}

.process {
  background: linear-gradient(180deg, var(--white), var(--blue-050));
}

.split-heading {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 46px;
}

.process-track {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 0;
  margin: 0;
  counter-reset: item;
  position: relative;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(35, 90, 159, 0.28), transparent);
}

.process-track li {
  position: relative;
  z-index: 1;
  min-height: 164px;
  padding: 0 14px;
  color: var(--blue-900);
  font-weight: 800;
  text-align: center;
}

.process-track span {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border: 8px solid var(--blue-050);
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-700), var(--cyan));
  box-shadow: 0 16px 36px rgba(18, 59, 109, 0.18);
  font-family: "Segoe UI", Arial, sans-serif;
}

.trust {
  overflow: hidden;
  background: var(--blue-900);
}

.trust::before {
  top: 0;
  bottom: auto;
  transform: rotate(180deg);
  opacity: 0.06;
}

.trust-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 40px;
  align-items: center;
}

.trust-panel {
  display: grid;
  align-content: start;
  padding: 36px;
  border-radius: 32px;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(66, 197, 232, 0.28), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.18);
  min-width: 0;
  overflow: hidden;
}

.trust-panel h2,
.trust-panel p {
  color: var(--white);
}

.trust-panel h2 {
  max-width: 100%;
  margin-right: 10px;
  font-size: clamp(2.1rem, 3.35vw, 3.05rem);
  line-height: 1.08;
}

.graf-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --spot-x: 50%;
  --spot-y: 50%;
  margin-top: 28px;
  width: min(442px, 100%);
  justify-self: center;
  padding: 26px 30px 28px;
  border-radius: 24px;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(255, 255, 255, 0.98), rgba(234, 244, 255, 0.84) 42%, rgba(255, 255, 255, 0.82) 100%);
  color: var(--blue-900);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
  text-align: center;
  transform-style: preserve-3d;
  transition: transform 140ms ease, box-shadow 180ms ease, background 180ms ease;
  will-change: transform;
}

.graf-card:hover {
  transform: perspective(760px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-5px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.graf-card span,
.graf-card img {
  display: block;
}

.graf-card span {
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.graf-card img {
  width: min(300px, 88%);
  height: auto;
  margin: 12px auto 0;
  background: transparent;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.16));
  transition: filter 180ms ease;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.trust-item {
  min-height: 108px;
  display: flex;
  align-items: center;
  padding: 22px 22px 22px 58px;
  border-radius: 22px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
  font-weight: 800;
}

.trust-item::before {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-900);
  background: var(--cyan);
}

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

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

.gallery-card {
  position: relative;
  display: block;
  margin: 0;
  min-height: 0;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(18, 59, 109, 0.12);
  background: var(--blue-100);
  cursor: zoom-in;
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 400ms ease;
}

.gallery-card.is-extra {
  display: none;
}

.gallery-grid.is-expanded .gallery-card.is-extra {
  display: block;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card:focus-visible {
  outline: 4px solid rgba(66, 197, 232, 0.72);
  outline-offset: 5px;
}

.gallery-card figcaption {
  position: absolute;
  inset: auto 14px 14px;
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--white);
  background: rgba(18, 59, 109, 0.82);
  backdrop-filter: blur(10px);
  font-weight: 900;
}

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.cta-band {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(66, 197, 232, 0.5), transparent 30%),
    linear-gradient(135deg, var(--blue-900), var(--blue-700));
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.cta-inner h2,
.cta-inner p {
  color: var(--white);
  margin-left: 0;
}

.cta-inner h2 {
  max-width: 950px;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  overflow-wrap: normal;
  hyphens: none;
}

.cta-inner p {
  margin: 0;
  max-width: 620px;
}

.contact {
  background:
    radial-gradient(circle at 12% 8%, rgba(66, 197, 232, 0.12), transparent 32%),
    var(--blue-050);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: stretch;
}

.contact-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.contact-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 60px rgba(18, 59, 109, 0.1);
}

.contact-card {
  width: min(560px, 100%);
  margin-top: auto;
  padding: 30px 32px;
  transition: transform 420ms ease, border-color 420ms ease, background 420ms ease, box-shadow 420ms ease;
  transform-origin: center;
}

.contact-card.is-highlighted {
  animation: contactCardPulse 1600ms ease both;
}

.owner-note {
  width: min(560px, 100%);
  max-width: 100%;
  margin-top: 30px;
  padding: 0;
  border: 0;
  border-radius: 30px;
  background: transparent;
  box-shadow: 0 24px 64px rgba(18, 59, 109, 0.13);
  overflow: hidden;
}

.owner-note img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 30px;
}

.contact-card h3 {
  margin: 0 0 18px;
  color: var(--blue-900);
  font-size: 1.35rem;
}

.contact-card a {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  color: #34495e;
  font-size: 1.04rem;
  font-weight: 800;
}

.contact-card a img {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.contact-form {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 18px;
  padding: 26px;
  border-color: transparent;
  background: transparent;
  transition: min-height 260ms ease;
}

.recaptcha-wrapper {
  display: flex;
  justify-content: flex-start;
  min-height: 78px;
  align-items: center;
}

.recaptcha-wrapper .g-recaptcha {
  max-width: 100%;
  transform-origin: left center;
}

.contact-form::before,
.contact-form::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.contact-form::before {
  inset: -42%;
  z-index: 0;
  background:
    conic-gradient(
      from 0deg,
      rgba(66, 197, 232, 0),
      rgba(66, 197, 232, 0.85),
      rgba(49, 79, 138, 0.95),
      rgba(66, 197, 232, 0)
    );
  animation: formBorderFlow 7s linear infinite;
}

.contact-form::after {
  inset: 2px;
  z-index: 0;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
}

.contact-form > * {
  position: relative;
  z-index: 1;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-900);
  font-weight: 900;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid rgba(31, 79, 145, 0.2);
  border-radius: 16px;
  color: var(--text);
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(66, 197, 232, 0.15);
  outline: 0;
}

.error {
  display: none;
  color: #b42318;
  font-size: 0.84rem;
  font-weight: 700;
}

.was-validated :invalid + .error {
  display: block;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--blue-700);
  font-weight: 900;
}

.privacy-note {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  color: rgba(31, 57, 88, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.55;
}

.privacy-note a {
  color: var(--blue-700);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form.is-submitted {
  display: flex;
  min-height: 520px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-form.is-submitting > :not(.form-success) {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.contact-form.is-submitted > :not(.form-success) {
  display: none;
}

.form-success {
  display: none;
  width: min(420px, 100%);
  margin: auto;
}

.contact-form.is-submitted .form-success {
  display: grid;
  justify-items: center;
  gap: 18px;
  animation: successFadeIn 420ms ease both;
}

.form-success img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.form-success h3 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(1.7rem, 4vw, 2.35rem);
}

.form-success p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

@keyframes successFadeIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes formBorderFlow {
  to {
    transform: rotate(1turn);
  }
}

@keyframes contactCardPulse {
  0% {
    transform: translateY(0) scale(1);
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 20px 60px rgba(18, 59, 109, 0.1);
  }
  24% {
    transform: translateY(-10px) scale(1.04);
    border-color: rgba(40, 88, 159, 0.9);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 0 0 5px rgba(40, 88, 159, 0.16), 0 28px 72px rgba(18, 59, 109, 0.22);
  }
  78% {
    transform: translateY(-10px) scale(1.04);
    border-color: rgba(40, 88, 159, 0.9);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 0 0 5px rgba(40, 88, 159, 0.16), 0 28px 72px rgba(18, 59, 109, 0.22);
  }
  100% {
    transform: translateY(0) scale(1);
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 20px 60px rgba(18, 59, 109, 0.1);
  }
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 34px 82px;
  background: rgba(5, 22, 44, 0.88);
  backdrop-filter: blur(14px);
}

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

.gallery-lightbox figure {
  width: min(1080px, 100%);
  margin: 0;
  color: var(--white);
}

.gallery-lightbox img {
  width: 100%;
  max-height: min(78vh, 760px);
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.gallery-lightbox figcaption {
  margin-top: 16px;
  text-align: center;
  font-weight: 900;
  font-size: 1.08rem;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  transform: scale(1.06);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(66, 197, 232, 0.2);
}

.lightbox-close img,
.lightbox-close svg,
.lightbox-nav img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.lightbox-close svg {
  fill: none;
  stroke: #123963;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.lightbox-nav {
  top: 50%;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.lightbox-nav img {
  width: 30px;
  height: 30px;
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.06);
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.footer {
  color: var(--white);
  background: #0d315d;
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer p,
.footer small {
  margin: 0;
}

.footer nav {
  display: flex;
  gap: 18px;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links.is-open {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 82px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    max-width: calc(100vw - 32px);
    color: var(--blue-900);
    z-index: 20;
  }

  .nav-links.is-open a {
    padding: 10px;
    color: var(--blue-900);
  }

  .nav-links.is-open a:hover {
    background: rgba(49, 79, 138, 0.08);
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .hero-grid,
  .split-heading,
  .trust-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .hero-media {
    top: auto;
    left: -8vw;
    right: -8vw;
    width: auto;
    height: 390px;
    min-height: 0;
    opacity: 0.72;
    transform: scale(1.04);
    background-image:
      linear-gradient(180deg, rgba(244, 249, 255, 1) 0%, rgba(244, 249, 255, 0.28) 30%, rgba(244, 249, 255, 0.98) 100%),
      linear-gradient(90deg, rgba(244, 249, 255, 0.9) 0%, rgba(244, 249, 255, 0.08) 44%, rgba(244, 249, 255, 0.7) 100%),
      url("assets/hero-graf-truck.jpeg");
    background-position: center right;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 70%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 70%, transparent 100%);
  }

  .hero-media::before {
    inset: -30px -20px -40px -20px;
    background:
      linear-gradient(180deg, var(--blue-050) 0%, rgba(244, 249, 255, 0.72) 14%, rgba(244, 249, 255, 0) 34%),
      linear-gradient(0deg, var(--blue-050) 0%, rgba(244, 249, 255, 0.78) 16%, rgba(244, 249, 255, 0) 40%),
      linear-gradient(90deg, var(--blue-050) 0%, rgba(244, 249, 255, 0.56) 16%, rgba(244, 249, 255, 0) 36%),
      linear-gradient(270deg, var(--blue-050) 0%, rgba(244, 249, 255, 0.56) 16%, rgba(244, 249, 255, 0) 36%);
  }

  .hero-media::after {
    right: -24px;
    width: 140px;
    filter: blur(16px);
  }

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

  .process-track {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-track::before {
    top: 0;
    bottom: 0;
    left: 32px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .process-track li {
    min-height: auto;
    display: flex;
    align-items: center;
    gap: 18px;
    text-align: left;
    padding: 0;
  }

  .process-track span {
    margin: 0;
    flex: 0 0 66px;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 24px, 1160px);
  }

  .section {
    padding: 64px 0;
  }

  .nav {
    width: min(100% - 22px, 1220px);
    gap: 10px;
  }

  .brand {
    min-width: 0;
    max-width: calc(100vw - 108px);
    gap: 10px;
  }

  .brand img {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .brand span:last-child {
    font-size: clamp(1rem, 5vw, 1.45rem);
    line-height: 1;
  }

  .hero-copy {
    padding-top: 8px;
    text-align: center;
  }

  .hero-media {
    height: 300px;
    opacity: 0.5;
  }

  h1 {
    font-size: clamp(2rem, 13vw, 3.05rem);
    max-width: 100%;
  }

  .hero h2 {
    font-size: clamp(1.55rem, 8.4vw, 2.25rem);
  }

  .hero-text {
    margin-inline: auto;
  }

  .trust-badge {
    margin-inline: auto;
  }

  .section-heading h2,
  .split-heading h2,
  .trust-panel h2 {
    font-size: clamp(1.75rem, 8.6vw, 2.35rem);
    max-width: 100%;
  }

  .trust-panel {
    width: 100%;
    padding: 26px 18px;
    border-radius: 26px;
    overflow: hidden;
    text-align: center;
  }

  .trust-panel h2 .nowrap {
    white-space: normal;
  }

  .trust-panel p {
    font-size: 1rem;
  }

  .graf-card {
    width: 100%;
    padding: 20px 14px;
    border-radius: 22px;
    justify-self: center;
  }

  .graf-card img {
    width: min(230px, 86vw);
  }

  .trust-item {
    min-height: auto;
    padding: 18px 18px 18px 54px;
    font-size: 1rem;
  }

  .owner-note {
    width: 100%;
    border-radius: 26px;
  }

  .owner-note img {
    border-radius: 26px;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
    justify-content: center;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .service-grid,
  .gallery-grid,
  .trust-list,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .service-card,
  .gallery-card,
  .contact-card,
  .contact-form {
    width: 100%;
    max-width: 100%;
  }

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

  .service-card .icon {
    margin-inline: auto;
  }

  .split-heading,
  .contact-copy {
    justify-items: center;
    text-align: center;
  }

  .split-heading p,
  .contact-copy p {
    margin-inline: auto;
  }

  .cta-inner h2 {
    font-size: clamp(1.8rem, 9vw, 2.55rem);
  }

  .contact-form .full {
    grid-column: auto;
  }

  .contact-card {
    width: 100%;
    margin-top: 28px;
  }

  .contact-card a {
    align-items: flex-start;
  }

  .recaptcha-wrapper .g-recaptcha {
    transform: scale(0.9);
    transform-origin: center center;
  }

  .recaptcha-wrapper {
    justify-content: center;
  }

  .contact-form::before {
    inset: 0;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(66, 197, 232, 0.7), rgba(49, 79, 138, 0.78));
    animation: none;
  }

  .gallery-lightbox {
    padding: 74px 14px 28px;
  }

  .gallery-lightbox img {
    max-height: 68vh;
    border-radius: 16px;
  }

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

  .lightbox-nav {
    top: auto;
    bottom: 16px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transform: none;
  }

  .lightbox-nav img {
    width: 26px;
    height: 26px;
  }

  .lightbox-nav:hover {
    transform: scale(1.06);
  }

  .lightbox-prev {
    left: 18px;
  }

  .lightbox-next {
    right: 18px;
  }

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

}

.privacy-page {
  min-height: 100vh;
  padding: 150px 20px 70px;
  background:
    radial-gradient(circle at 15% 10%, rgba(66, 197, 232, 0.15), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.privacy-hero,
.privacy-content {
  width: min(980px, 100%);
  margin: 0 auto;
}

.privacy-hero {
  margin-bottom: 28px;
}

.privacy-hero h1 {
  max-width: 900px;
  margin: 0 auto;
  color: var(--blue-900);
  font-size: clamp(1.9rem, 4vw, 3.35rem);
  line-height: 1.12;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
}

.privacy-content {
  display: grid;
  gap: 22px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 70px rgba(18, 59, 109, 0.1);
}

.privacy-content section {
  display: grid;
  gap: 12px;
}

.privacy-content h2,
.privacy-content h3,
.privacy-content p,
.privacy-content ul {
  margin: 0;
}

.privacy-content h2 {
  color: var(--blue-900);
  font-size: clamp(1.25rem, 2.6vw, 1.65rem);
}

.privacy-content h3 {
  margin-top: 6px;
  color: var(--blue-700);
  font-size: 1.05rem;
}

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

.privacy-content ul {
  padding-left: 22px;
}

@media (max-width: 680px) {
  .privacy-page {
    padding: 128px 16px 52px;
  }

  .privacy-content {
    padding: 22px;
    border-radius: 22px;
  }
}

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