:root {
  --navy: #0f1b2d;
  --navy-soft: #172538;
  --ink: #121c2b;
  --muted: #5d6877;
  --gold: #d4af37;
  --gold-soft: #f4ead0;
  --paper: #f7f6f2;
  --white: #ffffff;
  --line: rgba(15, 27, 45, 0.12);
  --line-dark: rgba(255, 255, 255, 0.14);
  --success: #187447;
  --danger: #a4342b;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --radius: 8px;
  --shadow: 0 20px 50px rgba(15, 27, 45, 0.12);
  --font-heading: "Sora", Arial, sans-serif;
  --font-body: "Source Sans 3", Arial, sans-serif;
  --hero-underlay-opacity: 0.24;
  --hero-underlay-size: min(58vw, 820px);
  --hero-underlay-position: 92% center;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.45);
  outline-offset: 3px;
}

.container {
  width: min(100% - 1.25rem, 1160px);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: var(--space-3);
  z-index: 1000;
  padding: var(--space-2) var(--space-3);
  background: var(--gold);
  color: var(--navy);
  border-radius: 999px;
  font-weight: 800;
}

.skip-link:focus {
  left: var(--space-3);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: var(--space-3);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: auto;
  height: 52px;
  object-fit: contain;
  filter: contrast(1.12);
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.bar {
  width: 22px;
  height: 2px;
  margin: 3px 0;
  background: var(--navy);
}

.nav-menu {
  position: absolute;
  inset: calc(100% + 0.5rem) 0 auto;
  display: grid;
  gap: var(--space-1);
  width: min(100% - 1.25rem, 360px);
  margin: 0 auto;
  padding: var(--space-2);
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.65rem 0.8rem;
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 800;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: rgba(15, 27, 45, 0.06);
}

.nav-menu .nav-cta {
  background: var(--navy);
  color: var(--white);
}

.section {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-6);
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: max(1.25rem, calc((100vw - 1160px) / 2));
  width: min(180px, 34vw);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(212, 175, 55, 0));
}

.section-light {
  background: var(--white);
}

.section-heading {
  position: relative;
  max-width: 680px;
  margin-bottom: var(--space-4);
}

.section-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.7rem;
  width: min(260px, 70vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.52), rgba(212, 175, 55, 0));
}

.section-heading .eyebrow {
  display: inline-flex;
  align-items: center;
}

.section-heading .eyebrow::before {
  content: "";
  display: inline-flex;
  width: 9px;
  height: 9px;
  margin-right: 0.65rem;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.12);
}

.eyebrow {
  margin: 0 0 var(--space-2);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 var(--space-2);
  font-family: var(--font-heading);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.15rem, 12vw, 3.2rem);
}

h2 {
  font-size: clamp(1.7rem, 8vw, 2.45rem);
}

h3 {
  font-size: 1.08rem;
}

p {
  margin: 0 0 var(--space-3);
}

.lead,
.section-heading p,
.card p,
.step p,
.proof-card p,
.contact-details,
.legal p,
.legal li {
  color: var(--muted);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--space-5) + 1.25rem) 0 var(--space-5);
  background: var(--navy);
  color: var(--white);
}

.hero-underlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../assets/images/hero-carrier.jpg") no-repeat var(--hero-underlay-position) / var(--hero-underlay-size) auto;
  opacity: var(--hero-underlay-opacity);
  filter: saturate(0.78) contrast(0.9);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 40%,
    rgba(0, 0, 0, 0.32) 52%,
    rgba(0, 0, 0, 0.96) 70%,
    rgba(0, 0, 0, 0.52) 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 40%,
    rgba(0, 0, 0, 0.32) 52%,
    rgba(0, 0, 0, 0.96) 70%,
    rgba(0, 0, 0, 0.52) 94%,
    transparent 100%
  );
  pointer-events: none;
  transform-origin: 78% 50%;
  animation: heroUnderlayZoom 22s ease-in-out infinite alternate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    var(--navy) 0%,
    var(--navy) 48%,
    rgba(15, 27, 45, 0.96) 60%,
    rgba(15, 27, 45, 0.72) 76%,
    rgba(15, 27, 45, 0.42) 90%,
    rgba(15, 27, 45, 0.18) 100%
  );
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 28% 38%, rgba(255, 255, 255, 0.06), transparent 56%),
    radial-gradient(circle at 74% 34%, rgba(212, 175, 55, 0.07), transparent 32%);
  opacity: 1;
  pointer-events: none;
}

.hero-fade {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 110px;
  background: linear-gradient(to bottom, transparent, var(--paper));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 760px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-block: var(--space-3);
  padding-right: 40px;
  animation: heroCopyIn 560ms ease both;
}

.hero-route {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  width: 1px;
  height: 140%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(212, 175, 55, 0.22),
    transparent
  );
  opacity: 0.46;
}

.hero-route::after {
  content: "";
  position: absolute;
  left: 0;
  top: -24%;
  width: 1px;
  height: 38%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(212, 175, 55, 0.5),
    transparent
  );
  animation: routeFlow 4.4s linear infinite;
}

.hero-route-a {
  left: min(720px, 55%);
  top: -20%;
  transform: rotate(10deg);
}

.hero-route-b {
  left: min(840px, 62%);
  top: -16%;
  height: 128%;
  opacity: 0.24;
  transform: rotate(-13deg);
}

.hero-node {
  position: absolute;
  z-index: 1;
  width: 8px;
  height: 8px;
  pointer-events: none;
  background: rgba(212, 175, 55, 0.78);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(212, 175, 55, 0.12);
}

.hero-node-a {
  top: 22%;
  right: 18%;
  animation: nodePulse 2600ms ease-in-out infinite;
}

.hero-node-b {
  left: 16%;
  bottom: 26%;
  animation: nodePulse 2600ms ease-in-out 700ms infinite;
}

.hero .lead {
  max-width: 43rem;
  color: rgba(255, 255, 255, 0.76);
}

.hero-actions {
  display: grid;
  gap: var(--space-2);
  margin-top: 24px;
}

.authority-strip {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  opacity: 0.92;
}

.authority-strip div {
  padding: 0.8rem 0.9rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.authority-strip dt {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 900;
}

.authority-strip dd {
  margin: 0.15rem 0 0;
  color: rgba(255, 255, 255, 0.68);
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroUnderlayZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.045);
  }
}

@keyframes routeFlow {
  from {
    transform: translateY(-20%);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  to {
    transform: translateY(320%);
    opacity: 0;
  }
}

@keyframes nodePulse {
  0%,
  100% {
    opacity: 0.34;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.24);
  }

  70% {
    opacity: 0.72;
    transform: scale(1.18);
    box-shadow: 0 0 0 8px rgba(212, 175, 55, 0);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: #e1bd4a;
}

.btn-secondary {
  color: var(--white);
  background: transparent;
  border-color: var(--line-dark);
}

.grid {
  display: grid;
  gap: var(--space-3);
}

.card,
.step,
.proof-card,
.contact-form,
.contact-details address,
.contact-card,
.legal article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.card,
.step,
.proof-card,
.contact-form,
.contact-details address,
.contact-card {
  padding: var(--space-3);
}

.card {
  display: grid;
  gap: var(--space-3);
}

.card img,
.proof-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}

.card h3::before,
.step h3::before {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-bottom: var(--space-3);
  background: var(--gold);
}

.process-list {
  counter-reset: step;
}

.step {
  counter-increment: step;
  border-left: 3px solid var(--gold);
}

.step::before {
  content: "0" counter(step);
  display: inline-flex;
  margin-bottom: var(--space-2);
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 900;
}

.capability-panel {
  display: grid;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.capability-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.capability-list {
  display: grid;
  gap: var(--space-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-list li {
  position: relative;
  padding: var(--space-3) var(--space-3) var(--space-3) 2.35rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  font-weight: 800;
}

.capability-list li::before {
  content: "";
  position: absolute;
  left: var(--space-3);
  top: 1.42rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--gold);
  border-radius: 50%;
}

.proof-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  padding: 0;
}

.proof-card img {
  transition: transform 240ms ease;
}

.proof-card div {
  padding: var(--space-3);
}

.proof-card span {
  display: inline-flex;
  margin-bottom: var(--space-2);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  gap: var(--space-4);
}

.field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: var(--space-3);
}

label {
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.9rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(15, 27, 45, 0.2);
  border-radius: var(--radius);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.14);
}

.error {
  min-height: 1rem;
  color: var(--danger);
}

.form-status {
  margin-top: var(--space-3);
  font-weight: 800;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

.contact-details {
  display: grid;
  gap: var(--space-3);
}

address {
  font-style: normal;
}

.contact-details a {
  color: var(--navy);
  font-weight: 900;
}

.contact-card {
  background: var(--navy);
  color: var(--white);
}

.contact-card p {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-4);
  background: var(--navy);
  color: var(--white);
}

.site-footer::before {
  content: "";
  position: absolute;
  right: min(8vw, 7rem);
  top: -120px;
  width: 260px;
  height: 260px;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  border-right: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  width: 96px;
  height: auto;
  margin-bottom: var(--space-3);
}

.footer-grid h4 {
  margin-bottom: var(--space-3);
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid section:first-child p {
  max-width: 29rem;
}

.footer-grid .footer-authority {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.footer-grid ul {
  display: grid;
  gap: var(--space-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-handle {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  min-height: 44px;
  padding: 0.35rem 0.55rem 0.35rem 0.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
}

.social-handle svg {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  padding: 0.5rem;
  color: var(--white);
  fill: currentColor;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-2);
  padding-top: var(--space-3);
  padding-bottom: 0.25rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: max(1.5rem, env(safe-area-inset-right));
  bottom: max(2rem, env(safe-area-inset-bottom));
  z-index: 950;
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #062d17;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.whatsapp-float svg {
  width: 36px;
  height: 36px;
  padding: 0.42rem;
  fill: currentColor;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}

.whatsapp-float span {
  display: none;
}

.legal {
  padding-block: var(--space-6);
}

.legal article {
  padding: var(--space-4);
}

.legal h1 {
  margin-bottom: var(--space-3);
}

.legal h2 {
  margin-top: var(--space-5);
}

.noscript {
  padding: var(--space-2);
  text-align: center;
  background: var(--gold-soft);
  color: var(--navy);
}

@media (min-width: 700px) {
  .container {
    width: min(100% - 3rem, 1160px);
  }

  .hero-actions {
    display: flex;
  }

  .authority-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 699px) {
  .hero {
    --hero-underlay-opacity: 0.045;
    --hero-underlay-size: 155vw;
    --hero-underlay-position: 76% center;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero-fade,
  .hero-route,
  .hero-node-b {
    display: none;
  }

  .hero-underlay {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 20%, #000 72%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 20%, #000 72%, transparent 100%);
  }

  .hero-node-a {
    top: 18%;
    right: 12%;
  }
}

@media (min-width: 920px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    align-items: center;
    width: auto;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-menu a {
    padding-inline: 0.75rem;
  }

  .brand-logo {
    height: 64px;
  }

  .hero {
    padding: 4.8rem 0 4rem;
  }

  .hero .container {
    width: min(100% - 3rem, 1320px);
  }

  .hero-grid {
    max-width: 790px;
  }

  h1 {
    font-size: clamp(3rem, 4.15vw, 4.2rem);
  }

  .section {
    padding-block: var(--space-7);
  }

  .card,
  .step,
  .contact-form,
  .contact-details address,
  .contact-card {
    padding: var(--space-4);
  }

  .contact-grid,
  .capability-panel {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
    align-items: start;
  }

  .whatsapp-float {
    display: inline-flex;
    justify-content: center;
    gap: var(--space-2);
    width: auto;
    min-width: 160px;
    right: max(2.25rem, env(safe-area-inset-right));
    bottom: max(2.75rem, env(safe-area-inset-bottom));
    padding: 0.6rem 1rem 0.6rem 0.65rem;
    border-radius: 999px;
    font-weight: 900;
  }

  .whatsapp-float span {
    display: inline;
  }
}

@media (min-width: 920px) and (max-height: 920px) {
  .hero {
    padding: 3.5rem 0 3.25rem;
  }

  h1 {
    font-size: clamp(2.8rem, 3.8vw, 3.85rem);
  }

  .hero-actions {
    margin-top: 18px;
  }

  .authority-strip {
    margin-top: 20px;
  }
}

@media (hover: hover) {
  .card,
  .step,
  .proof-card,
  .btn,
  .social-handle svg,
  .authority-strip div,
  .whatsapp-float {
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
  }

  .card:hover,
  .step:hover,
  .proof-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 18px 38px rgba(15, 27, 45, 0.1);
  }

  .social-handle:hover svg {
    color: var(--navy);
    background: var(--gold);
  }

  .social-handle:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(2px);
  }

  .proof-card:hover img {
    transform: scale(1.025);
  }

  .authority-strip div:hover {
    transform: translateY(-2px);
    border-color: rgba(212, 175, 55, 0.36);
    background: rgba(255, 255, 255, 0.1);
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-copy,
  .hero-underlay,
  .hero::after,
  .hero-route,
  .hero-route::after,
  .hero-node {
    opacity: 1;
    transform: none;
  }
}
