/* ============================================================
   Japtini Logistics — styles.css
   Light theme. Brand: ember/red/amber on warm paper.
   ============================================================ */
:root {
  --paper: #fbf8f3;
  --paper-2: #f4ede2;
  --white: #ffffff;
  --ink: #221c17;
  --ink-2: #43392f;
  --mist: #7a7066;
  --line: #e8ddcc;
  --line-2: #f0e7d9;
  --ember: #f75a25;
  --signal: #f1362f;
  --amber: #fb9620;
  --footer: #100e14;
  --footer-line: rgba(255, 255, 255, 0.1);
  --grad: linear-gradient(
    100deg,
    var(--amber) 0%,
    var(--ember) 48%,
    var(--signal) 100%
  );
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow: 0 26px 60px -38px rgba(60, 40, 20, 0.45);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Archivo", sans-serif;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--grad);
}

/* ---------- buttons ---------- */
.btn {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  border: 0;
  padding: 14px 24px;
  border-radius: 3px;
  letter-spacing: -0.01em;
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 24px -10px rgba(247, 90, 37, 0.65);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -10px rgba(247, 90, 37, 0.8);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--ember);
  color: var(--ember);
}
.btn .arr {
  transition: transform 0.25s var(--ease);
}
.btn:hover .arr {
  transform: translateX(4px);
}

/* ---------- header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 248, 243, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition:
    box-shadow 0.3s var(--ease),
    background 0.3s;
}
header.shrink {
  background: rgba(251, 248, 243, 0.96);
  box-shadow: 0 6px 28px -20px rgba(60, 40, 20, 0.5);
}
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 74px;
  transition: height 0.3s var(--ease);
}
header.shrink .nav {
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}
.brand img {
  width: 70px;
  height: 40px;
  border-radius: 2px;
}
.brand .lock {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}
.brand .name {
  font-family: "Archivo";
  font-weight: 800;
  color: var(--ink);
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
}
.brand .name i {
  font-style: normal;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ember);
  margin-left: 5px;
  vertical-align: 1px;
}
.brand .tag {
  font-family: "IBM Plex Mono";
  font-size: 9.5px;
  letter-spacing: 0.16em;
  color: var(--mist);
  text-transform: uppercase;
  line-height: 1;
}
.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
}
.nav-links a {
  color: var(--ink-2);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover {
  color: var(--ember);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0;
  background: var(--grad);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  display: flex;
  gap: 14px;
  align-items: center;
}
.nav-cta .track {
  color: var(--ink);
  font-weight: 600;
  font-size: 14.5px;
  font-family: "Archivo";
  display: flex;
  gap: 7px;
  align-items: center;
  cursor: pointer;
}
.nav-cta .track:hover {
  color: var(--ember);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: 0.3s;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 92px;
  background:
    linear-gradient(
      110deg,
      rgba(16, 14, 20, 0.93) 0%,
      rgba(16, 14, 20, 0.82) 34%,
      rgba(34, 28, 23, 0.52) 64%,
      rgba(34, 28, 23, 0.28) 100%
    ),
    url("https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?q=80&w=1920&auto=format&fit=crop")
      center 58% / cover no-repeat,
    var(--footer);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 54px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero .eyebrow {
  color: var(--amber);
}
.hero h1 {
  font-size: clamp(40px, 5.7vw, 72px);
  font-weight: 900;
  letter-spacing: -0.035em;
  color: #fff;
}
.hero h1 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  max-width: 520px;
  margin: 22px 0 32px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-cta .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
}
.hero-cta .btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
}
.hero-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-meta .m .n {
  font-family: "Archivo";
  font-weight: 800;
  font-size: 27px;
  color: #fff;
}
.hero-meta .m .l {
  font-family: "IBM Plex Mono";
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
}

/* live trip card (signature) */
.trip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.trip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
}
.trip-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.trip-code {
  font-family: "IBM Plex Mono";
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.trip-code b {
  color: var(--ember);
}
.pill {
  font-family: "IBM Plex Mono";
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.pill.live {
  background: rgba(241, 54, 47, 0.08);
  color: var(--signal);
  border: 1px solid rgba(241, 54, 47, 0.28);
}
.pill.live .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  animation: ping 1.8s infinite;
}
@keyframes ping {
  0% {
    box-shadow: 0 0 0 0 rgba(241, 54, 47, 0.55);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(241, 54, 47, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(241, 54, 47, 0);
  }
}
.route {
  position: relative;
  padding: 6px 4px 2px;
}
.route-line {
  position: relative;
  height: 3px;
  background: var(--line);
  border-radius: 3px;
  margin: 38px 6px 30px;
}
.route-prog {
  position: absolute;
  inset: 0;
  width: 62%;
  background: var(--grad);
  border-radius: 3px;
}
.truck {
  position: absolute;
  top: 50%;
  left: 62%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px -4px rgba(247, 90, 37, 0.6);
  z-index: 3;
}
.truck svg {
  width: 18px;
  height: 18px;
}
.endpt {
  position: absolute;
  top: -32px;
  font-family: "IBM Plex Mono";
  font-size: 11px;
  color: var(--ink);
}
.endpt small {
  display: block;
  color: var(--mist);
  font-size: 10px;
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.endpt.a {
  left: 0;
}
.endpt.b {
  right: 0;
  text-align: right;
}
.node {
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.node.a {
  left: 0;
  background: var(--amber);
  border-color: var(--amber);
}
.node.b {
  left: 100%;
}
.trip-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
  margin-top: 6px;
}
.trip-foot div {
  background: var(--paper);
  padding: 13px 14px;
}
.trip-foot .k {
  font-family: "IBM Plex Mono";
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--mist);
  text-transform: uppercase;
}
.trip-foot .v {
  font-family: "Archivo";
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-top: 3px;
}

/* ---------- marquee ---------- */
.marquee {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  gap: 54px;
  white-space: nowrap;
  width: max-content;
  animation: slide 32s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}
.marquee-track span {
  font-family: "Archivo";
  font-weight: 700;
  font-size: 15px;
  color: var(--mist);
  display: flex;
  align-items: center;
  gap: 54px;
}
.marquee-track span::after {
  content: "\25C6";
  color: var(--ember);
  font-size: 9px;
}
@keyframes slide {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- generic section ---------- */
.sec {
  padding: 96px 0;
}
.sec-head {
  max-width: 660px;
  margin-bottom: 54px;
}
.sec-head h2 {
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 800;
  margin: 18px 0 16px;
  letter-spacing: -0.03em;
}
.sec-head p {
  color: var(--mist);
  font-size: 17px;
}

/* stats band */
.stats {
  background: var(--paper-2);
  padding: 74px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.stat {
  padding: 8px 22px;
  border-left: 1px solid var(--line);
}
.stat:first-child {
  border-left: 0;
  padding-left: 0;
}
.stat .num {
  font-family: "Archivo";
  font-weight: 900;
  font-size: clamp(32px, 3.4vw, 44px);
  letter-spacing: -0.03em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat .lab {
  font-family: "IBM Plex Mono";
  font-size: 12px;
  letter-spacing: 0.07em;
  color: var(--mist);
  margin-top: 12px;
  line-height: 1.45;
}

/* services */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.svc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s;
}
.svc::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--grad);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s var(--ease);
}
.svc:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.svc:hover::before {
  transform: scaleY(1);
}
.svc .ic {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: rgba(247, 90, 37, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.svc .ic svg {
  width: 26px;
  height: 26px;
  stroke: var(--ember);
}
.svc .no {
  position: absolute;
  top: 24px;
  right: 26px;
  font-family: "IBM Plex Mono";
  font-size: 13px;
  color: var(--line);
}
.svc h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.svc ul {
  list-style: none;
  margin-top: 14px;
}
.svc li {
  font-size: 14.5px;
  color: var(--ink-2);
  padding: 8px 0 8px 22px;
  position: relative;
  border-top: 1px solid var(--line-2);
}
.svc li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--ember);
  font-family: "IBM Plex Mono";
  font-size: 13px;
}

/* value chain */
.chain {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 54px 44px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.chain::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(247, 90, 37, 0.12), transparent 70%);
}
.chain-head {
  position: relative;
  z-index: 2;
  max-width: 580px;
  margin-bottom: 44px;
}
.chain-head h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
}
.chain-head p {
  color: var(--mist);
  margin-top: 14px;
}
.flow {
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}
.flow-node {
  flex: 1;
  min-width: 130px;
  position: relative;
  padding: 0 6px;
}
.flow-node .ring {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-family: "IBM Plex Mono";
  font-size: 13px;
  color: var(--ember);
  background: var(--paper);
}
.flow-node.j .ring {
  border-color: transparent;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(247, 90, 37, 0.6);
}
.flow-node h4 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.flow-node p {
  font-size: 12.5px;
  color: var(--mist);
  margin-top: 6px;
  line-height: 1.4;
}
.flow-node::after {
  content: "";
  position: absolute;
  top: 27px;
  right: -2px;
  width: calc(100% - 54px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--line) 0 6px,
    transparent 6px 12px
  );
}
.flow-node:last-child::after {
  display: none;
}
.flow-node.j::after {
  background: var(--grad);
}

/* network */
.net {
  background: var(--paper-2);
}
.net-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 54px;
  align-items: center;
}
.zones {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.zone {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  background: var(--white);
  transition: 0.25s var(--ease);
}
.zone:hover {
  border-color: var(--ember);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.zone .z {
  font-family: "IBM Plex Mono";
  font-size: 11px;
  color: var(--ember);
  letter-spacing: 0.1em;
}
.zone h4 {
  font-size: 17px;
  margin-top: 6px;
  font-weight: 700;
}
.zone p {
  font-size: 13px;
  color: var(--mist);
  margin-top: 5px;
}
.net-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.net-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(180, 150, 110, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 150, 110, 0.12) 1px, transparent 1px);
  background-size: 38px 38px;
}
.net-card .big {
  position: relative;
  font-family: "Archivo";
  font-weight: 900;
  font-size: 86px;
  letter-spacing: -0.05em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 0.9;
}
.net-card .big-lab {
  position: relative;
  font-family: "IBM Plex Mono";
  font-size: 13px;
  color: var(--mist);
  letter-spacing: 0.1em;
  margin-top: 8px;
  text-transform: uppercase;
}
.net-card .ll {
  position: relative;
  margin-top: 30px;
  display: grid;
  gap: 14px;
}
.net-card .ll div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink-2);
}
.net-card .ll svg {
  width: 18px;
  height: 18px;
  stroke: var(--ember);
  flex-shrink: 0;
  margin-top: 2px;
}

/* why */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.why-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px;
  border: 1px solid var(--line);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.why-card .ic {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why-card .ic svg {
  width: 21px;
  height: 21px;
  stroke: #fff;
}
.why-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.why-card p {
  font-size: 14px;
  color: var(--mist);
}

/* ---------- internal page banner (e.g. Leadership) ---------- */
.page-banner {
  position: relative;
  overflow: hidden;
  padding: 100px 0 84px;
  background:
    linear-gradient(
      110deg,
      rgba(16, 14, 20, 0.9) 0%,
      rgba(16, 14, 20, 0.76) 42%,
      rgba(34, 28, 23, 0.46) 100%
    ),
    url("https://images.unsplash.com/photo-1573164574572-cb89e39749b4?q=80&w=1920&auto=format&fit=crop")
      center 30% / cover no-repeat,
    var(--footer);
}
.page-banner .inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.page-banner .eyebrow {
  color: var(--amber);
}
.page-banner h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 16px 0 14px;
}
.page-banner p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  max-width: 580px;
}

/* ---------- leadership team ---------- */
.lead-note {
  background: var(--paper-2);
  border: 1px dashed var(--line);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 13.5px;
  color: var(--ink-2);
  margin-bottom: 44px;
  max-width: 780px;
}
.lead-note b {
  color: var(--ember);
}
.lead-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.lead-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.lead-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.lead-card .photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  border: 3px solid var(--paper-2);
  box-shadow: 0 8px 20px -10px rgba(60, 40, 20, 0.4);
}
.lead-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lead-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 5px;
}
.lead-card .dept {
  display: inline-block;
  font-family: "IBM Plex Mono";
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 12px;
}
.lead-card p {
  font-size: 13.5px;
  color: var(--mist);
  line-height: 1.55;
}

/* mini CTA band used on internal pages */
.mini-cta {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 64px 0;
  text-align: center;
}
.mini-cta h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 14px;
}
.mini-cta p {
  color: var(--mist);
  margin: 0 auto 26px;
  max-width: 520px;
}

/* CTA / contact */
.cta-sec {
  background: var(--paper);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.cta-sec::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -60px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(251, 150, 32, 0.14),
    transparent 70%
  );
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 2;
  align-items: start;
}
.cta-grid h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.035em;
}
.cta-grid h2 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-grid .lead {
  color: var(--ink-2);
  font-size: 17px;
  margin: 20px 0 30px;
  max-width: 440px;
}
.contact-list {
  display: grid;
  gap: 18px;
}
.contact-list a,
.contact-list div {
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--ink);
  font-size: 15px;
}
.contact-list .ic {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-list .ic svg {
  width: 18px;
  height: 18px;
  stroke: var(--ember);
}
.contact-list small {
  display: block;
  color: var(--mist);
  font-family: "IBM Plex Mono";
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-family: "IBM Plex Mono";
  font-size: 11px;
  letter-spacing: 0.07em;
  color: var(--mist);
  text-transform: uppercase;
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--ink);
  font-family: "IBM Plex Sans";
  font-size: 14.5px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(247, 90, 37, 0.12);
}
.field textarea {
  resize: vertical;
  min-height: 96px;
}
.form .note {
  font-family: "IBM Plex Mono";
  font-size: 11px;
  color: var(--mist);
  margin-top: 6px;
}
.form-ok {
  display: none;
  text-align: center;
  padding: 28px 20px;
}
.form-ok.show {
  display: block;
}
.form-ok .check {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.form-ok h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.form-ok p {
  color: var(--mist);
  font-size: 14.5px;
}

/* footer */
footer {
  background: var(--footer);
  color: #9a9289;
  padding: 64px 0 30px;
}
footer .brand .name {
  color: #fff;
}
footer .brand img {
  border-radius: 8px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 46px;
}
.foot-brand .brand {
  margin-bottom: 18px;
}
.foot-brand p {
  font-size: 14px;
  max-width: 300px;
}
.foot-col h5 {
  font-family: "Archivo";
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.foot-col a {
  display: block;
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.2s;
  color: #9a9289;
}
.foot-col a:hover {
  color: var(--amber);
}
.foot-bottom {
  border-top: 1px solid var(--footer-line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: "IBM Plex Mono";
  font-size: 12px;
  letter-spacing: 0.04em;
}
.foot-bottom .arila b {
  color: var(--ember);
}

/* responsive */
@media (max-width: 900px) {
  .hero-grid,
  .net-grid,
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 16px;
  }
  .stat {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 20px;
  }
  .stat:first-child,
  .stat:nth-child(2) {
    border-top: 0;
    padding-top: 0;
  }
  .svc-grid,
  .why-grid,
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    gap: 14px;
  }
  .lead-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .foot-grid {
    gap: 32px;
  }
  .nav-links,
  .nav-cta .track {
    display: none;
  }
  .brand .tag,
  .brand .name i {
    display: none;
  }
  .nav-cta .btn-primary {
    padding: 10px 15px;
    font-size: 13px;
    white-space: nowrap;
  }
  .burger {
    display: flex;
  }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .flow-node {
    min-width: 46%;
    margin-bottom: 24px;
  }
  .flow-node::after {
    display: none;
  }
  .form .row {
    grid-template-columns: 1fr;
  }
  .chain {
    padding: 38px 26px;
  }
}
@media (max-width: 520px) {
  .why-grid,
  .zones,
  .lead-grid {
    grid-template-columns: 1fr;
  }
  .hero-meta {
    gap: 22px;
  }
}
