@font-face{font-family:"Rajdhani";font-style:normal;font-weight:400;font-display:swap;src:url("/en/assets/fonts/rajdhani-latin-400-normal.woff2") format("woff2");}
@font-face{font-family:"Rajdhani";font-style:normal;font-weight:700;font-display:swap;src:url("/en/assets/fonts/rajdhani-latin-700-normal.woff2") format("woff2");}
@font-face{font-family:"Rajdhani Fallback";font-style:normal;font-weight:400 700;font-display:swap;src:local("Arial");size-adjust:92%;ascent-override:92%;descent-override:24%;line-gap-override:0%;}
@font-face{font-family:"IBM Plex Sans";font-style:normal;font-weight:400;font-display:swap;src:url("/en/assets/fonts/ibm-plex-sans-latin-400-normal.woff2") format("woff2");}
@font-face{font-family:"IBM Plex Sans";font-style:normal;font-weight:700;font-display:swap;src:url("/en/assets/fonts/ibm-plex-sans-latin-700-normal.woff2") format("woff2");}
@font-face{font-family:"IBM Plex Sans Fallback";font-style:normal;font-weight:400 700;font-display:swap;src:local("Arial");size-adjust:102%;ascent-override:92%;descent-override:24%;line-gap-override:0%;}
* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --bg: #05060a;
  --bg-raised: #090c12;
  --bg-band: #07090f;
  --ink: #f4f6fa;
  --muted: #9aa3b2;
  --muted-strong: #c3cad6;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --radius: 3px;
  --container: 1180px;
  --gutter: 40px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body-font), ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

::selection {
  background: var(--accent);
  color: #05060a;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 100;
  padding: 10px 18px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #05060a;
  font-weight: 700;
  text-decoration: none;
  transition: top 160ms var(--ease);
}

.skip-link:focus {
  top: 16px;
}

.site-shell {
  min-height: 100vh;
}

h1,
h2,
h3,
p,
li,
summary,
td,
th {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  font-family: var(--heading-font), ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.015em;
}

/* ---------- header ---------- */

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 40;
}

.top-strip,
.brand-row {
  width: min(var(--container), calc(100% - var(--gutter)));
  margin: 0 auto;
}

.top-strip {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  color: var(--muted-strong);
  font-size: 0.82rem;
}

.top-strip div {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.top-strip a,
.top-strip span {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.top-strip a {
  text-decoration: none;
  transition: color 160ms var(--ease);
}

.top-strip a:hover {
  color: var(--accent);
}

.top-strip span {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark--logo {
  max-width: min(360px, 56vw);
}

.brand-logo {
  display: block;
  width: min(300px, 56vw);
  height: 78px;
  object-fit: contain;
  object-position: left center;
}

.brand-badge {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--accent);
  border-radius: 6px;
  color: var(--accent);
  font-family: var(--heading-font), ui-sans-serif, system-ui, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
}

.brand-text {
  display: grid;
  gap: 3px;
}

.brand-main {
  color: var(--ink);
  font-family: var(--heading-font), ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-sub,
.call-box span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.call-box {
  display: grid;
  justify-items: end;
  gap: 4px;
}

.call-box a {
  color: var(--ink);
  font-family: var(--heading-font), ui-sans-serif, system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms var(--ease);
}

.call-box a:hover {
  color: var(--accent);
}

.main-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: min(var(--container), calc(100% - var(--gutter)));
  margin: 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(6, 8, 13, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  scrollbar-width: none;
}

.main-nav::-webkit-scrollbar {
  display: none;
}

.main-nav a {
  position: relative;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 160ms var(--ease);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 10px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

.main-nav a:hover {
  color: var(--ink);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.main-nav .nav-cta {
  margin-left: auto;
  background: var(--accent);
  color: #05060a;
  font-weight: 700;
}

.main-nav .nav-cta::after {
  display: none;
}

.main-nav .nav-cta:hover {
  color: #05060a;
  filter: brightness(1.12);
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: min(100vh, 980px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero picture,
.hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture {
  z-index: 0;
}

.hero picture img {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.06) brightness(1.08);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 6, 10, 0.55) 0%, rgba(5, 6, 10, 0.25) 40%, rgba(5, 6, 10, 0.82) 82%, var(--bg) 100%),
    linear-gradient(90deg, rgba(5, 6, 10, 0.78), rgba(5, 6, 10, 0.3) 55%, rgba(5, 6, 10, 0.6));
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(var(--container), calc(100% - var(--gutter)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 56px;
  align-items: end;
  padding: 250px 0 88px;
}

.hero--procedural picture img {
  filter: saturate(0.95) contrast(1.1) brightness(0.72);
  transform-origin: center;
  animation: heroPhotoDrift 18s ease-in-out infinite alternate;
  will-change: transform, filter;
}

.hero-procedural {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  contain: layout paint;
  opacity: 0.66;
  mix-blend-mode: screen;
}

.hero-procedural::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 28%, rgba(16, 255, 66, 0.1) 44%, transparent 60%),
    repeating-linear-gradient(90deg, rgba(16, 255, 66, 0.055) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 58px);
  mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 72%, transparent 100%);
  opacity: 0.36;
  transition: opacity 360ms var(--ease);
}

.hero-procedural[data-mounted="true"]::before {
  opacity: 0.2;
}

.hero-procedural[data-fallback="svg"] {
  opacity: 0.88;
}

.hero-procedural[data-fallback="svg"]::before {
  opacity: 0.12;
}

.hero-winols-fallback {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: saturate(1.18) drop-shadow(0 0 18px rgba(16, 255, 66, 0.24));
}

.hero-winols-surface polygon {
  stroke: rgba(4, 13, 8, 0.54);
  stroke-width: 0.8;
  vector-effect: non-scaling-stroke;
}

.hero-winols-grid path {
  fill: none;
  stroke: rgba(174, 255, 204, 0.66);
  stroke-width: 1.15;
  vector-effect: non-scaling-stroke;
}

.hero-procedural canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.98;
}

.hero--sub {
  min-height: 560px;
}

.hero--sub .hero-content {
  grid-template-columns: minmax(0, 1fr);
  padding: 220px 0 72px;
}

.hero-left {
  min-width: 0;
  max-width: 760px;
  animation: riseIn 700ms var(--ease) both;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.8rem;
}

.breadcrumbs a {
  color: var(--muted-strong);
  text-decoration: none;
  transition: color 160ms var(--ease);
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.breadcrumbs span[aria-hidden] {
  color: var(--line-strong);
}

.badge,
.section-label,
.panel-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.badge::before,
.section-label::before,
.panel-kicker::before {
  content: "";
  flex: none;
  width: 34px;
  height: 1.5px;
  background: var(--accent);
}

h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-wrap: balance;
  text-shadow: 0 16px 44px rgba(0, 0, 0, 0.65);
}

.hero--sub h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.9rem);
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted-strong);
  font-size: 1.14rem;
  line-height: 1.65;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 26px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent);
  color: #05060a;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 180ms var(--ease), filter 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease);
}

.button::after {
  content: "\2192";
  font-size: 1rem;
  line-height: 1;
  transition: transform 180ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.button:hover::after {
  transform: translateX(3px);
}

.button:active {
  transform: translateY(0);
}

.button.secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.button.secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  filter: none;
}

.quote-panel {
  min-width: 0;
  position: relative;
  overflow: hidden;
  padding: 30px 28px 24px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(7, 10, 16, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  animation: riseIn 700ms 120ms var(--ease) both;
}

.quote-panel::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto -1px;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--brand-gradient, var(--accent));
}

.quote-panel h2 {
  margin: 0 0 10px;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
}

.quote-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.panel-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}

.panel-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 180ms var(--ease), background 180ms var(--ease);
}

.panel-actions a:hover {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
}

.panel-note {
  margin-top: 18px !important;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem !important;
  letter-spacing: 0.02em;
}

/* ---------- sections ---------- */

main {
  display: block;
}

.section {
  width: min(var(--container), calc(100% - var(--gutter)));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 112px) 0;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 42px;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h3 {
  letter-spacing: -0.01em;
}

.title-reveal {
  transform-origin: left center;
}

html.title-reveal-ready .title-reveal {
  opacity: 0;
  filter: blur(4px);
  transform: translate3d(-18px, 8px, 0);
  transition:
    opacity 520ms var(--ease),
    filter 620ms var(--ease),
    transform 620ms var(--ease);
  transition-delay: var(--title-reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

html.title-reveal-ready .title-reveal.title-reveal-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.copy {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.78;
}

.copy p {
  margin: 0 0 1.2em;
}

.copy p:last-child {
  margin-bottom: 0;
}

.row-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  max-width: none;
}

.row-heading h2 {
  margin-bottom: 0;
}

.text-link {
  position: relative;
  flex: none;
  padding-bottom: 3px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

.text-link:hover::after {
  transform: scaleX(1);
}

.intro-band {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 60px;
  align-items: start;
}

.intro-band h2 {
  font-size: clamp(2.1rem, 3.8vw, 3.4rem);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.service-card,
.recent-card,
.contact-card,
.quote-form-card {
  position: relative;
  overflow: hidden;
  padding: 28px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(170deg, var(--panel-strong), var(--panel));
  transition: border-color 220ms var(--ease), transform 220ms var(--ease);
}

.service-card:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  transform: translateY(-3px);
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

/* numbered services */

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.numbered-service {
  position: relative;
  overflow: hidden;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)), var(--bg-raised);
  transition: border-color 220ms var(--ease), transform 220ms var(--ease);
}

.numbered-service:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  transform: translateY(-3px);
}

.numbered-service > span {
  position: absolute;
  top: 6px;
  right: 18px;
  color: color-mix(in srgb, var(--accent) 22%, transparent);
  font-family: var(--heading-font), ui-sans-serif, system-ui, sans-serif;
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.numbered-service h3 {
  margin: 0 0 10px;
  max-width: calc(100% - 70px);
  font-size: 1.28rem;
}

.numbered-service p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------- vehicle finder / bands ---------- */

.vehicle-finder,
.review-band {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(1100px 420px at 85% 0%, color-mix(in srgb, var(--accent) 9%, transparent), transparent 70%),
    var(--bg-band);
}

.vehicle-inner,
.review-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.vehicle-inner > div:first-child p {
  color: var(--muted);
  line-height: 1.7;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-grid li {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 74px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font-family: var(--heading-font), ui-sans-serif, system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  transition: border-color 220ms var(--ease), color 220ms var(--ease), transform 220ms var(--ease);
}

.brand-grid li:hover {
  border-color: color-mix(in srgb, var(--accent) 50%, transparent);
  color: var(--ink);
  transform: translateY(-3px);
}

.quote-panel::after,
.service-card::after,
.numbered-service::after,
.brand-grid li::after,
.gains-widget-shell::after,
.portal-strip::after,
.topic-points article::after,
.review-cards article::after,
.contact-card::after,
.quote-form-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 36%, color-mix(in srgb, var(--accent) 16%, transparent) 48%, transparent 60%),
    linear-gradient(180deg, color-mix(in srgb, var(--accent) 8%, transparent), transparent 46%);
  opacity: 0;
  transform: translateX(-55%);
  mix-blend-mode: screen;
  animation: frameSweep 8.5s var(--ease) infinite;
}

.related-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 36%, color-mix(in srgb, var(--accent) 14%, transparent) 48%, transparent 60%),
    linear-gradient(180deg, color-mix(in srgb, var(--accent) 7%, transparent), transparent 46%);
  opacity: 0;
  transform: translateX(-55%);
  mix-blend-mode: screen;
  animation: frameSweep 8.5s var(--ease) infinite;
}

.numbered-service:nth-child(2n)::after,
.service-card:nth-child(2n)::after,
.brand-grid li:nth-child(3n)::after,
.topic-points article:nth-child(2n)::after,
.review-cards article:nth-child(2n)::after,
.related-links a:nth-child(2n)::before {
  animation-delay: 1.45s;
}

.numbered-service:nth-child(3n)::after,
.service-card:nth-child(3n)::after,
.brand-grid li:nth-child(3n + 1)::after,
.topic-points article:nth-child(3n)::after,
.related-links a:nth-child(3n)::before {
  animation-delay: 2.8s;
}

/* ---------- gains table ---------- */

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg-raised);
}

.gains-widget-shell {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101010;
}

.gains-widget-shell iframe {
  display: block;
  width: 100%;
}

.table-wrap:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

th,
td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

td:first-child {
  font-weight: 600;
}

td:nth-child(3) {
  color: var(--muted);
}

tbody tr {
  transition: background 160ms var(--ease);
}

tbody tr:hover {
  background: color-mix(in srgb, var(--accent) 5%, transparent);
}

tr:last-child td {
  border-bottom: 0;
}

.gain-cell {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.gain-arrow {
  color: var(--muted);
}

.gain-delta {
  padding: 2px 9px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
}

.table-note {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ---------- workflow ---------- */

.workflow {
  padding-top: clamp(40px, 5vw, 64px);
}

.step-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step-grid::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  height: 1px;
  background: var(--line-strong);
}

.step-grid article {
  position: relative;
  padding-top: 4px;
}

.step-grid span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  background: var(--bg);
  color: var(--accent);
  font-family: var(--heading-font), ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.step-grid h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
}

.step-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.68;
}

.portal-strip {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 44px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  background: var(--panel);
}

.portal-strip p {
  margin: 0;
  max-width: 520px;
  color: var(--muted);
  line-height: 1.65;
}

.compact {
  margin-top: 24px;
}

.portal-strip .compact {
  margin-top: 0;
}

/* ---------- topic pages ---------- */

.topic-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: start;
}

.lead-copy h2 {
  color: var(--ink);
}

.lead-copy > p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.topic-points {
  display: grid;
  gap: 12px;
}

.topic-points article {
  position: relative;
  overflow: hidden;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  background: linear-gradient(170deg, var(--panel-strong), var(--panel));
  transition: border-color 220ms var(--ease), transform 220ms var(--ease);
}

.topic-points article:hover {
  border-color: color-mix(in srgb, var(--accent) 40%, transparent);
  border-left-color: var(--accent);
  transform: translateX(4px);
}

.topic-points h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.topic-points p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.related-services {
  padding-top: 0;
}

.related-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.related-links a {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 5px;
  padding: 20px 44px 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  text-decoration: none;
  transition: border-color 220ms var(--ease), transform 220ms var(--ease);
}

.related-links a::after {
  content: "\2192";
  position: absolute;
  top: 20px;
  right: 18px;
  color: var(--accent);
  font-size: 1rem;
  transition: transform 220ms var(--ease);
}

.related-links a:hover {
  border-color: color-mix(in srgb, var(--accent) 50%, transparent);
  transform: translateY(-3px);
}

.related-links a:hover::after {
  transform: translateX(3px);
}

.related-links span {
  font-family: var(--heading-font), ui-sans-serif, system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.related-links em {
  color: var(--muted);
  font-size: 0.8rem;
  font-style: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- review band ---------- */

.review-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.review-cards article {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 6, 10, 0.55);
}

.review-cards span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.review-cards p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------- contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.85fr);
  gap: 16px;
}

.contact-card h3,
.quote-form-card h3 {
  margin: 0 0 14px;
  font-size: 1.3rem;
}

.contact-card p {
  color: var(--muted);
  line-height: 1.7;
}

.contact-card .hours {
  color: var(--muted-strong);
  font-weight: 600;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.quote-form-card ul {
  display: grid;
  gap: 11px;
  margin: 16px 0 22px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.5;
}

.quote-form-card li::marker {
  color: var(--accent);
}

/* ---------- faq ---------- */

.faq-list {
  max-width: 860px;
  border-top: 1px solid var(--line-strong);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  padding: 20px 44px 20px 0;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-family: var(--heading-font), ui-sans-serif, system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  transition: color 160ms var(--ease);
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 6px;
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 220ms var(--ease);
}

details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

summary:hover {
  color: var(--accent);
}

details p {
  margin: 0;
  padding: 0 0 22px;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.72;
}

/* ---------- footer ---------- */

.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-band);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  width: min(var(--container), calc(100% - var(--gutter)));
  margin: 0 auto;
  padding: 64px 0 48px;
}

.footer-name {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--heading-font), ui-sans-serif, system-ui, sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-claim {
  max-width: 360px;
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
}

.footer-contact {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

.footer-contact a {
  color: var(--muted-strong);
  text-decoration: none;
  transition: color 160ms var(--ease);
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-menu {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-label {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-menu a {
  width: fit-content;
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 160ms var(--ease);
}

.footer-menu a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: min(var(--container), calc(100% - var(--gutter)));
  margin: 0 auto;
  padding: 20px 0 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--muted-strong);
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms var(--ease);
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* ---------- motion ---------- */

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroPhotoDrift {
  0% {
    transform: scale(1.02) translate3d(-0.5%, -0.2%, 0);
    filter: saturate(0.92) contrast(1.08) brightness(0.7);
  }
  52% {
    transform: scale(1.06) translate3d(0.75%, 0.35%, 0);
    filter: saturate(1.02) contrast(1.12) brightness(0.78);
  }
  100% {
    transform: scale(1.035) translate3d(-0.15%, 0.65%, 0);
    filter: saturate(0.96) contrast(1.1) brightness(0.73);
  }
}

@keyframes frameSweep {
  0%,
  48% {
    opacity: 0;
    transform: translateX(-55%);
  }
  58% {
    opacity: 0.38;
  }
  74% {
    opacity: 0.12;
  }
  100% {
    opacity: 0;
    transform: translateX(55%);
  }
}

.demo-badge {
  position: fixed;
  z-index: 1000;
  top: 14px;
  right: 14px;
  padding: 8px 13px;
  border: 1px solid color-mix(in srgb, var(--accent) 68%, white);
  border-radius: 999px;
  color: #fff;
  background: color-mix(in srgb, #060810 88%, var(--accent));
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  font: 800 0.72rem/1 var(--body-font), var(--body-fallback), sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

}

/* ---------- responsive ---------- */

@media (max-width: 960px) {
  .site-header {
    position: relative;
    background: var(--bg);
  }

  .top-strip,
  .brand-row,
  .main-nav {
    width: calc(100% - 28px);
    max-width: var(--container);
  }

  .top-strip,
  .brand-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .call-box {
    justify-items: start;
  }

  .main-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .main-nav a {
    white-space: nowrap;
  }

  .main-nav .nav-cta {
    margin-left: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 120px 0 64px;
  }

  .hero--sub .hero-content {
    padding: 96px 0 56px;
  }

  .intro-band,
  .vehicle-inner,
  .review-inner,
  .topic-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .service-list,
  .review-cards {
    grid-template-columns: 1fr;
  }

  .step-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 18px;
  }

  .step-grid::before {
    display: none;
  }

  .brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .row-heading,
  .portal-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 0 36px;
  }
}

@media (max-width: 720px) {
  .hero-content,
  .section,
  .footer-grid,
  .footer-bottom {
    width: calc(100% - 28px);
    max-width: var(--container);
  }

  .section {
    padding: 60px 0;
  }

  .top-strip {
    display: none;
  }

  h1 {
    font-size: clamp(2.2rem, 9.5vw, 3.1rem);
  }

  .hero--sub h1 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .hero-content {
    padding: 36px 0 56px;
  }

  html.title-reveal-ready .title-reveal {
    transform: translate3d(-12px, 6px, 0);
  }

  .quote-panel {
    padding: 26px 22px 20px;
  }

  .step-grid {
    grid-template-columns: 1fr;
  }

  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .numbered-service > span {
    font-size: 3.6rem;
  }

  table {
    min-width: 760px;
  }
}



:root {
  --bg: #03070b;
  --bg-raised: #071019;
  --bg-band: #09131d;
  --ink: #f4f8fb;
  --muted: #9aaab8;
  --muted-strong: #d3dde5;
  --line: rgba(178, 218, 245, 0.1);
  --line-strong: rgba(255, 61, 24, 0.44);
  --panel: rgba(160, 210, 240, 0.035);
  --panel-strong: rgba(7, 70, 112, 0.18);
  --radius: 6px;
  --container: 1260px;
  --shadow: 0 36px 120px rgba(0, 0, 0, 0.76);
  --ice: #67c7ff;
  --ice-pale: #dff5ff;
  --ember: #ff3d18;
  --ember-hot: #ff9b49;
}

body {
  background:
    radial-gradient(circle at 88% 15%, rgba(255, 61, 24, 0.12), transparent 27rem),
    radial-gradient(circle at 8% 42%, rgba(0, 126, 209, 0.13), transparent 36rem),
    linear-gradient(180deg, #03070b, #050b11 52%, #03070b);
}

.site-shell {
  position: relative;
  overflow: clip;
  isolation: isolate;
}

.site-shell::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 91;
  pointer-events: none;
  opacity: 0.13;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(103, 199, 255, 0.24) 42.2% 42.35%, transparent 42.6%),
    repeating-linear-gradient(118deg, transparent 0 180px, rgba(255, 255, 255, 0.025) 181px 182px);
  mix-blend-mode: screen;
}

h1,
h2,
h3,
.brand-main {
  text-transform: uppercase;
}

.site-header {
  background: linear-gradient(180deg, rgba(2, 6, 10, 0.99), rgba(2, 7, 11, 0.78) 78%, transparent);
}

.top-strip {
  border-bottom-color: rgba(103, 199, 255, 0.18);
}

.top-strip span {
  color: var(--ice);
}

.brand-row {
  padding-block: 21px;
}

.brand-badge {
  width: 62px;
  height: 62px;
  border: 1px solid rgba(103, 199, 255, 0.82);
  border-radius: 2px;
  clip-path: polygon(22% 0, 78% 0, 100% 22%, 100% 78%, 78% 100%, 22% 100%, 0 78%, 0 22%);
  background:
    linear-gradient(135deg, rgba(103, 199, 255, 0.13), transparent 52%),
    #04090e;
  color: var(--ice-pale);
  font-size: 1.9rem;
  box-shadow: inset 0 0 0 5px #04090e, inset 0 0 0 6px rgba(255, 61, 24, 0.58), 0 0 40px rgba(64, 170, 237, 0.18);
}

.brand-main {
  font-size: clamp(1.55rem, 2.8vw, 2.18rem);
  letter-spacing: 0.17em;
}

.brand-sub {
  color: #9ab5c8;
  letter-spacing: 0.26em;
}

.call-box a {
  letter-spacing: 0.06em;
}

.main-nav {
  justify-content: center;
  gap: 2px;
  padding: 6px;
  border-color: rgba(103, 199, 255, 0.16);
  border-radius: 3px;
  background: rgba(3, 9, 14, 0.88);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.42);
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.main-nav a {
  min-height: 44px;
  padding-inline: 17px;
  border-radius: 1px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--ice-pale);
  background: linear-gradient(135deg, rgba(0, 125, 207, 0.18), rgba(255, 61, 24, 0.08));
}

.main-nav a::after {
  left: 22%;
  right: 22%;
  bottom: 5px;
  height: 2px;
  background: linear-gradient(90deg, var(--ice), var(--ember));
}

.language-switch {
  border-color: rgba(103, 199, 255, 0.24);
  border-radius: 2px;
  background: #040b11;
}

.language-switch a[aria-current="page"] {
  background: linear-gradient(135deg, #0c6fa6, #083652);
  color: #fff;
}

.hero {
  min-height: min(100vh, 950px);
  border-bottom: 1px solid rgba(103, 199, 255, 0.18);
}

.hero picture img {
  object-position: 55% center;
  filter: saturate(0.78) contrast(1.2) brightness(0.58) hue-rotate(-4deg);
}

.hero::before {
  background:
    linear-gradient(180deg, rgba(2, 6, 10, 0.56) 0%, rgba(2, 6, 10, 0.1) 36%, rgba(2, 6, 10, 0.82) 82%, #03070b 100%),
    linear-gradient(90deg, rgba(2, 6, 10, 0.96) 0%, rgba(2, 9, 15, 0.66) 43%, rgba(8, 49, 77, 0.22) 65%, rgba(86, 14, 4, 0.28) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(112deg, transparent 0 68%, rgba(103, 199, 255, 0.42) 68.1% 68.25%, transparent 68.5%),
    linear-gradient(112deg, transparent 0 74%, rgba(255, 61, 24, 0.62) 74.1% 74.35%, transparent 74.6%),
    radial-gradient(circle at 76% 66%, rgba(255, 61, 24, 0.19), transparent 20rem),
    radial-gradient(circle at 60% 28%, rgba(51, 164, 233, 0.14), transparent 24rem);
  animation: tehopankkiForge 7s ease-in-out infinite alternate;
}

.hero-content {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  gap: 70px;
  padding-bottom: 78px;
}

.hero-left {
  position: relative;
  max-width: 850px;
  padding: 28px 0 28px 35px;
  border-left: 3px solid var(--ice);
}

.hero-left::before,
.hero-left::after {
  content: "";
  position: absolute;
  left: -3px;
  width: 130px;
  height: 2px;
}

.hero-left::before {
  top: 0;
  background: linear-gradient(90deg, var(--ice), transparent);
}

.hero-left::after {
  bottom: 0;
  background: linear-gradient(90deg, var(--ember), transparent);
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(4.25rem, 8.8vw, 8.35rem);
  line-height: 0.82;
  letter-spacing: -0.052em;
  text-shadow: 0 22px 80px rgba(0, 0, 0, 0.9), 0 0 45px rgba(72, 173, 232, 0.09);
}

.hero .badge {
  color: var(--ice);
}

.badge::before,
.section-label::before {
  background: linear-gradient(180deg, var(--ice), var(--ember));
}

.hero-copy {
  max-width: 690px;
  color: #dbe7ee;
  font-size: 1.1rem;
}

.button {
  border-radius: 2px;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  background: linear-gradient(115deg, #ff421e, #c51e0b);
  color: #fff;
  box-shadow: 0 12px 34px rgba(180, 34, 9, 0.24);
}

.button:hover,
.button:focus-visible {
  background: linear-gradient(115deg, #ff613c, #dd270f);
}

.button.secondary {
  border-color: rgba(103, 199, 255, 0.38);
  background: rgba(3, 10, 16, 0.54);
}

.quote-panel {
  padding: 31px;
  border-color: rgba(103, 199, 255, 0.18);
  border-radius: 3px;
  clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px);
  background:
    linear-gradient(145deg, rgba(6, 49, 75, 0.83), rgba(4, 10, 15, 0.94) 62%),
    #050b10;
  box-shadow: var(--shadow);
}

.quote-panel::before {
  inset: 0 auto 0 0;
  width: 3px;
  height: auto;
  border-radius: 0;
  background: linear-gradient(180deg, var(--ice), var(--ember));
}

.panel-actions a {
  border-radius: 2px;
  color: var(--ice);
}

.hero--sub {
  min-height: 630px;
}

.hero--sub h1 {
  max-width: 17ch;
  font-size: clamp(2.8rem, 5.6vw, 5rem);
}

.section-label,
.panel-kicker,
.footer-label {
  color: var(--ice);
}

.topic-gallery {
  width: min(1480px, calc(100% - var(--gutter)));
  padding-top: 48px;
  padding-bottom: 58px;
}

.topic-gallery .row-heading {
  width: min(var(--container), 100%);
  margin-inline: auto;
}

.topic-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.72fr);
  grid-template-rows: repeat(3, minmax(210px, 1fr));
  gap: 12px;
}

.topic-gallery-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(103, 199, 255, 0.15);
  border-radius: 2px;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  background: #050b10;
  color: #fff;
  text-decoration: none;
  isolation: isolate;
}

.topic-gallery-card:first-child {
  grid-row: 1 / 4;
}

.topic-gallery-card picture,
.topic-gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.topic-gallery-card img {
  object-fit: cover;
  filter: saturate(0.62) contrast(1.18) brightness(0.62);
  transition: transform 700ms var(--ease), filter 700ms var(--ease);
}

.topic-gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 24%, rgba(2, 6, 10, 0.08) 46%, rgba(2, 6, 10, 0.96) 100%),
    linear-gradient(110deg, rgba(18, 110, 164, 0.16), transparent 55%, rgba(222, 45, 14, 0.13));
}

.topic-gallery-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 3px;
  background: linear-gradient(90deg, var(--ice), var(--ember));
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 450ms var(--ease);
}

.topic-gallery-card span,
.topic-gallery-card em {
  position: absolute;
  left: 25px;
  right: 25px;
  z-index: 3;
}

.topic-gallery-card span {
  bottom: 39px;
  font-family: var(--heading-font), sans-serif;
  font-size: clamp(2rem, 3vw, 3.15rem);
  font-style: normal;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.topic-gallery-card:first-child span {
  bottom: 48px;
  font-size: clamp(4rem, 7.4vw, 7rem);
}

.topic-gallery-card em {
  bottom: 18px;
  overflow: hidden;
  color: var(--ice);
  font-size: 0.67rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.topic-gallery-card:hover img {
  transform: scale(1.045);
  filter: saturate(0.88) contrast(1.15) brightness(0.75);
}

.topic-gallery-card:hover::after {
  transform: scaleX(1);
}

.intro-band {
  position: relative;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 88px;
  border-top: 1px solid rgba(103, 199, 255, 0.22);
}

.intro-band::before {
  content: "ᛏ";
  position: absolute;
  top: 30px;
  right: 1%;
  z-index: -1;
  color: rgba(103, 199, 255, 0.035);
  font-family: serif;
  font-size: clamp(12rem, 28vw, 24rem);
  font-weight: 700;
  line-height: 0.72;
}

.intro-band h2 {
  font-size: clamp(2.6rem, 4.7vw, 4.65rem);
}

.vehicle-finder {
  --ink: #101820;
  --muted: #52616d;
  --muted-strong: #26343e;
  --line: rgba(6, 26, 40, 0.14);
  --line-strong: rgba(6, 26, 40, 0.3);
  background:
    linear-gradient(120deg, rgba(174, 226, 255, 0.34), transparent 36%),
    #e8eff3;
  color: var(--ink);
}

.vehicle-finder .section-label {
  color: #006ca8;
}

.vehicle-finder .brand-grid li {
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.56);
  color: #1d303d;
  clip-path: polygon(7px 0, 100% 0, calc(100% - 7px) 100%, 0 100%);
}

.vehicle-finder .button.secondary {
  border-color: #17384b;
  background: transparent;
  color: #17384b;
}

.review-band {
  border-block-color: rgba(103, 199, 255, 0.2);
  background:
    radial-gradient(circle at 8% 50%, rgba(0, 121, 199, 0.17), transparent 31rem),
    radial-gradient(circle at 92% 50%, rgba(255, 61, 24, 0.1), transparent 26rem),
    #050c12;
}

.review-inner {
  grid-template-columns: 1.12fr 0.88fr;
}

.review-cards article,
.numbered-service,
.service-card,
.contact-card,
.quote-form-card,
.topic-points article,
.related-links a,
.gains-widget-shell {
  border-color: rgba(103, 199, 255, 0.12);
  border-radius: 3px;
  background: linear-gradient(145deg, rgba(8, 55, 83, 0.16), rgba(255, 61, 24, 0.025));
}

.numbered-service {
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.numbered-service > span {
  color: rgba(103, 199, 255, 0.38);
}

.gain-delta {
  color: var(--ember);
}

.service-checklist {
  margin-top: 44px;
  padding: 30px;
  border: 1px solid rgba(103, 199, 255, 0.2);
  border-radius: 3px;
  background: linear-gradient(135deg, rgba(9, 72, 110, 0.2), rgba(255, 61, 24, 0.035));
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}

.service-checklist ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-checklist li {
  position: relative;
  padding: 12px 14px 12px 31px;
  border-bottom: 1px solid rgba(103, 199, 255, 0.09);
  color: #deebf2;
  font-size: 0.91rem;
  font-weight: 600;
}

.service-checklist li::before {
  content: "";
  position: absolute;
  top: 1.16rem;
  left: 10px;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  background: var(--ember);
  box-shadow: 0 0 16px rgba(255, 61, 24, 0.68);
}

.service-legal-note {
  max-width: 920px;
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(103, 199, 255, 0.1);
  color: #9fb0bd;
  font-size: 0.82rem;
  line-height: 1.65;
}

.coverage-panel {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 42px;
  align-items: start;
  margin-top: 18px;
  padding: 34px;
  border-radius: 3px;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  background: #e8eff3;
  color: #111a21;
}

.coverage-panel .section-label {
  color: #006ca8;
}

.coverage-panel h3 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 2.9vw, 2.7rem);
  line-height: 1;
}

.coverage-panel p {
  margin: 0;
  color: #52616d;
  line-height: 1.7;
}

.coverage-panel ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coverage-panel li {
  padding: 11px 13px;
  border: 1px solid rgba(13, 50, 72, 0.14);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.58);
  color: #263b48;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

@media (min-width: 961px) {
  .service-list {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .numbered-service:nth-child(4n + 1),
  .numbered-service:nth-child(4n) {
    grid-column: span 7;
  }

  .numbered-service:nth-child(4n + 2),
  .numbered-service:nth-child(4n + 3) {
    grid-column: span 5;
  }
}

.step-grid::before {
  background: linear-gradient(90deg, var(--ice), var(--ember));
}

.step-grid span {
  border-color: var(--ice);
  border-radius: 2px;
  background: #06101a;
  color: var(--ice);
}

.portal-strip {
  border: 1px solid rgba(103, 199, 255, 0.16);
  border-radius: 3px;
  background: linear-gradient(110deg, #07547e, #071722 54%, #4d1309);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.contact-card {
  background:
    linear-gradient(145deg, rgba(5, 71, 108, 0.4), rgba(6, 12, 18, 0.96) 66%, rgba(112, 23, 7, 0.26));
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
}

.site-footer {
  border-top-color: rgba(103, 199, 255, 0.22);
  background: #020508;
}

.footer-name {
  letter-spacing: 0.15em;
}

@keyframes tehopankkiForge {
  0% { opacity: 0.72; filter: saturate(0.86); }
  100% { opacity: 1; filter: saturate(1.18); }
}

@media (max-width: 1100px) {
  .main-nav a {
    padding-inline: 13px;
    font-size: 0.68rem;
  }
}

@media (max-width: 960px) {
  .site-header {
    background: #03080d;
  }

  .main-nav {
    justify-content: flex-start;
    clip-path: none;
  }

  .hero {
    min-height: 790px;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 92px;
  }

  .hero-left {
    width: 100%;
    max-width: 790px;
  }

  .topic-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 500px 310px 310px;
  }

  .topic-gallery-card:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .topic-gallery-card:last-child {
    grid-column: 1 / 3;
  }

  .intro-band,
  .review-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 720px) {
  :root { --gutter: 28px; }

  .brand-badge {
    width: 50px;
    height: 50px;
    font-size: 1.45rem;
  }

  .brand-main {
    font-size: 1.32rem;
    letter-spacing: 0.11em;
  }

  .brand-sub {
    font-size: 0.56rem;
    letter-spacing: 0.16em;
  }

  .hero {
    min-height: 760px;
  }

  .hero picture img {
    object-position: 64% center;
  }

  .hero-content {
    gap: 30px;
    padding-top: 44px;
    padding-bottom: 46px;
  }

  .hero-left {
    padding: 20px 0 20px 18px;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(3.1rem, 15.4vw, 4.75rem);
  }

  .hero-copy { font-size: 0.98rem; }
  .quote-panel { padding: 25px 22px; }

  .topic-gallery {
    width: calc(100% - 28px);
    padding-top: 35px;
  }

  .topic-gallery .row-heading { align-items: flex-start; }

  .topic-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .topic-gallery-card,
  .topic-gallery-card:first-child,
  .topic-gallery-card:last-child {
    grid-column: auto;
    grid-row: auto;
    min-height: 345px;
  }

  .topic-gallery-card:first-child span {
    bottom: 43px;
    font-size: 4rem;
  }

  .brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-checklist ul { grid-template-columns: 1fr; }

  .coverage-panel {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 27px 22px;
  }

  .coverage-panel ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .panel-actions { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .hero::after { animation: none; }
  .topic-gallery-card img { transition: none; }
}
