:root {
  --bg: #f5f7fc;
  --bg-subtle: #eef1f8;
  --bg-warm: #fafbfd;
  --bg-card: #ffffff;
  --bg-ink: #12151c;
  --border: rgba(18, 22, 32, 0.08);
  --border-strong: rgba(18, 22, 32, 0.12);
  --text: #1a1f2e;
  --text-muted: #5c6477;
  --text-soft: #8b93a6;
  --primary: #d12d4a;
  --primary-hover: #b0223c;
  --accent: #e11d48;
  --accent-hot: #f43f5e;
  --accent-muted: rgba(225, 29, 72, 0.12);
  --accent-ink: #ffffff;
  --heading: #0c0f16;
  --surface: #ffffff;
  --shadow-xs: 0 1px 2px rgba(15, 18, 28, 0.04);
  --shadow-sm: 0 4px 20px rgba(15, 18, 28, 0.06);
  --shadow-md: 0 16px 48px rgba(15, 18, 28, 0.08);
  --shadow-lg: 0 24px 64px rgba(15, 18, 28, 0.1);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --max: 1180px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --ribbon-thickness: 3px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.58;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 90% 50% at 0% -20%, rgba(225, 29, 72, 0.06), transparent 50%),
    radial-gradient(ellipse 70% 45% at 100% 0%, rgba(99, 102, 241, 0.05), transparent 45%);
  background-attachment: fixed;
  font-synthesis: none;
}

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

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

a:hover {
  color: var(--primary-hover);
}

address {
  font-style: normal;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.section-anchor {
  scroll-margin-top: 5.5rem;
}

.readable {
  max-width: 38rem;
}

.readable p {
  color: var(--text-muted);
  margin: 0 0 1.15rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: var(--ribbon-thickness) minmax(0, 1fr);
  align-items: stretch;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}

.header-ribbon {
  grid-column: 1;
  grid-row: 1 / -1;
  align-self: stretch;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(225, 29, 72, 0.35) 0%, var(--accent) 48%, rgba(225, 29, 72, 0.35) 100%);
  filter: none;
  pointer-events: none;
}

.header-bar {
  grid-column: 2;
  grid-row: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  align-items: center;
  gap: 0;
  padding: 0.85rem 1.25rem;
  max-width: calc(var(--max) + 2.5rem);
  margin-inline: auto;
  width: 100%;
  box-sizing: border-box;
}

.logo {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}

.logo--alkla {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--heading);
}

.logo--alkla:hover {
  color: var(--accent);
}

.logo-img {
  display: block;
  height: clamp(1.85rem, 4vw, 2.65rem);
  width: auto;
}

.logo:hover .logo-img {
  opacity: 0.9;
}

.header-meta {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1.25rem;
  padding: 0.5rem 0 0.35rem;
  border-top: 1px solid var(--border);
  margin-top: 0.35rem;
}

.header-lang {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-lang__sep {
  color: var(--border-strong);
}

.header-lang__link {
  color: var(--text-soft);
}

.header-lang__link:hover,
.header-lang__link.is-active {
  color: var(--accent);
}

.header-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.header-contact a {
  flex-shrink: 0;
  white-space: nowrap;
  color: var(--text-muted);
}

.header-contact a:hover {
  color: var(--accent);
}

a[href^="tel"]:hover .header-phone-cc {
  color: var(--accent-hot);
}

a[href^="mailto"]:hover .header-email-domain {
  color: var(--accent-hot);
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.nav-toggle-label {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle-label span {
  display: block;
  height: 2px;
  background: var(--heading);
  border-radius: 1px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.main-nav {
  grid-column: 1 / -1;
  grid-row: 3;
  display: none;
  padding: 0 0 1.1rem;
  width: 100%;
  border-top: 1px solid var(--border);
  padding-top: 0.65rem;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  border-bottom: 1px solid var(--border);
}

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

.nav-anchor {
  display: block;
  padding: 0.75rem 0;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.nav-anchor:hover {
  color: var(--heading);
  border-bottom-color: var(--accent);
}

@media (max-width: 959px) {
  .main-nav .nav-list {
    text-align: center;
  }

  .main-nav .nav-anchor {
    text-align: center;
  }
}

.nav-toggle:checked ~ .header-bar .main-nav {
  display: block;
}

.nav-toggle:checked ~ .header-bar .nav-toggle-label span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle:checked ~ .header-bar .nav-toggle-label span:nth-child(2) {
  opacity: 0;
}

.nav-toggle:checked ~ .header-bar .nav-toggle-label span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 960px) {
  .header-bar {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-rows: auto;
    padding: 0.85rem 1.5rem;
    gap: 0.75rem 1rem;
    align-items: center;
  }

  .logo {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .header-meta {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    padding: 0;
    margin: 0;
    border-top: 0;
    flex-direction: row;
    gap: 1rem 1.5rem;
  }

  .main-nav {
    grid-column: 2;
    grid-row: 1;
    display: block;
    width: auto;
    padding: 0;
    border-top: 0;
    justify-self: center;
  }

  .header-contact {
    display: flex;
    justify-self: end;
    align-self: center;
    width: max-content;
    max-width: 100%;
  }

  .nav-toggle-label {
    display: none;
  }

  .nav-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.1rem 0.35rem;
  }

  .nav-item {
    border-bottom: 0;
  }

  .nav-anchor {
    padding: 0.45rem 0.45rem;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
  }
}

.marquee {
  position: relative;
  z-index: 50;
  overflow: hidden;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 3rem;
  padding: 0.5rem 0;
  animation: marquee-move 38s linear infinite;
}

.marquee-item {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .marquee-item:last-child {
    display: none;
  }
}

@keyframes marquee-move {
  to {
    transform: translateX(-50%);
  }
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(82vh, 760px);
  padding: clamp(3rem, 10vw, 5rem) 0 clamp(4rem, 12vw, 6rem);
  overflow: hidden;
  background: linear-gradient(165deg, #ffffff 0%, #f5f7fc 38%, #f0f4ff 100%);
}

.hero-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-visual__photo {
  position: absolute;
  inset: 0;
  background-image: url("../image/hero-photo.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 68% 42%;
  transform-origin: 62% 42%;
  opacity: 1;
}

.hero-visual__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(252, 253, 255, 0.88) 28%,
    rgba(248, 250, 255, 0.62) 52%,
    rgba(245, 247, 252, 0.28) 78%,
    rgba(18, 21, 28, 0.06) 100%
  );
}

.hero-visual__noise {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: center;
    gap: 3rem;
  }
}

.hero-kicker {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-heading {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4.2vw, 3.15rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--heading);
  max-width: min(100%, 40rem);
}

.hero-heading--alkla {
  font-size: clamp(1.85rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
  max-width: min(100%, 48rem);
  line-height: 1.08;
  color: var(--heading);
}

.hero-heading--alkla .hero-title-word {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 0.45em, 0);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-heading--alkla .hero-title-word {
    animation: hero-word-reveal 0.72s var(--ease-smooth) forwards;
  }

  .hero-heading--alkla .hero-title-word:nth-of-type(1) {
    animation-delay: 0.12s;
  }

  .hero-heading--alkla .hero-title-word:nth-of-type(2) {
    animation-delay: 0.22s;
  }

  .hero-heading--alkla .hero-title-word:nth-of-type(3) {
    animation-delay: 0.32s;
  }

  .hero-heading--alkla .hero-title-word:nth-of-type(4) {
    animation-delay: 0.42s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-heading--alkla .hero-title-word {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }
}

.hero-lead {
  margin: 0 0 1.5rem;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: min(100%, 36rem);
}

.hero-punch {
  margin: 0 0 1.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.65rem);
  font-weight: 600;
  letter-spacing: 0;
  color: var(--accent-hot);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-card {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.hero-card__label {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-card__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--border);
}

.hero-metric {
  text-align: left;
}

.hero-metric dt {
  margin: 0 0 0.2rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.hero-metric dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.2;
}

@media (max-width: 520px) {
  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.6rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 2px solid transparent;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.22s var(--ease-smooth),
    box-shadow 0.3s var(--ease);
}

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

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
  box-shadow: 0 6px 24px rgba(225, 29, 72, 0.28);
}

.btn-primary:hover {
  background: var(--accent-hot);
  border-color: var(--accent-hot);
  color: var(--accent-ink);
}

.btn-ghost {
  background: var(--surface);
  color: var(--heading);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-xs);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-light {
  background: var(--surface);
  color: var(--heading);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-light:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}

.section {
  padding: clamp(3.5rem, 9vw, 5.5rem) 0;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.6vw, 2.35rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--heading);
  margin: 0 0 1.25rem;
}

.section-heading--tight {
  margin-bottom: 0.5rem;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.65rem;
}

.eyebrow--center {
  text-align: center;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  border-top: 1px solid var(--border);
}

.about-split__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.25rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--border);
  box-sizing: border-box;
}

.about-split__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.25rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4rem);
  box-sizing: border-box;
  max-width: none;
}

.about-split__body p {
  color: var(--text-muted);
  margin: 0 0 1.15rem;
}

.about-split__body p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .about-split {
    grid-template-columns: 1fr 1fr;
    min-height: min(52vh, 520px);
  }

  .about-split__intro {
    border-bottom: 0;
    border-right: 1px solid var(--border);
  }
}

.about-pill {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1rem 1.35rem;
  border-radius: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.about-pill__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
}

.about-pill__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.about-pill__stack {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.about-pill__n {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
}

.about-pill__t {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.industries-hub {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.industries-hub__header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.industries-hub__header .eyebrow {
  margin-bottom: 0.75rem;
}

.industries-hub__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.8vw, 2.45rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--heading);
}

.industries-hub__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "figure"
    "left"
    "right";
  gap: clamp(1.75rem, 4vw, 2.5rem);
  align-items: start;
}

@media (min-width: 960px) {
  .industries-hub__grid {
    grid-template-columns: minmax(0, 1fr) minmax(200px, 0.42fr) minmax(0, 1fr);
    grid-template-areas: "left figure right";
    gap: clamp(0.75rem, 2vw, 1.75rem);
    align-items: center;
  }
}

.industries-hub__col {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.industries-hub__col--left {
  grid-area: left;
}

.industries-hub__col--right {
  grid-area: right;
}

.industries-hub__figure {
  grid-area: figure;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0.5rem 0 0;
}

.industries-hub__photo {
  width: min(100%, 400px);
  height: auto;
  display: block;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 28px 48px rgba(15, 18, 28, 0.14));
}

@media (min-width: 960px) {
  .industries-hub__photo {
    width: min(100%, 100%);
    max-height: min(58vh, 520px);
  }
}

.industries-hub__feature {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.25rem);
}

.industries-hub__feature-text {
  flex: 1;
  min-width: 0;
  text-align: right;
}

.industries-hub__feature--reverse .industries-hub__feature-text {
  text-align: left;
}

.industries-hub__feature-title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.25;
  color: var(--heading);
}

.industries-hub__feature-desc {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.52;
  color: var(--text-muted);
}

.industries-hub__icon {
  flex-shrink: 0;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 50%;
  border: 2px solid var(--primary);
  display: grid;
  place-items: center;
  background: #ffffff;
  box-shadow: var(--shadow-xs);
}

.industries-hub__icon-img {
  width: 1.45rem;
  height: 1.45rem;
  display: block;
  object-fit: contain;
}

.industries-hub__footer {
  margin-top: clamp(2.25rem, 5vw, 3.25rem);
  text-align: center;
}

@media (max-width: 959px) {
  .industries-hub__feature-text {
    text-align: left;
  }

  .industries-hub__feature:not(.industries-hub__feature--reverse) {
    flex-direction: row-reverse;
  }
}

.section-industries {
  padding: 0;
  background: transparent;
}

.industries-split {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  min-height: min(68vh, 620px);
  overflow: hidden;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .industries-split {
    grid-template-columns: 1fr 1fr;
    min-height: min(58vh, 560px);
  }
}

.industries-split__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 36rem;
  margin-inline: auto;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .industries-split__copy {
    margin-inline: 0;
    margin-right: auto;
    padding-left: clamp(1.5rem, 5vw, 4rem);
    padding-right: clamp(1.5rem, 4vw, 3rem);
  }
}

.industries-split__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--heading);
  max-width: 22ch;
}

.industries-split__lead {
  margin: 0 0 1.5rem;
  font-size: clamp(0.95rem, 1.9vw, 1.06rem);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 36rem;
}

.industries-split__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
}

.industries-split__link {
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--heading);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.1rem;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.industries-split__link:hover {
  color: var(--accent);
  border-bottom-color: rgba(229, 57, 53, 0.45);
}

.industries-split__media {
  position: relative;
  min-height: min(56vw, 340px);
  background: linear-gradient(145deg, #eef2fa 0%, #e5eaf5 100%);
}

@media (min-width: 768px) {
  .industries-split__media {
    min-height: 0;
  }
}

.industries-split__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: min(56vw, 340px);
  object-fit: cover;
  object-position: 58% 42%;
}

@media (min-width: 768px) {
  .industries-split__img {
    position: absolute;
    inset: 0;
    min-height: 100%;
  }
}

.industries-content {
  padding: 0;
  background: transparent;
}

.industries-highlight {
  background: linear-gradient(180deg, #fff5f7 0%, #ffffff 100%);
  padding: clamp(2.75rem, 6vw, 4.5rem) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.industries-content__main {
  padding: clamp(2.75rem, 6vw, 4.5rem) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
  border-bottom: 1px solid var(--border);
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title-xl {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--heading);
}

.industries-top {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .industries-top {
    grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
    gap: 1.25rem;
  }
}

.industries-story {
  padding: 1.75rem 1.5rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.industries-story p {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.industries-story p:last-child {
  margin-bottom: 0;
}

.industries-tech {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.25rem 1.15rem;
  min-height: 100%;
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.industries-tech-line {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
}

.industries-tech-line::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.5rem;
  border-radius: 1px;
  background: #fff;
  vertical-align: 0.05em;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.fleet-block {
  position: relative;
  margin: 0;
  padding: clamp(1.65rem, 4vw, 2.35rem);
  border-radius: var(--radius);
  background: linear-gradient(155deg, #ffffff 0%, #f5f7fc 48%, #eef2f9 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.fleet-block::before {
  content: "";
  position: absolute;
  inset: -20% -8% auto auto;
  width: min(52%, 280px);
  aspect-ratio: 1;
  opacity: 0.07;
  background: url("../image/icons/rigid.svg") no-repeat center / contain;
  pointer-events: none;
}

.fleet-block__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.fleet-block__head-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 8px;
  background: rgba(229, 57, 53, 0.12);
  border: 1px solid rgba(183, 28, 28, 0.18);
  box-shadow: 0 2px 8px rgba(90, 40, 40, 0.08);
}

.fleet-block__head-icon img {
  width: 2.35rem;
  height: 2.35rem;
  display: block;
}

.fleet-heading {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--heading);
  text-align: left;
}

.section--fleet {
  background: linear-gradient(180deg, var(--bg-warm) 0%, #ffffff 55%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section--fleet .section-heading--center {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.fleet-text-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .fleet-text-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.fleet-text-card {
  margin: 0;
  padding: 1.2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: var(--heading);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xs);
  transition:
    border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    transform 0.2s var(--ease-smooth);
}

@media (prefers-reduced-motion: no-preference) {
  .fleet-text-card:hover {
    border-color: rgba(225, 29, 72, 0.22);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
  }
}

.fleet-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .fleet-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.fleet-card {
  margin: 0;
  padding: 1rem 0.65rem 1.15rem;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  box-shadow: var(--shadow-xs);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.fleet-card:hover {
  border-color: rgba(225, 29, 72, 0.25);
  box-shadow: var(--shadow-sm);
}

.fleet-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.25rem;
  margin-bottom: 0.65rem;
}

.fleet-card__icon img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  display: block;
}

@media (min-width: 640px) {
  .fleet-card__icon img {
    width: 3.25rem;
    height: 3.25rem;
  }
}

.fleet-card__label {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--accent);
}

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.section-gallery-strip {
  padding-top: 0;
  padding-bottom: 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.gallery-strip {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .gallery-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-strip__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-right: 1px solid var(--border);
  background: var(--surface);
}

.gallery-strip__item:last-child {
  border-right: 0;
}

.gallery-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition:
    opacity 0.45s var(--ease),
    transform 0.55s var(--ease-smooth);
}

.gallery-strip__item:hover img {
  opacity: 1;
  transform: scale(1.03);
}

.gallery-strip__item--call:hover .gallery-strip__img--call {
  transform: scale(1.03);
}

.gallery-strip__img--call {
  object-position: 58% 42%;
}

.gallery-strip__call {
  position: absolute;
  left: clamp(0.85rem, 3vw, 1.5rem);
  bottom: clamp(0.85rem, 2.5vw, 1.35rem);
  z-index: 2;
  max-width: min(100% - 1.75rem, 18rem);
  padding: 0.65rem 1rem;
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 2vw, 1.1rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.25;
  color: #ffffff;
  text-decoration: none;
  background: rgba(12, 15, 22, 0.42);
  border-radius: var(--radius-xs);
  box-shadow: 0 8px 28px rgba(12, 15, 22, 0.2);
  backdrop-filter: blur(10px);
  transition:
    background 0.2s var(--ease),
    transform 0.25s var(--ease-smooth);
}

.gallery-strip__call:hover {
  background: rgba(12, 15, 22, 0.58);
}

.gallery-strip__call:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: no-preference) {
  .gallery-strip__call:hover {
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-strip__item:hover img {
    transform: none;
  }

  .gallery-strip__item--call:hover .gallery-strip__img--call {
    transform: none;
  }
}

.section-activity {
  padding-bottom: 0;
  background: var(--bg);
}

.section-activity-head {
  margin-bottom: 1.5rem;
}

.activity-frame {
  position: relative;
  margin-top: 0.5rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.activity-frame__chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
}

.activity-frame__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #444;
}

.activity-frame__dot:nth-child(1) {
  background: #ff5f57;
}

.activity-frame__dot:nth-child(2) {
  background: #febc2e;
}

.activity-frame__dot:nth-child(3) {
  background: #28c840;
}

.activity-frame__label {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.activity-frame__map {
  display: block;
  width: 100%;
  height: min(52vh, 440px);
  border: 0;
  filter: saturate(1.05) contrast(1.02);
}

.section-cta-banner {
  padding: 0;
}

.cta-shell {
  position: relative;
  overflow: hidden;
  min-height: min(72vh, 720px);
  display: flex;
  align-items: stretch;
  background: var(--bg-subtle);
}

.cta-shell__map {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-shell__iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 0;
  transform: scale(1.06);
  filter: grayscale(0.15) contrast(1.02) opacity(0.85);
}

.cta-shell__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(245, 247, 252, 0.88) 38%,
    rgba(240, 244, 250, 0.55) 100%
  );
  pointer-events: none;
}

.cta-shell__content {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 10vw, 5rem) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: min(100% - 2.5rem, 640px);
}

.cta-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--heading);
  line-height: 1.1;
}

.cta-deck {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.cta-deck:last-of-type {
  margin-bottom: 2rem;
}

.cta-panels {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-panels {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.cta-panel {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.cta-panel--address {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cta-panel__role {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-hot);
}

.cta-panel__name {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--heading);
}

.cta-dl {
  margin: 0;
}

.cta-dl div {
  margin-bottom: 0.75rem;
}

.cta-dl div:last-child {
  margin-bottom: 0;
}

.cta-dl dt {
  margin: 0 0 0.2rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.cta-dl dd {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
}

.cta-dl a {
  color: var(--heading);
}

.cta-dl a:hover {
  color: var(--accent);
}

.cta-address {
  margin: 0 0 1.25rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.cta-panel__btn {
  margin-top: auto;
}

.site-footer {
  position: relative;
  background: linear-gradient(180deg, var(--bg-subtle) 0%, #ffffff 28%);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  margin-top: 0;
}

.footer-accent {
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 35%, var(--accent-hot) 50%, var(--accent) 65%, transparent 100%);
  opacity: 0.85;
}

.footer-main {
  display: grid;
  gap: 2.5rem;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(2rem, 4vw, 2.5rem);
  align-items: start;
}

@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    gap: 3rem 4rem;
  }
}

.footer-brand {
  max-width: 22rem;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 0.85rem;
}

.footer-logo img {
  height: clamp(1.75rem, 4vw, 2.15rem);
  width: auto;
}

.footer-logo:hover img {
  opacity: 0.92;
}

.footer-tagline {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.footer-columns {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 520px) {
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 2.5rem;
  }
}

.footer-col__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--heading);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}

.footer-nav a {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text-muted);
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-address {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  font-style: normal;
  color: var(--text-muted);
}

.footer-contact-lines {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
}

.footer-contact-lines a {
  color: var(--heading);
  font-weight: 600;
}

.footer-contact-lines a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.65);
}

.footer-bottom__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 1.15rem 0 1.35rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.footer-back {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.footer-back:hover {
  color: var(--accent);
}

.section-heading--center {
  text-align: center;
}

.readable--center {
  margin-inline: auto;
  text-align: center;
}

.readable--center p {
  margin-left: auto;
  margin-right: auto;
}

.section--premium-intro {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section--premium-intro--split {
  padding: 0;
  overflow: hidden;
}

.premium-intro-split {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  min-height: min(72vh, 680px);
}

@media (min-width: 768px) {
  .premium-intro-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: min(58vh, 600px);
  }
}

.premium-intro-split__media {
  position: relative;
  min-height: min(56vw, 280px);
  background: linear-gradient(155deg, #eef1f8 0%, #e5e9f2 100%);
}

@media (min-width: 768px) {
  .premium-intro-split__media {
    min-height: 0;
  }
}

.premium-intro-split__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: min(56vw, 280px);
  object-fit: cover;
  object-position: center;
}

@media (min-width: 768px) {
  .premium-intro-split__img {
    position: absolute;
    inset: 0;
    min-height: 100%;
  }
}

.premium-intro-split__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 40rem;
  margin-inline: auto;
  width: 100%;
  box-sizing: border-box;
  text-align: start;
}

@media (min-width: 768px) {
  .premium-intro-split__copy {
    margin-inline: 0;
    margin-left: auto;
    padding-left: clamp(1.5rem, 4vw, 3rem);
    padding-right: clamp(1.75rem, 5vw, 4rem);
  }
}

.premium-intro-split__copy .eyebrow {
  margin-bottom: 0.65rem;
}

.premium-intro-split__copy .section-heading {
  margin-bottom: 1.1rem;
}

.premium-intro-split__cta {
  text-align: start;
  margin-top: 1.75rem;
}

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

@media (min-width: 640px) {
  .truck-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .truck-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.truck-card {
  margin: 0;
  padding: 1.35rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xs);
  transition:
    transform 0.3s var(--ease-smooth),
    border-color 0.2s var(--ease),
    box-shadow 0.3s var(--ease);
}

@media (prefers-reduced-motion: no-preference) {
  .truck-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
}

.truck-card__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--heading);
  line-height: 1.25;
}

.truck-card__body {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.truck-card__body + .truck-card__body {
  margin-top: 0.85rem;
}

.truck-card__body--lead {
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--text);
}

.truck-grid--single {
  max-width: 42rem;
  margin-inline: auto;
}

.truck-card--wide {
  text-align: center;
}

.services-trio {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .services-trio {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.section-services-trio {
  padding: clamp(3rem, 8vw, 4.5rem) 0;
  background: linear-gradient(180deg, var(--bg) 0%, #ffffff 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-trio__card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition:
    transform 0.35s var(--ease-smooth),
    border-color 0.25s var(--ease),
    box-shadow 0.35s var(--ease);
}

@media (prefers-reduced-motion: no-preference) {
  .services-trio__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }
}

.services-trio__kicker {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-hot);
}

.services-trio__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--heading);
}

.services-trio__body {
  margin: 0 0 1rem;
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.services-trio__more {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.services-trio__more:hover {
  color: var(--accent-hot);
}

.fight-band {
  position: relative;
  padding: clamp(3.5rem, 10vw, 5.75rem) 0;
  background: linear-gradient(152deg, var(--accent) 0%, var(--primary) 48%, var(--primary-hover) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  text-align: left;
  overflow: hidden;
}

.fight-band__shell {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(44vh, 440px);
}

.fight-band__watermark {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 0;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 15vw, 11rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.9;
  color: rgba(40, 6, 14, 0.22);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.fight-band__globe {
  position: absolute;
  right: -8%;
  top: 50%;
  z-index: 1;
  width: min(52vw, 400px);
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.fight-band__globe-svg {
  display: block;
  width: 100%;
  height: auto;
}

.fight-band__content {
  position: relative;
  z-index: 2;
  max-width: min(100%, 38rem);
}

.fight-band__line {
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: #ffffff;
}

.fight-band__sub {
  margin: 0 0 0.65rem;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.94);
}

.fight-band__sub--narrow {
  max-width: 36rem;
  margin-left: 0;
  margin-right: 0;
  line-height: 1.58;
}

.fight-band__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.75rem;
  margin-top: clamp(1.85rem, 4vw, 2.65rem);
}

.fight-band__nav-link {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s var(--ease);
}

.fight-band__nav-link::after {
  content: ">";
  margin-left: 0.4em;
  font-weight: 600;
}

.fight-band__nav-link:hover {
  opacity: 0.88;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

@media (max-width: 720px) {
  .fight-band__globe {
    width: min(70vw, 280px);
    right: -18%;
  }

  .fight-band__watermark {
    font-size: clamp(2.5rem, 18vw, 6rem);
  }
}

.about-lead {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.about-more {
  margin-top: 1.25rem;
}

.values-heading {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--heading);
}

.value-block {
  margin-bottom: 1.25rem;
}

.value-block:last-child {
  margin-bottom: 0;
}

.value-block__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
}

.value-block p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.section-industrie {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
}

.industrie-lead {
  margin: 0 auto 2rem;
  max-width: 42rem;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.industrie-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
}

.industrie-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.35rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--heading);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition:
    transform 0.25s var(--ease-smooth),
    border-color 0.2s var(--ease),
    color 0.2s var(--ease),
    box-shadow 0.25s var(--ease);
}

.industrie-pill:hover {
  border-color: rgba(229, 57, 53, 0.45);
  color: var(--accent);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

@media (prefers-reduced-motion: no-preference) {
  .industrie-pill:hover {
    transform: translateY(-3px);
  }
}

.explore-row {
  padding: clamp(1.75rem, 4vw, 2.5rem) 0 clamp(2.5rem, 6vw, 3.5rem);
  text-align: center;
  background: linear-gradient(180deg, var(--bg-warm) 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border);
}

.explore-row__text {
  margin: 0 0 1.25rem;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
}

.explore-row__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 0.85rem;
}

.explore-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 1.15rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--heading);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-xs);
  transition:
    transform 0.25s var(--ease-smooth),
    color 0.2s var(--ease),
    border-color 0.2s var(--ease),
    background 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.explore-chip:hover {
  color: var(--accent);
  border-color: rgba(225, 29, 72, 0.35);
  box-shadow: var(--shadow-sm);
}

@media (prefers-reduced-motion: no-preference) {
  .explore-chip:hover {
    transform: translateY(-2px);
  }
}

.footer-logo--text {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-logo--text:hover {
  color: var(--accent);
}

@keyframes motion-hero-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-word-reveal {
  from {
    opacity: 0;
    transform: translate3d(0, 0.5em, 0);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes motion-header-in {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-ken {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.025);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .motion-header {
    animation: motion-header-in 0.65s var(--ease-smooth) both;
  }

  .hero-visual__photo {
    animation: hero-ken 26s ease-in-out infinite alternate;
  }

  .hero-in {
    opacity: 0;
    animation: motion-hero-in 0.82s var(--ease-smooth) both;
  }

  .hero-copy .hero-in:nth-child(1) {
    animation-delay: 0.08s;
  }

  .hero-copy .hero-in:nth-child(3) {
    animation-delay: 0.32s;
  }

  .hero-copy .hero-in:nth-child(4) {
    animation-delay: 0.44s;
  }

  .hero-side > .hero-card.hero-in {
    animation-delay: 0.48s;
  }

  .hero-metrics--animate .hero-metric.hero-in:nth-child(1) {
    animation-delay: 0.58s;
  }

  .hero-metrics--animate .hero-metric.hero-in:nth-child(2) {
    animation-delay: 0.68s;
  }

  .hero-metrics--animate .hero-metric.hero-in:nth-child(3) {
    animation-delay: 0.78s;
  }

}

@media (prefers-reduced-motion: reduce) {
  .motion-header,
  .hero-in,
  .hero-visual__photo {
    animation: none;
  }

  .hero-in {
    opacity: 1;
    transform: none;
  }
}

.motion-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s var(--ease-smooth),
    transform 0.8s var(--ease-smooth);
}

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

.motion-reveal-group .motion-reveal-item {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.65s var(--ease-smooth),
    transform 0.65s var(--ease-smooth),
    border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

.motion-reveal-group.is-inview .motion-reveal-item:nth-child(1) {
  transition-delay: 0.05s;
}

.motion-reveal-group.is-inview .motion-reveal-item:nth-child(2) {
  transition-delay: 0.12s;
}

.motion-reveal-group.is-inview .motion-reveal-item:nth-child(3) {
  transition-delay: 0.2s;
}

.motion-reveal-group.is-inview .motion-reveal-item {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .motion-reveal,
  .motion-reveal-group .motion-reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.section--truck .container.motion-reveal .truck-card {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s var(--ease-smooth),
    transform 0.55s var(--ease-smooth),
    border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

.section--truck .container.motion-reveal.is-inview .truck-card:nth-child(1) {
  transition-delay: 0.05s;
}

.section--truck .container.motion-reveal.is-inview .truck-card:nth-child(2) {
  transition-delay: 0.1s;
}

.section--truck .container.motion-reveal.is-inview .truck-card:nth-child(3) {
  transition-delay: 0.15s;
}

.section--truck .container.motion-reveal.is-inview .truck-card:nth-child(4) {
  transition-delay: 0.2s;
}

.section--truck .container.motion-reveal.is-inview .truck-card:nth-child(5) {
  transition-delay: 0.25s;
}

.section--truck .container.motion-reveal.is-inview .truck-card:nth-child(6) {
  transition-delay: 0.3s;
}

.section--truck .container.motion-reveal.is-inview .truck-card {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .section--truck .container.motion-reveal .truck-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
