:root {
  --orange: #f0660a;
  --orange-2: #ff7a1a;
  --black: #0b0b0b;
  --dark: #111111;
  --dark-2: #1c1c1c;
  --gray: #2e2e2e;
  --text: #ffffff;
  --muted: #b8b8b8;
  --line: rgba(255, 255, 255, 0.14);
  --container: 1400px;
  --header: 86px;
  --radius: 8px;
  --shadow-orange: 0 18px 46px rgba(240, 102, 10, 0.18);
  --hero-bg-image: url("assets/backgrounds/fondohs.jpg");
  --cta-bg-image: url("assets/backgrounds/parallax-hs.jpeg");
}

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

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  font-family: "Inter Tight", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 70% 5%, rgba(240, 102, 10, 0.12), transparent 30%),
    linear-gradient(180deg, #040404 0%, #111 45%, #090909 100%);
  line-height: 1.45;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.header-inner {
  width: min(calc(100% - 32px), 1530px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: 196px;
  height: auto;
  filter: drop-shadow(0 0 14px rgba(240, 102, 10, 0.12));
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 42px);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
}

.nav a {
  position: relative;
  padding: 32px 0 28px;
  transition: color 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  /*background: var(--orange);*/
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav a:hover,
.nav a.active { color: #fff; }
.nav a:hover::after,
.nav a.active::after { transform: scaleX(1); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #ff6412);
  color: #fff;
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover { box-shadow: 0 22px 56px rgba(240, 102, 10, 0.32); }

.btn-secondary {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.btn-secondary:hover {
  border-color: var(--orange);
  background: rgba(240, 102, 10, 0.08);
}

.btn.compact {
  min-height: 44px;
  padding-inline: 26px;
  font-size: 14px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--header);
  overflow: hidden;
  background: #030303;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #030303 0%, rgba(3, 3, 3, 0.95) 36%, rgba(3, 3, 3, 0.26) 62%, rgba(3, 3, 3, 0.62) 100%),
    radial-gradient(circle at 76% 42%, rgba(240, 102, 10, 0.24), transparent 25%);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--hero-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.01);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  min-height: calc(100vh - var(--header) - 110px);
}

.hero-copy {
  padding: 64px 0 32px;
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 26px;
  font-size: clamp(42px, 4.7vw, 60px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 800;
}

h1 span,
.final-cta h2 span { color: var(--orange); }

.hero-text {
  max-width: 600px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 0 0 74px;
  max-width: 760px;
  margin-left: max(16px, calc((100vw - var(--container)) / 2));
  margin-right: auto;
}

.metric {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 12px;
  align-items: start;
}

.metric .icon-img {
  grid-row: span 2;
  margin-top: 4px;
}

.metric strong {
  font-size: 32px;
  line-height: 1;
  font-weight: 800;
}

.metric small {
  max-width: 118px;
  color: #fff;
  font-size: 14px;
  line-height: 1.25;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}

.scroll-cue span {
  display: block;
  width: 22px;
  height: 38px;
  margin: 0 auto 5px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 99px;
}

.scroll-cue span::before {
  content: "";
  display: block;
  width: 3px;
  height: 7px;
  margin: 8px auto;
  border-radius: 99px;
  background: #fff;
  animation: wheel 1.6s ease-in-out infinite;
}

@keyframes wheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

.section-dark {
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.06), transparent 24%),
    linear-gradient(110deg, #171717, #0e0e0e 54%, #141414);
  border-bottom: 1px solid var(--line);
}

.section-black {
  background: #070707;
  border-bottom: 1px solid var(--line);
}

.problem {
  padding: 48px 0 28px;
}

.problem-grid {
  display: grid;
  grid-template-columns: 305px minmax(0, 1fr);
  gap: 70px;
}

.problem-copy h2,
.stats-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(24px, 3vw, 39px);
  line-height: 1.03;
}

.problem-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
}

.solution-label { margin-top: 62px; }

.problem-visual {
  display: grid;
  align-content: center;
  gap: 58px;
  padding-top: 66px;
}

.chaos-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(82px, 1fr) auto) 138px;
  align-items: center;
  gap: 14px;
}

.node {
  display: grid;
  place-items: center;
  gap: 13px;
  color: #fff;
  font-size: 14px;
}

.icon-img {
  display: inline-block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.icon-img.framed {
  padding: 17px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 50%;
}

.icon-img.orange-frame {
  border-color: var(--orange);
}

.node .icon-img {
  width: 72px;
  height: 72px;
}

.chaos-row b {
  color: rgba(255,255,255,.75);
  font-size: 28px;
  font-weight: 400;
}

.chaos-row .orange { color: var(--orange); }

.chaos {
  display: grid;
  place-items: center;
  gap: 10px;
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 18px;
}

.chaos span {
  width: 116px;
  height: 84px;
  border: 1px solid var(--orange);
  border-radius: 43% 57% 61% 39% / 44% 34% 66% 56%;
  box-shadow: inset 0 0 0 1px var(--orange), 0 0 28px rgba(240,102,10,.16);
  background:
    repeating-radial-gradient(ellipse at 50% 50%, transparent 0 7px, rgba(240,102,10,.9) 8px 9px, transparent 10px 16px);
  animation: morph 7s linear infinite;
}

@keyframes morph {
  50% { border-radius: 56% 44% 38% 62% / 61% 45% 55% 39%; transform: rotate(8deg); }
}

.unity {
  position: relative;
  border-top: 1px solid var(--line);
  padding-top: 34px;
  min-height: 235px;
}

.small-services {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 48px);
}

.small-services .node .icon-img {
  width: 58px;
  height: 58px;
  padding: 13px;
}

.hub {
  position: absolute;
  left: 50%;
  top: 94px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 142px;
  height: 142px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  background: #111;
  box-shadow: 0 0 42px rgba(240,102,10,.16);
}

.hub::before {
  content: "";
  position: absolute;
  inset: -68px -210px auto;
  height: 88px;
  background:
    linear-gradient(21deg, transparent 48%, rgba(240,102,10,.75) 49%, transparent 51%),
    linear-gradient(-18deg, transparent 48%, rgba(240,102,10,.55) 49%, transparent 51%),
    linear-gradient(8deg, transparent 48%, rgba(240,102,10,.45) 49%, transparent 51%);
  opacity: .65;
  pointer-events: none;
}

.hub img {
  width: 92px;
  filter: brightness(1.5) contrast(1.1);
}

.services {
  padding: 24px 0 58px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
}

.centered { text-align: center; }

.section-heading h2 {
  margin-bottom: 7px;
  font-size: clamp(30px, 2.7vw, 40px);
  line-height: 1.05;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.cards-grid {
  display: grid;
  gap: 16px;
}

.cards-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.cards-grid.six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.service-card,
.stat-card,
.case-card {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.015)),
    #141414;
}

.service-card {
  min-height: 245px;
  padding: 28px 26px;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
  background:
    linear-gradient(145deg, rgba(240,102,10,.09), rgba(255,255,255,.02)),
    #151515;
}

.service-card h3 {
  margin: 20px 0 8px;
  font-size: 23px;
}

.service-card p {
  color: #d8d8d8;
  font-size: 16px;
}

.service-card a {
  display: inline-flex;
  gap: 10px;
  margin-top: 10px;
  color: var(--orange);
  font-weight: 800;
}

.action-row { margin-top: 24px; }

.process {
  padding: 30px 0 54px;
  background:
    radial-gradient(circle at 50% 0, rgba(255,255,255,.08), transparent 20%),
    #101010;
  border-bottom: 1px solid var(--line);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  text-align: center;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 18px;
  border-top: 1px dashed var(--orange);
}

.step { position: relative; }

.step strong {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--orange);
  font-size: 17px;
}

.step h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.step p {
  margin-inline: auto;
  max-width: 170px;
  color: #d1d1d1;
  font-size: 14px;
}

.stats {
  padding: 36px 0 48px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  gap: 14px;
  align-items: stretch;
}

.stats-copy {
  padding-right: 55px;
  align-self: center;
}

.stat-card {
  min-height: 250px;
  padding: 28px 28px 22px;
}

.stat-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: clamp(52px, 5vw, 72px);
  line-height: .92;
  font-weight: 800;
}

.stat-card p {
  color: #dedede;
  font-size: 15px;
}

.stat-card .icon-img {
  width: 66px;
  height: 66px;
  margin-top: 14px;
  opacity: .92;
}

.benefits {
  padding: 28px 0 40px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 30px;
}

.benefit {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
}

.benefit h3 {
  margin-bottom: 7px;
  font-size: 16px;
}

.benefit p {
  color: var(--muted);
  font-size: 14px;
}

.case {
  padding: 62px 0;
}

.case-card {
  padding: clamp(28px, 4vw, 58px);
  display: grid;
  grid-template-columns: .9fr 1.4fr;
  gap: 38px;
  box-shadow: 0 28px 90px rgba(0,0,0,.28);
}

.case-card h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.03;
}

.case-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.case-columns article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.035);
}

.case-columns span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
}

.case-columns p,
.case-card p { color: #d5d5d5; }

.case-metrics {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.case-metrics strong {
  display: block;
  padding: 18px;
  color: var(--orange);
  font-size: 38px;
  border-top: 1px solid var(--line);
}

.case-metrics small {
  display: block;
  color: #fff;
  font-size: 15px;
}

.clients {
  overflow: hidden;
  padding: 30px 0;
}

.logo-track {
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.logo-strip {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: marquee 28s linear infinite;
}

.logo-strip:hover { animation-play-state: paused; }

.logo-strip span {
  display: grid;
  place-items: center;
  width: 220px;
  height: 64px;
  color: rgba(255,255,255,.55);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 800;
}

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

.final-cta {
  position: relative;
  min-height: 70vh;
  display: grid;
  align-items: end;
  padding: 130px 0 72px;
  overflow: hidden;
  background: #080808;
  border-bottom: 1px solid var(--line);
}

.node-pattern {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: .95;
  background:
    linear-gradient(180deg, rgba(8,8,8,0.05), #080808 88%),
    linear-gradient(90deg, rgba(8,8,8,.92), rgba(8,8,8,.38) 54%, rgba(8,8,8,.78)),
    var(--cta-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: drop-shadow(0 0 14px rgba(240,102,10,.65));
}

.node-pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, #080808 88%);
}

.final-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 40px;
}

.final-cta h2 {
  max-width: 790px;
  margin-bottom: 14px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.03;
}

.final-cta p {
  color: #e0e0e0;
  font-size: 20px;
}

.final-actions {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.footer {
  padding: 38px 0 48px;
  background:
    radial-gradient(circle at 0 0, rgba(255,255,255,.06), transparent 25%),
    #111;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .7fr .7fr 1fr;
  gap: 70px;
}

.footer img {
  width: 214px;
  height: auto;
  margin-bottom: 18px;
}

.footer p,
.footer a {
  color: var(--muted);
  font-size: 14px;
}

.footer h3 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.footer nav a {
  display: block;
  margin-bottom: 7px;
}

.socials {
  display: flex;
  gap: 18px;
  margin-top: 18px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #fff;
  font-weight: 800;
}

.problem {
  padding: 70px 0;
}

.problem-stack {
  display: grid;
  gap: 34px;
}

.problem-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(14px, 2vw, 41px);
  padding: clamp(18px, 3vw, 34px) 0;
}

.problem-feature:nth-child(2) {
  border-top: 0px solid rgba(255,255,255,.08);
  padding-top: clamp(34px, 5vw, 76px);
}

.problem-feature-reverse {
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
}

.problem-copy {
  max-width: 480px;
}

.problem-copy h2,
.stats-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.03;
}

.problem-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
}

.problem-image {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: #0a0a0a;
  box-shadow: 0 20px 70px rgba(0,0,0,.38);
}

.problem-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.5), transparent 45%),
    radial-gradient(circle at 78% 20%, rgba(240,102,10,.22), transparent 32%);
  pointer-events: none;
}

.problem-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.case-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 18px;
}

.case-track {
  position: relative;
  min-height: 450px;
}

.case-card {
  position: absolute;
  inset: 0;
  padding: clamp(28px, 4vw, 58px);
  display: grid;
  grid-template-columns: .78fr 1.42fr;
  gap: 34px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(.985);
  transition: opacity .45s ease, transform .45s ease;
  box-shadow: 0 28px 90px rgba(0,0,0,.28);
}

.case-card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.case-intro h3 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.06;
}

.case-person {
  display: inline-flex;
  padding: 9px 13px;
  border: 1px solid rgba(240,102,10,.42);
  border-radius: 999px;
  background: rgba(240,102,10,.08);
  color: #fff;
  font-weight: 700;
}

.case-columns {
  align-self: center;
}

.case-arrow {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: rgba(255,255,255,.045);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.case-arrow:hover {
  border-color: var(--orange);
  background: rgba(240,102,10,.12);
  transform: translateY(-2px);
}

.case-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.case-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.32);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.case-dot.is-active {
  width: 30px;
  border-radius: 999px;
  background: var(--orange);
}

.footer {
  padding: 64px 0 48px;
}

.footer-contact {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 24px;
  margin-bottom: 56px;
}

.footer-map,
.contact-form {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.012)),
    #141414;
  box-shadow: 0 24px 80px rgba(0,0,0,.26);
}

.footer-map {
  overflow: hidden;
}

.footer-map-copy {
  padding: clamp(24px, 3vw, 40px);
}

.footer-map-copy h2 {
  max-width: 680px;
  margin-bottom: 12px;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.03;
}

.footer-map-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 330px;
  border: 0;
  filter: grayscale(1) invert(.9) contrast(.88);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(24px, 3vw, 36px);
}

.contact-form > div,
.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form h3 {
  margin-bottom: 0;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.08;
}

.form-kicker {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 800;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 4px;
  background: rgba(0,0,0,.28);
  color: #fff;
  padding: 14px 15px;
  font: inherit;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 128px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  background: rgba(0,0,0,.36);
  box-shadow: 0 0 0 3px rgba(240,102,10,.14);
}

.recaptcha-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
}

.internal-hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: center;
  padding: calc(var(--header) + 72px) 0 82px;
  overflow: hidden;
  background: #050505;
  border-bottom: 1px solid var(--line);
}

.internal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5,5,5,.96), rgba(5,5,5,.72) 48%, rgba(5,5,5,.9)),
    radial-gradient(circle at 70% 36%, rgba(240,102,10,.22), transparent 28%);
}

.internal-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--hero-bg-image) center / cover no-repeat;
  
}

.internal-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: end;
  gap: clamp(32px, 6vw, 92px);
}

.internal-summary {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(15,15,15,.72);
  backdrop-filter: blur(16px);
}

.internal-summary h2 {
  margin-bottom: 16px;
  font-size: 24px;
}

.internal-summary ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.internal-summary li {
  position: relative;
  padding-left: 20px;
}

.internal-summary li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.internal-section {
  padding: clamp(58px, 7vw, 104px) 0;
}

.internal-split {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(32px, 6vw, 92px);
}

.internal-split h2,
.detail-process h2 {
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.04;
}

.internal-rich {
  color: #d8d8d8;
  font-size: 19px;
}

.internal-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.detail-process {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(32px, 6vw, 86px);
}

.detail-steps {
  display: grid;
  gap: 16px;
}

.detail-steps article {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  background: rgba(255,255,255,.035);
}

.detail-steps span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--orange);
  font-weight: 800;
}

.detail-steps h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.detail-steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.internal-final {
  min-height: 52vh;
}

.footer-grid {
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--orange);
  border: 1px solid currentColor;
  border-radius: 50%;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  display: block;
}

.icon-years::before,
.icon-globe::before {
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent 45%, currentColor 46% 54%, transparent 55%), linear-gradient(0deg, transparent 45%, currentColor 46% 54%, transparent 55%);
}

.icon-clock::before {
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
}
.icon-clock::after { width: 10px; height: 8px; border-left: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: translate(2px,-1px); }

.icon-managed::before,
.icon-provider::before {
  width: 22px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 3px;
}
.icon-managed::after,
.icon-provider::after {
  width: 28px;
  height: 2px;
  background: currentColor;
  transform: translateY(14px);
}

.icon-phone::before { width: 22px; height: 22px; border: solid currentColor; border-width: 0 0 3px 3px; border-radius: 0 0 0 12px; transform: rotate(-42deg); }
.icon-server::before { width: 26px; height: 24px; border: 2px solid currentColor; border-radius: 3px; background: repeating-linear-gradient(0deg, transparent 0 6px, currentColor 7px 8px); }
.icon-headset::before { width: 24px; height: 20px; border: 2px solid currentColor; border-bottom: 0; border-radius: 14px 14px 0 0; }
.icon-headset::after { width: 18px; height: 12px; border-left: 3px solid currentColor; border-right: 3px solid currentColor; transform: translateY(8px); }
.icon-printer::before { width: 24px; height: 18px; border: 2px solid currentColor; border-radius: 3px; }
.icon-printer::after { width: 18px; height: 10px; border: 2px solid currentColor; transform: translateY(-10px); }
.icon-shield::before,
.icon-badge::before,
.icon-alert::before { width: 25px; height: 28px; border: 2px solid currentColor; clip-path: polygon(50% 0, 94% 18%, 82% 78%, 50% 100%, 18% 78%, 6% 18%); }
.icon-cloud::before { width: 28px; height: 16px; border: 2px solid currentColor; border-radius: 18px; }
.icon-connect::before { width: 28px; height: 28px; border-top: 3px solid currentColor; border-right: 3px solid currentColor; border-radius: 50%; transform: rotate(25deg); }
.icon-consult::before,
.icon-target::before { width: 27px; height: 27px; border: 2px solid currentColor; border-radius: 50%; box-shadow: inset 0 0 0 5px #111; }
.icon-dashboard::before { width: 30px; height: 25px; border: 2px solid currentColor; border-radius: 3px; background: linear-gradient(currentColor,currentColor) 0 7px / 100% 2px no-repeat, linear-gradient(90deg,currentColor,currentColor) 11px 0 / 2px 100% no-repeat; }
.icon-team::before { width: 28px; height: 13px; border: 2px solid currentColor; border-top: 0; border-radius: 0 0 16px 16px; }
.icon-team::after { width: 27px; height: 9px; border-top: 2px solid currentColor; border-radius: 50%; transform: translateY(-10px); }
.icon-pin::before { width: 22px; height: 22px; border: 2px solid currentColor; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }
.icon-pin::after { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}

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

.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.delay-4 { transition-delay: .32s; }
.delay-5 { transition-delay: .40s; }

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

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

@media (max-width: 1180px) {
  .header-cta { display: none; }
  .nav { gap: 18px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .cards-grid.five { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-copy { padding-right: 0; }
  .benefit-grid { grid-template-columns: repeat(3, 1fr); }
  .problem-grid { grid-template-columns: 1fr; gap: 28px; }
  .problem-copy { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 32px; }
  .solution-label { margin-top: 0; }
}

@media (max-width: 900px) {
  :root { --header: 76px; }
  .menu-toggle { display: inline-flex; }
  .brand img { width: 170px; }
  .nav {
    position: fixed;
    inset: var(--header) 0 auto;
    display: grid;
    gap: 0;
    padding: 14px 18px 24px;
    background: rgba(5,5,5,.96);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform .3s ease;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav a::after { bottom: 8px; }

  .hero { min-height: auto; }
  .hero::before { background: linear-gradient(180deg, rgba(3,3,3,.78), #030303 76%); }
  .hero-grid { min-height: 650px; }
  .hero-copy { padding: 82px 0 28px; }
  .hero-actions,
  .final-actions { display: grid; }
  .btn { width: 100%; min-height: 54px; }
  .hero-metrics { grid-template-columns: repeat(2, 1fr); max-width: none; margin-inline: auto; padding-bottom: 42px; }
  .scroll-cue { display: none; }

  .chaos-row { grid-template-columns: 1fr; text-align: center; }
  .chaos-row b { transform: rotate(90deg); }
  .small-services { flex-wrap: wrap; }
  .hub { position: relative; top: auto; margin: 24px auto 0; transform: none; left: auto; }
  .hub::before { display: none; }

  .timeline { grid-template-columns: 1fr; text-align: left; }
  .timeline::before { left: 18px; right: auto; top: 0; bottom: 0; border-top: 0; border-left: 1px dashed var(--orange); }
  .step { display: grid; grid-template-columns: 48px 1fr; gap: 0 18px; }
  .step strong { margin: 0; }
  .step p { margin: 0; max-width: 100%; }
  .step h3 { margin-top: 4px; }

  .case-card,
  .final-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .case-columns,
  .case-metrics { grid-template-columns: 1fr; }
  .final-actions { justify-content: stretch; }
}

@media (max-width: 680px) {
  .container,
  .header-inner { width: min(calc(100% - 24px), var(--container)); }
  h1 { font-size: clamp(40px, 12vw, 54px); }
  .hero-text { font-size: 17px; }
  .hero-metrics { grid-template-columns: 1fr; gap: 18px; }
  .metric { max-width: 250px; }
  .problem { padding-top: 38px; }
  .problem-copy { grid-template-columns: 1fr; }
  .solution-label { margin-top: 32px; }
  .cards-grid.five,
  .stats-grid,
  .benefit-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .final-cta { padding: 96px 0 50px; }
  .footer-grid { gap: 30px; }
}

@media (max-width: 1180px) {
  .problem-feature {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  }

  .problem-feature-reverse {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  }

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

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

}






@media (max-width: 900px) {
  .problem-feature {
    grid-template-columns: 1fr;
  }

  .problem-feature-reverse {
    grid-template-columns: 1fr;
  }

  .problem-copy {
    max-width: 100%;
  }

  .problem-image,
  .problem-image img {
    min-height: 280px;
  }

  .case-carousel {
    grid-template-columns: 1fr;
  }

  .case-track {
    min-height: 560px;
  }

  .case-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .case-prev,
  .case-next {
    grid-row: 2;
  }

  .case-prev {
    justify-self: end;
    margin-right: 34px;
  }

  .case-next {
    justify-self: start;
    margin-left: 34px;
  }

  .case-dots {
    grid-row: 3;
  }

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

  .internal-hero-grid,
  .internal-split,
  .detail-process {
    grid-template-columns: 1fr;
  }

  .internal-summary {
    max-width: 560px;
  }
}

@media (max-width: 680px) {
  .problem {
    padding: 48px 0;
  }

  .problem-feature {
    padding: 18px 0;
  }

  .problem-image,
  .problem-image img {
    min-height: 230px;
  }

  .case-track {
    min-height: 720px;
  }

  .case-arrow {
    width: 48px;
    height: 48px;
  }

  .footer-map-copy,
  .contact-form {
    padding: 22px;
  }

  .footer-map iframe {
    height: 260px;
  }

  .internal-hero {
    min-height: auto;
    padding: calc(var(--header) + 48px) 0 58px;
  }

  .internal-cards {
    grid-template-columns: 1fr;
  }

  .internal-rich {
    font-size: 17px;
  }
}
