@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/barlow-condensed-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/barlow-condensed-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/barlow-condensed-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand-blue: #1f80ff;
  --brand-red: #cc0000;
  --ink: #111722;
  --ink-soft: #313a48;
  --muted: #667180;
  --paper: #fbfaf7;
  --white: #ffffff;
  --steel: #eef2f6;
  --line: #dfe5ec;
  --shadow: 0 20px 60px rgba(17, 23, 34, 0.14);
  --radius: 8px;
  --max: 1180px;
  --header-height: 82px;
  --font-heading: "Barlow Condensed", Arial, sans-serif;
  --theme-bg: #fbfaf7;
  --theme-surface: #ffffff;
  --theme-surface-soft: #eef2f6;
  --theme-text: #111722;
  --theme-text-soft: #313a48;
  --theme-muted: #667180;
  --theme-line: #dfe5ec;
  --theme-header-bg: rgba(251, 250, 247, 0.94);
  --theme-header-border: rgba(17, 23, 34, 0.08);
  --theme-input-bg: #ffffff;
  --theme-input-border: #cbd4df;
  --theme-card-shadow: 0 10px 30px rgba(17, 23, 34, 0.06);
  --theme-panel-bg: #111722;
  --theme-panel-text: #ffffff;
  --theme-footer-bg: #0d121b;
  --theme-hover: rgba(31, 128, 255, 0.09);
  --theme-button-dark-bg: #111722;
  --theme-button-dark-text: #ffffff;
  --theme-toggle-bg: #eef2f6;
  --theme-toggle-knob: #ffffff;
  --theme-toggle-icon: #111722;
  --theme-toggle-active-icon: #1f80ff;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --theme-bg: #080d14;
  --theme-surface: #101722;
  --theme-surface-soft: #151f2c;
  --theme-text: #f6f8fb;
  --theme-text-soft: #d8deea;
  --theme-muted: #aab5c5;
  --theme-line: #273142;
  --theme-header-bg: rgba(8, 13, 20, 0.94);
  --theme-header-border: rgba(255, 255, 255, 0.09);
  --theme-input-bg: #0d141e;
  --theme-input-border: #344155;
  --theme-card-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
  --theme-panel-bg: #0d121b;
  --theme-panel-text: #ffffff;
  --theme-footer-bg: #070b11;
  --theme-hover: rgba(31, 128, 255, 0.18);
  --theme-button-dark-bg: #f6f8fb;
  --theme-button-dark-text: #111722;
  --theme-toggle-bg: #172231;
  --theme-toggle-knob: #f6f8fb;
  --theme-toggle-icon: #ffd166;
  --theme-toggle-active-icon: #1f80ff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scrollbar-color: var(--brand-red) #111722;
  scrollbar-width: thin;
}

* {
  scrollbar-color: var(--brand-red) #111722;
  scrollbar-width: thin;
}

*::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

*::-webkit-scrollbar-track {
  background: #111722;
}

*::-webkit-scrollbar-thumb {
  border: 3px solid #111722;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand-red), #a90000);
}

*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #e00000, var(--brand-red));
}

*::-webkit-scrollbar-corner {
  background: #111722;
}

body {
  margin: 0;
  background: var(--theme-bg);
  color: var(--theme-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  background: var(--brand-red);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: top 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  min-height: var(--header-height);
  background: var(--theme-header-bg);
  border-bottom: 1px solid var(--theme-header-border);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(100% - 32px, var(--max));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

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

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: var(--radius);
  color: var(--theme-text-soft);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: var(--theme-hover);
  color: var(--theme-text);
}

.mobile-phone {
  display: none !important;
}

.phone-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: var(--radius);
  background: var(--brand-red);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(204, 0, 0, 0.22);
}

.phone-cta::before {
  content: "";
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.68 2.79a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.29-1.25a2 2 0 0 1 2.11-.45c.89.32 1.83.55 2.79.68A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.68 2.79a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.29-1.25a2 2 0 0 1 2.11-.45c.89.32 1.83.55 2.79.68A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.phone-cta:hover {
  background: #a90000;
}

.theme-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 58px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--theme-line);
  border-radius: 999px;
  background: var(--theme-toggle-bg);
  color: var(--theme-toggle-icon);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 8px 22px rgba(17, 23, 34, 0.1);
  cursor: pointer;
}

.theme-toggle::before,
.theme-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  background: currentColor;
  opacity: 0.86;
  pointer-events: none;
}

.theme-toggle::before {
  left: 9px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 18a6 6 0 1 0 0-12 6 6 0 0 0 0 12Zm0 4a1 1 0 0 0 1-1v-1.2a1 1 0 1 0-2 0V21a1 1 0 0 0 1 1Zm0-18.8a1 1 0 0 0 1-1V1a1 1 0 1 0-2 0v1.2a1 1 0 0 0 1 1ZM21 11h-1.2a1 1 0 1 0 0 2H21a1 1 0 1 0 0-2ZM4.2 11H3a1 1 0 1 0 0 2h1.2a1 1 0 1 0 0-2Zm13.4 7.4a1 1 0 0 0 1.4-1.4l-.8-.8a1 1 0 0 0-1.4 1.4l.8.8ZM5.8 4.4A1 1 0 1 0 4.4 5.8l.8.8a1 1 0 0 0 1.4-1.4l-.8-.8Zm11.8 1.4.8-.8A1 1 0 1 0 17 3.6l-.8.8a1 1 0 1 0 1.4 1.4ZM5.2 17.4l-.8.8A1 1 0 0 0 5.8 19.6l.8-.8a1 1 0 0 0-1.4-1.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 18a6 6 0 1 0 0-12 6 6 0 0 0 0 12Zm0 4a1 1 0 0 0 1-1v-1.2a1 1 0 1 0-2 0V21a1 1 0 0 0 1 1Zm0-18.8a1 1 0 0 0 1-1V1a1 1 0 1 0-2 0v1.2a1 1 0 0 0 1 1ZM21 11h-1.2a1 1 0 1 0 0 2H21a1 1 0 1 0 0-2ZM4.2 11H3a1 1 0 1 0 0 2h1.2a1 1 0 1 0 0-2Zm13.4 7.4a1 1 0 0 0 1.4-1.4l-.8-.8a1 1 0 0 0-1.4 1.4l.8.8ZM5.8 4.4A1 1 0 1 0 4.4 5.8l.8.8a1 1 0 0 0 1.4-1.4l-.8-.8Zm11.8 1.4.8-.8A1 1 0 1 0 17 3.6l-.8.8a1 1 0 1 0 1.4 1.4ZM5.2 17.4l-.8.8A1 1 0 0 0 5.8 19.6l.8-.8a1 1 0 0 0-1.4-1.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.theme-toggle::after {
  right: 9px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M21 14.6A8.7 8.7 0 0 1 9.4 3a.8.8 0 0 0-.9-1A10.6 10.6 0 1 0 22 15.5a.8.8 0 0 0-1-.9Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M21 14.6A8.7 8.7 0 0 1 9.4 3a.8.8 0 0 0-.9-1A10.6 10.6 0 1 0 22 15.5a.8.8 0 0 0-1-.9Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.theme-toggle span {
  position: absolute;
  left: 4px;
  top: 4px;
  z-index: 1;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--theme-toggle-knob);
  box-shadow: 0 5px 14px rgba(17, 23, 34, 0.22);
  transition: transform 180ms ease;
}

.theme-toggle span::before {
  content: "";
  position: absolute;
  inset: 6px;
  background: var(--theme-toggle-active-icon);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 18a6 6 0 1 0 0-12 6 6 0 0 0 0 12Zm0 4a1 1 0 0 0 1-1v-1.2a1 1 0 1 0-2 0V21a1 1 0 0 0 1 1Zm0-18.8a1 1 0 0 0 1-1V1a1 1 0 1 0-2 0v1.2a1 1 0 0 0 1 1ZM21 11h-1.2a1 1 0 1 0 0 2H21a1 1 0 1 0 0-2ZM4.2 11H3a1 1 0 1 0 0 2h1.2a1 1 0 1 0 0-2Zm13.4 7.4a1 1 0 0 0 1.4-1.4l-.8-.8a1 1 0 0 0-1.4 1.4l.8.8ZM5.8 4.4A1 1 0 1 0 4.4 5.8l.8.8a1 1 0 0 0 1.4-1.4l-.8-.8Zm11.8 1.4.8-.8A1 1 0 1 0 17 3.6l-.8.8a1 1 0 1 0 1.4 1.4ZM5.2 17.4l-.8.8A1 1 0 0 0 5.8 19.6l.8-.8a1 1 0 0 0-1.4-1.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 18a6 6 0 1 0 0-12 6 6 0 0 0 0 12Zm0 4a1 1 0 0 0 1-1v-1.2a1 1 0 1 0-2 0V21a1 1 0 0 0 1 1Zm0-18.8a1 1 0 0 0 1-1V1a1 1 0 1 0-2 0v1.2a1 1 0 0 0 1 1ZM21 11h-1.2a1 1 0 1 0 0 2H21a1 1 0 1 0 0-2ZM4.2 11H3a1 1 0 1 0 0 2h1.2a1 1 0 1 0 0-2Zm13.4 7.4a1 1 0 0 0 1.4-1.4l-.8-.8a1 1 0 0 0-1.4 1.4l.8.8ZM5.8 4.4A1 1 0 1 0 4.4 5.8l.8.8a1 1 0 0 0 1.4-1.4l-.8-.8Zm11.8 1.4.8-.8A1 1 0 1 0 17 3.6l-.8.8a1 1 0 1 0 1.4 1.4ZM5.2 17.4l-.8.8A1 1 0 0 0 5.8 19.6l.8-.8a1 1 0 0 0-1.4-1.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

html[data-theme="dark"] .theme-toggle span {
  transform: translateX(24px);
}

html[data-theme="dark"] .theme-toggle span::before {
  background: #111722;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M21 14.6A8.7 8.7 0 0 1 9.4 3a.8.8 0 0 0-.9-1A10.6 10.6 0 1 0 22 15.5a.8.8 0 0 0-1-.9Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M21 14.6A8.7 8.7 0 0 1 9.4 3a.8.8 0 0 0-.9-1A10.6 10.6 0 1 0 22 15.5a.8.8 0 0 0-1-.9Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.nav-shell > .phone-cta {
  animation: headerPhoneGlow 3.4s ease-in-out infinite;
}

@keyframes headerPhoneGlow {
  0%,
  100% {
    box-shadow: 0 10px 24px rgba(204, 0, 0, 0.22);
    transform: translateY(0);
  }

  50% {
    box-shadow: 0 12px 30px rgba(204, 0, 0, 0.36), 0 0 0 5px rgba(204, 0, 0, 0.08);
    transform: translateY(-1px);
  }
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--theme-line);
  border-radius: var(--radius);
  background: var(--theme-surface);
  color: var(--theme-text);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  width: 22px;
  height: 2px;
  display: block;
  background: currentColor;
  position: absolute;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle {
  position: relative;
}

.menu-toggle::before {
  transform: translateY(-7px);
}

.menu-toggle::after {
  transform: translateY(7px);
}

.nav-open .menu-toggle span {
  opacity: 0;
}

.nav-open .menu-toggle::before {
  transform: rotate(45deg);
}

.nav-open .menu-toggle::after {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 76svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media {
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 950ms ease-in-out;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-media img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide img {
  transform: scale(1.04);
  transform-origin: 50% 50%;
  will-change: transform;
}

.hero-slide.is-active img {
  animation: heroKenBurns 5200ms ease-in-out both;
}

.hero-slide.is-active:nth-child(even) img {
  animation-name: heroKenBurnsAlt;
}

@keyframes heroKenBurns {
  from {
    transform: scale(1.04) translate3d(-1%, 0, 0);
  }
  to {
    transform: scale(1.13) translate3d(1.6%, -1.2%, 0);
  }
}

@keyframes heroKenBurnsAlt {
  from {
    transform: scale(1.05) translate3d(1%, -0.8%, 0);
  }
  to {
    transform: scale(1.14) translate3d(-1.4%, 1%, 0);
  }
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(17, 23, 34, 0.88) 0%, rgba(17, 23, 34, 0.72) 42%, rgba(17, 23, 34, 0.2) 100%),
    linear-gradient(0deg, rgba(17, 23, 34, 0.44), rgba(17, 23, 34, 0.16));
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.hero-copy {
  max-width: 940px;
  padding: 72px 0;
}

.mobile-break {
  display: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-blue);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
.section-kicker,
.metric strong {
  font-family: "Barlow Condensed", Arial, sans-serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li,
.lead,
.section-lead {
  text-wrap: pretty;
}

h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 800;
  max-width: 780px;
}

.hero h1 {
  max-width: none;
  white-space: nowrap;
}

h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 800;
}

h3 {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 700;
}

.lead {
  margin: 22px 0 0;
  max-width: 680px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.section-lead {
  margin: 14px 0 0;
  color: var(--theme-muted);
  max-width: 720px;
  font-size: 18px;
}

.hero-actions,
.cta-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  background: var(--brand-red);
  color: var(--white);
}

.button-primary:hover {
  background: #a90000;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--white);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button-dark {
  background: var(--theme-button-dark-bg);
  color: var(--theme-button-dark-text);
}

.button-light {
  border-color: var(--theme-line);
  background: var(--theme-surface);
  color: var(--theme-text);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  font-weight: 700;
}

.section {
  padding: 88px 0;
}

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

.shell {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

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

.section-head > div {
  max-width: 760px;
}

.section-kicker {
  display: block;
  margin: 0 0 8px;
  color: var(--brand-red);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-band {
  background: var(--theme-surface);
  border-bottom: 1px solid var(--theme-line);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 46px;
  align-items: center;
}

.home-intro .intro-grid > div:first-child {
  max-width: 650px;
}

.home-intro .section-lead {
  max-width: 54ch;
}

.customer-panel {
  position: relative;
  display: grid;
  gap: 0;
  padding: 26px 30px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.customer-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(31, 128, 255, 0.22), transparent 42%),
    linear-gradient(315deg, rgba(204, 0, 0, 0.18), transparent 50%);
  pointer-events: none;
}

.panel-label,
.customer-point {
  position: relative;
  z-index: 1;
}

.panel-label {
  margin: 0 0 8px;
  color: var(--brand-blue);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.customer-point {
  display: grid;
  grid-template-columns: 24px 1fr;
  column-gap: 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.customer-point::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: inset 0 0 0 5px var(--white);
}

.customer-point strong {
  display: block;
  color: var(--white);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 8px;
  grid-column: 2;
}

.customer-point span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  line-height: 1.45;
  grid-column: 2;
}

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

.service-card,
.reason-card,
.project-card {
  background: var(--theme-surface);
  border: 1px solid var(--theme-line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--theme-card-shadow);
}

.service-card img,
.project-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.service-card-content,
.project-card-content,
.reason-card {
  padding: 22px;
}

.service-card p,
.reason-card p,
.project-card p {
  margin: 0;
  color: var(--theme-muted);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.split-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

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

.tick-list li {
  position: relative;
  padding-left: 30px;
  color: var(--theme-text-soft);
  font-weight: 700;
}

.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand-blue);
  box-shadow: inset 0 0 0 4px var(--white);
}

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

.project-card a {
  display: block;
  text-decoration: none;
}

.project-card img {
  height: 270px;
  transition: transform 400ms ease;
}

.project-card:hover img {
  transform: scale(1.035);
}

.project-card-content h3 {
  font-size: 24px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(204, 0, 0, 0.18), transparent 38%),
    linear-gradient(135deg, transparent 0 60%, rgba(31, 128, 255, 0.18) 60% 100%);
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-content p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 720px;
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.page-hero .lead {
  font-size: 18px;
}

.service-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--theme-line);
}

.service-row:nth-child(even) {
  grid-template-columns: 1.1fr 0.9fr;
}

.service-row:nth-child(even) .service-row-image {
  order: 2;
}

.service-row-image {
  border-radius: var(--radius);
  overflow: hidden;
}

.service-row-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.service-row-copy p {
  margin: 0;
  color: var(--theme-muted);
}

.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.areas li {
  padding: 9px 12px;
  border-radius: var(--radius);
  background: var(--theme-surface-soft);
  color: var(--theme-text-soft);
  font-weight: 700;
}

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

.gallery-item {
  position: relative;
  display: block;
  min-height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  text-decoration: none;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 7;
  min-height: 220px;
  object-fit: cover;
  transition: transform 400ms ease, opacity 240ms ease;
}

.gallery-item span {
  display: none;
}

.gallery-item:hover img {
  transform: scale(1.04);
  opacity: 0.9;
}

.about-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: start;
}

.statement {
  padding: 34px;
  border-left: 5px solid var(--brand-red);
  background: var(--theme-surface);
  border-radius: var(--radius);
  box-shadow: var(--theme-card-shadow);
}

.statement p {
  margin: 0;
  color: var(--theme-text-soft);
  font-size: 20px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: start;
}

.contact-card,
.form-panel {
  background: var(--theme-surface);
  border: 1px solid var(--theme-line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--theme-card-shadow);
}

.contact-card a {
  color: var(--brand-red);
  font-weight: 800;
}

.contact-card a.button-primary {
  color: var(--white);
}

.contact-method {
  padding: 18px 0;
  border-top: 1px solid var(--theme-line);
}

.contact-method:first-of-type {
  border-top: 0;
}

.contact-method strong {
  display: block;
  color: var(--theme-text);
}

.map-section {
  background: var(--theme-surface);
  border-top: 1px solid var(--theme-line);
  border-bottom: 1px solid var(--theme-line);
}

.map-card {
  min-height: 390px;
  border: 1px solid var(--theme-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--theme-surface-soft);
  box-shadow: var(--shadow);
}

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

.map-note {
  margin: 12px 0 0;
  color: var(--theme-muted);
  font-size: 13px;
}

.quote-form {
  display: grid;
  gap: 18px;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--theme-text-soft);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--theme-input-border);
  border-radius: var(--radius);
  background: var(--theme-input-bg);
  color: var(--theme-text);
  font: inherit;
  min-height: 48px;
  padding: 11px 12px;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(31, 128, 255, 0.28);
  border-color: var(--brand-blue);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.privacy-note,
.small-note {
  margin: 0;
  color: var(--theme-muted);
  font-size: 14px;
}

.policy-content {
  max-width: 900px;
}

.policy-card {
  padding: 34px;
  background: var(--theme-surface);
  border: 1px solid var(--theme-line);
  border-radius: var(--radius);
  box-shadow: var(--theme-card-shadow);
}

.policy-card h2 {
  margin-top: 34px;
  font-size: 32px;
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card p,
.policy-card li {
  color: var(--theme-text-soft);
}

.policy-card ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.policy-card a {
  color: var(--brand-red);
  font-weight: 800;
}

.form-status {
  display: none;
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.form-status.is-success {
  display: block;
  background: #e9f8ef;
  color: #12642f;
}

.form-status.is-error {
  display: block;
  background: #fff0f0;
  color: #9d0000;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(4, 7, 12, 0.86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-panel {
  position: relative;
  width: min(100%, 1080px);
  max-height: 90svh;
  background: var(--theme-surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.lightbox img {
  width: 100%;
  max-height: calc(90svh - 74px);
  object-fit: contain;
  background: var(--ink);
}

.lightbox-caption {
  display: none;
}

.lightbox-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: var(--radius);
  background: var(--brand-red);
  color: var(--white);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.site-footer {
  background: var(--theme-footer-bg);
  color: rgba(255, 255, 255, 0.78);
  padding: 52px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 34px;
  align-items: start;
}

.footer-logo {
  width: 190px;
  height: auto;
  object-fit: contain;
  margin-bottom: 18px;
  padding: 8px;
  background: var(--white);
  border-radius: var(--radius);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.footer-grid h2,
.footer-grid h3 {
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.floating-call {
  display: none;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  width: min(420px, calc(100% - 32px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 5px solid var(--brand-blue);
  border-radius: var(--radius);
  background: rgba(17, 23, 34, 0.96);
  box-shadow: var(--shadow);
  color: var(--white);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.cookie-banner[hidden] {
  display: none;
}

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

.cookie-banner strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}

.cookie-actions .button {
  min-height: 42px;
  padding: 11px 16px;
  font-size: 14px;
}

.cookie-decline {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.cookie-decline:hover {
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.14);
}

.cookie-actions a {
  color: var(--white);
  font-weight: 800;
}

.js [data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.js [data-animate].is-visible,
[data-animate] {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  transition-delay: calc(var(--i, 0) * 70ms);
}

@media (max-width: 1040px) {
  .service-grid,
  .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  :root {
    --header-height: 76px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 16px;
    max-height: calc(100svh - var(--header-height));
    overflow-y: auto;
    background: var(--theme-surface);
    border-bottom: 1px solid var(--theme-line);
    box-shadow: var(--shadow);
    clip-path: inset(0 0 100% 0);
    pointer-events: none;
    transform: translateY(-14px);
    visibility: hidden;
    transition:
      clip-path 260ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 260ms;
  }

  .nav-open .main-nav {
    clip-path: inset(0 0 0 0);
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .main-nav a {
    min-height: 48px;
    border-bottom: 1px solid var(--theme-line);
    border-radius: 0;
  }

  .mobile-phone {
    display: inline-flex !important;
    margin-top: 12px;
    border: 0 !important;
    border-radius: var(--radius) !important;
    background: var(--brand-red) !important;
    color: var(--white) !important;
    justify-content: center;
  }

  .nav-shell > .phone-cta {
    display: none;
  }

  .intro-grid,
  .split,
  .service-row,
  .service-row:nth-child(even),
  .about-panel,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-row:nth-child(even) .service-row-image {
    order: 0;
  }

  .section-head,
  .cta-content {
    display: grid;
    align-items: start;
  }

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

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .nav-shell {
    width: min(100% - 24px, var(--max));
  }

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

  .hero {
    min-height: 74svh;
  }

  .hero-copy {
    padding: 54px 0;
    max-width: 440px;
  }

  .mobile-break {
    display: inline;
  }

  h1 {
    font-size: 40px;
  }

  .hero h1 {
    font-size: 45px;
    line-height: 1.08;
    max-width: 420px;
    white-space: normal;
  }

  h2 {
    font-size: 32px;
  }

  .lead {
    font-size: 18px;
  }

  .hero .lead {
    max-width: 32ch;
    font-size: 19px;
    line-height: 1.5;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 34px;
  }

  .hero-actions .button {
    min-height: 58px;
    padding-inline: 20px;
  }

  .hero-badges {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

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

  .metric-grid,
  .service-grid,
  .reason-grid,
  .project-grid,
  .gallery-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-card img,
  .project-card img,
  .gallery-item img,
  .gallery-item {
    min-height: 240px;
  }

  .split-image img,
  .service-row-image img {
    height: 330px;
  }

  .page-hero {
    min-height: 360px;
  }

  .floating-call {
    position: fixed;
    left: 12px;
    bottom: 12px;
    z-index: 85;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 16px;
    border-radius: var(--radius);
    background: var(--brand-red);
    color: var(--white);
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(204, 0, 0, 0.34);
  }

  .floating-call::before {
    content: "";
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.68 2.79a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.29-1.25a2 2 0 0 1 2.11-.45c.89.32 1.83.55 2.79.68A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.68 2.79a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.29-1.25a2 2 0 0 1 2.11-.45c.89.32 1.83.55 2.79.68A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / contain no-repeat;
  }

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

  .contact-card,
  .form-panel,
  .statement,
  .policy-card {
    padding: 22px;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 16px;
  }

  .cookie-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-actions .button,
  .cookie-actions a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

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

  .js [data-animate],
  [data-animate],
  .hero-slide img,
  .hero-slide.is-active img,
  .nav-shell > .phone-cta {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
