@font-face {
  font-family: "Tektur";
  src: url("/fonts/Tektur/Tektur-VariableFont-subset.woff2") format("woff2");
  font-weight: 400 900;
  font-stretch: 75% 100%;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik Dirt";
  src: url("/fonts/Rubik_Dirt/RubikDirt-Regular-subset.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #050505;
  --panel: #101010;
  --panel-2: #161616;
  --line: rgba(255, 255, 255, 0.14);
  --text: #f5f5f5;
  --muted: #a8a8a8;
  --red: #d51122;
  --red-2: #f12b3a;
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.42);
  font-family: "Rubik Dirt", "Tektur", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  line-height: 1.55;
  text-align: center;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 5vw, 70px);
  background: rgba(5, 5, 5, 0.58);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand, .header-actions, .lang, .cta-row, .submit-row { display: flex; align-items: center; justify-content: center; gap: 10px; }
.brand span {
  display: inline-block;
  color: white;
  font-family: "Rubik Dirt", "Tektur", sans-serif;
  font-size: clamp(30px, 4.1vw, 58px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(229, 9, 20, 0.18);
}
.menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 12px 18px 12px 22px;
  font: inherit;
  font-weight: 800;
  font-size: clamp(30px, 4.1vw, 58px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-transform: uppercase;
}
.menu-trigger:hover, .menu-trigger:focus {
  border-color: rgba(255, 255, 255, 0.46);
}
.menu-mark {
  position: relative;
  width: 22px;
  height: 10px;
}
.menu-mark::before,
.menu-mark::after {
  content: "";
  position: absolute;
  right: 0;
  width: 22px;
  height: 2px;
  background: var(--red);
}
.menu-mark::before { top: 0; }
.menu-mark::after { bottom: 0; width: 15px; }
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: stretch;
  background:
    radial-gradient(circle at 75% 15%, rgba(213, 17, 34, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.98), rgba(0, 0, 0, 0.99));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  transition: opacity 180ms ease, visibility 180ms ease;
}
.menu-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.menu-overlay.open .menu-nav a {
  animation: menuItemIn 420ms ease both;
  animation-delay: var(--menu-delay, 0ms);
}
.menu-panel {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 18px clamp(18px, 5vw, 70px) 28px;
}
.menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-close {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: white;
  font: inherit;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}
.menu-close:hover, .menu-close:focus {
  border-color: var(--red);
  color: var(--red-2);
}
.menu-nav {
  width: min(940px, 100%);
  margin: clamp(22px, 5vh, 54px) auto;
  display: grid;
  gap: clamp(8px, 1.4vh, 16px);
}
.menu-nav a {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: baseline;
  gap: clamp(16px, 3vw, 34px);
  padding: clamp(9px, 1.6vh, 16px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}
.menu-nav span {
  color: var(--red-2);
  font-size: clamp(13px, 1.8vw, 18px);
  font-weight: 900;
}
.menu-nav strong {
  color: white;
  font-size: clamp(27px, 5.4vw, 66px);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: 0;
}
.menu-nav a:hover strong,
.menu-nav a:focus strong {
  color: var(--red-2);
}
.menu-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  color: var(--muted);
}
.menu-contact {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 800;
}
.menu-contact a:hover, .menu-contact a:focus {
  color: white;
}
body.menu-open {
  overflow: hidden;
}
.lang {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
}
.lang button {
  border: 0;
  color: var(--muted);
  background: transparent;
  padding: 7px 9px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}
.lang button.active { background: white; color: black; }
.call-link {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: auto;
  aspect-ratio: 1622 / 971;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: clamp(88px, 10vw, 130px) 24px clamp(26px, 4vw, 54px) clamp(24px, 5vw, 64px);
  isolation: isolate;
  background: #030303;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: -3;
  background: #030303;
}
.hero-mobile-media {
  display: none;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.48) 34%, rgba(0,0,0,0.1) 62%, transparent 100%),
    linear-gradient(180deg, rgba(0,0,0,0.38), transparent 34%, rgba(0,0,0,0.62));
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0;
  padding: 0;
  text-align: left;
}
.eyebrow {
  color: var(--red-2);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 800;
  margin: 0 0 12px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(56px, 8.8vw, 116px);
  line-height: 0.96;
  margin-bottom: 20px;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
.hero-title {
  display: grid;
  gap: 0;
  max-width: 620px;
  margin: 0;
  color: white;
  font-family: "Rubik Dirt", "Tektur", sans-serif;
  font-size: clamp(58px, 5vw, 72px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 rgba(0,0,0,0.65),
    0 0 22px rgba(255,255,255,0.12);
}
.hero-title .accent {
  color: var(--red-2);
  text-shadow: 0 0 26px rgba(229, 9, 20, 0.36);
}
.hero-underline {
  width: min(210px, 48vw);
  height: 4px;
  margin-top: 22px;
  background: linear-gradient(90deg, #e50914 0 90px, rgba(105, 0, 8, 0.68) 90px, transparent 100%);
  transform-origin: left center;
}
h2 { font-size: clamp(30px, 4vw, 54px); line-height: 1.05; margin-bottom: 14px; }
.benefits .section-head {
  max-width: min(1480px, calc(100vw - 36px));
}
.benefits h2 {
  font-size: clamp(30px, 4.35vw, 54px);
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}
h3 { margin-bottom: 8px; }
.hero-copy p:not(.eyebrow), .section-head p:not(.eyebrow), .contact p { color: var(--muted); font-size: clamp(16px, 2vw, 19px); }
.hero-copy p:not(.eyebrow) {
  max-width: 500px;
  margin-top: 28px;
  color: rgba(255,255,255,0.88);
  font-family: "Tektur", ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(18px, 1.55vw, 20px);
  line-height: 1.6;
}
.hero-buttons {
  justify-content: flex-start;
  gap: 14px;
  margin-top: 30px;
}
.hero-btn {
  min-height: 58px;
  padding: 18px 28px;
  border-radius: 9px;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}
.hero-btn.secondary {
  border-width: 2px;
  background: rgba(0,0,0,0.32);
}
.hero-btn.secondary:hover,
.hero-btn.secondary:focus {
  box-shadow: 0 0 26px rgba(255,255,255,0.18);
}
.btn-icon {
  display: inline-flex;
  margin-right: 8px;
  width: 18px;
  height: 18px;
  line-height: 1;
  flex: 0 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}
.btn:hover, .btn:focus { transform: translateY(-1px); }
.btn.primary { background: var(--red); color: white; box-shadow: 0 0 0 rgba(213, 17, 34, 0); }
.btn.primary:hover, .btn.primary:focus { box-shadow: 0 0 32px rgba(213, 17, 34, 0.42); background: var(--red-2); }
.btn.secondary { background: rgba(0, 0, 0, 0.34); color: white; border-color: rgba(255, 255, 255, 0.26); }
.btn.small { min-height: 40px; font-size: 14px; }

.section {
  padding: clamp(58px, 9vw, 112px) clamp(18px, 5vw, 70px);
}
.section-head {
  max-width: 860px;
  margin: 0 auto 30px;
}
.section-head.narrow { max-width: 740px; margin-inline: auto; text-align: center; }
.grid { display: grid; gap: 16px; }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card, .contact-card, .form-block {
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.benefit-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 28px 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(229, 9, 20, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.benefit-card::after {
  content: "";
  position: absolute;
  inset: auto 18% 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 9, 20, 0.8), transparent);
}
.benefit-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  color: var(--red-2);
  border: 1px solid rgba(229, 9, 20, 0.58);
  border-radius: 999px;
  background: rgba(229, 9, 20, 0.06);
  box-shadow: 0 0 0 rgba(229, 9, 20, 0);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.benefit-icon svg { width: 30px; height: 30px; }
.benefit-card:hover .benefit-icon,
.benefit-card:focus-within .benefit-icon {
  transform: translateY(-4px) scale(1.08);
  background: rgba(229, 9, 20, 0.12);
  box-shadow: 0 0 34px rgba(229, 9, 20, 0.28);
}
.benefit-card h3 { text-transform: uppercase; line-height: 1.08; }
.benefit-card p {
  color: var(--muted);
  font-family: "Tektur", ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
}
.card p { color: var(--muted); }

.form-section { background: linear-gradient(180deg, #070707, #101010); }
.request-form {
  max-width: 1040px;
  margin: 0 auto;
}
.form-block {
  padding: clamp(18px, 3vw, 28px);
  margin-bottom: 16px;
}
.contact-inline-title {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.contact-fields { margin-top: 10px; }
label span { display: block; color: #d9d9d9; font-weight: 700; margin-bottom: 7px; }
input, select, textarea {
  width: 100%;
  color: white;
  background: #070707;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 12px 13px;
  font: inherit;
  outline: none;
}
textarea { min-height: 118px; resize: vertical; }
.notes-field {
  grid-column: 1 / -1;
  margin: 0 auto;
  width: 100%;
}
.notes-field span { text-align: center; }
.notes-field textarea { min-height: 150px; }
input:focus, select:focus, textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(213, 17, 34, 0.16); }
.check { display: flex; gap: 10px; align-items: flex-start; margin-top: 14px; color: var(--muted); }
.check input { width: auto; margin-top: 5px; }
.hidden { display: none; }
.form-message { min-height: 28px; color: white; font-weight: 800; }
.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.service-benefits {
  padding-top: clamp(78px, 9vw, 118px);
  padding-bottom: clamp(78px, 9vw, 118px);
  background: linear-gradient(180deg, #101010, #030303);
}
.service-benefits-media {
  position: relative;
  max-width: 1480px;
  min-height: clamp(640px, 52vw, 860px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: #020202;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.62);
  isolation: isolate;
}
.service-benefits-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: -3;
}
.service-benefits-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.12) 38%, rgba(0,0,0,0.7) 56%, rgba(0,0,0,0.93) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.14), rgba(0,0,0,0.52));
}
.service-benefits-card {
  position: absolute;
  top: auto;
  bottom: clamp(22px, 3vw, 46px);
  right: clamp(22px, 4vw, 58px);
  width: min(40%, 500px);
  transform: none;
  padding: clamp(18px, 2.1vw, 28px);
  text-align: left;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.025)),
    rgba(10, 10, 10, 0.72);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.1),
    0 0 46px rgba(229, 9, 20, 0.14),
    0 30px 80px rgba(0,0,0,0.54);
  backdrop-filter: blur(14px) saturate(122%);
  overflow: hidden;
}
.service-benefits-card::before {
  content: "";
  position: absolute;
  inset: -40% -30%;
  background:
    radial-gradient(circle at 22% 20%, rgba(255,255,255,0.12), transparent 24%),
    radial-gradient(circle at 72% 62%, rgba(229,9,20,0.18), transparent 28%);
  filter: blur(18px);
  opacity: 0.75;
  pointer-events: none;
}
.service-benefits-card > * {
  position: relative;
  z-index: 1;
}
.service-benefits-card h2 {
  font-size: clamp(22px, 2.25vw, 34px);
  max-width: 390px;
  margin-bottom: 7px;
}
.service-benefits-subtitle {
  margin-bottom: clamp(16px, 2vw, 24px);
  color: rgba(255,255,255,0.68);
  font-family: "Tektur", ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
}
.service-benefits-list {
  display: grid;
  gap: clamp(12px, 1.55vw, 18px);
}
.service-benefit-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 11px;
  align-items: start;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: transform 180ms ease;
}
.service-benefit-item:hover,
.service-benefit-item:focus-within {
  transform: translateY(-2px);
}
.service-benefit-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--red-2);
  border: 1px solid rgba(229, 9, 20, 0.5);
  border-radius: 999px;
  background: rgba(229, 9, 20, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.service-benefit-icon svg {
  width: 18px;
  height: 18px;
}
.service-benefit-item:hover .service-benefit-icon,
.service-benefit-item:focus-within .service-benefit-icon {
  transform: scale(1.08);
  background: rgba(229, 9, 20, 0.13);
  box-shadow: 0 0 28px rgba(229, 9, 20, 0.38);
}
.service-benefit-item h3 {
  margin: 0 0 3px;
  color: white;
  font-size: clamp(11px, 0.9vw, 13px);
  line-height: 1.12;
  text-transform: uppercase;
}
.service-benefit-item p {
  margin: 0;
  color: rgba(255,255,255,0.68);
  font-family: "Tektur", ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(10px, 0.72vw, 11px);
  line-height: 1.42;
}

.card {
  overflow: hidden;
}
.card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #090909;
}
.card-body { padding: 18px; }
.price { color: white; font-weight: 900; }
.empty {
  color: var(--muted);
  border: 1px dashed rgba(255, 255, 255, 0.22);
  padding: 26px;
  border-radius: 8px;
}
.how-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(86px, 10vw, 120px);
  padding-bottom: clamp(86px, 10vw, 120px);
  background:
    radial-gradient(circle at 50% 38%, rgba(229, 9, 20, 0.1), transparent 34%),
    linear-gradient(180deg, #020202, #070707 48%, #020202);
  isolation: isolate;
}
.how-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 30% 72%, rgba(255,255,255,0.06), transparent 34%),
    radial-gradient(ellipse at 70% 68%, rgba(229,9,20,0.1), transparent 30%);
  filter: blur(14px);
  opacity: 0.75;
}
.how-section::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.64) 18%, rgba(0,0,0,0.9));
}
.how-bg-scene {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  z-index: -1;
  opacity: 0.8;
  pointer-events: none;
}
.map-line {
  position: absolute;
  inset: 8% 8% auto;
  height: 110px;
  background:
    radial-gradient(circle at 16% 58%, rgba(229,9,20,0.8) 0 3px, transparent 4px),
    radial-gradient(circle at 46% 24%, rgba(229,9,20,0.7) 0 3px, transparent 4px),
    radial-gradient(circle at 72% 62%, rgba(229,9,20,0.78) 0 3px, transparent 4px),
    linear-gradient(110deg, transparent 0 14%, rgba(255,255,255,0.12) 15%, transparent 16% 44%, rgba(255,255,255,0.1) 45%, transparent 46% 70%, rgba(255,255,255,0.1) 71%, transparent 72%);
  opacity: 0.7;
}
.ship-shape {
  position: absolute;
  left: 4%;
  bottom: 10%;
  width: min(28vw, 390px);
  height: 78px;
  border-bottom: 26px solid rgba(255,255,255,0.12);
  border-left: 46px solid transparent;
  border-right: 20px solid transparent;
  filter: drop-shadow(0 0 26px rgba(229,9,20,0.12));
}
.ship-shape::before {
  content: "";
  position: absolute;
  left: 26%;
  bottom: 26px;
  width: 44%;
  height: 42px;
  background: rgba(255,255,255,0.08);
}
.carrier-shape {
  position: absolute;
  right: 3%;
  bottom: 12%;
  width: min(30vw, 430px);
  height: 90px;
  border-bottom: 8px solid rgba(255,255,255,0.18);
}
.carrier-shape::before,
.carrier-shape::after {
  content: "";
  position: absolute;
  bottom: 8px;
  background: rgba(255,255,255,0.11);
}
.carrier-shape::before {
  left: 4%;
  width: 70%;
  height: 36px;
  clip-path: polygon(0 48%, 100% 0, 100% 100%, 0 100%);
}
.carrier-shape::after {
  right: 0;
  width: 23%;
  height: 58px;
  clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
}
.car-glow {
  position: absolute;
  left: 35%;
  right: 30%;
  bottom: 6%;
  height: 70px;
  background:
    radial-gradient(ellipse at 20% 70%, rgba(229,9,20,0.72), transparent 18%),
    radial-gradient(ellipse at 80% 70%, rgba(229,9,20,0.72), transparent 18%),
    linear-gradient(180deg, transparent 0 34%, rgba(255,255,255,0.1) 35% 62%, transparent 63%);
  filter: blur(2px);
}
.how-head {
  max-width: 960px;
  margin-bottom: clamp(58px, 8vw, 94px);
}
.how-head h2 {
  font-size: clamp(36px, 6vw, 78px);
  line-height: 1.02;
}
.how-head h2 span { color: white; }
.how-head h2 strong {
  color: var(--red-2);
  font-weight: 900;
}
.how-head p:not(.eyebrow) {
  max-width: 660px;
  margin: 0 auto;
  color: rgba(255,255,255,0.72);
  font-family: "Tektur", ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
}
.how-timeline {
  --line-progress: 100%;
  position: relative;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 22px);
  max-width: 1360px;
  margin: 0 auto;
  padding: 0;
}
.how-timeline::before,
.how-timeline::after { display: none; }
.how-timeline li {
  position: relative;
  z-index: 1;
  min-width: 0;
  text-align: center;
  opacity: 1;
  transform: none;
}
.how-timeline li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 35px;
  left: calc(50% + 47px);
  width: calc(100% - 94px + clamp(12px, 1.6vw, 22px));
  height: 2px;
  background: linear-gradient(90deg, rgba(229,9,20,0.72), rgba(255,78,88,0.96), rgba(229,9,20,0.72));
  box-shadow: 0 0 18px rgba(229,9,20,0.58);
  transform: scaleX(var(--line-progress));
  transform-origin: left center;
}
.timeline-node {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  color: var(--red-2);
  border: 1px solid rgba(229, 9, 20, 0.84);
  border-radius: 999px;
  background: rgba(0,0,0,0.82);
  box-shadow: 0 0 0 8px rgba(0,0,0,0.78), 0 0 20px rgba(229,9,20,0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.timeline-node svg { width: 32px; height: 32px; }
.how-timeline li:hover .timeline-node,
.how-timeline li.active .timeline-node {
  transform: scale(1.08);
  background: rgba(229,9,20,0.08);
  box-shadow: 0 0 0 8px rgba(0,0,0,0.78), 0 0 34px rgba(229,9,20,0.58);
}
.how-timeline span {
  display: block;
  color: var(--red-2);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 10px;
}
.how-timeline h3 {
  min-height: 42px;
  color: white;
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.12;
  text-transform: uppercase;
}
.how-timeline p {
  max-width: 178px;
  margin: 0 auto;
  color: rgba(255,255,255,0.66);
  font-family: "Tektur", ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.45;
}
.how-cta {
  max-width: 920px;
  margin: clamp(64px, 8vw, 96px) auto 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px;
  text-align: left;
  background: rgba(3,3,3,0.86);
  border: 1px solid rgba(229,9,20,0.58);
  border-radius: 8px;
  box-shadow: 0 0 42px rgba(229,9,20,0.16), var(--shadow);
  opacity: 1;
  transform: none;
}
.how-cta-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--red-2);
  border: 1px solid rgba(229,9,20,0.62);
  border-radius: 999px;
}
.how-cta-icon svg { width: 30px; height: 30px; }
.how-cta h3 { margin: 0 0 4px; }
.how-cta p {
  margin: 0;
  color: rgba(255,255,255,0.66);
  font-family: "Tektur", ui-sans-serif, system-ui, sans-serif;
}
.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.contact-card {
  width: min(620px, 100%);
  padding: 24px;
  display: grid;
  justify-items: center;
  gap: 14px;
}
.contact-card > a { font-size: 24px; font-weight: 900; }
.mini-form { display: grid; gap: 12px; }
.mini-form textarea { min-height: 92px; }

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 26px clamp(18px, 5vw, 70px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
footer a:hover, footer button:hover { color: white; }
.footer-link {
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
}
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(7px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}
.legal-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.legal-dialog {
  position: relative;
  width: min(900px, 100%);
  max-height: min(760px, 86vh);
  overflow: auto;
  text-align: left;
  background:
    radial-gradient(circle at 80% 0%, rgba(213, 17, 34, 0.11), transparent 32%),
    linear-gradient(180deg, #141414, #070707);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.74);
  padding: clamp(24px, 4vw, 44px);
}
.legal-close {
  position: sticky;
  top: 0;
  float: right;
  width: 46px;
  height: 46px;
  margin: -10px -10px 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: white;
  background: #090909;
  font: inherit;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.legal-close:hover, .legal-close:focus {
  color: var(--red-2);
  border-color: var(--red);
}
.legal-content {
  white-space: pre-wrap;
  color: #d7d7d7;
  font-size: 15px;
  line-height: 1.7;
}
.page-hero {
  padding: clamp(70px, 10vw, 130px) clamp(18px, 5vw, 70px) clamp(36px, 6vw, 72px);
  background:
    radial-gradient(circle at 50% 0%, rgba(213, 17, 34, 0.13), transparent 30%),
    linear-gradient(180deg, #0c0c0c, var(--black));
}
.page-hero h1 {
  font-size: clamp(56px, 8.5vw, 108px);
}
.thank-you-page {
  min-height: calc(100vh - 150px);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
}
.thank-you-page p:not(.eyebrow) {
  max-width: 760px;
  margin-inline: auto;
  color: var(--muted);
  font-family: "Tektur", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(16px, 2vw, 20px);
}
.page-content {
  padding: clamp(30px, 6vw, 82px) clamp(18px, 5vw, 70px);
}
.filter-panel {
  max-width: 1040px;
  margin: 0 auto 24px;
}
.article-page {
  max-width: 920px;
  margin: 0 auto;
  text-align: left;
}
.article-page h1 {
  text-align: left;
  font-size: clamp(44px, 6vw, 78px);
}
.article-page img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  margin: 22px 0;
}
.article-page .content {
  color: #dedede;
  font-size: 18px;
  white-space: pre-wrap;
}

.reveal { opacity: 0; transform: translateY(18px); animation: reveal 700ms ease forwards; }
@keyframes reveal { to { opacity: 1; transform: none; } }
@keyframes heroTextIntro {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes menuItemIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

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

@media (max-width: 980px) {
  .site-header { align-items: center; }
  .hero {
    min-height: auto;
    aspect-ratio: 1622 / 1120;
    align-items: flex-end;
    padding-top: 104px;
    padding-bottom: 34px;
  }
  .hero-bg { object-fit: contain; object-position: center center; }
  .grid.four, .grid.three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-benefits-media {
    min-height: auto;
    display: grid;
    padding-top: min(72vw, 520px);
  }
  .service-benefits-media img {
    height: min(72vw, 520px);
  }
  .service-benefits-shade {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.18) 42%, rgba(0,0,0,0.88) 100%),
      linear-gradient(90deg, rgba(0,0,0,0.16), rgba(0,0,0,0.46));
  }
  .service-benefits-card {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    margin: -110px clamp(14px, 4vw, 28px) clamp(14px, 4vw, 28px);
    transform: none;
  }
  .how-timeline {
    grid-template-columns: 1fr;
    gap: 34px;
    max-width: 620px;
  }
  .how-timeline li {
    display: grid;
    grid-template-columns: 70px 1fr;
    column-gap: 18px;
    text-align: left;
  }
  .how-timeline li:not(:last-child)::after {
    top: 70px;
    left: 35px;
    width: 2px;
    height: 34px;
    transform: scaleY(var(--line-progress));
    transform-origin: top center;
  }
  .timeline-node {
    grid-row: 1 / span 3;
    margin: 0;
  }
  .how-timeline p { max-width: none; margin: 0; }
  .how-cta { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

@media (max-width: 640px) {
  .site-header { padding: 12px 16px; }
  .brand span { font-size: clamp(24px, 8vw, 34px); }
  .menu-trigger { padding: 9px 12px 9px 14px; font-size: clamp(24px, 8vw, 34px); }
  .menu-panel { padding: 12px 16px 24px; }
  .menu-nav { margin: 24px auto; }
  .menu-nav a { grid-template-columns: 42px 1fr; }
  .menu-nav strong { font-size: clamp(24px, 9.4vw, 44px); }
  .menu-foot { align-items: flex-start; flex-direction: column; }
  .hero {
    min-height: auto;
    aspect-ratio: auto;
    display: block;
    padding: 98px 24px 46px;
    overflow: visible;
  }
  .hero-bg-picture { display: none; }
  .hero-bg {
    display: none;
  }
  .hero-shade {
    display: none;
  }
  .hero-copy {
    max-width: 100%;
    text-align: center;
  }
  .hero-mobile-media {
    display: block;
    width: 100%;
    margin: 18px 0 0;
    background: #030303;
  }
  .hero-mobile-media img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
  }
  .hero-title { font-size: clamp(38px, 11vw, 46px); line-height: 1.02; }
  .hero-copy p:not(.eyebrow) {
    max-width: 340px;
    margin: 22px auto 0;
    font-size: 15px;
    line-height: 1.6;
  }
  .hero-underline { margin-left: auto; margin-right: auto; }
  .hero-buttons {
    align-items: stretch;
    flex-direction: column;
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btn { min-height: 54px; padding: 16px 20px; }
  h1 { font-size: clamp(48px, 14vw, 68px); }
  .benefits h2 { font-size: clamp(28px, 8.8vw, 42px); }
  .service-benefits { padding-inline: 0; }
  .service-benefits-media {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }
  .service-benefits-card {
    padding: 22px 16px;
    margin: 18px 14px 18px;
  }
  .service-benefit-item {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }
  .service-benefit-icon {
    width: 38px;
    height: 38px;
  }
  .service-benefit-icon svg {
    width: 20px;
    height: 20px;
  }
  .cta-row, .submit-row { align-items: stretch; flex-direction: column; }
  .grid.four, .grid.three, .form-grid { grid-template-columns: 1fr; }
  .notes-field { grid-column: auto; }
  .contact-card > a { font-size: 20px; }
  .how-section { padding-top: 78px; padding-bottom: 78px; }
  .how-bg-scene { height: 34%; opacity: 0.55; }
}
