@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;1,9..40,400&display=swap');

:root {
  --navy: #05214c;
  --royal: #1B3B77;
  --royal-2: #2952A3;
  --brass: #b4c7e0;
  --brass-light: #87b0c6;
  --ink: #023378;
  --paper: #FFFFFF;
  --mist: #EEF2F9;
  --mist-2: #DCE5F3;
  --line: rgba(14, 42, 84, 0.14);
  --good: #1D7A4C;
  --font-display: 'Syne', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
}

/* Standard syntax */
::selection {
  background-color: var(--black);
  color: var(--brass-light);
}

::-moz-selection {
  background-color: var(--black);
  color: var(--brass-light);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ink);
  line-height: 1.6;
}

body,
html {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

.logo {
  width: 100px;
  /* width: 100%; */
  /* height: 43px; */
}

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

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  position: relative;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  color: var(--navy);
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brass);
}

main {
  display: block;
}

/* ---------- Top utility bar ---------- */
.utility {
  background: var(--navy);
  color: #CBDAF2;
  font-size: 13px;
}

.utility .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 32px;
  flex-wrap: wrap;
  gap: 6px;
}

.utility a {
  opacity: .92;
}

.utility a:hover {
  opacity: 1;
  text-decoration: underline;
}

.utility .split {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ---------- Header ---------- */
header.site {
  backdrop-filter: blur(192px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  /* min-width: 0; */
}

.brand svg {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.brand .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  line-height: 1.05;
}

.brand .tag {
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--brass);
  text-transform: uppercase;
  font-weight: 600;
}

nav.main {
  display: flex;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 550;
}

nav.main a {
  color: rgb(255, 255, 255);
  position: relative;
  padding: 4px 0;
}

nav.main a.active {
  border-bottom: 2px solid var(--brass);
}

.head-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
  line-height: 1;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--ink);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 86px 20px 20px;
  overflow-y: auto;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-size: 16px;
  /* font-weight: 600; */
  color: white;
  /* color: var(--navy); */
  border-bottom: 1px solid var(--line);
}

.mobile-nav a:hover {
  color: var(--royal-2);
}

.mobile-nav a:last-of-type {
  border-bottom: none;
}

.mobile-nav .mobile-nav-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.mobile-nav .mobile-nav-actions .btn {
  flex: 1;
  width: auto;
  min-height: 46px;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 13.5px;
  white-space: nowrap;
}

body.nav-open {
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 550;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: 999px;
  border: 2px solid var(--royal-2);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
  cursor: pointer;
}

.btn-solid {
  background: var(--royal);
  color: #fff;
  border-color: var(--navy);
}

.btn-solid:hover {
  background: var(--navy);
  border-color: var(--navy);
}

.btn-ghost {
  color: var(--royal);
  border-color: var(--navy);
  background: var(--mist);
  /* background: transparent; */
}

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

.btn-brass {
  background: var(--brass);
  border-color: var(--brass);
  color: #fff;
}

.btn-brass:hover {
  background: #a47a22;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

/* ---------- Page header banner (non-home pages) ---------- */
.page-banner {
  background: linear-gradient(10deg, var(--ink) 0%, var(--ink) 100%);
  color: #fff;
  padding: 56px 0;
  padding-top: 6rem;
}

.page-banner .wrap {
  max-width: 1180px;
}

.page-banner .eyebrow {
  color: var(--brass-light);
}

.page-banner h1 {
  color: #fff;
  font-size: 38px;
  margin-top: 10px;
}

.page-banner p {
  color: #CBDAF2;
  max-width: 560px;
  margin-top: 12px;
  font-size: 15.5px;
}

.breadcrumb {
  font-size: 12.5px;
  color: #9FB6DC;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: #CBDAF2;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ---------- Hero (homepage) ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  color: #fff;
  /* padding: 96px 0 56px; */
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 42, 84, .10), rgba(14, 42, 84, .25));
  z-index: 1;
}

.hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
}

.hero h1 {
  font-size: clamp(44px, 5vw, 72px);
  color: #fff;
  margin: 16px 0 18px;
  letter-spacing: -0.03em;
  max-width: 10ch;
}

.hero h1 em {
  font-style: italic;
  color: var(--brass-light);
}

.hero p.lead {
  font-size: 17px;
  color: #CBDAF2;
  max-width: 500px;
  margin-bottom: 30px;
}

.hero .cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 34px;
}

.hero .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
}

.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, .08);
}

.hero-stats {
  display: flex;
  gap: 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.hero-stats div {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.hero-stats span {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  color: #BFD0EE;
  font-weight: 600;
  margin-top: 4px;
}

.hero-art {
  /* position: relative; */
  /* height: 360px; */
  min-height: 420px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04)),
    url('https://heroportstrade.vercel.app/assets/video.mp4') center/cover no-repeat;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
}

.hero-art svg {
  width: 100%;
  height: 100%;
}

/* ---------- Manifest / ports ticker ---------- */
.manifest {
  background: var(--brass);
}

.manifest .wrap {
  display: flex;
  align-items: stretch;
  padding: 0;
}

.manifest .label {
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  padding: 14px 22px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.manifest-track {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.manifest-item {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px;
  border-left: 1px solid rgba(255, 255, 255, .3);
  color: #3A2A08;
  font-size: 13.5px;
  font-weight: 600;
}

.manifest-item b {
  font-family: var(--font-display);
  font-weight: 700;
  display: block;
  font-size: 14.5px;
  color: #2A1E05;
}

.manifest-item .status {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: rgba(255, 255, 255, .35);
  padding: 3px 8px;
  border-radius: 2px;
}

/* ---------- Section shells ---------- */
.section {
  padding: 88px 0;
}

.section.tight {
  padding: 56px 0;
}

.section.tint {
  background: var(--mist);
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: 34px;
  margin: 12px 0 14px;
}

.section-head p {
  color: #4A5670;
  font-size: 15.5px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  /* background: var(--line); */
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--card);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-card:hover {
  /* background: var(--mist); */
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.service-card .num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--brass);
  font-weight: 700;
}

.service-card__num {
  font-family: "Fragment Mono", monospace;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.service-card h3 {
  margin: 0;

  color: #fcfcff;
  font-size: 1.4rem;
  line-height: 1.15;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.service-card__link {
  margin-top: auto;
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.2;
  width: fit-content;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.service-card__link:hover {
  border-color: var(--white);
}

.services-section__cta {
  display: flex;
  justify-content: center;
}

.services-section {
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  padding: 100px 16px;
}

.services-section__inner {
  width: min(1800px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.services-section__head {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.section-label__icon {
  position: relative;
  width: 16px;
  height: 16px;
  display: inline-block;
}

.section-label__icon span {
  position: absolute;
  top: 3px;
  left: 7px;
  width: 1px;
  height: 10px;
  background: #fff;
}

.section-label__icon span:last-child {
  transform: rotate(-90deg);
}

.section-label p {
  margin: 0;
  font-family: "Fragment Mono", monospace;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.services-section__head h2 {
  margin: 0;

  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
  font-weight: 500;
  color: white;
}

.services-section__head p {
  margin: 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.service-card .go {
  font-size: 13px;
  font-weight: 700;
  color: var(--royal-2);
}

/* ---------- Vehicle catalogue ---------- */
.filter-bar {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: flex-end;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 20px 22px;
  margin-bottom: 30px;
}

.filter-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter-field label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--navy);
}

.filter-field select,
.filter-field input {
  padding: 9px 12px;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  font-size: 13.5px;
  font-family: var(--font-body);
  min-width: 140px;
}

.filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.pill {
  border: 1.5px solid var(--line);
  background: #fff;
  padding: 8px 18px;
  border-radius: 22px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: all .15s;
}

.pill:hover {
  border-color: var(--royal-2);
}

.pill.active {
  background: var(--royal);
  border-color: var(--royal);
  color: #fff;
}

.car-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.car-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow .15s;
}

.car-card:hover {
  box-shadow: 0 6px 18px rgba(14, 42, 84, 0.12);
}

.car-img {
  height: 120px;
  background: linear-gradient(135deg, var(--mist-2), var(--mist));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-2);
  font-size: 34px;
}

.car-body {
  padding: 16px 18px;
}

.car-body .year {
  font-size: 11.5px;
  color: var(--brass);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.car-body h4 {
  font-family: var(--font-display);
  font-size: 16.5px;
  margin: 5px 0 6px;
  color: var(--navy);
}

.car-body .price {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}

.car-body .meta {
  font-size: 12.5px;
  color: #6A7690;
  margin-top: 4px;
}

.car-body a {
  display: block;
  margin-top: 12px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--royal-2);
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #6A7690;
  font-size: 14.5px;
  display: none;
}

/* ---------- Vehicle detail page ---------- */
.veh-detail {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
}

.veh-gallery {
  background: linear-gradient(135deg, var(--mist-2), var(--mist));
  border-radius: 8px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: var(--royal-2);
}

.veh-specs {
  list-style: none;
  margin-top: 26px;
  border-top: 1px solid var(--line);
}

.veh-specs li {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.veh-specs li span:first-child {
  color: #5A6580;
}

.veh-specs li span:last-child {
  font-weight: 600;
  color: var(--navy);
}

.price-box {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  position: sticky;
  top: 100px;
}

.price-box .price {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--navy);
  font-weight: 700;
}

.price-box .sub {
  font-size: 28px;
  color: var(--ink);
  font-weight: 500;
  /* background: var(--royal); */
  /* width: fit-content; */
  margin-bottom: 20px;
}

.price-box .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card .thumb {
  height: 150px;
  background: var(--mist-2);
  border-radius: 6px 6px 0 0;
}

.blog-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow .15s;
}

.blog-card:hover {
  box-shadow: 0 6px 18px rgba(14, 42, 84, 0.1);
}

.blog-card .body {
  padding: 20px;
}

.blog-card .cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--brass);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.blog-card h4 {
  font-family: var(--font-display);
  font-size: 17px;
  margin: 8px 0;
  color: var(--navy);
}

.blog-card p {
  font-size: 13.5px;
  color: #5A6580;
}

.blog-card .date {
  font-size: 12px;
  color: #8A93A8;
  margin-top: 10px;
}

.article-body {
  max-width: 720px;
  font-size: 16px;
  color: #2C374F;
}

.article-body p {
  margin-bottom: 20px;
}

.article-body h2 {
  font-size: 24px;
  margin: 36px 0 14px;
}

.article-body ul {
  margin: 0 0 20px 20px;
}

.article-body li {
  margin-bottom: 8px;
}

.article-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: #6A7690;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.article-meta span {
  background: var(--mist);
  padding: 4px 12px;
  border-radius: 14px;
  border: 1px solid var(--ink);
}

/* ---------- Testimonial ---------- */
.testimonial {
  background: var(--navy);
  color: #fff;
  padding: 70px 0;
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  max-width: 820px;
  color: #EAF0FB;
  line-height: 1.45;
}

.testimonial cite {
  display: block;
  margin-top: 22px;
  font-style: normal;
  font-size: 13.5px;
  color: var(--brass-light);
  font-weight: 600;
}

/* ---------- FAQ ---------- */
#faq {
  background: var(--cta-bg);
  color: #fff;
}

.faq-list {
  max-width: 760px;
}

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

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: 17px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-q .icon {
  font-size: 20px;
  color: #b1b494;
  transition: transform .2s;
  flex-shrink: 0;
  margin-left: 16px;
  background: none;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}

.faq-a p {
  padding-bottom: 20px;
  font-size: 14.5px;
  color: #b1b494;
  max-width: 640px;
}

.faq-item.open .faq-a {
  max-height: 260px;
}

.faq-item.open .icon {
  transform: rotate(45deg);
}

.faq-category {
  margin-bottom: 14px;
}

.faq-category h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #89b8fa;
  margin: 36px 0 6px;
}

.faq-category:first-child h3 {
  margin-top: 0;
}

/* ---------- Forms (contact / quote) ---------- */
form.contact input,
form.contact select,
form.contact textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  margin-bottom: 14px;
  background: #fff;
  color: var(--ink);
}

form.contact label {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--navy);
  display: block;
  margin-bottom: 6px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-note {
  font-size: 12.5px;
  color: #8A93A8;
  margin-top: -8px;
  margin-bottom: 14px;
}

.form-success {
  display: none;
  background: var(--mist);
  border: 1px solid var(--good);
  border-radius: 6px;
  padding: 20px;
  color: var(--good);
  font-weight: 600;
  font-size: 14px;
}

.office-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px 24px;
  margin-bottom: 16px;
}

.office-card b {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 16px;
  display: block;
  margin-bottom: 8px;
}

.office-card p {
  font-size: 13.5px;
  color: #5A6580;
  margin-bottom: 4px;
}

.newsletter {
  background: #405ead;
  border-radius: 8px;
  padding: 26px 28px;
  margin-top: 24px;
  color: #ffffff;
}

.newsletter h4 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 6px;
}

.newsletter form {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-direction: column;
}

.newsletter input {
  flex: 1;
  padding: 11px 14px;
  border-radius: 4px;
  border: none;
  font-size: 14px;
}

.newsletter button {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 11px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
}

/* ---------- Calculator (tools) ---------- */
.calc-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
  max-width: 560px;
}

.calc-box .form-row {
  margin-bottom: 4px;
}

.calc-result {
  background: var(--mist);
  border-radius: 6px;
  padding: 20px 24px;
  margin-top: 20px;
}

.calc-result .row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}

.calc-result .row.total {
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
  border-bottom: none;
  padding-top: 14px;
}

.calc-disclaimer {
  font-size: 12px;
  color: #8A93A8;
  margin-top: 14px;
}

/* ---------- Generic content cards (ports/industries/case studies) ---------- */
.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 30px;
}

.info-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.info-card p {
  color: #4A5670;
  font-size: 14.5px;
  margin-bottom: 14px;
}

.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.tag-row span {
  background: var(--mist);
  color: var(--royal-2);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 14px;
}

.press-list {
  list-style: none;
  margin-top: 20px;
}

.press-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: #4A5670;
}

.press-list li b {
  display: block;
  color: var(--navy);
  font-size: 14.5px;
  margin-bottom: 2px;
}

/* .video-frame {
  background: var(--navy);
  border-radius: 8px;
  aspect-ratio: 8/6;
  width: 100%;
  position: relative;
  overflow: hidden;
} */

/* .video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
} */

/* .video-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 42, 84, 0.08), rgba(14, 42, 84, 0.45));
  z-index: 2;
}

.video-embed {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: none;
  width: 100%;
}

.video-frame .play {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #b93434;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
} */

/* .video-frame span {
  position: absolute;
  z-index: 3;
  bottom: 16px;
  left: 16px;
  right: 16px;
  color: #EAF0FB;
  font-size: 12.5px;
  font-weight: 600;
}

.video-frame .play:hover {
  cursor: pointer;
} */

.authority {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}


.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

footer h5 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  margin-bottom: 16px;
}

footer ul {
  list-style: none;
}

footer li {
  margin-bottom: 9px;
  font-size: 13.5px;
}

footer a:hover {
  color: #fff;
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: #7E92B8;
  flex-wrap: wrap;
  gap: 8px;
}

/* ---------- Share widget ---------- */
.share-widget {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 24px;
  margin-top: 32px;
}

.share-widget .label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--navy);
  margin-bottom: 14px;
}

.share-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 20px;
  border: 1.5px solid var(--line);
  font-size: 13px;
  /* font-weight: 600; */
  color: var(--navy);
  transition: all .15s;
}

.share-btn i {
  font-size: 14px
}

.share-btn:hover {
  border-color: var(--royal-2);
  color: var(--royal-2);
  background: var(--mist);
}

.share-btn .icon {
  font-size: 15px;
  line-height: 1;
}

.copy-link-row {
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.copy-link-input {
  flex: 1;
  padding: 10px 12px;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  font-size: 13px;
  color: #5A6580;
  background: var(--mist);
}

.copy-link-btn {
  background: var(--royal);
  width: fit-content;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
}

.copy-link-btn:hover {
  background: var(--navy);
}

.copy-link-btn.copied {
  background: var(--good);
}

/* ---------- Tracking widget ---------- */
.track-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
  max-width: 560px;
}

.track-box form {
  display: flex;
  gap: 10px;
}

.track-box input {
  flex: 1;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  font-size: 14px;
}

.track-status {
  margin-top: 26px;
  display: none;
}

.track-step {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-left: 2px solid var(--line);
  margin-left: 8px;
  padding-left: 20px;
  position: relative;
}

.track-step::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--line);
}

.track-step.done::before {
  background: var(--good);
}

.track-step.current::before {
  background: var(--brass);
}

.track-step b {
  display: block;
  font-size: 14px;
  color: var(--navy);
}

.track-step span {
  font-size: 12.5px;
  color: #6A7690;
}

@media(max-width:960px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    padding-bottom: 40px;
  }

  .hero-art {
    display: none;
  }

  nav.main {
    display: none;
  }

  .head-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .services-grid,
  .car-grid,
  .blog-grid,
  .card-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .authority,
  .contact-grid,
  .foot-grid,
  .veh-detail {
    grid-template-columns: 1fr;
  }

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

  .manifest .wrap {
    flex-direction: column;
  }

  .manifest-track {
    flex-direction: column;
  }

  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
}

@media(max-width:640px) {

  .services-grid,
  .car-grid,
  .blog-grid,
  .card-grid-2 {
    grid-template-columns: 1fr;
  }

  .mobile-nav .mobile-nav-actions .btn-ghost {
    color: var(--navy);
  }
}

:root {
  --hero-bg: #000;
  --hero-text: #fff;
  --hero-muted: rgba(255, 255, 255, 0.8);
  --hero-button: rgba(158, 158, 158, 0.4);
  --hero-button-fill: rgba(255, 255, 255, 0.15);
}



.heroo {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  /* background: var(--hero-bg); */
  color: var(--hero-text);
  display: flex;
  align-items: flex-end;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1800px, 100%);
  margin: 0 auto;
  padding: 32px 32px 64px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.hero__icon {
  position: relative;
  width: 16px;
  height: 16px;
  display: inline-block;
}

.hero__icon span {
  position: absolute;
  top: 3px;
  left: 7px;
  width: 1px;
  height: 10px;
  background: #fff;
}

.hero__icon span:last-child {
  transform: rotate(-90deg);
}

.hero__label p {
  margin: 0;
  font-family: "Fragment Mono", monospace;
  font-size: 16px;
  line-height: 1;
  color: var(--hero-text);
}

.hero__main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
}

.hero__heading {
  margin: 0;
  max-width: 700px;
  font-family: Syne, sans-serif;
  font-size: clamp(3.2rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.07em;
  color: var(--hero-text);
  white-space: normal;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  width: min-content;
}

.hero__intro {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 326px;
  max-width: 100%;
}

.hero__arrow {
  font-size: 22px;
  line-height: 1;
  color: var(--hero-text);
  flex: none;
}

.hero__intro p {
  margin: 0;

  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: var(--hero-text);
  max-width: 300px;
}

.hero__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  padding: 10px 24px;
  text-decoration: none;
  color: var(--hero-text);
  background: var(--hero-button);
  border-radius: 2px;
  overflow: hidden;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: transform 0.2s ease;
}

.hero__button:hover {
  transform: translateY(-1px);
}

.hero__button span:first-child {
  position: relative;
  z-index: 2;

  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.hero__button-fill {
  position: absolute;
  inset: 50px 0 -91px;
  background: var(--hero-button-fill);
  border-radius: 50px;
  transition: inset 0.25s ease;
}

.hero__button:hover .hero__button-fill {
  inset: -2px -20px;
}

@media (max-width: 1199px) {
  .hero__content {
    padding: 32px 24px 64px;
    gap: 24px;
  }

  .hero__main {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .hero__heading {
    max-width: 600px;
  }

  .hero__cta {
    width: 100%;
  }

  .hero__intro {
    width: 100%;
  }
}

@media (max-width: 809px) {
  .hero__content {
    padding: 16px 16px 80px;
    gap: 24px;
  }

  .hero__main {
    gap: 48px;
  }

  .hero__heading {
    font-size: clamp(2.75rem, 12vw, 4rem);
    letter-spacing: -0.06em;
  }

  .hero__cta {
    width: 100%;
    gap: 24px;
  }

  .hero__intro {
    width: 100%;
  }

  .hero__intro p {
    font-size: 18px;
    line-height: 1.4;
    max-width: 100%;
  }
}

:root {
  --process-bg: #0b0f14;
  --process-text: #ffffff;
  --process-muted: rgba(255, 255, 255, 0.8);
  --process-line: rgba(255, 255, 255, 0.3);
  --max-width: 1800px;
}



.process {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--process-bg);
  color: var(--process-text);
  padding: 100px 16px;
}

.process__inner {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.process__header {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.section-label__icon {
  position: relative;
  width: 16px;
  height: 16px;
  display: inline-block;
}

.section-label__icon span {
  position: absolute;
  top: 3px;
  left: 7px;
  width: 1px;
  height: 10px;
  background: #fff;
}

.section-label__icon span:last-child {
  transform: rotate(-90deg);
}

.section-label p {
  margin: 0;
  /* font-family: "Fragment Mono", monospace; */
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--process-text);
}

.process__intro {
  max-width: 700px;
}

.process__inner {
  position: relative;
  z-index: 2;
  width: min(1800px, 100%);
  margin: 0 auto;
}

.process__intro h3 {
  margin: 0;

  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 500;
  color: var(--process-text);
}

.process__steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.process-step {
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-step__number {
  margin: 0;
  font-family: "Fragment Mono", monospace;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--process-text);
}

.process-step__text {
  margin: 0;

  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.04em;
  color: var(--process-text);
}

.process__divider {
  width: 42px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(90deg);
}

.process__divider img {
  display: block;
  width: 100%;
  height: auto;
}

.process-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.process-bg__image-wrap {
  position: absolute;
  inset: 0;
  transform: scale(1.1) translateY(-100px);
  filter: brightness(0.4);
  animation: processBgDrift 6s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes processBgDrift {
  from {
    transform: scale(1.1) translateY(-10px);
  }

  to {
    transform: scale(1.1) translateY(-70px);
  }
}

.process-bg__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.process-bg__overlay {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  overflow: hidden;
}

.process-bg__truck {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 810px) {
  .process-bg {
    height: 151%;
    top: auto;
    bottom: -339px;
  }

  .process-bg__image-wrap {
    transform: scale(1.1) translateY(-100px);
  }
}

@media (min-width: 768px) {
  .process {
    /* padding: 0 32px; */
    /* min-height: 1000px; */
    display: flex;
    align-items: center;
  }

  .process__inner {
    /* gap: 180px; */
  }

  .process__header {
    gap: 32px;
  }

  .process__steps {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .process-step {
    flex: 1 1 0;
    max-width: 300px;
  }

  .process__divider {
    width: 61px;
    height: 15px;
    transform: none;
    flex: 0 0 auto;
  }

  .process__intro h3 {
    font-size: 40px;
    line-height: 44px;
  }
}

:root {
  --cta-bg: #000;
  --cta-text: #e5e5e5;
  --cta-white: #fff;
}


.cta {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  color: var(--cta-white);
}

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

.cta__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.5);
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.cta__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
  width: 100%;
  max-width: 650px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.section-label__icon {
  position: relative;
  width: 16px;
  height: 16px;
  display: inline-block;
}

.section-label__icon span {
  position: absolute;
  top: 3px;
  left: 7px;
  width: 1px;
  height: 10px;
  background: #fff;
}

.section-label__icon span:last-child {
  transform: rotate(-90deg);
}

.section-label p {
  margin: 0;
  font-family: "Fragment Mono", monospace;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cta-white);
}

.cta__headline h2 {
  margin: 0;

  font-size: clamp(3.2rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.07em;
  font-weight: 500;
  color: var(--cta-text);
}

@media (max-width: 809px) {
  .cta {
    height: 520px;
    padding: 0 16px;
  }

  .cta__content {
    gap: 16px;
  }

  .cta__headline h2 {
    font-size: clamp(2.8rem, 11vw, 4rem);
  }
}

:root {
  /* --ink: #0b0f14; */
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.78);
  --line: rgba(255, 255, 255, 0.18);
  --accent: rgba(255, 255, 255, 0.12);
  --max: 1800px;
}



.authority-section {
  position: relative;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  padding: 100px 16px;
}

.authority-wrap {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: start;
}

.authority-media,
.authority-copy {
  position: relative;
  z-index: 1;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-bottom: 24px;
}

.section-label__icon {
  position: relative;
  width: 16px;
  height: 16px;
  display: inline-block;
}

.section-label__icon span {
  position: absolute;
  top: 3px;
  left: 7px;
  width: 1px;
  height: 10px;
  background: #fff;
}

.section-label__icon span:last-child {
  transform: rotate(-90deg);
}

.section-label p {
  margin: 0;
  font-family: "Fragment Mono", monospace;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}

.authority-media h2 {
  margin: 0 0 18px;

  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
  font-weight: 500;
  color: var(--white);
  max-width: 700px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #111;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  aspect-ratio: 16 / 9;
}

.video-thumb,
.video-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-thumb {
  object-fit: contain;
  display: block;
}

.delivered-meals {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin: 2rem 0;
}

.delivered-meals .delivered-img {
  display: flex;
}

.delivered-meals .delivered-img img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-right: -1.6rem;
  border: 3px solid #fdf2e9;
}

.video-embed {
  z-index: 1;
}

.play {
  position: absolute;
  inset: auto auto 20px 20px;
  z-index: 2;
  width: 48px;
  height: 48px;
  left: 50%;
  top: 50%;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  cursor: pointer;
  font-size: 16px;
  /* transition: transform 0.2s ease, background 0.2s ease; */
  background: var(--brass);
  color: #fff;
  transform: translate(-50%, -50%);
}

.play:hover {
  /* transform: scale(1.05); */
  /* background: #fff; */
  width: 52px;
  height: 52px;
}

.video-frame span {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  font-size: 14px;
  line-height: 1.4;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  padding: 8px 10px;
  border-radius: 999px;
  width: fit-content;
}

.authority-copy {
  padding-top: 8px;
}

.press-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.press-list li {
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.press-list li b {
  color: var(--white);
}

@media (max-width: 900px) {
  .authority-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .authority-media h2 {
    max-width: 100%;
  }
}

:root {
  /* --ink: #0b0f14; */
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.78);
  --line: rgba(255, 255, 255, 0.16);
  --card: rgba(255, 255, 255, 0.04);
}

.services {
  background: var(--ink);
  color: var(--white);
  padding: 100px 16px;
  overflow: hidden;
}

.services__inner {
  width: min(1800px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.services__header {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.section-label__icon {
  position: relative;
  width: 16px;
  height: 16px;
  display: inline-block;
}

.section-label__icon span {
  position: absolute;
  top: 3px;
  left: 7px;
  width: 1px;
  height: 10px;
  background: #fff;
}

.section-label__icon span:last-child {
  transform: rotate(-90deg);
}

.section-label p {
  margin: 0;
  font-family: "Fragment Mono", monospace;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.services__header h2 {
  margin: 0;

  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
  font-weight: 500;
  color: white;
}

.services__intro {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  background: #fff;
}

.icon--forwarding {
  clip-path: polygon(0% 0%, 18% 0%, 18% 82%, 100% 82%, 100% 100%, 0% 100%);
}

.icon--warehousing {
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.icon--supply {
  clip-path: polygon(10% 52%, 38% 24%, 62% 48%, 90% 20%, 90% 36%, 62% 64%, 38% 40%, 10% 68%);
}



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

:root {
  /* --ink: #000; */
  --white: #fff;
  --muted: rgba(255, 255, 255, 0.62);
  --line: rgba(255, 255, 255, 0.16);
}


.footer {
  background: var(--ink);
  color: var(--white);
  padding: 80px 16px 24px;
  overflow: hidden;
  padding-top: 80px;
}

.footer__inner {
  width: min(1800px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  /* gap: 40px; */
}

.footer__topbar,
.footer__divider,
.footer__bottom {
  width: 100%;
}

.footer__topbar {
  height: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.footer__section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__label {
  margin: 0;
  font-family: "Fragment Mono", monospace;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer__text {
  margin: 0;
  color: var(--white);

  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer__links a {
  color: var(--white);
  text-decoration: none;
  font-family: "Fragment Mono", monospace;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.footer__links a:hover {
  opacity: 1;
}



.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--muted);
  font-family: "Fragment Mono", monospace;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer__bottom a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.9;
}

.footer__bottom a:hover {
  opacity: 1;
}

.footer__bottom p a svg {
  width: 10px;
}

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact__row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-contact__text,
.footer-contact__btn,
.footer-contact__sep {
  color: #fff;
}

.footer-contact__text {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.footer-contact__sep {
  opacity: 0.7;
}

.footer-contact__btn {
  text-decoration: none;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-contact__btn:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 6px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-family: "Fragment Mono", monospace;
  font-size: 28px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.footer-divider {
  width: 100%;
  margin-top: 24px;
  line-height: 0;
  overflow: hidden;
}

.footer-divider__image {
  filter: brightness(0) invert(1);
  display: block;
  width: 100%;
  height: auto;
}

:root {
  /* --ink: #000; */
  --white: #fff;
  --muted: rgba(255, 255, 255, 0.65);
  --line: rgba(255, 255, 255, 0.14);
}


.newsroom-section {
  background: linear-gradient(180deg, #e7e5e4 0%, #637382 10%);
  /* background: linear-gradient(180deg, #023378 0%, #a6b2e6 100%); */
  padding: 100px 16px;
  overflow: hidden;
}

.newsroom-section-2 {
  background: var(--ink);
  /* color: #000; */
  padding: 10px 16px;
  overflow: hidden;
  /* padding-top: 9rem; */
}

.newsroom-section__inner {
  width: min(1800px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.newsroom-header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 760px;
}

.newsroom-header__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.newsroom-header__icon {
  position: relative;
  width: 16px;
  height: 16px;
  display: inline-block;
}

.newsroom-header__icon::before,
.newsroom-header__icon::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 7px;
  width: 1px;
  height: 10px;
  background: var(--white);
}

.newsroom-header__icon::after {
  transform: rotate(90deg);
}

.newsroom-header__eyebrow p {
  margin: 0;
  font-family: "Fragment Mono", monospace;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
}

.newsroom-header__title {
  margin: 0;
  /* font-family: Geist, Inter, system-ui, sans-serif; */
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
  color: var(--white);
  font-weight: 500;
}

.articles-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.article-hero-image {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 8 / 3;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 24px;
  display: block;
}

.articles-carousel::-webkit-scrollbar {
  display: none;
}

.article-card {
  flex: 0 0 83.3333%;
  scroll-snap-align: start;
}

.article-card--compact {
  flex-basis: 83.3333%;
}

.article-card__link {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: var(--white);
}

.article-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 0.8 / 1;
  overflow: hidden;
  border-radius: 16px;
  background: #e5e7eb;
}

.article-card__media--empty {
  background: #111;
}

.article-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.article-card__date,
.article-card__category {
  font-family: "Fragment Mono", monospace;
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.article-card__title {
  margin: 0;
  /* font-family: Geist, Inter, system-ui, sans-serif; */
  font-size: 1.1rem;
  line-height: 1.25;
  color: white;
  letter-spacing: -0.04em;
  font-weight: 500;
}

@media (min-width: 810px) {
  .newsroom-section {
    padding: 180px 32px;
  }

  .newsroom-section-2 {
    padding: 10px 32px;
    padding-bottom: 3rem;
  }

  .articles-carousel {
    gap: 16px;
  }

  .article-card {
    flex-basis: calc(31.25% - 8.25px);
  }

  .article-card__title {
    font-size: 1.25rem;
  }
}

.testimonials {
  width: 100%;
  padding: 2rem 1.25rem;
  /* background: #ffffff; */
  background: linear-gradient(180deg, #a6b2e6 0%, #e7e5e4 100%);
}

.testimonials__container {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Header */

.testimonials__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonials__title {
  /* font-family: "Urbanist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; */
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1c1917;
  /* stone-900 */
  margin: 0;
}

.testimonials__subtitle {
  /* font-family: "Urbanist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; */
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #1c1917;
  margin: 0;
}

/* Content: video + grid */

.testimonials__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-video {
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
}

.testimonial-video__player {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0.5rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* Card */

.testimonial-card {
  background: #ffffff;
  border: 1px solid #e7e5e4;
  /* stone-200 */
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}

.testimonial-card__quote {
  /* font-family: "Urbanist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; */
  /* font-size: 1.25rem; */
  /* line-height: 1.625rem; */
  color: #1c1917;
  margin: 0;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonial-card__avatar {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  overflow: hidden;
  margin: 0;
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-card__meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.15rem;
}

.testimonial-card__name {
  /* font-family: "Urbanist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; */
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4rem;
  color: #1c1917;
  margin: 0;
}

.testimonial-card__company {
  /* font-family: "Urbanist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; */
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4rem;
  color: #1c1917;
  margin: 0;
}

/* Desktop layout */

@media (min-width: 768px) {
  .testimonials {
    padding: 6rem 2.5rem;
    background: linear-gradient(180deg, #a6b2e6 0%, #e7e5e4 100%);
  }

  .testimonials__container {
    gap: 3rem;
  }

  .testimonials__header {
    flex-direction: row;
    align-items: flex-end;
    gap: 1.5rem;
    overflow: hidden;
  }

  .testimonials__title {
    flex: 1;
    font-size: 3.25rem;
    font-weight: 600;
    line-height: 3.575rem;
  }

  .testimonials__subtitle {
    flex: 1;
    max-width: 352px;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.625rem;
  }

  .testimonials__content {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }

  .testimonial-video {
    flex-shrink: 0;
    width: 357px;
    height: 470px;
    /* matches card grid height (2 rows x 56 + gap) */
  }

  .testimonial-video__player {
    width: 100%;
    height: 100%;
  }

  .testimonial-grid {
    flex: 1;
    grid-template-columns: repeat(2, minmax(50px, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .testimonial-card {
    height: 14rem;
    /* md:h-56 */
  }
}

:root {
  --white: #fff;
  --black: #000;
  --text: #111827;
  --muted: rgba(255, 255, 255, 0.72);
  --panel: #e5e7eb;
  --line: #d1d5db;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  /* font-family: Inter, system-ui, sans-serif; */
}

.contact-section {
  position: relative;
  background: #fff;
  overflow: hidden;
  min-height: 1000px;
}

.contact-section__inner {
  position: relative;
  width: 100%;
  min-height: 1000px;
  padding-top: 72px;
  overflow: hidden;
}

.contact-section__content {
  position: relative;
  z-index: 2;
  width: min(1800px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  padding: 16px;
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.contact-bg__imageWrap {
  position: absolute;
  inset: 0;
  left: -55.3333%;
  width: 155%;
  height: 100%;
  overflow: hidden;
  filter: brightness(0.4);
}

.contact-bg__image,
.contact-bg__overlayImage {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.contact-bg__overlay {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  overflow: hidden;
}

.contact-intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 180px;
}

.contact-intro__email {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--white);
  text-decoration: none;
  font-family: Geist, Inter, system-ui, sans-serif;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  position: relative;
  padding-bottom: 8px;
}

.contact-intro__email::after {
  content: "";
  position: absolute;
  left: -60px;
  bottom: 0;
  width: 53px;
  height: 2px;
  background: var(--white);
}

.contact-intro__title {
  margin: 0;
  color: var(--white);
  font-family: Geist, Inter, system-ui, sans-serif;
  font-size: clamp(3.2rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  max-width: 8ch;
}

.quote-panel {
  /* background: var(--panel); */
  border-radius: 21px;
  /* padding: 24px; */
  display: flex;
  flex-direction: column;
  /* gap: 32px; */
}

.quote-panel__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.section-label__icon {
  position: relative;
  width: 16px;
  height: 16px;
}

.section-label__icon span {
  position: absolute;
  top: 3px;
  left: 7px;
  width: 1px;
  height: 10px;
  background: var(--white);
}

.section-label__icon span:last-child {
  transform: rotate(90deg);
}

.section-label p {
  margin: 0;
  font-family: "Fragment Mono", monospace;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--white);
}

.quote-panel h2 {
  margin: 0;
  font-family: Geist, Inter, system-ui, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: var(--white);
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.quote-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.quote-form__field {
  display: block;
  width: 100%;
}

.quote-form__field input,
.quote-form__field textarea {
  width: 100%;
  border: none;
  /* border-bottom: 1px solid #000; */
  border-bottom: 3px solid var(--white);
  background: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 14px;
  border-radius: 10px;
  outline: none;
}

.quote-form__field textarea {
  resize: vertical;
  min-height: 140px;
}

.quote-form__field input::placeholder,
.quote-form__field textarea::placeholder {
  color: #fff;
}

.quote-form__field input:focus,
.quote-form__field textarea:focus {
  border-color: #3961a5;
}

.quote-form__field--full {
  grid-column: 1 / -1;
}

.quote-form__button {
  border: 0;
  background: var(--black);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 999px;
  font-family: Geist, Inter, system-ui, sans-serif;
  font-size: 16px;
  cursor: pointer;
  width: fit-content;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.quote-form__button:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .contact-section__content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-intro {
    padding-top: 80px;
  }

  .quote-form__row {
    grid-template-columns: 1fr;
  }

  .contact-intro__email::after {
    left: 0;
  }
}

.drive-wa-float {
  position: fixed;
  right: 18px;
  left: auto;
  bottom: 18px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  overflow: visible;
}

.drive-wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.drive-wa-icon {
  width: 28px;
  height: 28px;
  display: block;
  position: relative;
  z-index: 2;
}

.drive-wa-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.drive-wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.38);
  animation: driveWaPulse 1.8s infinite;
  z-index: 1;
}

@keyframes driveWaPulse {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }

  70% {
    transform: scale(1.75);
    opacity: 0;
  }

  100% {
    transform: scale(1.75);
    opacity: 0;
  }
}

.drive-wa-tooltip {
  position: absolute;
  right: 72px;
  left: auto;
  bottom: 12px;
  background: #0f172a;
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
  padding: 9px 12px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.drive-wa-tooltip::before {
  content: "";
  position: absolute;
  right: -5px;
  left: auto;
  top: 50%;
  width: 10px;
  height: 10px;
  background: #0f172a;
  transform: translateY(-50%) rotate(45deg);
}

.drive-wa-float:hover .drive-wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.drive-wa-hidden {
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
}

.legal-page {
  padding: 48px 24px;
  background: var(--mist-2);
}

.legal-page-inner {
  max-width: 900px;
  margin: 0 auto;
}

.legal-page-title {
  font-size: 32px;
  margin: 0 0 28px;
  color: var(--ink-900);
}

.legal-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 12px;
}

.legal-tab {
  padding: 10px 14px;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  color: var(--ink);
}

.legal-tab:hover {
  border: 1px solid white;
  background: var(--ink);
  color: white;
}

.legal-tab.is-active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.legal-content {
  background: var(--white);
  border: 1px solid var(--ink);
  border-radius: 8px;
  padding: 24px;
}

.legal-article {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
}

.legal-article h2 {
  font-size: 22px;
  margin: 0 0 12px;
}

.legal-article h3 {
  font-size: 18px;
  margin: 16px 0 8px;
}

.legal-article p {
  margin: 0 0 12px;
}

.legal-article ul,
.legal-article ol {
  margin: 0 0 12px;
  padding-left: 18px;
}

.not-found-page {
  margin: 0;
  font-family: "Public Sans", sans-serif;
  /* background: #f5f7fb; */
  color: #0f172a;
}

.not-found {
  /* min-height: 60vh; */
  padding-top: 10rem;
  backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  padding: 120px 15px 10px 15px;
  background: var(--ink);
}

.not-found__card {
  background: linear-gradient(18deg, #313132c7 0%, #e7e5e43a 100%), url(https://heroportstrade.vercel.app/assets/containers.png);
  background-position: bottom;
  background-size: cover;
  width: min(680px, 100%);
  /* backdrop-filter: blur(32px); */
  border-radius: 28px;
  padding: 48px 32px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
}

.not-found__eyebrow {
  margin: 0 0 12px;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
}

.not-found__title {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.not-found__text {
  margin: 16px auto 0;
  max-width: 48ch;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #ffffff;
}

.not-found__actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.not-found__button,
.not-found__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.not-found__button {
  background: #0f172a;
  color: #fff;
}

button {
  font-family: var(--font-body);
}

.not-found__link {
  border: 1px solid #cbd5e1;
  color: #0f172a;
  background: #fff;
}

@media (max-width: 640px) {
  .not-found__card {
    padding: 36px 20px;
    border-radius: 22px;
  }

  .not-found__actions {
    flex-direction: column;
  }

  .not-found__button,
  .not-found__link {
    width: 100%;
  }
}

.service-hero-image {
  width: 100%;
  max-width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 18px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .service-hero-image {
    height: 240px;
    border-radius: 14px;
    margin-bottom: 18px;
  }
}

.article-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.article-author__photo {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}

.article-author__name {
  font-weight: 700;
  color: var(--ink);
}

.article-author__title {
  font-size: 14px;
  color: #4A5670;
}

.industry-relationships {
  padding: 72px 0;
  background: linear-gradient(180deg, #000000 50%, #023378 100%);
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.partner-logos span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 600;
  color: #023378;
}

.logo-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(to right,
      transparent 0,
      #000 8%,
      #000 92%,
      transparent 100%);
  -webkit-mask-image: linear-gradient(to right,
      transparent 0,
      #000 8%,
      #000 92%,
      transparent 100%);
  padding-top: 1rem;
}

.logo-marquee__track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: logo-scroll 28s linear infinite;
  will-change: transform;
}

.logo-marquee__track span {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 84px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

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

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

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

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

@media (prefers-reduced-motion: reduce) {
  .logo-marquee__track {
    /* animation: none; */
    /* transform: none; */
  }
}

.trust-section {
  padding: 80px 0;
  /* background: #a6b2e6; */
  background: linear-gradient(180deg, #023378 0%, #a6b2e6 100%);
}

.trust-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-list li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: #023378;
  font-weight: 600;
}

@media (max-width: 768px) {
  .trust-list {
    grid-template-columns: 1fr;
  }
}

.footer-badges {
  display: inline-flex;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 22px;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 43px;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(42px);
}

.footer-badge img {
  width: 70px;
  height: 39px;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer-badge span {
  font-size: 13px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.9);
}

.astra-wa-float {
  position: fixed;
  right: 18px;
  left: auto;
  bottom: 18px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  overflow: visible;
}

.astra-wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.astra-wa-icon {
  width: 28px;
  height: 28px;
  display: block;
  position: relative;
  z-index: 2;
}

.astra-wa-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.astra-wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.38);
  animation: astraWaPulse 1.8s infinite;
  z-index: 1;
}

@keyframes astraWaPulse {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }

  70% {
    transform: scale(1.75);
    opacity: 0;
  }

  100% {
    transform: scale(1.75);
    opacity: 0;
  }
}

.astra-wa-tooltip {
  position: absolute;
  right: 72px;
  left: auto;
  bottom: 12px;
  background: #0f172a;
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
  padding: 9px 12px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.astra-wa-tooltip::before {
  content: "";
  position: absolute;
  right: -5px;
  left: auto;
  top: 50%;
  width: 10px;
  height: 10px;
  background: #0f172a;
  transform: translateY(-50%) rotate(45deg);
}

.astra-wa-float:hover .astra-wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.astra-wa-hidden {
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
}