:root {
  --blue: #0060ff;
  --blue-soft: #58a2ff;
  --bg: #0c0e12;
  --bg-2: #07080b;
  --panel: #10151d;
  --silver: #dce2ea;
  --muted: #8f9bac;
  --white: #ffffff;
  --line: rgba(0, 96, 255, 0.72);
  --glow: 0 0 22px rgba(0, 96, 255, 0.75), 0 0 58px rgba(0, 96, 255, 0.25);
  --container: 1160px;
  --font-display: "Krona One", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--silver);
  background: var(--bg);
  font-family: var(--font-display);
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  top: -40px;
  left: 12px;
  z-index: 100;
  padding: 8px 10px;
  color: #10151d;
  background: var(--white);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px clamp(22px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 10, 14, 0.82);
  backdrop-filter: blur(20px);
  transition: background 300ms ease, border-color 300ms ease;
}

.site-header.is-scrolled {
  background: rgba(6, 8, 12, 0.97);
  border-bottom-color: rgba(0, 96, 255, 0.18);
}

.brand img {
  width: 132px;
}

.desktop-nav {
  display: flex;
  gap: 22px;
  color: #c3cbd7;
  font-size: 0.66rem;
  font-weight: 400;
  text-transform: uppercase;
}

.desktop-nav a,
.header-cta {
  transition: color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--blue-soft);
  box-shadow: 0 0 8px rgba(88, 162, 255, 0.7);
  transition: width 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--blue-soft);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(0, 96, 255, 0.62);
  border-radius: 0;
  color: var(--white);
  background: rgba(6, 9, 14, 0.9);
  cursor: pointer;
  font-size: 0.6rem;
  font-weight: 400;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(0, 96, 255, 0.2);
}

.menu-toggle i,
.menu-toggle i::before,
.menu-toggle i::after {
  display: block;
  width: 16px;
  height: 1px;
  background: var(--blue-soft);
  box-shadow: 0 0 8px rgba(88, 162, 255, 0.65);
}

.menu-toggle i {
  position: relative;
}

.menu-toggle i::before,
.menu-toggle i::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle i::before {
  top: -5px;
}

.menu-toggle i::after {
  top: 5px;
}

.mobile-nav {
  position: absolute;
  top: calc(100% + 1px);
  left: clamp(14px, 5vw, 72px);
  right: clamp(14px, 5vw, 72px);
  display: grid;
  gap: 0;
  padding: 8px;
  border: 1px solid rgba(0, 96, 255, 0.42);
  background: rgba(5, 8, 13, 0.98);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.55), 0 0 26px rgba(0, 96, 255, 0.24);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  padding: 13px 12px;
  color: #dce7f6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.header-cta {
  padding: 9px 14px;
  color: #10141b;
  background: linear-gradient(180deg, #ffffff, #cdd5df 52%, #f9fbff);
  font-size: 0.62rem;
  font-weight: 400;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: clamp(68px, 10vw, 122px) clamp(18px, 6vw, 84px);
}

.section-dark,
.section-flat {
  background: #0d1016;
}

.section-smoke {
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 96, 255, 0.14), transparent 26%),
    radial-gradient(circle at 82% 30%, rgba(255, 255, 255, 0.07), transparent 22%),
    radial-gradient(circle at 52% 72%, rgba(0, 96, 255, 0.08), transparent 33%),
    repeating-radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 7px),
    #090b0f;
}

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding-top: 92px;
  padding-bottom: 0;
  isolation: isolate;
}

.hero::before,
.hero::after,
.hero-photo {
  position: absolute;
  inset: 0;
}

.hero-photo {
  z-index: 0;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero::before {
  content: "";
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 46%, rgba(0, 96, 255, 0.18), transparent 25rem),
    linear-gradient(90deg, rgba(5, 6, 9, 0.98) 0%, rgba(5, 6, 9, 0.9) 23%, rgba(5, 6, 9, 0.44) 54%, rgba(5, 6, 9, 0.18) 100%),
    linear-gradient(0deg, rgba(5, 6, 9, 0.96), rgba(5, 6, 9, 0.2) 48%, rgba(5, 6, 9, 0.72));
}

.hero::after {
  content: "";
  z-index: 2;
  pointer-events: none;
  opacity: 0.18;
  background:
    linear-gradient(rgba(0, 96, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 96, 255, 0.08) 1px, transparent 1px);
  background-size: 100% 42px, 84px 100%;
  mix-blend-mode: screen;
}

.hero-stage {
  position: relative;
  z-index: 4;
  width: min(var(--container), 100%);
  min-height: calc(100svh - 92px);
  display: grid;
  place-items: center;
  text-align: center;
}

.eyebrow,
.kicker {
  margin: 0 0 10px;
  color: var(--blue-soft);
  font-size: 0.62rem;
  font-weight: 400;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(0, 96, 255, 0.8);
}

.eyebrow {
  opacity: 0;
  animation: titleRise 560ms cubic-bezier(0.2, 0.8, 0.2, 1) 40ms both;
}

.hero h1,
.section-heading h2,
.proof-copy h2,
.contact-intro h2,
.why h2 {
  margin: 0;
  color: var(--white);
  font-weight: 400;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(0, 96, 255, 0.28), 0 18px 32px rgba(0, 0, 0, 0.9);
}

.hero-copy-block {
  display: grid;
  justify-items: center;
  width: min(900px, 100%);
  padding: 72px 18px 42px;
  padding-inline: 18px;
}

.hero-title {
  display: grid;
  justify-content: center;
  gap: 0.12em;
  width: min(900px, 100%);
  max-width: 900px;
  font-size: clamp(1.78rem, 3.65vw, 3.65rem);
  line-height: 1.02;
}

.hero-title span {
  display: block;
  white-space: nowrap;
  transform: translateY(18px);
  opacity: 0;
  animation: titleRise 620ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: calc(var(--i) * 105ms);
}

.hero-title span:last-child {
  color: #f7fbff;
  text-shadow: 0 0 34px rgba(0, 96, 255, 0.95), 0 18px 34px rgba(0, 0, 0, 0.86);
}

.hero-copy {
  max-width: 560px;
  margin: 20px auto 0;
  color: #d5dce7;
  font-size: clamp(0.78rem, 1.15vw, 0.94rem);
  font-weight: 400;
  line-height: 1.78;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.88);
  opacity: 0;
  animation: titleRise 600ms cubic-bezier(0.2, 0.8, 0.2, 1) 820ms both;
}

.actions,
.form-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.inline-actions {
  justify-content: flex-start;
}

.hero .actions {
  width: min(100%, 520px);
  opacity: 0;
  animation: titleRise 520ms cubic-bezier(0.2, 0.8, 0.2, 1) 1040ms both;
}

.scroll-explore {
  position: absolute;
  bottom: 8px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
  color: #b9c5d5;
  font-size: 0.62rem;
  font-weight: 400;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
  opacity: 0;
  animation: fadeIn 460ms ease 1280ms both;
}

.scroll-explore svg {
  width: 18px;
  height: 18px;
  color: var(--blue-soft);
}

.scroll-explore:hover,
.scroll-explore:focus-visible {
  color: var(--white);
  transform: translateX(-50%) translateY(2px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 210px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 0;
  cursor: pointer;
  font-size: 0.73rem;
  font-weight: 400;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--glow);
}

.button-light {
  color: #10141b;
  background: linear-gradient(180deg, #ffffff, #cdd5df 52%, #f9fbff);
  box-shadow: inset 0 1px 0 #ffffff, 0 0 16px rgba(0, 96, 255, 0.25);
}

.button-dark {
  color: var(--white);
  border-color: rgba(0, 96, 255, 0.84);
  background: linear-gradient(180deg, #1a2230, #090d14);
}

@keyframes titleRise {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0) rotateZ(0deg);
  }

  50% {
    transform: translateY(-14px) rotateZ(2deg);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes shimmer {
  0%   { background-position: -100% 0, 0 0; }
  100% { background-position: 300% 0, 0 0; }
}

.section-heading {
  max-width: 780px;
  margin: 0 auto clamp(32px, 5vw, 54px);
  text-align: center;
}

.section-heading h2,
.proof-copy h2,
.contact-intro h2,
.why h2 {
  font-size: clamp(1.2rem, 3vw, 2.4rem);
  line-height: 1.08;
}

.section-heading p:not(.kicker),
.proof-copy p,
.contact-intro p,
.why .section-heading p:not(.kicker),
.why-copy p:not(.kicker) {
  max-width: 650px;
  margin: 14px auto 0;
  color: #a3adbc;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.65;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--container);
  margin: 0 auto;
}

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

.fit-grid article,
.package-card,
.included-panel,
.work-card,
.steps article,
.faq-list details,
.contact-form {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 24, 34, 0.98), rgba(7, 10, 15, 0.98));
  box-shadow: 0 0 22px rgba(0, 96, 255, 0.18);
}

.fit-grid article {
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.fit-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 96, 255, 0.52);
  background: #05070b;
}

.fit-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 11, 0.04), rgba(5, 7, 11, 0.42)),
    radial-gradient(circle at 50% 50%, rgba(0, 96, 255, 0.12), transparent 58%);
  pointer-events: none;
}

.fit-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transition: opacity 180ms ease, transform 220ms ease;
}

.fit-grid article:hover .fit-card-media img {
  opacity: 1;
  transform: scale(1.02);
}

.fit-grid span,
.steps span,
.package-label {
  display: block;
  margin-bottom: 14px;
  color: var(--blue-soft);
  font-size: 0.62rem;
  font-weight: 400;
  text-transform: uppercase;
}

.fit-grid strong {
  display: block;
  color: var(--white);
  font-size: 0.92rem;
  line-height: 1.25;
}

.fit-grid span,
.fit-grid strong,
.fit-grid article > p {
  margin-left: 20px;
  margin-right: 20px;
}

.fit-grid span {
  margin-top: 20px;
}

.fit-grid article > p {
  margin-top: 12px;
  margin-bottom: 22px;
  color: #a8b2c0;
  font-size: 0.66rem;
  font-weight: 400;
  line-height: 1.62;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 48px);
  max-width: var(--container);
  margin: 0 auto;
}

.package-card {
  position: relative;
  padding: clamp(24px, 4vw, 42px);
}

.package-card.featured {
  background:
    linear-gradient(105deg, transparent 38%, rgba(88, 162, 255, 0.055) 50%, transparent 62%),
    linear-gradient(180deg, rgba(18, 24, 34, 0.98), rgba(7, 10, 15, 0.98));
  background-size: 300% 100%, 100% 100%;
  box-shadow: var(--glow);
  animation: shimmer 5s ease-in-out infinite 2.5s;
}

.package-card h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(1.85rem, 4vw, 3.1rem);
  line-height: 0.96;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(0, 96, 255, 0.22), 0 16px 28px rgba(0, 0, 0, 0.75);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(1.2rem, 3vw, 2.4rem);
  font-weight: 400;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(0, 96, 255, 0.28), 0 18px 32px rgba(0, 0, 0, 0.9);
}

.price span {
  color: var(--blue-soft);
  font-size: 0.62rem;
  text-shadow: 0 0 18px rgba(0, 96, 255, 0.8);
}

.package-card p:not(.package-label) {
  color: #a6b0bf;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.6;
}

.package-card ul,
.included-panel ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.package-card li,
.included-panel li {
  position: relative;
  padding-left: 22px;
  color: #c3ccd9;
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.45;
}

.package-card li::before,
.included-panel span {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 12px rgba(0, 96, 255, 0.9);
}

.included-panel {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 42px);
}

.included-panel li {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.included-panel li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 78px);
}

.proof-copy {
  display: grid;
  justify-items: start;
}

.proof-copy h2,
.proof-copy p {
  max-width: 560px;
}

.proof-copy p {
  margin-left: 0;
  margin-right: 0;
}

.left-kicker {
  text-align: left;
}

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

.work-card {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
  display: grid;
  align-content: end;
  padding: 20px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 7, 12, 0.05) 0%, rgba(4, 7, 12, 0.02) 42%, rgba(4, 7, 12, 0.88) 100%),
    radial-gradient(circle at 50% 50%, rgba(0, 96, 255, 0.12), transparent 64%);
}

.work-card:hover,
.work-card:focus-visible {
  border-color: rgba(88, 162, 255, 0.95);
  box-shadow: var(--glow);
  transform: translateY(-5px);
  outline: none;
}

.work-card:hover img,
.work-card:focus-visible img {
  opacity: 1;
  transform: none;
}

.work-frames img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #05070b;
  opacity: 0.94;
  transition: opacity 180ms ease, transform 220ms ease;
}

.work-frames span {
  position: relative;
  z-index: 1;
  color: var(--blue-soft);
  font-size: 0.58rem;
  font-weight: 400;
  text-transform: uppercase;
}

.work-frames strong {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(0, 96, 255, 0.5), 0 12px 24px rgba(0, 0, 0, 0.85);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--container);
  margin: 0 auto;
  scrollbar-color: var(--blue) rgba(255, 255, 255, 0.12);
  scrollbar-width: thin;
}

.steps::-webkit-scrollbar {
  height: 8px;
}

.steps::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

.steps::-webkit-scrollbar-thumb {
  background: var(--blue);
  box-shadow: 0 0 14px rgba(0, 96, 255, 0.7);
}

.steps article {
  display: grid;
  align-content: start;
  gap: 12px;
  aspect-ratio: 1;
  min-height: 0;
  padding: 18px;
  text-align: center;
}

.steps strong {
  color: var(--white);
  font-size: clamp(0.78rem, 1.15vw, 1rem);
  font-weight: 400;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(0, 96, 255, 0.22), 0 14px 24px rgba(0, 0, 0, 0.75);
}

.steps p {
  margin: 0;
  color: #9faaba;
  font-size: 0.58rem;
  font-weight: 400;
  line-height: 1.55;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  cursor: pointer;
  color: var(--white);
  font-weight: 400;
  text-transform: uppercase;
}

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

.faq-list summary::after {
  content: '+';
  flex-shrink: 0;
  margin-left: 16px;
  color: var(--blue-soft);
  font-size: 1.2rem;
  line-height: 1;
  text-shadow: 0 0 10px rgba(88, 162, 255, 0.7);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list p {
  margin: 12px 0 0;
  color: #a8b2c0;
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.6;
}

.why {
  overflow: hidden;
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  align-items: center;
  gap: clamp(30px, 7vw, 92px);
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.why-copy {
  position: relative;
  z-index: 1;
}

.why-copy h2 {
  max-width: 610px;
}

.why-copy p:not(.kicker) {
  margin-left: 0;
}

.why-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 96, 255, 0.58);
  background: #05070b;
  box-shadow: 0 0 34px rgba(0, 96, 255, 0.24), 0 28px 70px rgba(0, 0, 0, 0.58);
  isolation: isolate;
}

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

.why-visual::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.32), rgba(5, 7, 11, 0) 48%),
    linear-gradient(180deg, rgba(5, 7, 11, 0.04), rgba(5, 7, 11, 0.82));
}

.why-visual::after {
  z-index: 2;
  border: 1px solid rgba(88, 162, 255, 0.28);
  box-shadow: inset 0 0 34px rgba(0, 96, 255, 0.22);
}

.why-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
}

.why-visual figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 3;
  display: grid;
  gap: 6px;
}

.why-visual span {
  color: var(--blue-soft);
  font-size: 0.58rem;
  font-weight: 400;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(0, 96, 255, 0.88);
}

.why-visual strong {
  color: var(--white);
  font-size: clamp(0.92rem, 1.7vw, 1.28rem);
  font-weight: 400;
  line-height: 1.18;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(0, 96, 255, 0.62), 0 12px 24px rgba(0, 0, 0, 0.88);
}

.contact {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 42%, rgba(0, 96, 255, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(5, 7, 11, 0.94), rgba(5, 7, 11, 0.62) 48%, rgba(5, 7, 11, 0.94)),
    linear-gradient(180deg, rgba(5, 7, 11, 0.72), rgba(5, 7, 11, 0.94));
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.82;
}

.contact-intro {
  position: relative;
  z-index: 1;
  max-width: 610px;
  margin: 0 auto;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #cbd3df;
  font-size: 0.62rem;
  font-weight: 400;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 96, 255, 0.58);
  border-radius: 0;
  padding: 12px 13px;
  color: var(--white);
  background: rgba(8, 11, 16, 0.9);
  box-shadow: 0 0 12px rgba(0, 96, 255, 0.12);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(88, 162, 255, 0.55);
}

.full,
.status {
  grid-column: 1 / -1;
}

.status {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(88, 162, 255, 0.55);
  color: var(--white);
  background: rgba(0, 96, 255, 0.16);
  font-weight: 400;
}

.status.is-visible {
  display: block;
}

.trap {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.human-check {
  grid-template-columns: auto 1fr;
  align-items: start;
  letter-spacing: 0;
  text-transform: none;
}

.human-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.quote-modal[hidden] {
  display: none;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.quote-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 28%, rgba(0, 96, 255, 0.18), transparent 34%),
    rgba(2, 4, 8, 0.82);
  backdrop-filter: blur(16px);
}

.quote-dialog {
  position: relative;
  width: min(100%, 760px);
  max-height: min(92svh, 860px);
  overflow: auto;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(88, 162, 255, 0.68);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(18, 24, 34, 0.98), rgba(7, 10, 15, 0.99)),
    radial-gradient(circle at 50% 0%, rgba(0, 96, 255, 0.16), transparent 48%);
  box-shadow: 0 0 42px rgba(0, 96, 255, 0.38), 0 34px 80px rgba(0, 0, 0, 0.72);
}

.quote-dialog__intro {
  max-width: 560px;
  margin: 0 auto 22px;
  text-align: center;
}

.quote-dialog__intro h2 {
  margin: 10px 0;
  color: var(--white);
  font-size: clamp(1.22rem, 3vw, 2rem);
  line-height: 1.12;
  text-transform: uppercase;
}

.quote-dialog__intro p {
  color: #c9d2df;
  line-height: 1.7;
}

.quote-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(88, 162, 255, 0.5);
  color: var(--white);
  background: rgba(8, 11, 16, 0.84);
  cursor: pointer;
  font: inherit;
  text-transform: uppercase;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.quote-close:hover,
.quote-close:focus-visible {
  border-color: rgba(88, 162, 255, 0.95);
  box-shadow: var(--glow);
  outline: none;
}

.modal-form {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body.modal-open {
  overflow: hidden;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(18px, 6vw, 84px);
  color: #8d98a9;
  background: #08090d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer img {
  width: 132px;
}

.site-footer p {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 400;
}

.site-footer a {
  color: var(--white);
  font-weight: 400;
}

/* ---- scroll reveal ---- */

[data-reveal] {
  opacity: 0;
}

[data-reveal="up"] {
  transform: translateY(26px);
}

[data-reveal="left"] {
  transform: translateX(-30px);
}

.proof-copy [data-reveal="left"] {
  transform: translateY(26px);
}

[data-reveal="scale"] {
  transform: scale(0.96) translateY(14px);
}

[data-reveal].in-view {
  opacity: 1;
  transform: none;
}

/* card hover interactions */

.fit-grid article,
.package-card,
.steps article,
.faq-list details {
  cursor: default;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 280ms ease,
              border-color 280ms ease;
}

.fit-grid article:hover,
.steps article:hover {
  transform: translateY(-6px);
  border-color: rgba(88, 162, 255, 0.45);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), 0 0 24px rgba(0, 96, 255, 0.24);
}

.package-card:hover {
  transform: translateY(-7px);
  border-color: rgba(88, 162, 255, 0.52);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.52), 0 0 30px rgba(0, 96, 255, 0.28);
}

.package-card.featured:hover {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.52), var(--glow);
}

.faq-list details:hover {
  border-color: rgba(88, 162, 255, 0.38);
  box-shadow: 0 0 26px rgba(0, 96, 255, 0.2);
}

/* ---- policy pages ---- */

.policy-intro {
  padding-top: calc(92px + clamp(38px, 6vw, 72px));
}

.policy-intro h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.2rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(0, 96, 255, 0.28), 0 18px 32px rgba(0, 0, 0, 0.9);
}

.section-heading p.policy-meta {
  color: var(--muted);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.policy-content {
  max-width: 760px;
  margin: 0 auto;
}

.policy-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 46px;
  color: var(--blue-soft);
  font-size: 0.62rem;
  font-weight: 400;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(88, 162, 255, 0.45);
  transition: color 180ms ease, gap 200ms ease;
}

.policy-back:hover {
  color: var(--white);
  gap: 14px;
}

.policy-content h2 {
  margin: 0 0 16px;
  padding-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: clamp(0.76rem, 1.4vw, 0.94rem);
  font-weight: 400;
  text-transform: uppercase;
}

.policy-content h2:first-of-type {
  padding-top: 0;
  border-top: none;
}

.policy-content p {
  margin: 0 0 16px;
  color: #a3adbc;
  font-size: 0.76rem;
  font-weight: 400;
  line-height: 1.82;
}

.policy-content p:last-child {
  margin-bottom: 0;
}

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

.policy-content li {
  position: relative;
  padding-left: 20px;
  color: #a3adbc;
  font-size: 0.76rem;
  font-weight: 400;
  line-height: 1.72;
}

.policy-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px rgba(0, 96, 255, 0.8);
}

.policy-content strong {
  color: var(--silver);
  font-weight: 400;
}

.policy-content a {
  color: var(--blue-soft);
  text-underline-offset: 3px;
}

.policy-content a:hover {
  color: var(--white);
}

.footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 16px;
}

.footer-sep {
  color: var(--blue);
  text-shadow: 0 0 10px rgba(0, 96, 255, 0.8);
}

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

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

  .package-grid,
  .proof,
  .contact {
    grid-template-columns: 1fr;
  }

  .why-layout {
    grid-template-columns: 1fr;
  }

  .why-copy,
  .why .left-kicker {
    text-align: center;
  }

  .why-copy h2,
  .why-copy p:not(.kicker) {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stage {
    min-height: calc(100svh - 132px);
  }

  .hero-copy-block {
    padding-top: 156px;
  }

  .hero-title {
    font-size: 2.25rem;
  }

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

  .work-frames {
    grid-template-columns: 1fr;
  }

  .why-visual {
    min-height: 320px;
  }

  .steps {
    grid-template-columns: repeat(5, minmax(172px, 1fr));
    overflow-x: auto;
    padding-bottom: 14px;
  }

  .steps article {
    min-height: 214px;
    aspect-ratio: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 8px;
    padding: 10px 14px;
  }

  .brand img {
    width: 112px;
  }

  .header-cta {
    padding: 8px 9px;
    font-size: 0.58rem;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 0;
  }

  .hero-stage {
    min-height: 620px;
  }

  .hero-copy-block {
    width: 100%;
    padding: 210px 16px 70px;
  }

  .hero-title {
    max-width: calc(100vw - 34px);
    font-size: 1.3rem;
    line-height: 1;
  }

  .hero-title span {
    white-space: normal;
    overflow-wrap: break-word;
  }

  .hero-copy {
    max-width: calc(100vw - 42px);
    font-size: 0.72rem;
    line-height: 1.5;
  }

  .hero-photo img {
    object-position: center top;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(5, 6, 9, 0.98) 0%, rgba(5, 6, 9, 0.86) 46%, rgba(5, 6, 9, 0.26) 100%),
      linear-gradient(90deg, rgba(5, 6, 9, 0.68), rgba(5, 6, 9, 0.36));
  }

  .scroll-explore {
    bottom: 10px;
  }

  .button {
    width: min(100%, 320px);
    min-width: 0;
    padding-inline: 14px;
    text-align: center;
    white-space: normal;
  }

  .fit-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .why-visual {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .why-visual figcaption {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .section-heading h2,
  .proof-copy h2,
  .contact-intro h2,
  .why h2 {
    font-size: 1.12rem;
  }

  .steps {
    grid-template-columns: repeat(5, minmax(184px, 1fr));
  }

  .steps article {
    min-height: 250px;
    padding: 20px 18px;
  }

  .site-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 28px 14px;
    text-align: center;
  }

  .site-footer img {
    width: 118px;
    margin-inline: auto;
  }

  .site-footer p {
    font-size: 0.62rem;
    width: 100%;
    text-align: center;
  }

  .footer-legal {
    align-self: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0 7px;
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  .footer-legal a,
  .footer-sep {
    font-size: 0.56rem;
    white-space: nowrap;
  }
}

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