/* PrimePath Logistics — navy + red orange design system */

:root {
  --navy: #0b1822;
  --navy-deep: #071117;
  --navy-mid: #142836;
  --gold: #f15a29;
  --gold-deep: #d44518;
  --gold-soft: rgba(241, 90, 41, 0.14);
  --teal: var(--navy);
  --teal-deep: var(--navy);
  --teal-mid: var(--navy-mid);
  --orange: var(--gold);
  --orange-deep: var(--gold-deep);
  --ink: #1a2430;
  --grey: #6b7580;
  --line: rgba(12, 26, 36, 0.1);
  --white: #ffffff;
  --paper: #f6f3f1;
  --cream: #f8f2ef;
  --shadow: 0 20px 50px rgba(12, 26, 36, 0.1);
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-ui: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Poppins", "Segoe UI", sans-serif;
  --header-h: 78px;
  --topbar-h: 42px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1140px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

button, input, select, textarea {
  font-family: var(--font-ui);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ——— Top bar ——— */
.topbar {
  background: var(--teal);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar-item { opacity: 0.9; }
.topbar a:hover { color: var(--orange); }

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(8, 45, 56, 0.08);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--teal);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: linear-gradient(145deg, var(--gold), var(--gold-deep));
  color: var(--navy);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
}

.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.brand-tag {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 0.2rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--teal);
  margin: 5px auto;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem 1.25rem;
}
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.site-nav a {
  font-family: var(--font-ui);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 0.5rem 0.7rem;
  transition: color 0.25s;
}
.site-nav ul a:hover,
.site-nav ul a.is-active { color: var(--orange); }

/* ——— Buttons ——— */
.btn {
  font-family: var(--font-ui);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.25s, color 0.25s, box-shadow 0.3s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(241, 90, 41, 0.28);
}
.btn-primary:hover { background: var(--gold-deep); }
.btn-white {
  background: var(--white);
  color: var(--teal);
}
.btn-white:hover { background: #fff1eb; color: var(--navy); }

/* ??? Hero ??? */
.hero {
  position: relative;
  min-height: calc(100vh - var(--topbar-h));
  min-height: calc(100dvh - var(--topbar-h));
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--navy);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(12, 26, 36, 0.9) 0%, rgba(12, 26, 36, 0.72) 40%, rgba(12, 26, 36, 0.42) 70%, rgba(12, 26, 36, 0.28) 100%),
    linear-gradient(to top, rgba(12, 26, 36, 0.55), transparent 48%);
}
.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: 8%;
  top: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 90, 41, 0.22), transparent 70%);
  filter: blur(10px);
  z-index: 1;
  pointer-events: none;
  animation: aboutOrb 8s ease-in-out infinite;
}
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: 5.5rem 0 5rem;
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}
.hero-content {
  max-width: none;
  margin: 0;
  width: auto;
  padding: 0;
  position: relative;
  z-index: 1;
}
.hero-kicker {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  line-height: 1.1;
  margin: 0 0 1.2rem;
  letter-spacing: -0.015em;
}
.hero-title .brand-line {
  display: block;
  color: var(--gold);
  font-size: 0.68em;
  margin-bottom: 0.4rem;
}
.hero-title .title-line { display: block; max-width: 14ch; }
.hero-lead {
  max-width: 32rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 1.75rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 1.75rem; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.hero-trust div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.hero-trust strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--gold);
  line-height: 1;
}
.hero-trust span {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.hero-side { position: relative; }
.hero-card {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(22px);
}
body.is-ready .hero-side.reveal-hero {
  opacity: 1;
  transform: none;
  animation: none;
}
body.is-ready .hero-card {
  animation: riseIn 0.9s var(--ease) 0.55s forwards;
}
.hero-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.hero-card figcaption {
  padding: 1rem 1.15rem 1.15rem;
  background: linear-gradient(180deg, rgba(12, 26, 36, 0.2), rgba(12, 26, 36, 0.92));
  margin-top: -3rem;
  position: relative;
}
.hero-card figcaption span {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.hero-card figcaption strong {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 600;
}

.reveal-hero {
  opacity: 0;
  transform: translateY(28px);
}
body.is-ready .reveal-hero {
  animation: riseIn 0.85s var(--ease) forwards;
}
body.is-ready .hero-kicker { animation-delay: 0.1s; }
body.is-ready .hero-title { animation-delay: 0.22s; }
body.is-ready .hero-lead { animation-delay: 0.36s; }
body.is-ready .hero-actions { animation-delay: 0.48s; }
body.is-ready .hero-trust { animation-delay: 0.6s; }
body.is-ready .hero-side { animation-delay: 0.5s; }

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.55rem;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  opacity: 0;
  color: rgba(255, 255, 255, 0.78);
}
body.is-ready .hero-scroll {
  animation: riseIn 0.8s var(--ease) 0.95s forwards;
}
.hero-scroll span {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  text-transform: uppercase;
  line-height: 1;
}
.hero-scroll i {
  position: relative;
  width: 1px;
  height: 42px;
  display: block;
  background: rgba(241, 90, 41, 0.28);
  overflow: hidden;
}
.hero-scroll i::after {
  content: "";
  position: absolute;
  left: 0;
  top: -40%;
  width: 100%;
  height: 40%;
  background: var(--gold);
  animation: scrollDrop 1.85s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.hero-scroll:hover { color: rgba(255, 255, 255, 0.95); }
.hero-scroll:hover i { background: rgba(241, 90, 41, 0.4); }

/* ——— Sections ——— */
.section { padding: clamp(4.5rem, 9vw, 6.5rem) 0; position: relative; }
.section-head { max-width: 40rem; margin-bottom: 2.75rem; }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 0.75rem;
}
.section-label.accent { color: var(--orange); }
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--teal);
}
.section-title.light { color: var(--white); }
.section-copy { margin: 0; color: var(--grey); max-width: 36rem; }

/* ??? Features ??? */
.features-sec {
  background: var(--paper);
  overflow: hidden;
  position: relative;
}
.features-bg {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  pointer-events: none;
}
.features-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.05) brightness(1.05);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  position: relative;
  z-index: 1;
}
.feature-card {
  text-align: left;
  padding: 1.6rem 1.3rem 1.5rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 26, 36, 0.06);
  box-shadow: 0 14px 40px rgba(12, 26, 36, 0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(12, 26, 36, 0.12);
  border-color: rgba(241, 90, 41, 0.3);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-index {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: rgba(12, 26, 36, 0.08);
  line-height: 1;
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin: 0 0 1.1rem;
}
.feature-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tone-coral { background: var(--gold-soft); color: var(--gold-deep); }
.tone-teal { background: rgba(12, 26, 36, 0.08); color: var(--navy); }
.tone-green { background: rgba(12, 26, 36, 0.08); color: var(--navy-mid); }
.tone-amber { background: var(--gold-soft); color: var(--gold-deep); }
.feature-card h3 {
  font-family: var(--font-ui);
  font-size: 1.08rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--navy);
}
.feature-card p {
  margin: 0;
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ??? About ??? */
.about-sec {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
  overflow: hidden;
  position: relative;
}
.about-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(241, 90, 41, 0.12), transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.04), transparent 35%);
  pointer-events: none;
}
.about-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: aboutOrb 10s ease-in-out infinite;
}
.about-orb-a {
  width: 280px;
  height: 280px;
  background: rgba(241, 90, 41, 0.16);
  top: 8%;
  right: -60px;
}
.about-orb-b {
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.06);
  bottom: 12%;
  left: -40px;
  animation-delay: -4s;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-visual {
  position: relative;
  padding: 0 2rem 2.75rem 0;
  min-height: 480px;
}
.about-media-frame {
  position: absolute;
  inset: 2.25rem -0.35rem -0.85rem 2.1rem;
  border: 1.5px solid rgba(241, 90, 41, 0.55);
  border-radius: 26px;
  z-index: 0;
  pointer-events: none;
}
.about-visual-main {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
  aspect-ratio: 4 / 5;
  max-height: 540px;
}
.about-visual-main img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 1.1s var(--ease);
}
.about-visual.is-in .about-visual-main img {
  transform: scale(1);
}
.about-visual-main:hover img {
  transform: scale(1.05);
}
.about-visual-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(12, 26, 36, 0.12), transparent 45%, rgba(12, 26, 36, 0.28));
  z-index: 1;
  pointer-events: none;
}
.about-float-stat {
  position: absolute;
  top: -0.65rem;
  left: -0.65rem;
  z-index: 3;
  background: var(--gold);
  color: var(--navy);
  padding: 1rem 0.95rem 0.9rem;
  border-radius: 16px;
  width: 102px;
  min-height: 102px;
  display: grid;
  align-content: center;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(-14px) scale(0.95);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.about-visual.is-in .about-float-stat {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.25s;
}
.about-float-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.15rem;
  line-height: 1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}
.about-float-stat span {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.about-visual-accent {
  position: absolute;
  right: -0.35rem;
  bottom: -0.15rem;
  width: min(62%, 300px);
  z-index: 4;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
  border: 4px solid #fff;
  background: var(--navy);
  opacity: 0;
  transform: translate(18px, 18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.about-visual.is-in .about-visual-accent {
  opacity: 1;
  transform: translate(0, 0);
  transition-delay: 0.35s;
}
.about-visual-accent:hover {
  transform: translateY(-4px);
}
.about-visual-accent img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.about-visual-accent:hover img {
  transform: scale(1.06);
}
.about-accent-caption {
  display: block;
  padding: 0.7rem 0.85rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--navy);
  text-align: center;
}
.about-lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
}
.about-body p { margin: 0 0 1rem; color: rgba(255, 255, 255, 0.7); }
.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 0;
  border-top: 0;
}
.about-point {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1.15rem 1.1rem;
  transition: transform 0.35s var(--ease), background 0.35s, border-color 0.35s;
}
.about-point:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(241, 90, 41, 0.35);
}
.about-point-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(241, 90, 41, 0.12);
  color: var(--gold);
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
}
.about-point-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-points h3 {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.about-points p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3.25rem;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}
.counter-col {
  text-align: center;
  padding: 1.1rem 0.75rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.35s var(--ease), border-color 0.35s;
}
.counter-col:hover {
  transform: translateY(-4px);
  border-color: rgba(241, 90, 41, 0.3);
}
.counter-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.45rem;
}
.counter-label {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.68);
}

@keyframes aboutOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -18px) scale(1.08); }
}

/* ??? Products ??? */
.products-sec {
  background:
    radial-gradient(900px 420px at 8% 0%, rgba(241, 90, 41, 0.08), transparent 55%),
    radial-gradient(700px 380px at 100% 100%, rgba(12, 26, 36, 0.04), transparent 50%),
    var(--paper);
  color: var(--ink);
  overflow: hidden;
}
.products-sec .section-title { color: var(--navy); }
.products-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem 2.5rem;
  align-items: end;
  max-width: none;
  margin-bottom: 2.75rem;
}
.products-head .section-copy {
  margin: 0;
  max-width: 28rem;
  color: var(--grey);
  justify-self: end;
}
.product-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.product-item {
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform 0.45s var(--ease);
}
.product-item:hover { transform: translateY(-8px); }
.product-media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--navy);
  isolation: isolate;
}
.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12, 26, 36, 0.35));
  pointer-events: none;
  z-index: 1;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease), filter 0.5s;
  filter: saturate(1.05) contrast(1.04) brightness(1.02);
}
.product-item:hover .product-media img {
  transform: scale(1.07);
  filter: saturate(1.1) contrast(1.06) brightness(1.03);
}
.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}
.product-info {
  padding: 1.25rem 0.15rem 0.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-info h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  color: var(--navy);
  margin: 0 0 0.45rem;
  line-height: 1.2;
}
.product-info p {
  margin: 0 0 1.15rem;
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.55;
  flex: 1;
}
.product-link {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  align-self: flex-start;
  padding: 0.75rem 1.15rem;
  border-radius: 12px;
  background: var(--white);
  border: 1.5px solid rgba(12, 26, 36, 0.14);
  box-shadow: 0 8px 20px rgba(12, 26, 36, 0.05);
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s, gap 0.3s;
}
.product-link::after {
  content: "?";
  font-size: 1em;
  transition: transform 0.3s var(--ease);
}
.product-link:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  gap: 0.7rem;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(12, 26, 36, 0.16);
}
.product-link:hover::after { transform: translateX(3px); }
.product-item:hover .product-link {
  border-color: rgba(241, 90, 41, 0.55);
}

/* ??? Services ??? */
.services-sec {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  overflow: hidden;
  position: relative;
}
.services-sec::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -120px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 90, 41, 0.12), transparent 68%);
  pointer-events: none;
}
.services-sec .section-title { color: var(--white); }
.services-head {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem 2.5rem;
  align-items: end;
  max-width: none;
  margin-bottom: 2.75rem;
  position: relative;
  z-index: 1;
}
.services-head .section-copy {
  margin: 0;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.62);
  justify-self: end;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
.service-tile {
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform 0.45s var(--ease);
}
.service-tile:hover { transform: translateY(-8px); }
.service-tile-media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4 / 3.2;
  background: var(--navy-mid);
  isolation: isolate;
}
.service-tile-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(12, 26, 36, 0.55));
  pointer-events: none;
  z-index: 1;
}
.service-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease);
  filter: saturate(1.04) contrast(1.03);
}
.service-tile:hover .service-tile-media img {
  transform: scale(1.07);
}
.service-num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}
.service-icon {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.service-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-tile-body {
  padding: 1.35rem 0.2rem 0.35rem;
}
.service-kicker {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.55rem;
}
.service-tile-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  color: var(--white);
  margin: 0 0 0.55rem;
  line-height: 1.2;
}
.service-tile-body > p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  line-height: 1.6;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.15rem;
}
.service-tags li {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.82);
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}
.service-cta {
  font-family: var(--font-ui);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.25s, gap 0.25s;
  width: fit-content;
}
.service-cta::after {
  content: "?";
  transition: transform 0.25s var(--ease);
}
.service-cta:hover {
  color: #ff8a5c;
  gap: 0.65rem;
}
.service-cta:hover::after { transform: translateX(3px); }

/* ??? Contact ??? */
.contact-sec {
  background:
    radial-gradient(800px 420px at 100% 0%, rgba(241, 90, 41, 0.08), transparent 55%),
    radial-gradient(700px 380px at 0% 100%, rgba(12, 26, 36, 0.04), transparent 50%),
    var(--paper);
  color: var(--ink);
  overflow: hidden;
}
.contact-shell { position: relative; }
.contact-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem 2.5rem;
  align-items: end;
  max-width: none;
  margin-bottom: 2.5rem;
}
.contact-head .section-copy {
  margin: 0;
  max-width: 30rem;
  color: var(--grey);
  justify-self: end;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  align-items: stretch;
}
.contact-aside {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  padding: clamp(1.6rem, 3.5vw, 2.35rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.contact-aside::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  bottom: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 90, 41, 0.18), transparent 70%);
  pointer-events: none;
}
.contact-aside-top,
.contact-details { position: relative; z-index: 1; }
.contact-aside-kicker {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
}
.contact-aside-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  color: var(--white);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}
.contact-aside-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 28ch;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.contact-details li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-ui);
  transition: border-color 0.3s, background 0.3s;
}
.contact-details li:hover {
  border-color: rgba(241, 90, 41, 0.28);
  background: rgba(255, 255, 255, 0.06);
}
.contact-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(241, 90, 41, 0.35);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(241, 90, 41, 0.08);
}
.contact-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.contact-details .label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  padding: 0;
}
.contact-meta a,
.contact-meta span:last-child {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.35;
  word-break: break-word;
}
.contact-meta a:hover { color: var(--gold); }

.contact-form-wrap {
  background: var(--white);
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  border-radius: 22px;
  border: 1px solid rgba(12, 26, 36, 0.06);
  box-shadow: 0 22px 50px rgba(12, 26, 36, 0.08);
  color: var(--ink);
}
.contact-form-head {
  margin-bottom: 1.35rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(12, 26, 36, 0.08);
}
.contact-form-head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  color: var(--navy);
  margin: 0 0 0.35rem;
}
.contact-form-head p {
  margin: 0;
  color: var(--grey);
  font-size: 0.92rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7580;
  margin-bottom: 0.45rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid rgba(12, 26, 36, 0.12);
  background: var(--paper);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.98rem;
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7580' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: var(--paper);
  padding-right: 2.4rem;
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(241, 90, 41, 0.55);
  box-shadow: 0 0 0 3px rgba(241, 90, 41, 0.15);
  background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9aa3ad;
}
.btn-enquiry {
  width: 100%;
  margin-top: 0.35rem;
  border-radius: 12px;
  background: var(--gold);
  color: var(--navy);
  border: 0;
  padding: 1rem 1.5rem;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(241, 90, 41, 0.28);
  transition: background 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}
.btn-enquiry:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(241, 90, 41, 0.32);
}
.form-note {
  margin: 1rem 0 0;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--grey);
}

.alert {
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  font-family: var(--font-ui);
  font-size: 0.9rem;
}
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-error ul { margin: 0; padding-left: 1.1rem; list-style: disc; }

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.62);
  padding: 0;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.15fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  padding: clamp(2.75rem, 6vw, 4rem) 0 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--white);
}
.footer-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--gold);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.footer-mark svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-brand-name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-desc {
  margin: 0;
  max-width: 28ch;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
}
.footer-heading {
  margin: 0 0 1.1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--gold); }
.footer-depot {
  display: block;
  margin: 0 0 0.65rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
  max-width: 26ch;
}
a.footer-depot:hover { color: var(--gold); }
.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}
.footer-copy {
  margin: 0;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
}
.footer-copy strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

/* ——— Back to top ——— */
.back-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.25s;
  z-index: 90;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(241, 90, 41, 0.35);
  padding: 0;
}
.back-top svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-top:hover {
  background: var(--gold-deep);
  transform: translateY(-3px);
}

/* ——— Reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@keyframes riseIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollDrop {
  0% { top: -40%; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 110%; opacity: 0; }
}

/* ??? Responsive ??? */
@media (max-width: 980px) {
  .hero-media { background-attachment: scroll; }
  .hero-layout {
    grid-template-columns: 1fr;
    padding: 4.5rem 0 4.5rem;
  }
  .hero-side {
    max-width: 420px;
    width: 100%;
  }
  .hero-title .title-line { max-width: none; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .product-showcase { grid-template-columns: 1fr 1fr; }
  .product-showcase .product-item:last-child { grid-column: 1 / -1; max-width: 420px; justify-self: center; width: 100%; }
  .products-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .products-head .section-copy { justify-self: start; }
  .about-grid,
  .contact-layout,
  .form-row {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .contact-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .contact-head .section-copy { justify-self: start; }
  .services-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .services-head .section-copy { justify-self: start; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-grid .service-tile:last-child {
    grid-column: 1 / -1;
    max-width: 420px;
    justify-self: center;
    width: 100%;
  }
  .counter-grid { grid-template-columns: repeat(3, 1fr); }
  .about-visual {
    min-height: 0;
    margin-bottom: 1rem;
    padding: 0 1rem 2.25rem 0;
    max-width: 520px;
  }
  .about-visual-main {
    aspect-ratio: 16 / 11;
    max-height: none;
  }
  .about-visual-main img { min-height: 0; }
  .about-media-frame {
    inset: 1.5rem -0.25rem -0.5rem 1.35rem;
  }
  .about-visual-accent {
    width: min(58%, 240px);
  }
  .about-visual-accent img { height: 130px; }
  .about-float-stat {
    width: 88px;
    min-height: 88px;
    padding: 0.75rem;
  }
  .about-float-stat strong { font-size: 1.7rem; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
  }
  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
  }
  .site-nav ul {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .site-nav a {
    font-size: 1.15rem;
    padding: 0.7rem 1rem;
  }
  .feature-grid,
  .counter-grid,
  .about-points,
  .form-row,
  .product-showcase,
  .service-grid {
    grid-template-columns: 1fr;
  }
  .product-showcase .product-item:last-child,
  .service-grid .service-tile:last-child {
    grid-column: auto;
    max-width: none;
  }
  .product-media,
  .service-tile-media { aspect-ratio: 16 / 11; }
  .hero-side { display: none; }
  .hero-trust { gap: 1rem 1.25rem; }
  .about-orb { display: none; }
  .about-visual {
    padding-right: 0;
    padding-bottom: 0;
    max-width: none;
  }
  .about-media-frame { display: none; }
  .about-float-stat {
    top: 0.85rem;
    left: 0.85rem;
  }
  .about-visual-accent {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 0.85rem;
    transform: none !important;
    opacity: 1 !important;
  }
  .about-visual-accent img { height: 180px; }
  .contact-details li {
    grid-template-columns: 48px 1fr;
  }
  .hero-content {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-hero { opacity: 1 !important; transform: none !important; }
  .hero-scroll i::after { animation: none; top: 30%; opacity: 1; }
}

