
:root {
  --bg: #0a2540;
  --bg2: #071b30;
  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f5f7fa;
  --muted: rgba(245, 247, 250, 0.72);
  --ink: #2d3748;
  --white: #ffffff;
  --orange: #ff6b35;
  --green: #00a676;
  --green2: #008c63;
  --bg-rgb: 10, 37, 64;
  --bg2-rgb: 7, 27, 48;
  --orange-rgb: 255, 107, 53;
  --green-rgb: 0, 166, 118;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  --shadow2: 0 10px 24px rgba(0, 0, 0, 0.18);
  --radius: 18px;
  --radius2: 14px;
  --container: 1160px;
  --neutral: #f5f7fa;
  --font-body: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-title: Montserrat, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#create-account {
  scroll-margin-top: 96px;
  display: none;
}

#create-account.is-open {
  display: block;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
}

.section-title,
.hero__title {
  font-family: var(--font-title);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--container);
  padding: 0 20px;
  margin: 0 auto;
}

/* topbar */
.topbar {
  background: var(--green);
  color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
}

.topbar__inner {
  display: flex;
  align-items: center;
  height: 34px;
}

.topbar__spacer {
  flex: 1;
}

.topbar__right {
  display: flex;
  gap: 18px;
  align-items: center;
}

.topbar__item {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  opacity: 0.95;
}

.topbar__item svg {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.92);
}

.topbar__item:hover {
  opacity: 1;
}

/* header */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(180deg, rgba(var(--bg-rgb), 0.98), rgba(var(--bg-rgb), 0.9));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.header .container {
  padding-left: 8px;
  padding-right: 8px;
}

.header.is-scrolled {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 78px;
  column-gap: 56px;
  row-gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  margin-right: 0;
  padding-right: 18px;
}

.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--orange);
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #fff;
  box-shadow: 0 10px 20px rgba(var(--orange-rgb), 0.25);
}

.header .brand__text,
.footer .brand__text {
  display: none;
}

.header .brand__mark,
.footer .brand__mark {
  width: 120px;
  height: 58px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.22));
}

.header .brand__logo {
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.55));
}

.brand__text {
  display: grid;
  line-height: 1.05;
}

.brand__title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.brand__subtitle {
  font-size: 11px;
  opacity: 0.8;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
  justify-self: center;
  padding-left: 8px;
}

.nav__link {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.9;
  position: relative;
  white-space: nowrap;
  padding: 8px 2px;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(var(--orange-rgb), 0), rgba(var(--orange-rgb), 0.9), rgba(var(--green-rgb), 0.9), rgba(var(--green-rgb), 0));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
  opacity: 0.9;
}

.nav__link:hover {
  opacity: 1;
}

.nav__link:hover::after {
  transform: scaleX(1);
}

@media (max-width: 1180px) {
  .header .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .header__inner {
    column-gap: 24px;
  }
  .nav {
    gap: 18px;
  }
  .nav__link {
    font-size: 12px;
  }
  .header__actions {
    gap: 10px;
  }
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  margin-left: 0;
  padding-left: 0;
  justify-self: end;
  padding-left: 16px;
}

.hero__ticker {
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.hero__ticker-item {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
}

.hero__ticker-item strong {
  color: #fff;
}

.hero__ticker-sep {
  opacity: 0.7;
}

.logo-marquee {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.logo-marquee__track {
  display: flex;
  gap: 18px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}

.logo-marquee__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  opacity: 0.92;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.coverage {
  margin-top: 42px;
  padding: 64px 0;
  background: var(--neutral);
}

.coverage__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-top: 18px;
}

.coverage__map,
.coverage__panel {
  border-radius: 18px;
  border: 1px solid rgba(10, 23, 36, 0.12);
  background: #fff;
  overflow: hidden;
}

.coverage__map-inner {
  min-height: 280px;
  background: #fff;
}

.wa-map {
  display: grid;
  place-items: center;
  position: relative;
}

.wa-map__bg {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
}

.wa-map svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-height: 360px;
}

.wa-country {
  stroke: transparent;
  stroke-width: 2;
  cursor: pointer;
  transition: transform 160ms ease, fill 160ms ease, stroke 160ms ease;
  transform-origin: center;
  opacity: 0.92;
}

.wa-country:not([fill]) {
  fill: rgba(10, 23, 36, 0.08);
}

.wa-country:hover {
  stroke: rgba(var(--orange-rgb), 0.55);
  transform: translateY(-1px);
  fill: rgba(var(--orange-rgb), 0.14);
  opacity: 1;
}

.wa-country.is-active {
  stroke: rgba(var(--green-rgb), 0.55);
  fill: rgba(var(--green-rgb), 0.14);
  opacity: 1;
}

.wa-country:focus {
  outline: none;
}

.wa-country:focus-visible {
  stroke: rgba(var(--orange-rgb), 0.75);
  stroke-width: 3;
}

.coverage__chips {
  padding: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  border: 1px solid rgba(10, 23, 36, 0.12);
  background: #fff;
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.chip:hover {
  transform: translateY(-1px);
  border-color: rgba(var(--orange-rgb), 0.6);
}

.chip.is-active {
  background: rgba(var(--orange-rgb), 0.12);
  border-color: rgba(var(--orange-rgb), 0.55);
}

.coverage__panel {
  padding: 16px;
}

.coverage__title {
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--ink);
}

.coverage__country {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
}

.coverage__text {
  margin-top: 8px;
  color: rgba(45, 55, 72, 0.78);
}

.testimonials {
  margin-top: 46px;
  padding: 64px 0;
  background: #ffffff;
}

.partners {
  padding: 58px 0 64px;
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(var(--orange-rgb), 0.06), transparent 60%),
    radial-gradient(900px 500px at 50% 90%, rgba(var(--green-rgb), 0.06), transparent 60%),
    var(--neutral);
}

.partners__grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}

.partner {
  height: 64px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(10, 23, 36, 0.08);
  box-shadow: 0 12px 26px rgba(45, 55, 72, 0.08);
  display: grid;
  place-items: center;
  padding: 10px 14px;
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.partner__label {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.6px;
  color: rgba(10, 23, 36, 0.82);
}

.partner__label--overlay {
  position: absolute;
  right: 10px;
  bottom: 10px;
  margin-top: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(10, 23, 36, 0.12);
  color: rgba(0, 0, 0, 0.86);
  letter-spacing: 1px;
}

.partner:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(45, 55, 72, 0.12);
  border-color: rgba(var(--orange-rgb), 0.2);
}

.partner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.95);
  opacity: 0.92;
  max-height: 44px;
  margin: 0 auto;
}

.partner:hover img {
  opacity: 1;
}

.partner--black-shield img {
  max-height: 52px;
}

.partner--rootup img {
  max-height: 42px;
}

.partner--rhodes img {
  max-height: 42px;
}

.partner--sogena img {
  max-height: none;
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  filter: none;
  transform: none;
}

.partner--sogena {
  height: 64px;
  padding: 10px 14px;
  overflow: hidden;
  border-color: rgba(10, 23, 36, 0.12);
}

.partner--ttl img {
  max-height: 44px;
}

@media (max-width: 1100px) {
  .partners__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .partners__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .partner {
    height: 60px;
  }
}

.testimonial {
  margin-top: 18px;
  border-radius: 18px;
  border: 1px solid rgba(10, 23, 36, 0.12);
  background: #fff;
  padding: 18px;
}

.testimonial__top {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 16px;
  align-items: start;
}

.testimonial__photo {
  width: 84px;
  height: 84px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(var(--orange-rgb), 0.22), rgba(var(--green-rgb), 0.22));
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 26px rgba(10, 23, 36, 0.12);
  border: 1px solid rgba(10, 23, 36, 0.08);
}

.testimonial__quote {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(45, 55, 72, 0.92);
}

.testimonial__meta {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.testimonial__stars {
  color: rgba(var(--orange-rgb), 0.98);
  letter-spacing: 1px;
}

.testimonial__author {
  opacity: 0.92;
  font-weight: 700;
  color: rgba(45, 55, 72, 0.9);
}

.testimonial__actions {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.home-blog {
  margin-top: 42px;
  padding: 64px 0;
  background: var(--neutral);
}

.home-blog .card {
  padding: 0;
  overflow: hidden;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: block;
  object-fit: cover;
}

.home-final-cta {
  margin-top: 42px;
  padding: 46px 0 64px;
  background: #ffffff;
}

.home-final-cta__inner {
  border-radius: 18px;
  border: 1px solid rgba(10, 23, 36, 0.12);
  padding: 18px;
  background: linear-gradient(90deg, rgba(var(--bg-rgb), 0.06), rgba(var(--orange-rgb), 0.1), rgba(var(--green-rgb), 0.1));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.coverage .section-title,
.testimonials .section-title,
.home-blog .section-title,
.home-final-cta h3 {
  color: var(--ink);
}

.coverage .muted,
.testimonials .muted,
.home-blog .muted,
.home-final-cta p {
  color: rgba(45, 55, 72, 0.74);
}

@media (max-width: 540px) {
  .testimonial__top {
    grid-template-columns: 1fr;
  }
  .testimonial__photo {
    width: 96px;
    height: 96px;
  }
}

.home-final-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 14px 30px rgba(var(--orange-rgb), 0.25);
}

.btn--primary:hover {
  background: #ff7a4b;
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

.btn--dark {
  background: var(--bg);
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.btn--dark:hover {
  background: var(--bg2);
}

.btn--wide {
  width: 100%;
}

.burger {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: none;
  padding: 0;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.88);
  margin: 4px auto;
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(var(--bg-rgb), 0.98), rgba(var(--bg-rgb), 0.92));
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu__inner {
  padding: 14px 0 18px;
  display: grid;
  gap: 10px;
}

.mobile-menu__link {
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
}

.mobile-menu__cta {
  margin-top: 6px;
}

/* pills */
.pill {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.pill--green {
  background: rgba(var(--green-rgb), 0.18);
  color: #bff1d5;
  border: 1px solid rgba(var(--green-rgb), 0.35);
}

.pill--light {
  background: rgba(var(--green-rgb), 0.1);
  color: var(--green);
  border: 1px solid rgba(var(--green-rgb), 0.18);
}

.pill--orange {
  background: rgba(var(--orange-rgb), 0.14);
  color: #ffd4b0;
  border: 1px solid rgba(var(--orange-rgb), 0.3);
}

/* hero */
.hero {
  position: relative;
  background: var(--bg);
  padding: 56px 0 62px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 10% 20%, rgba(255, 255, 255, 0.08), transparent 55%),
    radial-gradient(900px 500px at 85% 30%, rgba(var(--green-rgb), 0.18), transparent 60%),
    linear-gradient(180deg, rgba(10, 37, 64, 0.52), rgba(7, 27, 48, 0.78)),
    url("images/imgD.png");
  background-size: cover;
  background-position: center;
  filter: saturate(1.08) brightness(1.08) contrast(1.05);
  transform: scale(1.02);
  animation: heroDrift 14s ease-in-out infinite alternate;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 34px;
  align-items: start;
}

.hero__title {
  margin: 14px 0 14px;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.8px;
}

@media (max-width: 980px) {
  .hero__title {
    font-size: 38px;
  }
}

@media (max-width: 540px) {
  .hero__title {
    font-size: 32px;
  }
}

.hero__title--white {
  color: #fff;
  font-weight: 800;
}

.hero__title--orange {
  color: var(--orange);
  font-weight: 800;
}

.hero__desc {
  margin: 0;
  max-width: 560px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.hero__cta {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

.hero__stats {
  margin-top: 34px;
  display: flex;
  gap: 38px;
  align-items: center;
}

.stat__value {
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.2px;
}

.stat__value--orange {
  color: var(--orange);
}

.stat__value--green {
  color: var(--green);
}

.stat__label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 4px;
}

.hero__right {
  display: grid;
  gap: 16px;
  padding-top: 20px;
}

.hero-video {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(100, 116, 139, 0.22);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow2);
}

.hero-video__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.15);
}

.hero-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-pill {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px 18px;
  border-radius: var(--radius);
  background: rgba(100, 116, 139, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow2);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  will-change: transform;
}

.service-pill:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
  border-color: rgba(var(--orange-rgb), 0.22);
}

.service-pill__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
}

.service-pill__icon svg {
  width: 22px;
  height: 22px;
}

.service-pill__icon--orange {
  background: rgba(var(--orange-rgb), 0.16);
  border: 1px solid rgba(var(--orange-rgb), 0.35);
}

.service-pill__icon--green {
  background: rgba(var(--green-rgb), 0.16);
  border: 1px solid rgba(var(--green-rgb), 0.35);
}

.service-pill__title {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
}

.service-pill__text {
  margin: 4px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: 26px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
}

.scroll-indicator__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot {
  0% {
    transform: translateY(-6px);
    opacity: 0.6;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
  100% {
    transform: translateY(-6px);
    opacity: 0.6;
  }
}

@keyframes heroDrift {
  0% {
    transform: scale(1.04) translate3d(-0.8%, -0.6%, 0);
  }
  100% {
    transform: scale(1.08) translate3d(0.8%, 0.6%, 0);
  }
}

/* section defaults */
.section-title {
  margin: 10px 0 14px;
  font-size: 34px;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.4px;
}

.section-title--dark {
  color: #fff;
}

.accent {
  color: var(--orange);
}

.muted {
  color: rgba(45, 55, 72, 0.76);
  line-height: 1.7;
  font-size: 14px;
}

.muted.center {
  max-width: 720px;
  margin: 0 auto;
}

.text-green {
  color: var(--green);
}

.text-orange {
  color: var(--orange);
}

.center-head {
  text-align: center;
  padding-top: 10px;
}

.center-head--dark .muted {
  color: var(--muted);
}

/* about */
.about {
  padding: 64px 0;
  background: var(--neutral);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about__media {
  position: relative;
}

.about__content > .pill {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.about__image {
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(11, 27, 43, 0.15), rgba(11, 27, 43, 0.15)),
    url("images/Image2.png");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.badge-years {
  position: absolute;
  right: -10px;
  bottom: -12px;
  width: 110px;
  height: 86px;
  border-radius: 16px;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 35px rgba(var(--orange-rgb), 0.35);
  border: 6px solid #fff;
}

.badge-years__value {
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
}

.badge-years__label {
  font-size: 11px;
  margin-top: -2px;
  opacity: 0.95;
}

.about__features {
  margin: 22px 0 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}

.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.feature__icon svg {
  width: 18px;
  height: 18px;
}

.feature__icon--green svg {
  color: var(--green);
}

.feature__icon--orange svg {
  color: var(--orange);
}

.feature__icon--green {
  background: rgba(var(--green-rgb), 0.12);
  border: 1px solid rgba(var(--green-rgb), 0.22);
}

.feature__icon--orange {
  background: rgba(var(--orange-rgb), 0.12);
  border: 1px solid rgba(var(--orange-rgb), 0.22);
}

.feature__title {
  font-weight: 800;
  color: var(--ink);
  font-size: 13px;
}

.feature__text {
  font-size: 12px;
  color: rgba(45, 55, 72, 0.7);
  margin-top: 2px;
}

/* services */
.home-kpis {
  margin-bottom: 46px;
}

.services {
  margin-top: 46px;
  padding: 64px 0 72px;
  position: relative;
  background:
    linear-gradient(180deg, rgba(246, 248, 251, 0.92), rgba(246, 248, 251, 0.96)),
    url("images/Image3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cards-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.home-kpis .cards-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.services .cards-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 26px 22px;
  box-shadow: 0 12px 22px rgba(45, 55, 72, 0.12);
  border: 1px solid rgba(45, 55, 72, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  will-change: transform;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 34px rgba(45, 55, 72, 0.16);
  border-color: rgba(var(--orange-rgb), 0.18);
}

.card:hover .card__title {
  color: var(--orange);
}

.card__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.card__icon svg {
  width: 20px;
  height: 20px;
}

.card__icon--orange {
  background: rgba(var(--orange-rgb), 0.1);
  border: 1px solid rgba(var(--orange-rgb), 0.18);
  color: var(--orange);
}

.card__icon--green {
  background: rgba(var(--green-rgb), 0.1);
  border: 1px solid rgba(var(--green-rgb), 0.18);
  color: var(--green);
}

.card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  color: var(--ink);
}

.card__text {
  margin: 10px 0 14px;
  color: rgba(45, 55, 72, 0.76);
  line-height: 1.65;
  font-size: 13px;
}

.card .list {
  margin-top: auto;
}

@media (max-width: 980px) {
  .home-kpis .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .services .cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .home-kpis .cards-grid {
    grid-template-columns: 1fr;
  }
}

.list {
  margin: 0;
  padding-left: 16px;
  display: grid;
  gap: 8px;
  color: rgba(45, 55, 72, 0.78);
  font-size: 12px;
}

.list li::marker {
  color: var(--orange);
}

.list--green li::marker {
  color: var(--green);
}

/* CTA band */
.cta-band {
  padding: 46px 0;
  background: #ffffff;
}

.cta-band__inner {
  border-radius: 18px;
  background: linear-gradient(90deg, var(--bg), var(--green));
  padding: 34px 34px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cta-band__text h3 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.3px;
}

.cta-band__text p {
  margin: 0;
  max-width: 560px;
  color: rgba(234, 241, 248, 0.78);
  line-height: 1.7;
  font-size: 13px;
}

/* vision */
.vision {
  position: relative;
  padding: 64px 0 70px;
  background: var(--bg2);
  overflow: hidden;
}

.vision__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 0% 10%, rgba(255, 255, 255, 0.05), transparent 55%),
    radial-gradient(900px 500px at 90% 35%, rgba(var(--green-rgb), 0.18), transparent 60%),
    radial-gradient(900px 500px at 50% 0%, rgba(var(--orange-rgb), 0.08), transparent 55%);
  opacity: 0.9;
}

.vision .container {
  position: relative;
}

.vision__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 28px;
}

.panel {
  border-radius: 18px;
  padding: 26px 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  will-change: transform;
}

.panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.26);
  border-color: rgba(var(--orange-rgb), 0.2);
}

.panel__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.panel__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
}

.panel__icon svg {
  width: 22px;
  height: 22px;
}

.panel__icon--orange {
  background: rgba(var(--orange-rgb), 0.16);
  border: 1px solid rgba(var(--orange-rgb), 0.3);
}

.panel__icon--green {
  background: rgba(var(--green-rgb), 0.16);
  border: 1px solid rgba(var(--green-rgb), 0.3);
}

.panel h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.2px;
}

.panel p {
  margin: 0 0 10px;
  color: rgba(234, 241, 248, 0.76);
  line-height: 1.75;
  font-size: 13px;
}

.values {
  margin-top: 26px;
}

.values__title {
  text-align: center;
  margin: 28px 0 16px;
  color: rgba(234, 241, 248, 0.9);
  font-size: 14px;
  font-weight: 800;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.mini {
  border-radius: 14px;
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
  transition: transform 220ms ease, border-color 220ms ease;
  will-change: transform;
}

.mini:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--green-rgb), 0.22);
}

.mini__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
}

.mini__icon svg {
  width: 20px;
  height: 20px;
}

.mini__icon--orange {
  background: rgba(var(--orange-rgb), 0.16);
  border: 1px solid rgba(var(--orange-rgb), 0.28);
}

.mini__icon--green {
  background: rgba(var(--green-rgb), 0.16);
  border: 1px solid rgba(var(--green-rgb), 0.28);
}

.mini__name {
  font-weight: 900;
  font-size: 12px;
}

.mini__desc {
  margin-top: 8px;
  font-size: 11px;
  color: rgba(234, 241, 248, 0.72);
  line-height: 1.6;
}

.numbers {
  margin-top: 26px;
  padding: 24px 18px 18px;
  border-radius: 18px;
  background:
    radial-gradient(900px 420px at 18% 32%, rgba(var(--orange-rgb), 0.35), transparent 60%),
    radial-gradient(900px 420px at 82% 22%, rgba(var(--green-rgb), 0.45), transparent 62%),
    linear-gradient(90deg, rgba(var(--green-rgb), 0.72), rgba(7, 27, 48, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.numbers::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%) 0 0 / 26px 26px,
    linear-gradient(225deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%) 0 0 / 26px 26px,
    linear-gradient(315deg, rgba(0, 0, 0, 0.08) 25%, transparent 25%) 0 0 / 26px 26px,
    linear-gradient(45deg, rgba(0, 0, 0, 0.08) 25%, transparent 25%) 0 0 / 26px 26px;
  opacity: 0.35;
  pointer-events: none;
}

.numbers > * {
  position: relative;
}

.numbers__head {
  text-align: center;
}

.numbers__head h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.98);
  font-size: 18px;
  letter-spacing: -0.2px;
}

.numbers__head p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

.numbers__grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.num {
  border-radius: 14px;
  padding: 16px 14px;
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease;
  will-change: transform;
}

.num:hover {
  transform: translateY(-6px);
  background: rgba(0, 0, 0, 0.16);
  border-color: rgba(255, 255, 255, 0.18);
}

.num__icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
}

.num__icon svg {
  width: 20px;
  height: 20px;
}

.num__icon--orange {
  background: rgba(var(--orange-rgb), 0.2);
  border: 1px solid rgba(var(--orange-rgb), 0.3);
}

.num__icon--green {
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.num__value {
  font-weight: 900;
  font-size: 18px;
}

.num__value--orange {
  color: var(--orange);
}

.num__value--green {
  color: rgba(15, 255, 140, 0.72);
}

.num__label {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
}

.numbers__foot {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.numbers__pill {
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 12px;
}

/* why */
.why {
  padding: 64px 0 74px;
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(var(--green-rgb), 0.06), transparent 60%),
    radial-gradient(900px 500px at 50% 80%, rgba(var(--orange-rgb), 0.05), transparent 60%),
    #ffffff;
}

.why__grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 12px 22px rgba(45, 55, 72, 0.12);
  border: 1px solid rgba(45, 55, 72, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  will-change: transform;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(45, 55, 72, 0.16);
  border-color: rgba(var(--green-rgb), 0.18);
}

.why-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(var(--green-rgb), 0.22);
  border: 1px solid rgba(var(--green-rgb), 0.3);
  margin-bottom: 12px;
}

.why-card__icon svg {
  width: 22px;
  height: 22px;
  color: #ffffff;
}

.why-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.why-card p {
  margin: 10px 0 12px;
  color: rgba(45, 55, 72, 0.76);
  font-size: 13px;
  line-height: 1.65;
}

.tag {
  display: inline-flex;
  margin-top: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  color: #a44d00;
  background: rgba(var(--orange-rgb), 0.12);
  border: 1px solid rgba(var(--orange-rgb), 0.18);
}

.value-prop {
  margin-top: 28px;
  padding: 22px 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(45, 55, 72, 0.1);
  box-shadow: 0 12px 26px rgba(45, 55, 72, 0.1);
}

.value-prop__title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.2px;
}

.value-prop .list {
  color: rgba(15, 23, 42, 0.84);
  font-size: 13px;
  line-height: 1.65;
}

.value-prop .list li::marker {
  color: var(--orange);
}

.mini-cta {
  margin-top: 30px;
}

.mini-cta__inner {
  border-radius: 16px;
  padding: 34px 34px;
  background: linear-gradient(90deg, var(--green), var(--bg));
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.mini-cta__inner h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.2px;
}

.mini-cta__inner p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.6;
  max-width: 560px;
}

.mini-cta__actions {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
}

.mini-cta__inner > div:first-child {
  flex: 1;
}

.mini-cta__actions {
  justify-content: center;
}

.mini-cta__actions .btn--dark {
  background: #ffffff;
  color: #0b1d2f;
}

.mini-cta__actions .btn--dark:hover {
  background: #f3f5f8;
}

/* contact */
.contact {
  padding: 64px 0 78px;
  background: #ffffff;
}

.contact__grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.form {
  background: #fff;
  border-radius: 16px;
  padding: 22px 22px;
  box-shadow: 0 12px 22px rgba(10, 23, 36, 0.08);
  border: 1px solid rgba(10, 23, 36, 0.06);
}

.form__title {
  font-weight: 900;
  color: #0b1d2f;
  margin-bottom: 14px;
}

.form__alert {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.25);
  color: #0b1d2f;
  font-weight: 700;
  font-size: 13px;
}

.form__notice {
  margin: 0 0 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(10, 23, 36, 0.16);
  border-left: 6px solid rgba(10, 23, 36, 0.32);
  background: #f4f7fb;
  color: #0b1d2f;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.45;
  box-shadow: 0 10px 18px rgba(10, 23, 36, 0.08);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.form__notice::before {
  content: 'ℹ';
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex: 0 0 28px;
  background: rgba(10, 23, 36, 0.10);
  color: rgba(10, 23, 36, 0.92);
}

.form__notice.is-success {
  background: rgba(var(--green-rgb), 0.14);
  border-color: rgba(var(--green-rgb), 0.32);
  border-left-color: rgba(var(--green-rgb), 0.85);
}

.form__notice.is-success::before {
  content: '✓';
  background: rgba(var(--green-rgb), 0.22);
  color: rgba(0, 80, 40, 0.95);
}

.form__notice.is-error {
  background: rgba(255, 107, 53, 0.12);
  border-color: rgba(255, 107, 53, 0.34);
  border-left-color: rgba(255, 107, 53, 0.9);
}

.form__notice.is-error::before {
  content: '!';
  background: rgba(255, 107, 53, 0.18);
  color: rgba(120, 30, 0, 0.95);
}

 .auth-foot {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(10, 23, 36, 0.72);
 }

 .auth-foot__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(var(--orange-rgb), 0.35);
  background: rgba(var(--orange-rgb), 0.10);
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
 }

 .auth-foot__link:hover {
  border-color: rgba(var(--orange-rgb), 0.55);
  background: rgba(var(--orange-rgb), 0.14);
 }

.hero.hero--compact {
  padding: 44px 0 48px;
}

.tracking {
  padding: 34px 0 68px;
  background: var(--neutral);
  color: var(--ink);
}

.client-info {
  margin-top: 10px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(11, 27, 43, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  max-width: 100%;
}

.client-info strong {
  color: #fff;
  font-weight: 900;
}

.client-info__item {
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.tracking-card {
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(10, 23, 36, 0.10);
  border: 1px solid rgba(10, 23, 36, 0.06);
  padding: 22px 22px 20px;
}

.tracking-card__head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.tracking-search {
  margin-top: 12px;
}

.tracking-search__label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: rgba(10, 23, 36, 0.7);
  margin-bottom: 8px;
}

.tracking-search__row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.tracking-search__input {
  flex: 1 1 260px;
  height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(10, 23, 36, 0.14);
  background: rgba(245, 247, 250, 0.95);
  color: var(--ink);
  font-weight: 700;
}

.tracking-search__input:focus {
  outline: none;
  border-color: rgba(var(--orange-rgb), 0.45);
  box-shadow: 0 0 0 4px rgba(var(--orange-rgb), 0.12);
}

.tracking-card__title {
  font-weight: 900;
  letter-spacing: 0.2px;
  color: #0b1d2f;
}

.tracking-card__meta {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(10, 23, 36, 0.72);
}

.tracking-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 18px 12px 12px;
  border-radius: 18px;
  background: rgba(245, 247, 250, 0.95);
  border: 1px solid rgba(10, 23, 36, 0.06);
  margin-bottom: 18px;
}

.tracking-steps__bar {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 22px;
  height: 6px;
  border-radius: 999px;
  background: rgba(10, 23, 36, 0.10);
  overflow: hidden;
}

.tracking-steps__fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--tracking-progress, 55%);
  background: linear-gradient(90deg, rgba(var(--green-rgb), 0.95), rgba(var(--orange-rgb), 0.95));
}

.tracking-steps__dot {
  position: absolute;
  left: var(--tracking-progress, 55%);
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border: 4px solid rgba(var(--orange-rgb), 0.95);
  box-shadow: 0 10px 20px rgba(var(--orange-rgb), 0.20);
}

.tracking-step {
  padding-top: 18px;
  text-align: center;
}

.tracking-step__label {
  font-weight: 900;
  color: #0b1d2f;
  font-size: 13px;
}

.tracking-step__value {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(10, 23, 36, 0.78);
  font-weight: 700;
}

.tracking-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.2px;
  background: rgba(var(--orange-rgb), 0.12);
  border: 1px solid rgba(var(--orange-rgb), 0.25);
  color: #0b1d2f;
}

.tracking-step--active .tracking-step__label {
  color: rgba(var(--orange-rgb), 0.95);
}

.tracking-info {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.tracking-info__item {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(245, 247, 250, 0.98);
  border: 1px solid rgba(10, 23, 36, 0.06);
  color: rgba(10, 23, 36, 0.88);
  font-size: 14px;
}

.tracking-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.tracking-actions__left {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.tracking-note {
  font-size: 13px;
  font-weight: 700;
  color: rgba(10, 23, 36, 0.65);
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border: 1px solid rgba(10, 23, 36, 0.12);
  background: rgba(10, 23, 36, 0.06);
  color: rgba(10, 23, 36, 0.86);
}

.payment-badge.is-paid {
  border-color: rgba(var(--green-rgb), 0.35);
  background: rgba(var(--green-rgb), 0.16);
  color: rgba(0, 90, 45, 0.95);
}

.payment-badge.is-pending {
  border-color: rgba(var(--orange-rgb), 0.35);
  background: rgba(var(--orange-rgb), 0.14);
  color: rgba(120, 50, 0, 0.95);
}

.tracking-actions .btn--ghost {
  border-color: rgba(10, 23, 36, 0.18);
  color: #0b1d2f;
}

.tracking-actions .btn--ghost:hover {
  border-color: rgba(10, 23, 36, 0.28);
  background: rgba(10, 23, 36, 0.04);
}

@media (max-width: 820px) {
  .tracking-card {
    padding: 18px 16px 16px;
  }
  .tracking-steps {
    grid-template-columns: 1fr;
    padding-top: 14px;
  }
  .tracking-steps__bar {
    display: none;
  }
  .tracking-step {
    padding-top: 0;
    text-align: left;
    display: flex;
    justify-content: space-between;
    gap: 12px;
  }
  .tracking-step__value {
    margin-top: 0;
    text-align: right;
  }
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(10, 23, 36, 0.72);
}

input,
select,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(10, 23, 36, 0.12);
  background: #fff;
  padding: 12px 12px;
  font-family: inherit;
  font-size: 13px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(var(--orange-rgb), 0.45);
  box-shadow: 0 0 0 4px rgba(var(--orange-rgb), 0.12);
}

.contact-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 22px rgba(10, 23, 36, 0.08);
  border: 1px solid rgba(10, 23, 36, 0.06);
}

.contact-card__image {
  height: 220px;
  background:
    linear-gradient(180deg, rgba(11, 27, 43, 0.1), rgba(11, 27, 43, 0.2)),
    url("images/cont.png");
  background-size: cover;
  background-position: center 18%;
}

.contact-card__body {
  background: linear-gradient(180deg, var(--bg), var(--green));
  padding: 26px 26px;
}

 .contact-card__body .contact-item__label,
 .contact-card__body .contact-item__value {
  color: rgba(255, 255, 255, 0.88);
 }

.contact-card__title {
  font-weight: 900;
  margin-bottom: 18px;
  font-size: 22px;
  letter-spacing: -0.2px;
}

.contact-items {
  display: grid;
  gap: 12px;
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-item__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--orange);
  border: 1px solid rgba(255, 255, 255, 0.12);
  flex: 0 0 auto;
}

.contact-item__icon svg {
  width: 20px;
  height: 20px;
  color: #ffffff;
}

.contact-item__label {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 6px;
  font-weight: 900;
}

.contact-item__value {
  font-size: 13px;
  line-height: 1.65;
  opacity: 0.92;
}

.contact-item__label,
.contact-item__value {
  color: rgba(45, 55, 72, 0.86);
}

/* bottom nav (mobile) */
.bottom-nav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
  width: min(980px, calc(100% - 22px));
  z-index: 25;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(var(--bg-rgb), 0.92), rgba(var(--bg-rgb), 0.86));
  backdrop-filter: blur(12px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
}

.bottom-nav__link,
.bottom-nav__cta {
  flex: 1 1 0;
  min-width: 0;
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 10px 8px;
  border-radius: 14px;
  color: rgba(234, 241, 248, 0.86);
  text-decoration: none;
  font-weight: 700;
  font-size: 11px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.bottom-nav__link svg,
.bottom-nav__cta svg {
  width: 18px;
  height: 18px;
}

.bottom-nav__link:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
  color: #fff;
}

.bottom-nav__link.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.bottom-nav__cta {
  background: linear-gradient(135deg, rgba(var(--orange-rgb), 0.96), rgba(var(--orange-rgb), 0.72));
  border: 1px solid rgba(var(--orange-rgb), 0.28);
  color: #fff;
  box-shadow: 0 12px 24px rgba(var(--orange-rgb), 0.22);
}

.bottom-nav__cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 30px rgba(var(--orange-rgb), 0.26);
}

/* footer */
.footer {
  background: linear-gradient(180deg, var(--bg), var(--bg2));
  color: rgba(234, 241, 248, 0.88);
  padding: 44px 0 20px;
}

.brand--footer .brand__mark {
  box-shadow: none;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__desc {
  margin: 12px 0 14px;
  color: rgba(234, 241, 248, 0.72);
  font-size: 12px;
  line-height: 1.6;
}

.footer__title {
  font-weight: 900;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.95);
}

.footer__col:hover .footer__title {
  color: var(--orange);
}

.footer__col a {
  display: block;
  padding: 6px 0;
  font-size: 12px;
  color: rgba(234, 241, 248, 0.72);
}

.footer__col a:hover {
  color: var(--orange);
}

.footer__contact {
  display: grid;
  gap: 10px;
  font-size: 12px;
  color: rgba(234, 241, 248, 0.72);
}

.footer__contact > div {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  align-items: start;
}

.footer__contact svg {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  color: var(--green);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  font-size: 12px;
  color: rgba(234, 241, 248, 0.62);
}

.footer__links {
  display: flex;
  gap: 16px;
}

.footer__links a:hover {
  color: var(--orange);
}

.social {
  display: flex;
  gap: 10px;
}

.social__btn {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
}

.social__btn svg {
  width: 16px;
  height: 16px;
}

.social__btn:hover {
  background: rgba(var(--orange-rgb), 0.12);
  border-color: rgba(var(--orange-rgb), 0.28);
  color: var(--orange);
}

/* icons (CSS only) */
.icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  position: relative;
}

.icon--phone::before {
  content: "";
  position: absolute;
  inset: 2px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-right-color: transparent;
  border-top-color: transparent;
  transform: rotate(-35deg);
  border-radius: 3px;
}

.icon--mail::before {
  content: "";
  position: absolute;
  inset: 2px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 3px;
}

.icon--mail::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: 4px;
  height: 2px;
  background: rgba(255, 255, 255, 0.92);
  transform: skewY(-25deg);
}

.glyph {
  width: 20px;
  height: 20px;
  display: inline-block;
  border-radius: 5px;
  background: currentColor;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  color: #0b1d2f;
}

.service-pill__icon--orange .glyph,
.card__icon--orange .glyph,
.panel__icon--orange .glyph,
.mini__icon--orange .glyph,
.num__icon--orange .glyph {
  color: var(--orange);
}

.service-pill__icon--green .glyph,
.card__icon--green .glyph,
.panel__icon--green .glyph,
.mini__icon--green .glyph {
  color: var(--green);
}

.why-card__icon .glyph {
  color: #ffffff;
}

.contact-item__icon .glyph,
.footer__contact .glyph,
.social .glyph {
  color: rgba(255, 255, 255, 0.92);
}

.glyph--ship { -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 48%, transparent 49%); mask-image: radial-gradient(circle at 50% 50%, #000 48%, transparent 49%); }
.glyph--truck { -webkit-mask-image: linear-gradient(#000 0 0); mask-image: linear-gradient(#000 0 0); }
.glyph--globe { -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 42%, transparent 43%); mask-image: radial-gradient(circle at 50% 50%, #000 42%, transparent 43%); }
.glyph--map { -webkit-mask-image: linear-gradient(#000 0 0); mask-image: linear-gradient(#000 0 0); }
.glyph--badge { -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 45%, transparent 46%); mask-image: radial-gradient(circle at 50% 50%, #000 45%, transparent 46%); }
.glyph--users { -webkit-mask-image: linear-gradient(#000 0 0); mask-image: linear-gradient(#000 0 0); }
.glyph--trend { -webkit-mask-image: linear-gradient(#000 0 0); mask-image: linear-gradient(#000 0 0); }
.glyph--doc { -webkit-mask-image: linear-gradient(#000 0 0); mask-image: linear-gradient(#000 0 0); }
.glyph--box { -webkit-mask-image: linear-gradient(#000 0 0); mask-image: linear-gradient(#000 0 0); }
.glyph--pin { -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 40%, transparent 41%); mask-image: radial-gradient(circle at 50% 30%, #000 40%, transparent 41%); }
.glyph--clock { -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 46%, transparent 47%); mask-image: radial-gradient(circle at 50% 50%, #000 46%, transparent 47%); }
.glyph--eye { -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 40%, transparent 41%); mask-image: radial-gradient(circle at 50% 50%, #000 40%, transparent 41%); }
.glyph--target { -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 35%, transparent 36%); mask-image: radial-gradient(circle at 50% 50%, #000 35%, transparent 36%); }
.glyph--bolt { -webkit-mask-image: linear-gradient(#000 0 0); mask-image: linear-gradient(#000 0 0); }
.glyph--heart { -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 45%, transparent 46%); mask-image: radial-gradient(circle at 50% 50%, #000 45%, transparent 46%); }
.glyph--hand { -webkit-mask-image: linear-gradient(#000 0 0); mask-image: linear-gradient(#000 0 0); }
.glyph--spark { -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 40%, transparent 41%); mask-image: radial-gradient(circle at 50% 50%, #000 40%, transparent 41%); }
.glyph--cube { -webkit-mask-image: linear-gradient(#000 0 0); mask-image: linear-gradient(#000 0 0); }
.glyph--smile { -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 40%, transparent 41%); mask-image: radial-gradient(circle at 50% 50%, #000 40%, transparent 41%); }
.glyph--medal { -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 40%, transparent 41%); mask-image: radial-gradient(circle at 50% 50%, #000 40%, transparent 41%); }
.glyph--shield { -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 40%, transparent 41%); mask-image: radial-gradient(circle at 50% 50%, #000 40%, transparent 41%); }
.glyph--network { -webkit-mask-image: linear-gradient(#000 0 0); mask-image: linear-gradient(#000 0 0); }
.glyph--support { -webkit-mask-image: linear-gradient(#000 0 0); mask-image: linear-gradient(#000 0 0); }
.glyph--rocket { -webkit-mask-image: linear-gradient(#000 0 0); mask-image: linear-gradient(#000 0 0); }
.glyph--phone { -webkit-mask-image: linear-gradient(#000 0 0); mask-image: linear-gradient(#000 0 0); }
.glyph--mail { -webkit-mask-image: linear-gradient(#000 0 0); mask-image: linear-gradient(#000 0 0); }
.glyph--fb { -webkit-mask-image: linear-gradient(#000 0 0); mask-image: linear-gradient(#000 0 0); }
.glyph--tw { -webkit-mask-image: linear-gradient(#000 0 0); mask-image: linear-gradient(#000 0 0); }
.glyph--in { -webkit-mask-image: linear-gradient(#000 0 0); mask-image: linear-gradient(#000 0 0); }

/* reveal animation */
[data-animate] {
  --anim-x: 0px;
  --anim-y: 30px;
  --anim-scale: 1;
  opacity: 0;
  transform: translate3d(var(--anim-x), var(--anim-y), 0) scale(var(--anim-scale));
  filter: blur(10px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--stagger-delay, 0ms);
  will-change: transform, opacity, filter;
}

[data-animate][data-anim="fade"] {
  --anim-x: 0px;
  --anim-y: 0px;
  --anim-scale: 1;
}

[data-animate][data-anim="slide-up"] {
  --anim-x: 0px;
  --anim-y: 30px;
  --anim-scale: 1;
}

[data-animate][data-anim="slide-down"] {
  --anim-x: 0px;
  --anim-y: -20px;
  --anim-scale: 1;
}

[data-animate][data-anim="slide-left"] {
  --anim-x: 50px;
  --anim-y: 0px;
  --anim-scale: 1;
}

[data-animate][data-anim="slide-right"] {
  --anim-x: -50px;
  --anim-y: 0px;
  --anim-scale: 1;
}

[data-animate][data-anim="scale-in"] {
  --anim-x: 0px;
  --anim-y: 0px;
  --anim-scale: 0.5;
}

[data-animate][data-anim="scale-out"] {
  --anim-x: 0px;
  --anim-y: 0px;
  --anim-scale: 1.05;
}

[data-animate].is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.hover-scale {
  transition: transform 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}

.hover-scale:hover {
  transform: translateY(-4px) scale(1.03);
}

.bounce-loop {
  animation: bounceLoop 1.8s ease-in-out infinite;
}

@keyframes bounceLoop {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* responsive */
@media (max-width: 980px) {
  .nav {
    display: none;
  }
  .burger {
    display: inline-block;
  }
  .bottom-nav {
    display: flex;
  }
  body {
    padding-bottom: 78px;
  }
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__right {
    grid-template-columns: 1fr;
  }
  .hero__title {
    font-size: 44px;
  }
  .about__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cards-grid,
  .why__grid {
    grid-template-columns: 1fr;
  }
  .vision__grid {
    grid-template-columns: 1fr;
  }
  .values__grid {
    grid-template-columns: 1fr 1fr;
  }
  .numbers__grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .cta-band__inner,
  .mini-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .coverage__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .hero {
    padding: 44px 0 58px;
  }
  body {
    padding-bottom: 86px;
  }
  .header__inner {
    height: 72px;
  }
  .header .brand__mark {
    width: 104px;
    height: 52px;
  }
  .hero__title {
    font-size: 36px;
  }
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__stats {
    gap: 20px;
  }
  .about__features {
    grid-template-columns: 1fr;
  }
  .form__grid {
    grid-template-columns: 1fr;
  }
  .footer__top {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
