:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-soft: #f6f6f6;
  --bg-muted: #fafafa;
  --text: #0a0a0a;
  --text-soft: #666666;
  --text-faint: #9a9a9a;
  --line: #ededed;
  --line-dark: #232323;
  --surface: #ffffff;
  --surface-dark: #101010;
  --surface-deep: #0a0a0a;
  --brand: #4d8dff;
  --brand-soft: rgba(77, 141, 255, 0.14);
  --radius: 4px;
  --shadow: 0 26px 80px rgba(10, 10, 10, 0.1);
  --shadow-strong: 0 36px 110px rgba(10, 10, 10, 0.16);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0a0a0a;
  --bg-soft: #101010;
  --text: #ffffff;
  --text-soft: #b0b0b0;
  --text-faint: #6d6d6d;
  --line: #232323;
  --line-dark: #2d2d2d;
  --surface: #111111;
  --surface-dark: #151515;
  --surface-deep: #050505;
  --brand-soft: rgba(77, 141, 255, 0.18);
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.4);
  --shadow-strong: 0 42px 140px rgba(0, 0, 0, 0.55);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  transition: background 200ms ease, color 200ms ease;
  overflow-x: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 140;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ffffff 0%, #8f8f8f 55%, #ffffff 100%);
  transform-origin: left center;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  top: 1rem;
  left: 1rem;
  z-index: 999;
  width: auto;
  height: auto;
  clip: auto;
  padding: 0.75rem 1rem;
  background: #fff;
  color: #000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 0.5px solid var(--line);
}

[data-theme="dark"] .site-header {
  background: rgba(10, 10, 10, 0.9);
  border-bottom-color: var(--line-dark);
}

.nav-shell,
.wrap,
.trust-bar {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.nav-shell {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: 0.75rem;
  min-height: 42px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 0.55rem;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.nav-brand span {
  display: none;
}

.nav-brand img,
.footer-logo img {
  width: 58px;
  height: 58px;
  padding: 0;
  object-fit: contain;
  border-radius: 0;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.nav-brand img {
  width: 76px;
  height: 76px;
}

.nav-brand:hover img {
  transform: scale(1.04);
}

.nav-menu,
.nav-actions,
.hero-actions,
.inline-actions,
.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-menu {
  justify-self: center;
  gap: 1.75rem;
  text-align: center;
}

.nav-actions {
  justify-self: end;
}

.nav-menu a {
  font-size: 12.5px;
  color: var(--text-soft);
}

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

.language-switcher {
  gap: 0.25rem;
  padding: 0.2rem;
  border: 0.5px solid var(--line);
  border-radius: 999px;
  background: var(--bg-soft);
}

.lang-button {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 15px;
  filter: saturate(0.72);
  transition: background 180ms ease, filter 180ms ease, transform 180ms ease;
}

.lang-button:hover,
.lang-button.is-active {
  background: var(--surface);
  filter: saturate(1);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--text);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1.55rem;
  height: 2px;
  margin: 0.28rem 0;
  background: currentColor;
}

.theme-toggle {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0.5px solid var(--line);
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--text-soft);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.theme-toggle:hover {
  color: var(--text);
  background: var(--surface);
  border-color: rgba(77, 141, 255, 0.35);
  transform: translateY(-1px);
}

.theme-toggle svg {
  width: 17px;
  height: 17px;
  display: block;
}

.theme-toggle .theme-icon-sun {
  display: none;
}

[data-theme="dark"] .theme-toggle .theme-icon-sun {
  display: block;
}

[data-theme="dark"] .theme-toggle .theme-icon-moon {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0.5px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover { transform: translateY(-2px); }

.nav-menu a:focus-visible,
.button:focus-visible,
.theme-toggle:focus-visible,
.lang-button:focus-visible,
.faq-question:focus-visible,
.nav-brand:focus-visible,
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible,
.form-submit:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 8px;
}

.button-light,
.button-ghost {
  min-height: 30px;
  padding: 6px 12px;
  font-size: 12px;
  letter-spacing: 0.03em;
}

.nav-apply {
  border-color: rgba(77, 141, 255, 0.25);
  box-shadow: 0 10px 30px rgba(77, 141, 255, 0.16);
}

.button-xl {
  min-height: 54px;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 24px 70px rgba(255, 255, 255, 0.14);
}

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

.button-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text-soft);
}

.button-dark,
.button-outline,
.button-dark-outline {
  min-height: 42px;
  padding: 10px 20px;
  font-size: 13px;
}

.button-dark {
  background: #0a0a0a;
  color: #fff;
}

.button-outline {
  background: transparent;
  border-color: #0a0a0a;
  color: #0a0a0a;
}

.button-dark-outline {
  background: transparent;
  border-color: #444;
  color: #ccc;
}

[data-theme="dark"] .button-outline {
  border-color: #fff;
  color: #fff;
}

.hero {
  background: #0a0a0a;
  padding: 5rem 1rem 0;
  text-align: center;
  position: relative;
  overflow: clip;
}

.hero-company .hero-inner {
  max-width: 860px;
}

.hero-company h1 {
  max-width: 880px;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 18% 16%, rgba(77, 141, 255, 0.18), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.08), transparent 26%);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -1px;
  height: 140px;
  content: "";
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.9));
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  left: var(--glow-x, 50%);
  top: var(--glow-y, 8%);
  width: 48rem;
  height: 48rem;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 28%, transparent 62%);
  transform: translate(-50%, -10%);
  filter: blur(18px);
  animation: heroPulse 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 85%);
  opacity: 0.28;
  animation: gridDrift 24s linear infinite;
  pointer-events: none;
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-image picture {
  display: block;
}

.hero-eye,
.eye {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.hero h1 {
  margin: 1.25rem auto;
  max-width: 760px;
  font-size: clamp(2.4rem, 6vw, 3.9rem);
  line-height: 1.12;
  color: #fff;
  letter-spacing: 0;
  font-weight: 550;
  text-wrap: balance;
}

.hero h1 em {
  display: inline-block;
  font-style: normal;
  color: #a9bfe9;
  text-shadow: 0 10px 30px rgba(77, 141, 255, 0.2);
}

.hero-sub {
  max-width: 520px;
  margin: 0 auto 2rem;
  color: #9a9a9a;
  line-height: 1.8;
  font-size: 16px;
}

.hero-actions {
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-image {
  width: min(100%, 1320px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 22px 22px 0 0;
  position: relative;
  box-shadow:
    0 40px 160px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: translateZ(0);
}

.hero-image img {
  width: 100%;
  min-height: 620px;
  max-height: 78vh;
  object-fit: cover;
  opacity: 0.98;
  transform: scale(1.035);
  transition: transform 1200ms cubic-bezier(0.22, 1, 0.36, 1), filter 900ms ease;
  filter: saturate(0.94) contrast(1.06) brightness(0.94);
}

.hero-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.2) 34%, transparent 58%),
    linear-gradient(to right, rgba(0, 0, 0, 0.52), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.4)),
    radial-gradient(circle at 50% 8%, transparent, rgba(0, 0, 0, 0.16) 72%);
  pointer-events: none;
}

.hero-image::before {
  position: absolute;
  inset: auto -15% 14% auto;
  width: 38%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  transform: rotate(-8deg);
  animation: horizonSweep 7s ease-in-out infinite;
  opacity: 0.9;
  pointer-events: none;
}

.hero:hover .hero-image img {
  transform: scale(1.065);
  filter: saturate(1) contrast(1.08);
}

.hero-chip {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.55rem 0.8rem;
  border: 0.5px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 10, 10, 0.56);
  color: #d8d8d8;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  animation: floatBadge 5.5s ease-in-out infinite;
}

.hero-chip-left {
  left: 1rem;
  bottom: 1rem;
}

.hero-chip-right {
  right: 1rem;
  top: 1rem;
  animation-delay: -2.4s;
}

.trust-bar {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.75fr);
  gap: 1rem;
  padding: 2.2rem 0;
  border-bottom: 0.5px solid var(--line);
}

.trust-intro {
  padding: 1.25rem 1rem 1.25rem 0;
}

.trust-intro h2 {
  margin-top: 0.8rem;
  max-width: 520px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.trust-intro p:not(.eye) {
  margin-top: 1rem;
  max-width: 500px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.75;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 0.5px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-item {
  min-height: 210px;
  padding: 1.45rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, var(--brand-soft), transparent 32%),
    linear-gradient(145deg, var(--surface), var(--bg-muted));
}

.trust-item strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 550;
  letter-spacing: -0.04em;
}

.trust-item span {
  display: block;
  margin-top: 0.55rem;
  color: var(--text);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.trust-item p {
  margin-top: 0.8rem;
  color: var(--text-soft);
  font-size: 12.5px;
  line-height: 1.45;
}

.trust-item::after {
  position: absolute;
  inset: 0 auto 0 -110%;
  width: 45%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: skewX(-20deg) translateX(0);
  animation: trustSweep 8s ease-in-out infinite;
  will-change: transform;
}

.wrap { padding: 0 1rem; }
.section { padding: 4.5rem 0; }

.page-hero {
  padding: 6.5rem 0 4rem;
  background:
    linear-gradient(180deg, var(--bg), var(--bg-soft));
  border-bottom: 0.5px solid var(--line);
}

.page-hero-inner {
  max-width: 760px;
}

.page-hero-centered {
  margin-inline: auto;
  text-align: center;
}

.page-hero-centered p:not(.hero-eye) {
  margin-inline: auto;
}

.page-hero h1 {
  margin-top: 0.85rem;
  max-width: 820px;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 600;
}

.page-hero p:not(.hero-eye) {
  margin-top: 1rem;
  max-width: 620px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.8;
}

.page-band {
  padding-top: 6.5rem;
}

.home-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 4.5rem 0;
}

.home-link {
  min-height: 220px;
  padding: 1.5rem;
  border: 0.5px solid var(--line);
  background: linear-gradient(180deg, var(--surface), var(--bg-muted));
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.home-link:hover {
  transform: translateY(-5px);
  border-color: rgba(77, 141, 255, 0.25);
  box-shadow: var(--shadow);
}

.home-link span {
  display: block;
  margin-bottom: 1.6rem;
  color: var(--text-faint);
  font-size: 11px;
}

.home-link strong {
  display: block;
  font-size: 16px;
  font-weight: 650;
}

.home-link p {
  margin-top: 0.7rem;
  color: var(--text-soft);
  font-size: 13.5px;
  line-height: 1.65;
}

.company-overview h2 {
  margin: 0.85rem 0 1rem;
  font-size: clamp(2rem, 4vw, 2.55rem);
  line-height: 1.16;
  font-weight: 560;
}

.service-stack {
  display: grid;
  gap: 1.4rem;
  margin-top: 2rem;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: stretch;
  gap: 1.25rem;
  min-height: 390px;
  padding: 1rem;
  border: 0.5px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 0%, var(--brand-soft), transparent 30%),
    linear-gradient(145deg, var(--surface), var(--bg-muted));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-row:nth-child(even) {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

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

.service-row:nth-child(even) .service-row-media {
  order: 1;
}

.service-row:hover {
  transform: translateY(-6px);
  border-color: rgba(77, 141, 255, 0.28);
  box-shadow: var(--shadow-strong);
}

.service-row-dark {
  background:
    radial-gradient(circle at 10% 0%, rgba(77, 141, 255, 0.26), transparent 34%),
    linear-gradient(145deg, #0a0a0a, #141414);
  color: #fff;
}

.service-row-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.25rem, 3vw, 2.4rem);
}

.service-row-copy span {
  display: block;
  color: var(--text-faint);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-row-dark .service-row-copy span,
.service-row-dark .service-row-copy p {
  color: #aaa;
}

.service-row-copy h3 {
  margin-top: 1rem;
  max-width: 620px;
  font-size: clamp(2rem, 4.8vw, 3.9rem);
  line-height: 1;
  font-weight: 660;
  letter-spacing: -0.035em;
}

.service-row-copy p {
  margin-top: 1rem;
  max-width: 560px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.8;
}

.service-lead {
  font-size: 15.5px !important;
  color: var(--text) !important;
}

.service-row-dark .service-lead {
  color: #e8e8e8 !important;
}

.service-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-top: 1.35rem;
  max-width: 620px;
}

.service-metrics article {
  padding: 0.85rem;
  border: 0.5px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
}

[data-theme="dark"] .service-metrics article,
.service-row-dark .service-metrics article {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
}

.service-metrics strong,
.service-metrics small {
  display: block;
}

.service-metrics strong {
  color: var(--text);
  font-size: 17px;
  line-height: 1.15;
}

.service-row-dark .service-metrics strong {
  color: #fff;
}

.service-metrics small {
  margin-top: 0.2rem;
  color: var(--text-faint);
  font-size: 10.5px;
  line-height: 1.35;
}

.service-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.25rem;
  padding: 0;
  max-width: 620px;
  list-style: none;
}

.service-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: var(--text-soft);
  font-size: 13.5px;
  line-height: 1.55;
}

.service-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 0.48rem;
  border-radius: 50%;
  background: var(--brand);
  flex: 0 0 auto;
}

.service-row-dark .service-list li {
  color: #b8b8b8;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.4rem 0;
}

.service-tags em {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 0.5px solid var(--line);
  color: var(--text-soft);
  font-size: 11.5px;
  font-style: normal;
  background: rgba(255, 255, 255, 0.04);
}

.service-row-dark .service-tags em {
  border-color: rgba(255, 255, 255, 0.16);
  color: #ddd;
}

.service-row-media {
  height: clamp(330px, 34vw, 430px);
  min-height: 330px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  background: #0a0a0a;
}

.service-row-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.38), transparent 48%),
    linear-gradient(to right, rgba(0, 0, 0, 0.18), transparent 45%);
  pointer-events: none;
}

.service-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-row:hover .service-row-media img {
  transform: scale(1.045);
}

.apply-band {
  padding: 5rem 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(77, 141, 255, 0.2), transparent 32%),
    linear-gradient(135deg, #080808, #151515);
}

.apply-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.apply-band .apply-copy h2 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.04;
}

.apply-band .apply-copy p {
  color: #aaa;
}

.apply-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.apply-highlights article {
  padding: 1rem;
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.apply-highlights strong,
.apply-highlights span {
  display: block;
}

.apply-highlights strong {
  color: #fff;
  font-size: 20px;
}

.apply-highlights span {
  margin-top: 0.3rem;
  color: #888;
  font-size: 11.5px;
}

.form-box-strong {
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.42);
}

.form-submit-xl {
  min-height: 50px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.page-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 0 auto 1.5rem;
  min-height: 42px;
  padding: 0.65rem 1rem;
  border: 0.5px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow);
}

.page-back::before {
  content: "<";
  color: var(--text-faint);
}

.service-hero .page-hero-inner {
  max-width: 920px;
}

.service-hero h1 {
  margin-inline: auto;
  text-align: center;
  text-wrap: balance;
}

.legal-strip,
.package-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.legal-strip {
  grid-template-columns: repeat(4, 1fr);
}

.legal-strip article,
.package-card {
  padding: 1.25rem;
  border: 0.5px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, var(--surface), var(--bg-muted));
  box-shadow: var(--shadow);
}

.legal-strip span,
.package-card span {
  display: block;
  color: var(--text-faint);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.legal-strip strong {
  display: block;
  margin-top: 0.45rem;
  color: var(--text);
  font-size: 18px;
}

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

.package-card h3 {
  margin-top: 0.8rem;
  font-size: 18px;
  line-height: 1.2;
}

.package-card p {
  margin-top: 0.75rem;
  color: var(--text-soft);
  font-size: 13.5px;
  line-height: 1.7;
}

.service-process {
  counter-reset: process;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 2rem;
  border-radius: 18px;
  overflow: hidden;
  background: var(--line);
}

.service-process article {
  counter-increment: process;
  padding: 1.4rem;
  background: var(--surface);
}

.service-process article::before {
  content: "0" counter(process);
  display: block;
  margin-bottom: 1rem;
  color: var(--text-faint);
  font-size: 11px;
}

.service-process h3 {
  font-size: 15px;
}

.service-process p {
  margin-top: 0.6rem;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.65;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.2rem);
  line-height: 1.24;
  letter-spacing: 0;
  font-weight: 550;
  margin-top: 0.85rem;
}

.section-copy {
  margin-top: 1rem;
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-soft);
  max-width: 580px;
}

.marker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  padding: 3px 9px;
  border: 0.5px solid var(--line);
  background: var(--bg-soft);
  color: var(--text-soft);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.marker::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-faint);
}

.marker-light {
  background: transparent;
}

.divider {
  height: 0.5px;
  background: var(--line);
}

.about-grid,
.apply-grid,
.history-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 2.5rem;
}

.program-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 0.95fr);
  gap: 1rem;
  margin-top: 2rem;
  align-items: stretch;
}

.media-card {
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-strong);
}

.media-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 32%, rgba(0, 0, 0, 0.18));
  z-index: 1;
  pointer-events: none;
}

.media-card::after {
  position: absolute;
  inset: auto 10% -26% 10%;
  height: 42%;
  content: "";
  background: radial-gradient(circle, rgba(77, 141, 255, 0.18), transparent 68%);
  filter: blur(26px);
  opacity: 0.8;
  pointer-events: none;
}

.history-grid .media-card {
  height: 520px;
}

.program-visual {
  min-height: 100%;
}

.media-card img,
.full-image img,
.partner-image img,
.shop-card img,
.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.copy-block p,
.apply-copy p,
.contact-details article strong,
.faq-answer p,
.seo-inner p {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--text-soft);
}

.copy-block blockquote {
  margin: 1.25rem 0;
  padding-left: 1.25rem;
  border-left: 2px solid var(--brand);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  font-style: italic;
}

.inline-actions {
  margin-top: 1.5rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
  border: 0.5px solid var(--line);
}

.offer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.offer-card,
.feature-panel {
  min-height: 220px;
  padding: 1.5rem;
  border: 0.5px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(145deg, var(--surface), var(--bg-muted)),
    radial-gradient(circle at 0 0, var(--brand-soft), transparent 34%);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.offer-card::after,
.feature-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.16) 42%, transparent 76%);
  transform: translateX(-120%);
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.offer-card:hover,
.feature-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(77, 141, 255, 0.22);
  box-shadow: var(--shadow-strong);
}

.offer-card:hover::after,
.feature-panel:hover::after {
  transform: translateX(120%);
}

.offer-card span,
.feature-panel span {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--text-faint);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.offer-card strong {
  display: block;
  color: var(--text);
  font-size: 26px;
  line-height: 1.1;
  font-weight: 650;
}

.offer-card p,
.feature-panel p {
  margin-top: 0.85rem;
  color: var(--text-soft);
  font-size: 13.5px;
  line-height: 1.7;
}

.offer-card-main {
  background: #0a0a0a;
  color: #fff;
}

.offer-card-main strong,
.offer-card-main p {
  color: #fff;
}

.lane-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.lane-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.4rem 0.75rem;
  border: 0.5px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-soft);
  font-size: 12px;
  box-shadow: 0 12px 26px rgba(10, 10, 10, 0.04);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.feature-panel h3 {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 600;
}

.fleet-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: 4rem;
  align-items: center;
}

.fleet-copy h2 {
  margin-top: 0.85rem;
  font-size: clamp(2rem, 4vw, 2.35rem);
  line-height: 1.18;
  font-weight: 550;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.mini-stats article {
  padding: 1rem;
  border: 0.5px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.mini-stats strong,
.mini-stats span {
  display: block;
}

.mini-stats strong {
  font-size: 13px;
  font-weight: 650;
}

.mini-stats span {
  margin-top: 0.25rem;
  color: var(--text-soft);
  font-size: 12px;
}

.why-item {
  min-height: 190px;
  padding: 1.75rem;
  border-right: 0.5px solid var(--line);
  border-bottom: 0.5px solid var(--line);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  background: linear-gradient(180deg, var(--surface), var(--bg-muted));
}

.why-item:hover,
.program-card:hover,
.review-card:hover,
.shop-card:hover,
.blog-card:hover {
  transform: translateY(-4px);
}

.why-item:nth-child(3n) { border-right: none; }
.why-item:nth-last-child(-n + 3) { border-bottom: none; }

.why-item span {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--text-faint);
  font-size: 11px;
}

.why-item h3,
.program-head h3,
.shop-card h3,
.blog-card h3,
.footer-col h3,
.form-box h3 {
  font-size: 14.5px;
  font-weight: 550;
}

.why-item p,
.program-head p,
.program-empty p,
.shop-card p,
.blog-card small,
.footer-desc,
.footer-col a,
.footer-bottom p {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.7;
}

.full-image {
  width: 100%;
  height: 420px;
  overflow: hidden;
  position: relative;
}

.full-image img {
  width: 100%;
  height: 100%;
  opacity: 0.95;
  object-fit: cover;
  transform: scale(1.02);
}

.full-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.38), transparent 40%),
    linear-gradient(to right, rgba(0, 0, 0, 0.18), transparent 30%, transparent 70%, rgba(0, 0, 0, 0.16));
}

.program-grid,
.review-grid,
.shop-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.program-grid,
.review-grid { grid-template-columns: repeat(3, 1fr); }
.shop-grid { grid-template-columns: repeat(4, 1fr); }

.program-card,
.review-card,
.shop-card,
.blog-card {
  border: 0.5px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
  transform-style: preserve-3d;
  position: relative;
}

.program-card,
.review-card,
.shop-card,
.blog-card,
.form-box {
  background: var(--surface);
  box-shadow: var(--shadow);
}

.program-card:hover,
.review-card:hover,
.shop-card:hover,
.blog-card:hover,
.form-box:hover,
.media-card:hover {
  box-shadow: var(--shadow-strong);
  border-color: rgba(77, 141, 255, 0.22);
}

[data-tilt] {
  will-change: transform;
}

.program-card::after,
.review-card::after,
.shop-card::after,
.blog-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 36%, transparent 68%, rgba(255, 255, 255, 0.08));
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.program-card:hover::after,
.review-card:hover::after,
.shop-card:hover::after,
.blog-card:hover::after {
  opacity: 1;
}

.program-head {
  padding: 1.5rem;
  background: #0a0a0a;
  color: #fff;
}

.program-head p {
  margin-top: 0.3rem;
  color: #8c8c8c;
}

.program-head.is-muted {
  background: #111;
}

.program-body {
  padding: 1.25rem;
}

.program-body div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 0.5px solid var(--line);
}

.program-body div:last-child { border-bottom: none; }
.program-body span { color: var(--text-faint); font-size: 12px; }
.program-body strong { max-width: 58%; text-align: right; font-size: 12.5px; font-weight: 550; }

.program-empty {
  padding: 1.4rem;
}

.program-empty strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 13px;
}

.requirement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.requirement-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: 4px;
  background: var(--bg-soft);
}

.requirement-item span {
  width: 5px;
  height: 5px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--text);
  flex-shrink: 0;
}

.requirement-item p {
  font-size: 13.5px;
  line-height: 1.6;
}

.apply-copy h2 {
  margin: 0.85rem 0 1rem;
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  line-height: 1.3;
}

.apply-points {
  margin-top: 1.25rem;
  list-style: none;
}

.apply-points li {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 0.5px solid var(--line);
  font-size: 13.5px;
}

.apply-points li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text);
}

.form-box {
  padding: 1.75rem;
  border-radius: 18px;
}

.form-stack {
  display: grid;
  gap: 1rem;
}

.apply-visual {
  aspect-ratio: 4 / 1;
  height: auto;
  background: #fff;
}

.apply-visual::before,
.apply-visual::after {
  display: none;
}

.apply-visual img {
  object-fit: contain;
  object-position: center;
  background: #fff;
  transform: scale(1.18);
}

.form-box h3 {
  margin-bottom: 1.25rem;
}

.field {
  display: block;
  margin-bottom: 0.75rem;
}

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

.field span {
  display: block;
  margin-bottom: 4px;
  color: var(--text-faint);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 9px 12px;
  border: 0.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: #0a0a0a;
}

[data-theme="dark"] .field input,
[data-theme="dark"] .field select,
[data-theme="dark"] .field textarea {
  background: #fff;
  color: #0a0a0a;
}

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 11px;
  border: none;
  border-radius: 10px;
  background: #0a0a0a;
  color: #fff;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: transform 180ms ease, opacity 180ms ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  opacity: 0.96;
}

.form-status {
  margin-top: 0.75rem;
  color: var(--text-soft);
  font-size: 12.5px;
}

.cta-band {
  padding: 4rem 1rem;
  background: #0a0a0a;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  position: absolute;
  inset: auto -20% 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85), transparent);
  animation: roadRun 3.5s linear infinite;
}

.cta-band::after {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 45%);
  pointer-events: none;
}

.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 2.4rem);
  color: #fff;
  line-height: 1.3;
  letter-spacing: 0;
}

.cta-inner p {
  max-width: 460px;
  margin: 1rem auto 2rem;
  color: #9a9a9a;
  line-height: 1.75;
  font-size: 14.5px;
}

.review-card {
  padding: 1.5rem;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.review-person img {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.review-person strong,
.review-person span {
  display: block;
}

.review-person strong {
  color: #fff;
  font-size: 13px;
  font-weight: 650;
}

.review-person span {
  margin-top: 0.2rem;
  color: #777;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.reviews-band {
  padding: 4.5rem 0;
  background: #0a0a0a;
  overflow: hidden;
}

.review-carousel {
  margin-top: 2rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.review-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: reviewsMarquee 30s linear infinite;
}

.review-carousel:hover .review-track {
  animation-play-state: paused;
}

.review-track .review-card {
  width: min(380px, 84vw);
  background: #111;
  border-color: #242424;
  color: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.review-track .review-card p {
  color: #c9c9c9;
}

.review-track .review-author {
  border-top-color: #242424;
}

.review-track .stars span {
  background: #fff;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0.75rem;
}

.stars span {
  width: 11px;
  height: 11px;
  background: var(--text);
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}

.review-card p {
  min-height: 130px;
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-soft);
}

.review-author {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 0.5px solid var(--line);
}

.review-author strong {
  display: block;
  font-size: 12.5px;
}

.review-author span,
.timeline article span,
.contact-details article span,
.blog-card span {
  color: var(--text-faint);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.timeline {
  margin-top: 2rem;
}

.timeline article {
  padding: 1.25rem 0;
  border-bottom: 0.5px solid var(--line);
}

.timeline article:last-child { border-bottom: none; }

.timeline article p {
  margin-top: 0.35rem;
}

.partners-band {
  padding: 4.5rem 0;
  background: #0a0a0a;
}

.eye-dark { color: #444; }
.dark-title { color: #fff; }
.dark-copy {
  max-width: 520px;
  margin-top: 1rem;
  color: #666;
  font-size: 14.5px;
  line-height: 1.8;
}

.partner-image {
  height: 360px;
  margin-top: 2.5rem;
  overflow: hidden;
  border-radius: 18px;
  position: relative;
  background: #ffffff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.partner-image img {
  opacity: 1;
  padding: 1.5rem;
  object-fit: contain;
  transform: scale(1.03);
  transition: transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.partner-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.42), transparent 44%);
}

.partners-band:hover .partner-image img {
  transform: scale(1.08);
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 2rem;
  background: #1f1f1f;
  border-radius: 4px;
  overflow: hidden;
}

.partner-strip div {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  background: #111;
  color: #4a4a4a;
  font-size: 11.5px;
  letter-spacing: 0.04em;
}

.partner-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.partner-proof article,
.partner-note,
.shop-note,
.readiness-grid article {
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.partner-proof article {
  padding: 1.2rem;
}

.partner-proof strong {
  display: block;
  color: #fff;
  font-size: 20px;
}

.partner-proof span {
  display: block;
  margin-top: 0.35rem;
  color: #777;
  font-size: 12px;
  line-height: 1.65;
}

.partner-note,
.shop-note {
  margin-top: 1.5rem;
  padding: 1.4rem;
  background: linear-gradient(135deg, var(--surface), var(--bg-muted));
  border-color: var(--line);
}

.partner-note p,
.shop-note p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.8;
}

.shop-status {
  display: inline-flex;
  margin-top: 1.5rem;
  padding: 0.55rem 0.85rem;
  border: 0.5px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-soft);
  font-size: 12px;
  box-shadow: var(--shadow);
}

.readiness-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.readiness-grid article {
  padding: 1.2rem;
  background: linear-gradient(145deg, var(--surface), var(--bg-muted));
  border-color: var(--line);
}

.readiness-grid span {
  display: block;
  color: var(--text-faint);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.readiness-grid strong {
  display: block;
  margin-top: 0.5rem;
  color: var(--text);
  font-size: 13px;
  line-height: 1.55;
}

.partner-marquee {
  margin-top: 1rem;
  overflow: hidden;
  border-top: 0.5px solid #1f1f1f;
  border-bottom: 0.5px solid #1f1f1f;
}

.partner-marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 0.9rem 0;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  animation: marqueeRun 24s linear infinite;
}

.partner-marquee-track span {
  white-space: nowrap;
}

.band-action { margin-top: 1.75rem; }

.shop-card img {
  aspect-ratio: 1 / 0.9;
}

.shop-card div,
.blog-card div {
  padding: 1rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.blog-card img,
.blog-placeholder {
  height: 240px;
}

.blog-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  color: var(--text-faint);
  font-size: 11px;
  border-bottom: 0.5px dashed #d0d0d0;
}

.blog-card small {
  display: block;
  margin-top: 0.45rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.news-card {
  display: block;
  border: 0.5px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.news-card:hover {
  transform: translateY(-5px);
  border-color: rgba(77, 141, 255, 0.25);
  box-shadow: var(--shadow-strong);
}

.news-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.news-card span,
.news-card strong,
.news-card small {
  display: block;
  padding-inline: 1rem;
}

.news-card span {
  padding-top: 1rem;
  color: var(--text-faint);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.news-card strong {
  padding-top: 0.45rem;
  font-size: 15px;
  line-height: 1.45;
}

.news-card small {
  padding-block: 0.8rem 1rem;
  color: var(--text-soft);
  font-size: 12px;
}

.news-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(12px);
}

.news-modal.is-open {
  display: flex;
}

.news-modal-panel {
  width: min(100%, 660px);
  padding: 2rem;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-strong);
}

.news-modal-panel h2 {
  margin-top: 0.75rem;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1.16;
}

.news-modal-panel p:not(.eye) {
  margin-top: 1rem;
  color: var(--text-soft);
  line-height: 1.8;
}

.news-modal-panel a {
  display: inline-flex;
  margin-top: 1.25rem;
  color: var(--brand);
  font-size: 13px;
}

.news-modal-close {
  float: right;
  border: 0.5px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  background: var(--bg-soft);
  color: var(--text);
  cursor: pointer;
}

.faq-list {
  margin-top: 2rem;
}

.faq-item {
  border-bottom: 0.5px solid var(--line);
  padding: 1.25rem 0;
  transition: background 180ms ease;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 14.5px;
  font-weight: 550;
  text-align: left;
  cursor: pointer;
}

.faq-question span:first-child {
  color: var(--text);
}

.faq-question span:last-child {
  color: var(--text-faint);
  font-size: 16px;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer p {
  overflow: hidden;
  padding-top: 0;
  max-width: 680px;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-top: 0.75rem;
}

.faq-item.is-open {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.02), transparent 32%);
}

.contact-stack {
  display: grid;
  gap: 1rem;
  height: 100%;
}

.contact-details,
.contact-form {
  padding: 1.5rem;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--surface), var(--bg-muted));
  box-shadow: var(--shadow);
}

.contact-grid-aligned {
  align-items: stretch;
}

.contact-grid-simple {
  grid-template-columns: 1fr;
  width: 100%;
}

.contact-grid-aligned .contact-form,
.contact-grid-aligned .contact-stack {
  min-height: 100%;
}

.contact-grid-simple .contact-stack {
  grid-template-columns: 0.9fr 1.35fr;
  align-items: stretch;
}

.contact-form h3 {
  margin-bottom: 1.25rem;
  font-size: 16px;
}

.contact-details article {
  padding: 1rem 0;
  border-bottom: 0.5px solid var(--line);
}

.contact-details article strong {
  display: block;
  margin-top: 3px;
  color: var(--text);
}

.contact-support {
  height: 250px;
}

.map-band {
  background:
    linear-gradient(180deg, var(--bg), var(--bg-soft));
}

.map-card {
  min-height: 260px;
  overflow: hidden;
  border-radius: 18px;
  border: 0.5px solid var(--line);
  box-shadow: var(--shadow);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}

.seo-band {
  padding: 2.5rem 0;
  background: var(--bg-soft);
  border-top: 0.5px solid var(--line);
  border-bottom: 0.5px solid var(--line);
}

.seo-inner {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2.5rem;
}

.site-footer {
  padding: 3.5rem 0 2rem;
  background: var(--bg-soft);
  border-top: 0.5px solid var(--line);
}

[data-theme="dark"] .site-footer {
  background: #0a0a0a;
  border-top-color: #1f1f1f;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 0.5px solid var(--line);
}

[data-theme="dark"] .footer-top {
  border-bottom-color: #1f1f1f;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.footer-logo span {
  display: none;
}

.footer-desc {
  max-width: 260px;
  margin-top: 0.5rem;
  color: #555;
}

.footer-cols {
  display: flex;
  gap: 3rem;
}

.footer-col h3 {
  margin-bottom: 1rem;
  color: #444;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col a {
  display: block;
  margin-bottom: 0.6rem;
  color: #777;
  font-size: 12.5px;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p {
  color: #444;
  font-size: 11.5px;
}

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

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

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

[data-theme="dark"] .site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.96);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
}

.telegram-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 130;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.7rem 1rem 0.7rem 0.8rem;
  border-radius: 999px;
  background: #229ed9;
  color: #fff;
  font-size: 13px;
  font-weight: 650;
  box-shadow: 0 22px 60px rgba(34, 158, 217, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.telegram-float::before {
  content: "";
  width: 18px;
  height: 18px;
  background: currentColor;
  clip-path: polygon(4% 48%, 96% 10%, 78% 92%, 51% 67%, 36% 82%, 38% 61%);
}

.telegram-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 80px rgba(34, 158, 217, 0.44);
}

@keyframes heroPulse {
  0%, 100% { transform: translateX(-50%) scale(0.96); opacity: 0.7; }
  50% { transform: translateX(-50%) scale(1.06); opacity: 1; }
}

@keyframes gridDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(36px, 24px, 0); }
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes trustSweep {
  0%, 100% { transform: skewX(-20deg) translateX(0); }
  45%, 55% { transform: skewX(-20deg) translateX(556%); }
}

@keyframes roadRun {
  from { transform: translateX(-12%); }
  to { transform: translateX(12%); }
}

@keyframes marqueeRun {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes horizonSweep {
  0%, 100% { transform: translateX(-10%) rotate(-8deg); opacity: 0.25; }
  50% { transform: translateX(10%) rotate(-8deg); opacity: 0.95; }
}

@keyframes reviewsMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 0.5rem)); }
}

/* ─── Typewriter ─────────────────────────────────────────── */

.hero-typewriter {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  width: 100%;
  height: 1.5em;
  margin: 0 auto 1.5rem;
  font-size: 12px;
  font-weight: 500;
  color: var(--brand);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.typewriter-cursor {
  display: inline-block;
  width: 1.5px;
  height: 1em;
  background: var(--brand);
  margin-left: 1px;
  animation: cursorBlink 0.75s step-end infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ─── Scroll truck ───────────────────────────────────────── */

.scroll-progress { overflow: visible; }

.scroll-truck {
  position: absolute;
  top: -12px;
  left: 0%;
  color: rgba(255, 255, 255, 0.7);
  pointer-events: none;
  transform: translateX(-50%);
  opacity: 0;
  filter: drop-shadow(0 0 4px rgba(77, 141, 255, 0.6));
}

/* ─── Telegram live badge ────────────────────────────────── */

.telegram-live {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

.telegram-live::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #22c55e;
  animation: livePing 2.2s ease-out infinite;
  will-change: transform, opacity;
}

@keyframes livePing {
  0%   { transform: scale(1); opacity: 0.65; }
  100% { transform: scale(3.8); opacity: 0; }
}

/* ─── Speed sheen on CTA buttons ────────────────────────── */

.button-light,
.button-dark-outline {
  position: relative;
  overflow: hidden;
}

.button-light::after,
.button-dark-outline::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -75%;
  width: 55%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
  transition: left 0.55s ease;
}

.button-light:hover::after,
.button-dark-outline:hover::after {
  left: 130%;
}

/* ─── Route map section ──────────────────────────────────── */

.route-section {
  background: #0a0a0a;
  padding: 4.5rem 0;
  overflow: hidden;
  border-top: 0.5px solid #111;
  border-bottom: 0.5px solid #111;
}

.route-inner .section-head h2 { color: #fff; }
.route-inner .section-head .eye { color: #3a5a7a; }

.route-map { margin-top: 2.5rem; }

.route-map-inner {
  position: relative;
  aspect-ratio: 5 / 3;
  max-width: 860px;
  margin: 0 auto;
}

.map-geo-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.95;
  filter: invert(1) brightness(0.32) saturate(0);
  pointer-events: none;
  user-select: none;
}

.route-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.state-specials {
  pointer-events: none;
}

.state-special-outline {
  fill: #0a0a0a;
  stroke: #0a0a0a;
  stroke-width: 12;
}

.state-special-label {
  fill: #0a0a0a;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-anchor: middle;
}

/* ── Route lines ── */

.route {
  stroke: #4d8dff;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 3.2s cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0s);
}

.route-network-legacy,
.route-network-previous,
.route-cities-legacy {
  display: none;
}

.route-cities-previous {
  display: none;
}

.route-priority {
  stroke-width: 1.65;
  filter: drop-shadow(0 0 10px rgba(77, 141, 255, 0.72));
}

.route-trunk {
  stroke-width: 1.65;
  stroke: #5b96ff;
}

.route-map.is-visible .route { stroke-dashoffset: 0; }

/* ── City nodes ── */

.city {
  fill: #4d8dff;
  opacity: 0;
  transition: opacity 1.5s ease var(--d, 0s);
}

.city-priority {
  filter: drop-shadow(0 0 8px rgba(77, 141, 255, 0.82));
}

.route-map.is-visible .city { opacity: 0.9; }

/* ── Philadelphia HQ ping ── */

.hq-ping {
  fill: none;
  stroke: #4d8dff;
  stroke-width: 1.5;
  transform-box: fill-box;
  transform-origin: center;
  animation: hqPing 2.6s ease-out infinite;
}

@keyframes hqPing {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(4); opacity: 0; }
}

/* ── Tags ── */

.route-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.route-tags span {
  padding: 0.28rem 0.65rem;
  border: 0.5px solid #1c1c1c;
  background: #0f0f0f;
  color: #404040;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 2px;
}

/* ─── Page fade transition ───────────────────────────────── */

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

body { animation: pageIn 0.38s ease both; }

body.is-leaving {
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

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

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

@media (max-width: 980px) {
  .nav-toggle { display: inline-block; }
  .nav-menu, .nav-actions .button-light { display: none; }

  .nav-actions {
    margin-left: auto;
  }

  .nav-menu.is-open {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.75rem;
    padding: 1rem;
    background: #111;
    border: 0.5px solid #222;
  }

  .about-grid,
  .apply-grid,
  .apply-panel,
  .history-grid,
  .contact-grid,
  .seo-inner,
  .program-layout,
  .fleet-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-grid-simple .contact-stack {
    grid-template-columns: 1fr;
  }

  .trust-bar,
  .program-grid,
  .review-grid,
  .shop-grid,
  .blog-grid,
  .news-grid,
  .offer-grid,
  .feature-grid,
  .partner-proof,
  .readiness-grid,
  .legal-strip,
  .package-grid,
  .service-process,
  .home-links {
    grid-template-columns: 1fr 1fr;
  }

  .trust-bar {
    grid-template-columns: 1fr;
  }

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

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

  .service-row:nth-child(even) .service-row-copy,
  .service-row:nth-child(even) .service-row-media {
    order: initial;
  }

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

  .why-item:nth-child(3n) {
    border-right: 0.5px solid var(--line);
  }

  .why-item:nth-child(2n) {
    border-right: none;
  }

  .why-item:nth-last-child(-n + 3) {
    border-bottom: 0.5px solid var(--line);
  }

  .why-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .partner-strip {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top,
  .footer-cols,
  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .hero {
    padding-top: 4rem;
  }

  .hero-chip {
    display: none;
  }

  .footer-logo img {
    width: 54px;
    height: 54px;
  }

  .nav-brand img {
    width: 60px;
    height: 60px;
  }

  .language-switcher {
    gap: 0.1rem;
  }

  .lang-button {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .hero-sub {
    font-size: 14px;
  }

  .hero-image img {
    min-height: 430px;
  }

  .trust-bar,
  .program-grid,
  .review-grid,
  .shop-grid,
  .blog-grid,
  .news-grid,
  .requirement-grid,
  .offer-grid,
  .feature-grid,
  .mini-stats,
  .partner-proof,
  .readiness-grid,
  .legal-strip,
  .package-grid,
  .service-process,
  .apply-panel,
  .apply-highlights,
  .home-links {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-intro {
    padding-right: 0;
  }

  .service-row {
    padding: 0.75rem;
    border-radius: 22px;
  }

  .service-row-media {
    height: 230px;
    min-height: 230px;
  }

  .service-metrics {
    grid-template-columns: 1fr;
  }

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

  .why-item,
  .why-item:nth-child(3n),
  .why-item:nth-child(2n) {
    border-right: none;
  }

  .why-item:not(:last-child) {
    border-bottom: 0.5px solid var(--line);
  }

  .partner-strip {
    grid-template-columns: 1fr;
  }

  .media-card,
  .history-grid .media-card,
  .partner-image,
  .contact-support,
  .apply-visual {
    height: auto;
  }

  .telegram-float {
    right: 0.8rem;
    bottom: 0.8rem;
    min-height: 44px;
    padding: 0.65rem;
  }

  .telegram-float span {
    display: none;
  }
}
