/* ==========================================================================
   Akimbaev Logistics — landing page styles
   Palette: navy / blue + orange
   ========================================================================== */

:root {
  --navy-950: #051227;
  --navy-900: #071a36;
  --navy-800: #0b2447;
  --navy-700: #12335f;
  --blue-600: #1f63e0;
  --blue-500: #3b7bf0;
  --blue-100: #e7effd;
  --orange-500: #f7761e;
  --orange-400: #ff8a3d;
  --orange-700: #c4520b;   /* orange for text on light backgrounds (AA contrast) */
  --orange-100: #fff0e5;

  --ink: #0e1a2b;
  --text: #3d4b60;
  --muted: #6b7a90;
  --line: #e2e8f1;
  --bg: #ffffff;
  --bg-soft: #f3f6fb;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(11, 36, 71, .06);
  --shadow: 0 18px 40px -18px rgba(11, 36, 71, .25);
  --shadow-lg: 0 30px 70px -25px rgba(7, 26, 54, .4);

  --container: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
  --header-h: 72px;
  --section-y: clamp(72px, 9vw, 120px);

  --font-body: "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Barlow Condensed", "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

@media (min-width: 1100px) {
  :root { --header-h: 84px; }
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) - 1px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

img, picture, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }

h1, h2, h3, h4 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: .01em;
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.nowrap { white-space: nowrap; }

.icon {
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  padding: 10px 18px;
  background: var(--orange-500);
  color: var(--navy-950);
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--orange-700);
  font-weight: 700;
  font-size: .875rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: var(--orange-500);
}
.eyebrow--light,
.section-head--light .eyebrow { color: var(--orange-400); }

.section-title {
  font-size: clamp(2.1rem, 4.4vw, 3.25rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-sub { color: var(--muted); font-size: 1.125rem; }

.lead {
  font-size: 1.1875rem;
  color: var(--ink);
  font-weight: 500;
}

.section { padding-block: var(--section-y); }
.section--soft { background: var(--bg-soft); }

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}
.section-head .eyebrow { justify-content: center; }
.section-head--light .section-title { color: #fff; }
.section-head--light .section-sub { color: rgba(255, 255, 255, .72); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .9375rem;
  line-height: 1.2;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease),
              transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn .icon { width: 1.15em; height: 1.15em; transition: transform .25s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover .icon--arrow { transform: translateX(3px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--orange-500);
  color: var(--navy-950);
  box-shadow: 0 10px 24px -10px rgba(247, 118, 30, .7);
}
.btn--primary:hover { background: var(--orange-400); box-shadow: 0 16px 30px -12px rgba(247, 118, 30, .8); }

.btn--blue { background: var(--blue-600); color: #fff; }
.btn--blue:hover { background: var(--navy-800); }

.btn--ghost { border-color: rgba(255, 255, 255, .55); color: #fff; }
.btn--ghost:hover { background: #fff; border-color: #fff; color: var(--navy-900); }

.btn--outline { border-color: var(--navy-800); color: var(--navy-800); }
.btn--outline:hover { background: var(--navy-800); color: #fff; }

.btn--sm { padding: 11px 20px; font-size: .875rem; }
.btn--lg { padding: 17px 30px; font-size: 1rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-600);
  font-weight: 700;
  font-size: .9375rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.link-arrow .icon { transition: transform .25s var(--ease); }
.link-arrow:hover { color: var(--orange-700); }
.link-arrow:hover .icon { transform: translateX(4px); }

.call-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.25;
}
.call-link small {
  display: block;
  color: var(--muted);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.call-link__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange-100);
  color: var(--orange-700);
  transition: background-color .25s, color .25s;
}
.call-link:hover .call-link__icon { background: var(--orange-500); color: var(--navy-950); }

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}

.header__logo { position: relative; z-index: 2; display: block; flex-shrink: 0; }
.logo { height: 40px; width: auto; }
.logo--dark { position: absolute; inset: 0; opacity: 0; }
.logo--light, .logo--dark { transition: opacity .3s var(--ease); }

.header.is-scrolled {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 6px 24px -12px rgba(7, 26, 54, .3);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  backdrop-filter: saturate(160%) blur(10px);
}
.header.is-scrolled .logo--light { opacity: 0; }
.header.is-scrolled .logo--dark { opacity: 1; }
.header.menu-open .logo--light { opacity: 1; }
.header.menu-open .logo--dark { opacity: 0; }

.header__actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
}

.header__phone {
  display: none;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  transition: color .3s;
}
.header__phone small {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange-400);
}
.header__phone-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .3);
  transition: border-color .3s;
}
.header__phone-icon .icon { width: 18px; height: 18px; }
.header.is-scrolled .header__phone { color: var(--ink); }
.header.is-scrolled .header__phone small { color: var(--orange-700); }
.header.is-scrolled .header__phone-icon { border-color: var(--line); color: var(--orange-700); }

.header__cta { display: none; }

/* Burger */
.burger {
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .12);
  transition: background-color .3s;
}
.burger span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform .3s var(--ease), opacity .2s, background-color .3s;
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 29px; }
.header.is-scrolled .burger { background: var(--bg-soft); }
.header.is-scrolled .burger span { background: var(--navy-900); }
.header.menu-open .burger { background: rgba(255, 255, 255, .12); }
.header.menu-open .burger span { background: #fff; }
.header.menu-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header.menu-open .burger span:nth-child(2) { opacity: 0; }
.header.menu-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile navigation panel */
.nav {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  padding: calc(var(--header-h) + 24px) var(--gutter) 32px;
  background:
    radial-gradient(circle at 100% 0%, rgba(31, 99, 224, .35), transparent 55%),
    var(--navy-900);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s .3s;
}
.header.menu-open .nav {
  visibility: visible;
  opacity: 1;
  transform: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.nav__list { display: flex; flex-direction: column; }
.nav__link {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav__link:hover, .nav__link.is-active { color: var(--orange-400); }

.nav__extra { display: grid; gap: 16px; }
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
}
.nav__phone .icon { color: var(--orange-400); }

@media (min-width: 560px) {
  .header__cta { display: inline-flex; }
}

@media (min-width: 1100px) {
  .logo { height: 46px; }
  .burger { display: none; }

  .nav {
    position: static;
    flex-direction: row;
    padding: 0;
    background: none;
    overflow: visible;
    visibility: visible;
    opacity: 1;
    transform: none;
    transition: none;
  }
  .nav__list { flex-direction: row; gap: clamp(18px, 2.2vw, 34px); }
  .nav__link {
    position: relative;
    padding: 8px 0;
    border: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .02em;
    text-transform: none;
    color: rgba(255, 255, 255, .92);
  }
  .nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--orange-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
  }
  .nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
  .nav__link:hover, .nav__link.is-active { color: #fff; }
  .header.is-scrolled .nav__link { color: var(--ink); }
  .header.is-scrolled .nav__link:hover,
  .header.is-scrolled .nav__link.is-active { color: var(--blue-600); }
  .nav__extra { display: none; }
}

@media (min-width: 1280px) {
  .header__phone { display: inline-flex; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding-block: calc(var(--header-h) + 48px) 140px;
  color: #fff;
  background: var(--navy-900);
  isolation: isolate;
  overflow: hidden;
}
.hero__bg, .hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.hero__bg img {
  object-fit: cover;
  object-position: 15% 55%;
  animation: hero-zoom 18s var(--ease) both;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 18, 39, .55) 0%, rgba(5, 18, 39, 0) 22%),
    linear-gradient(0deg, rgba(5, 18, 39, .85) 0%, rgba(5, 18, 39, 0) 38%),
    linear-gradient(90deg, rgba(5, 18, 39, .92) 0%, rgba(7, 26, 54, .78) 38%, rgba(7, 26, 54, .25) 70%, rgba(7, 26, 54, .1) 100%);
}

@keyframes hero-zoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.hero__content { max-width: 820px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.pulse-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange-500);
}
.pulse-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--orange-500);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  from { transform: scale(1); opacity: .8; }
  to   { transform: scale(3); opacity: 0; }
}

.hero__title {
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(3rem, 7.4vw, 5.75rem);
  font-weight: 800;
  line-height: .95;
  text-transform: uppercase;
}
.hero__title span { display: block; color: var(--orange-500); }

.hero__text {
  max-width: 580px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  color: rgba(255, 255, 255, .9);
  font-weight: 600;
  font-size: .9375rem;
}
.hero__badges li { display: inline-flex; align-items: center; gap: 8px; }
.hero__badges .icon {
  width: 22px;
  height: 22px;
  padding: 4px;
  border-radius: 50%;
  background: var(--orange-500);
  color: var(--navy-950);
  stroke-width: 3;
}

@media (max-width: 559px) {
  .hero__cta .btn { flex: 1 1 100%; }
}

/* ==========================================================================
   Stats
   ========================================================================== */
.stats {
  position: relative;
  z-index: 5;
  margin-top: -84px;
}
.stats__card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.stat {
  position: relative;
  padding: 26px 22px;
  text-align: center;
}
.stat:nth-child(odd) { border-right: 1px solid var(--line); }
.stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
.stat__value {
  display: block;
  color: var(--navy-800);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
}
.stat__value::after {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  margin: 12px auto 10px;
  border-radius: 2px;
  background: var(--orange-500);
}
.stat__label { color: var(--muted); font-weight: 600; font-size: .9375rem; line-height: 1.35; }

@media (min-width: 900px) {
  .stats__card { grid-template-columns: repeat(4, 1fr); }
  .stat { padding: 36px 24px; }
  .stat:nth-child(-n+2) { border-bottom: 0; }
  .stat:not(:last-child) { border-right: 1px solid var(--line); }
}

/* ==========================================================================
   About
   ========================================================================== */
.about__grid {
  display: grid;
  gap: 56px;
  align-items: center;
}

.about__media {
  position: relative;
  padding: 0 0 56px;
  max-width: 560px;
}
.about__img-main {
  width: 82%;
  aspect-ratio: 11 / 13;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.about__img-sub {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  aspect-ratio: 32 / 26;
  object-fit: cover;
  border: 8px solid #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about__media::before {
  content: "";
  position: absolute;
  top: -18px;
  left: -18px;
  width: 120px;
  height: 120px;
  border-radius: var(--radius);
  background-image: radial-gradient(var(--orange-500) 2px, transparent 2.5px);
  background-size: 16px 16px;
  opacity: .5;
  z-index: -1;
}
.about__badge {
  position: absolute;
  top: 28px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 230px;
  padding: 14px 18px;
  border-radius: var(--radius);
  background: var(--navy-900);
  color: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow-lg);
  font-size: .875rem;
  line-height: 1.35;
}
.about__badge strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.375rem;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.about__badge-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--orange-500);
  color: var(--navy-950);
}

.checklist {
  display: grid;
  gap: 12px;
  margin: 28px 0 36px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink);
  font-weight: 600;
}
.checklist .icon {
  width: 24px;
  height: 24px;
  margin-top: 1px;
  padding: 5px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-600);
  stroke-width: 3;
}

.about__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px 32px;
}

@media (min-width: 640px) {
  .checklist { grid-template-columns: 1fr 1fr; gap: 14px 24px; }
}

@media (min-width: 900px) {
  .about__grid { grid-template-columns: 1fr 1.05fr; gap: clamp(48px, 6vw, 88px); }
}

/* ==========================================================================
   Services
   ========================================================================== */
.services__grid {
  display: grid;
  gap: 28px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.service-card__media { position: relative; }
.service-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 26, 54, .35), rgba(7, 26, 54, 0) 55%);
}
.service-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__media { overflow: hidden; }

.service-card__icon {
  position: absolute;
  left: 24px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--orange-500);
  color: var(--navy-950);
  box-shadow: 0 10px 20px -8px rgba(0, 0, 0, .45);
}
.service-card__icon .icon { width: 26px; height: 26px; }

.service-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 26px 26px 28px;
}
.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.625rem;
  text-transform: uppercase;
}
.service-card p { flex: 1; margin-bottom: 20px; color: var(--text); }

@media (min-width: 640px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
}

/* ==========================================================================
   Why us
   ========================================================================== */
.why {
  position: relative;
  color: rgba(255, 255, 255, .74);
  background:
    radial-gradient(circle at 0% 0%, rgba(31, 99, 224, .38), transparent 42%),
    radial-gradient(circle at 100% 100%, rgba(247, 118, 30, .16), transparent 40%),
    var(--navy-900);
  overflow: hidden;
}
.why::before {
  /* subtle highway lane lines */
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 120px);
  pointer-events: none;
}
.why .container { position: relative; }

.why__grid {
  display: grid;
  gap: 20px;
}

.feature {
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .035);
  transition: border-color .3s, background-color .3s, transform .35s var(--ease);
}
.feature:hover {
  border-color: rgba(247, 118, 30, .5);
  background: rgba(255, 255, 255, .06);
  transform: translateY(-4px);
}
.feature__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue-600), var(--navy-700));
  color: #fff;
  box-shadow: 0 12px 24px -12px rgba(31, 99, 224, .8);
}
.feature__icon .icon { width: 28px; height: 28px; }
.feature:hover .feature__icon { background: var(--orange-500); color: var(--navy-950); box-shadow: 0 12px 24px -12px rgba(247, 118, 30, .8); }
.feature h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.5rem;
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .why__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* ==========================================================================
   Process
   ========================================================================== */
.steps {
  position: relative;
  display: grid;
  gap: 24px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 34px 28px 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.step__num {
  position: absolute;
  top: 18px;
  right: 24px;
  color: var(--blue-100);
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
}
.step__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--navy-800);
  color: #fff;
  box-shadow: 0 0 0 8px var(--orange-100);
}
.step__icon .icon { width: 28px; height: 28px; }
.step:hover .step__icon { background: var(--orange-500); color: var(--navy-950); }
.step h3 {
  position: relative;
  margin-bottom: 10px;
  font-size: 1.5rem;
  text-transform: uppercase;
}
.step p { position: relative; color: var(--text); }

@media (min-width: 640px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
  .steps::before {
    /* dashed route connecting the steps */
    content: "";
    position: absolute;
    top: 66px;
    left: 8%;
    right: 8%;
    border-top: 2px dashed rgba(247, 118, 30, .55);
    z-index: 0;
  }
}

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  position: relative;
  padding-block: clamp(72px, 9vw, 110px);
  color: rgba(255, 255, 255, .86);
  background: var(--navy-900);
  isolation: isolate;
  overflow: hidden;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 72%;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(5, 18, 39, .92) 0%, rgba(11, 36, 71, .7) 50%, rgba(11, 36, 71, .2) 100%);
}
.cta-banner::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--orange-500);
}
.cta-banner__inner {
  display: grid;
  gap: 32px;
  align-items: center;
}
.cta-banner__title {
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  font-weight: 800;
  text-transform: uppercase;
}
.cta-banner p { font-size: 1.1875rem; max-width: 560px; }
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: 14px; }

@media (max-width: 559px) {
  .cta-banner__actions .btn { flex: 1 1 100%; }
}
@media (min-width: 1024px) {
  .cta-banner__inner { grid-template-columns: 1fr auto; gap: 48px; }
}

/* ==========================================================================
   Careers
   ========================================================================== */
.careers__grid {
  display: grid;
  gap: 56px;
  align-items: center;
}

.careers__media {
  position: relative;
  max-width: 520px;
  margin-right: 18px;
}
.careers__media::before {
  content: "";
  position: absolute;
  top: 18px;
  right: -18px;
  bottom: -18px;
  left: 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  z-index: 0;
}
.careers__media img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.careers__badge {
  position: absolute;
  left: -12px;
  bottom: 34px;
  display: grid;
  gap: 8px;
  max-width: 280px;
  padding: 18px 22px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.careers__badge strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.375rem;
  line-height: 1.1;
  text-transform: uppercase;
}
.tag {
  justify-self: start;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-600);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.benefits {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}
.benefits li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.3;
}
.benefits__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--orange-100);
  color: var(--orange-700);
}
.benefits__icon .icon { width: 22px; height: 22px; }

.requirements {
  margin-bottom: 32px;
  padding: 16px 20px;
  border-left: 4px solid var(--orange-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: #fff;
  color: var(--text);
  font-size: 1rem;
}
.requirements strong { color: var(--ink); }

.careers__actions { display: flex; flex-wrap: wrap; gap: 14px; }

@media (max-width: 559px) {
  .careers__actions .btn, .about__actions .btn { flex: 1 1 100%; }
}

@media (min-width: 640px) {
  .benefits { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 899px) {
  .about__media, .careers__media { margin-inline: auto; }
  .careers__media { width: calc(100% - 18px); }
}
@media (min-width: 900px) {
  .careers__grid { grid-template-columns: .9fr 1.1fr; gap: clamp(56px, 6vw, 88px); }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq__grid {
  display: grid;
  gap: 40px;
}
.faq__text { margin-bottom: 28px; color: var(--muted); font-size: 1.125rem; }

.faq__list { display: grid; gap: 14px; }

.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color .3s, box-shadow .3s;
}
.faq__item[open] {
  border-color: rgba(31, 99, 224, .35);
  box-shadow: var(--shadow-sm);
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: var(--ink);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--blue-600); }
.faq__item p { padding: 0 22px 22px; color: var(--text); }

.faq__toggle {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--navy-800);
  transition: transform .3s var(--ease), background-color .3s, color .3s;
}
.faq__toggle .icon { width: 18px; height: 18px; }
.faq__item[open] .faq__toggle {
  transform: rotate(45deg);
  background: var(--orange-500);
  color: var(--navy-950);
}

@media (min-width: 900px) {
  .faq__grid { grid-template-columns: .8fr 1.2fr; gap: 72px; align-items: start; }
  .faq__intro { position: sticky; top: calc(var(--header-h) + 32px); }
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact__grid {
  display: grid;
  gap: 28px;
}

.contact__info {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  color: rgba(255, 255, 255, .8);
  overflow: hidden;
  isolation: isolate;
}
.contact__info-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact__info::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(160deg, rgba(7, 26, 54, .96) 0%, rgba(11, 36, 71, .9) 55%, rgba(18, 51, 95, .78) 100%);
}
.contact__info-inner { padding: clamp(32px, 4vw, 48px); }
.contact__info .section-title { color: #fff; font-size: clamp(2rem, 3.6vw, 2.75rem); }

.contact__list { display: grid; gap: 22px; margin-top: 32px; }
.contact__list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: #fff;
  font-weight: 600;
  line-height: 1.45;
}
.contact__list small {
  display: block;
  margin-bottom: 2px;
  color: var(--orange-400);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact__list a { word-break: break-word; transition: color .2s; }
.contact__list a:hover { color: var(--orange-400); }
.contact__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--orange-400);
}

.contact__form {
  scroll-margin-top: 20px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}
.contact__form-title {
  margin-bottom: 6px;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  text-transform: uppercase;
}
.contact__form-sub { margin-bottom: 28px; color: var(--muted); }

.form-grid {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}
.field { display: grid; gap: 8px; }
.field label {
  color: var(--ink);
  font-size: .9375rem;
  font-weight: 600;
}
.field label span { color: var(--orange-700); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #f8fafd;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.4;
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b2447' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
}
.field input::placeholder,
.field textarea::placeholder { color: #9aa6b8; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-600);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(31, 99, 224, .14);
}
.field.has-error input,
.field.has-error textarea { border-color: #d64545; }
.field--hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-note { margin-top: 14px; color: var(--muted); font-size: .875rem; text-align: center; }
.form-status {
  margin-top: 14px;
  font-weight: 600;
  text-align: center;
}
.form-status:empty { display: none; }
.form-status.is-success { padding: 12px 16px; border-radius: var(--radius-sm); background: #e8f7ee; color: #1b7a43; }
.form-status.is-error { padding: 12px 16px; border-radius: var(--radius-sm); background: #fdeceb; color: #b3261e; }

.contact__form button[disabled] { opacity: .7; cursor: progress; transform: none; }

.map {
  margin-top: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--line);
}
.map iframe { width: 100%; height: clamp(300px, 36vw, 400px); border: 0; }

@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .field--full { grid-column: 1 / -1; }
}
@media (min-width: 1024px) {
  .contact__grid { grid-template-columns: 5fr 7fr; gap: 32px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  padding-top: clamp(56px, 7vw, 88px);
  background: var(--navy-950);
  color: rgba(255, 255, 255, .66);
  font-size: 1rem;
}
.footer__grid {
  display: grid;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__brand img { height: 52px; width: auto; margin-bottom: 20px; }
.footer__brand p { max-width: 340px; }

.footer h4 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 1.25rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.footer__col ul { display: grid; gap: 10px; }
.footer__col a { transition: color .2s; }
.footer__col a:hover { color: var(--orange-400); }

.footer__contact li { display: flex; align-items: flex-start; gap: 12px; line-height: 1.45; }
.footer__contact .icon { margin-top: 2px; color: var(--orange-400); width: 20px; height: 20px; }
.footer__contact a { word-break: break-word; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  padding-block: 24px 28px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .875rem;
}
.footer__bottom p { margin: 0; }
.footer__legal { flex-basis: 100%; color: rgba(255, 255, 255, .4); font-size: .8125rem; }

@media (min-width: 640px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 48px; }
}

/* ==========================================================================
   Floating buttons
   ========================================================================== */
.fab-call,
.to-top {
  position: fixed;
  right: 18px;
  z-index: 90;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  transition: opacity .3s, transform .3s var(--ease), visibility .3s, background-color .2s;
}
.fab-call {
  bottom: 18px;
  width: 58px;
  height: 58px;
  background: var(--orange-500);
  color: var(--navy-950);
  box-shadow: 0 12px 28px -8px rgba(247, 118, 30, .8);
}
.fab-call .icon { width: 24px; height: 24px; }
.fab-call::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--orange-500);
  animation: ring 2.2s ease-out infinite;
}
@keyframes ring {
  from { transform: scale(1); opacity: .7; }
  to   { transform: scale(1.6); opacity: 0; }
}

.to-top {
  bottom: 88px;
  width: 46px;
  height: 46px;
  background: var(--navy-800);
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--blue-600); }

@media (min-width: 900px) {
  .fab-call { display: none; }
  .to-top { bottom: 24px; right: 24px; }
}

/* ==========================================================================
   Scroll reveal (only when JS is available)
   ========================================================================== */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--delay, 0s);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}
