/* ============================================
   Continental Freight & Storage — Premium Design System
   ============================================ */

:root {
  /* Primary palette */
  --navy: #0b1f33;
  --navy-dark: #060f1a;
  --navy-mid: #122c44;
  --steel: #6f7f8e;
  --steel-light: #99a7b3;
  --gold: #c9983a;
  --gold-light: #e2bc6a;
  --gold-dark: #a67c2e;
  --sand: #f3ede2;
  --cream: #f9f6f0;
  --white: #ffffff;

  /* Shadows — layered for realism */
  --shadow-xs: 0 1px 2px rgba(6,19,28,0.06);
  --shadow-sm: 0 2px 8px rgba(6,19,28,0.08);
  --shadow-md: 0 8px 24px rgba(6,19,28,0.10), 0 2px 6px rgba(6,19,28,0.06);
  --shadow-lg: 0 20px 50px rgba(6,19,28,0.14), 0 4px 12px rgba(6,19,28,0.08);
  --shadow-xl: 0 32px 64px rgba(6,19,28,0.18), 0 8px 20px rgba(6,19,28,0.10);
  --shadow-gold: 0 8px 32px rgba(201,152,58,0.30);

  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Timing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---- Reset & Base ---- */

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

html {
  scroll-behavior: smooth;
}

::selection {
  background: rgba(201, 152, 58, 0.25);
  color: var(--navy);
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--navy);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

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

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

p {
  margin: 0;
}

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

/* ============================================
   TOPBAR
   ============================================ */

.topbar {
  background: var(--navy-dark);
  color: rgba(249,246,240,0.7);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar-inner {
  display: flex;
  gap: 24px;
  justify-content: center;
  padding: 8px 0;
  flex-wrap: wrap;
}

.topbar-inner span {
  transition: color 0.2s;
}

.topbar-inner span:hover {
  color: var(--gold-light);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-bar {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(6,19,28,0.06);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 4px 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
  color: var(--navy);
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.8;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.logo-badge {
  width: 82px;
  height: 82px;
  border-radius: 14px;
  background: transparent;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.logo-title {
  font-size: 1.55rem;
  color: var(--navy);
}

.logo-sub {
  font-size: 0.95rem;
  color: var(--steel);
  margin-top: 2px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.nav-links a {
  position: relative;
  display: grid;
  gap: 3px;
  justify-items: center;
  min-width: 88px;
  padding: 4px 8px 6px;
  color: var(--steel);
  border-radius: var(--radius-sm);
  transition: color 0.25s var(--ease-out), background 0.25s var(--ease-out);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transform: translateX(-50%);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
  color: var(--navy);
  background: rgba(6,19,28,0.03);
}

.nav-links a:hover::after {
  width: 60%;
}

.nav-icon {
  width: 36px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--navy);
  transition: transform 0.3s var(--ease-out), color 0.25s;
}

.nav-icon svg {
  width: 28px;
  height: 28px;
}

.nav-label {
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
}

.nav-links a:hover .nav-icon {
  color: var(--gold);
  transform: translateY(-2px);
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  border: 1px solid rgba(6,19,28,0.12);
  border-radius: var(--radius-xs);
  overflow: hidden;
}

.lang-btn {
  border: none;
  background: transparent;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  color: var(--steel);
  transition: all 0.2s var(--ease-out);
}

.lang-btn.is-active {
  background: var(--navy);
  color: var(--white);
}

.lang-btn:not(.is-active):hover {
  background: rgba(6,19,28,0.04);
  color: var(--navy);
}

/* Hamburger */
.hamburger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(6,19,28,0.12);
  border-radius: var(--radius-xs);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
}

.hamburger-btn:hover {
  background: rgba(6,19,28,0.04);
  border-color: rgba(6,19,28,0.2);
}

.hamburger-btn svg {
  width: 20px;
  height: 20px;
  color: var(--navy);
}

.hamburger-btn .close-icon { display: none; }
.hamburger-btn.is-open .hamburger-icon { display: none; }
.hamburger-btn.is-open .close-icon { display: block; }

/* ============================================
   BUTTONS — Premium
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  padding: 13px 28px;
  font-weight: 600;
  font-size: 0.92rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--navy-dark);
  box-shadow: var(--shadow-gold);
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,152,58,0.40);
  filter: brightness(1.06);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(6,19,28,0.15);
  color: var(--navy);
  padding: 12px 26px;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(201,152,58,0.06);
  transform: translateY(-1px);
}

/* Ghost button on dark bg */
.hero .btn-ghost,
.coverage .btn-ghost {
  border-color: rgba(249,246,240,0.3);
  color: var(--cream);
}

.hero .btn-ghost:hover,
.coverage .btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201,152,58,0.1);
}

/* ============================================
   TRUST BAR
   ============================================ */

.trust-bar {
  background: var(--navy);
  padding: 20px 0;
  overflow: hidden;
}

.hero-trust {
  position: relative;
  z-index: 2;
  background: rgba(7,18,28,0.78);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0 22px;
  backdrop-filter: blur(6px);
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(249,246,240,0.85);
  font-size: 0.88rem;
  font-weight: 500;
}

.trust-item svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
}

.trust-item strong {
  color: var(--white);
  font-weight: 700;
}

/* ============================================
   VIDEO SHOWCASE
   ============================================ */

.video-showcase {
  padding: 80px 0;
  background: var(--white);
  position: relative;
}

.video-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.4fr);
  gap: 48px;
  align-items: center;
}

.video-content .eyebrow {
  color: var(--gold);
  font-weight: 600;
}

.video-content h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  margin: 12px 0 16px;
  line-height: 1.05;
}

.video-content p {
  color: var(--steel);
  margin: 0 0 18px;
  line-height: 1.7;
}

.video-points {
  margin: 0 0 28px;
  padding-left: 0;
  list-style: none;
  color: var(--steel);
}

.video-points li {
  padding: 6px 0 6px 24px;
  position: relative;
}

.video-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.transform-visual {
  display: flex;
  align-items: stretch;
}

.tv-card {
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  border: 1px solid rgba(201,152,58,0.12);
}

.tv-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-lg) + 1px);
  background: linear-gradient(135deg, rgba(201,152,58,0.22), transparent 55%, rgba(201,152,58,0.08));
  z-index: 0;
  pointer-events: none;
}

.tv-deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.tv-deco svg {
  width: 100%;
  height: auto;
  display: block;
}

.tv-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.tv-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tv-stat strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.6rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tv-stat span {
  font-size: 0.78rem;
  color: rgba(249,246,240,0.55);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.tv-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(201,152,58,0.12);
  padding-top: 20px;
}

.tv-step {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(249,246,240,0.75);
  font-size: 0.875rem;
  font-weight: 500;
}

.tv-step-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  color: var(--gold);
  width: 28px;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  padding: 0;
  min-height: auto;
  background: var(--navy-dark);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,15,24,0.82) 0%, rgba(7,18,28,0.45) 40%, rgba(6,15,24,0.85) 100%),
    radial-gradient(ellipse at 25% 20%, rgba(201,152,58,0.18), transparent 50%),
    radial-gradient(ellipse at 75% 80%, rgba(201,152,58,0.08), transparent 40%);
  z-index: 1;
}

.hero::after {
  content: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.1) contrast(1.05) brightness(0.85);
  animation: hero-ken-burns 25s ease-in-out infinite alternate;
}

@keyframes hero-ken-burns {
  0% { transform: scale(1.0) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, -1%); }
}

/* Cinematic vignette overlay */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(6,15,24,0.55) 100%),
    linear-gradient(0deg, rgba(6,15,24,0.4) 0%, transparent 30%);
}

.hero-inner {
  min-height: 0;
  padding: 32px 0 16px;
  position: relative;
  z-index: 2;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.hero-main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content {
  max-width: 760px;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: none;
}

.hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 4.6rem);
  margin: 14px 0 12px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-weight: 700;
  text-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.lead {
  font-size: 1rem;
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto;
  color: rgba(249,246,240,0.62);
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 22px 0 0;
}

.hero-highlights {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 8px;
  border-top: 1px solid rgba(249,246,240,0.1);
}

.hero-highlights div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-highlights strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  color: var(--gold-light);
}

.hero-highlights span {
  font-size: 0.82rem;
  color: rgba(249,246,240,0.55);
  letter-spacing: 0.03em;
}

/* Hero visual */
.hero-visual {
  position: relative;
}

.stack {
  display: grid;
  gap: 10px;
  background: rgba(249,246,240,0.04);
  border: 1px solid rgba(249,246,240,0.08);
  padding: 20px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
}

.stack-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(201,152,58,0.08));
  padding: 16px 20px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgba(249,246,240,0.1);
  transition: all 0.3s var(--ease-out);
}

.stack-card:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(201,152,58,0.14));
  border-color: rgba(201,152,58,0.3);
  transform: translateX(4px);
}

.stack-card span {
  font-weight: 600;
  font-size: 0.95rem;
}

.stack-card small {
  color: rgba(249,246,240,0.5);
  font-size: 0.82rem;
}

.hero-badge {
  position: absolute;
  bottom: -14px;
  right: 14px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-dark);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold);
  font-size: 0.85rem;
}

.hero-badge span {
  font-size: 0.75rem;
  opacity: 0.7;
}

.hero-badge strong {
  display: block;
  font-size: 0.95rem;
}

/* Hero entrance animations — CSS-only with @keyframes fallback */
.hero-anim {
  opacity: 0;
  transform: translateY(28px);
}

/* When JS adds the class, use transitions */
.hero-anim.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.hero-anim.is-visible[data-hero-anim="1"] { transition-delay: 0.15s; }
.hero-anim.is-visible[data-hero-anim="2"] { transition-delay: 0.35s; }
.hero-anim.is-visible[data-hero-anim="3"] { transition-delay: 0.55s; }
.hero-anim.is-visible[data-hero-anim="4"] { transition-delay: 0.75s; }
.hero-anim.is-visible[data-hero-anim="5"] { transition-delay: 0.90s; }
.hero-anim.is-visible[data-hero-anim="6"] { transition-delay: 1.05s; }
.hero-anim.is-visible[data-hero-anim="7"] { transition-delay: 1.20s; }
.hero-anim.is-visible[data-hero-anim="8"] { transition-delay: 1.40s; }
.hero-anim.is-visible[data-hero-anim="9"] { transition-delay: 1.55s; }

/* CSS-only fallback: if JS never fires, elements appear after 2s */
@keyframes hero-fallback-reveal {
  to { opacity: 1; transform: translateY(0); }
}

.hero-anim {
  animation: hero-fallback-reveal 0.8s var(--ease-out) 2s forwards;
}

.hero-anim[data-hero-anim="1"] { animation-delay: 2.0s; }
.hero-anim[data-hero-anim="2"] { animation-delay: 2.2s; }
.hero-anim[data-hero-anim="3"] { animation-delay: 2.4s; }
.hero-anim[data-hero-anim="4"] { animation-delay: 2.6s; }
.hero-anim[data-hero-anim="5"] { animation-delay: 2.8s; }
.hero-anim[data-hero-anim="6"] { animation-delay: 3.0s; }
.hero-anim[data-hero-anim="7"] { animation-delay: 3.2s; }
.hero-anim[data-hero-anim="8"] { animation-delay: 3.4s; }
.hero-anim[data-hero-anim="9"] { animation-delay: 3.6s; }

/* When JS works, cancel the fallback animation */
.hero-anim.is-visible {
  animation: none;
}

/* Eyebrow decorative lines */
.eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  vertical-align: middle;
}

/* Floating glassmorphism badges */
.hero-floating-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
  width: 100%;
}

/* Hero sidepanel */
.hero-sidepanel {
  background: rgba(6,19,28,0.96);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 26px;
  padding: 22px 18px;
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.hero-sidepanel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 20% 20%, rgba(201,152,58,0.16), transparent 50%);
  pointer-events: none;
  opacity: 0.7;
}

.sidepanel-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.sidepanel-logo {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
}

.sidepanel-logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.sidepanel-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidepanel-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.sidepanel-sub {
  font-size: 0.78rem;
  color: rgba(249,246,240,0.65);
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.sidepanel-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(249,246,240,0.45);
}

.sidepanel-label,
.sidepanel-section {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: rgba(249,246,240,0.45);
}

.sidepanel-phone {
  position: relative;
  z-index: 1;
  font-size: 1.08rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.06em;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(255,255,255,0.2);
}

.sidepanel-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.sidepanel-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.sidepanel-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 12px;
  color: rgba(249,246,240,0.78);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: all 0.2s var(--ease-out);
}

.sidepanel-nav a:hover {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  transform: translateX(4px);
}

.sidepanel-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(249,246,240,0.55);
}

.sidepanel-icon svg {
  width: 20px;
  height: 20px;
}

.sidepanel-nav a:hover .sidepanel-icon {
  color: var(--gold-light);
}

.sidepanel-follow {
  margin-top: 6px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.sidepanel-follow span {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(249,246,240,0.5);
  margin-bottom: 10px;
}

.sidepanel-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.sidepanel-social a {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(249,246,240,0.65);
  transition: all 0.2s var(--ease-out);
}

.sidepanel-social a:hover {
  border-color: rgba(201,152,58,0.6);
  color: var(--gold-light);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.sidepanel-follow small {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(249,246,240,0.45);
}

.hero-float-badge {
  background: rgba(11,31,51,0.65);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 18px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 140px;
  transition: all 0.35s var(--ease-out);
}

@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .hero-float-badge {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
  }
}

.hero-float-badge:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(201,152,58,0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.float-badge-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  line-height: 1;
}

.float-badge-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(249,246,240,0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-indicator span {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(249,246,240,0.45);
}

.scroll-line {
  width: 1.5px;
  height: 48px;
  background: rgba(249,246,240,0.12);
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}

.scroll-dot {
  width: 100%;
  height: 16px;
  background: linear-gradient(180deg, var(--gold), transparent);
  border-radius: 1px;
  animation: scroll-move 2s ease-in-out infinite;
}

@keyframes scroll-move {
  0% { transform: translateY(-16px); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(48px); opacity: 0; }
}

/* Button shine effect */
.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255,255,255,0.35) 50%,
    transparent 70%
  );
  transform: skewX(-20deg);
  animation: btn-shine-move 4s ease-in-out infinite;
}

@keyframes btn-shine-move {
  0%, 70% { left: -60%; }
  100% { left: 140%; }
}

/* Hero parallax support */
.hero-media.parallax video {
  will-change: transform;
}

/* ============================================
   SECTIONS — Common
   ============================================ */

section {
  padding: 80px 0;
}

.section-head {
  margin-bottom: 40px;
  text-align: center;
}

.section-head h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.6rem;
  margin: 0 0 10px;
  letter-spacing: 0.03em;
}

.section-head p {
  color: var(--steel);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Decorative line under section headings */
.section-head::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ============================================
   CATEGORIES
   ============================================ */

.categories {
  background: var(--cream);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid rgba(6,19,28,0.06);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity 0.3s;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,152,58,0.15);
}

.category-card:hover::before {
  opacity: 1;
}

.category-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.category-card p {
  color: var(--steel);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================
   PRODUCTS CATALOGUE — Sidebar layout
   ============================================ */

.products {
  background: var(--white);
}

/* Mobile filter toggle */
.sidebar-mobile-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  margin: 0 auto 20px;
  padding: 10px 22px;
  border: 1.5px solid rgba(6,19,28,0.12);
  border-radius: 999px;
  background: var(--cream);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
}

.sidebar-mobile-toggle svg {
  width: 18px;
  height: 18px;
}

.sidebar-mobile-toggle:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

/* Products grid + sidebar layout */
.products-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}

/* Sidebar */
.product-sidebar {
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
  border: 1px solid rgba(6,19,28,0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  position: sticky;
  top: 110px;
  box-shadow: var(--shadow-sm);
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(6,19,28,0.08);
  position: relative;
}

.sidebar-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, rgba(201,152,58,0.8), rgba(201,152,58,0));
}

.sidebar-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sidebar-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(201,152,58,0.12);
  color: var(--gold-dark);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sidebar-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,152,58,0.2);
}

.sidebar-header h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--navy);
}

.sidebar-header-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.sidebar-count {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(6,19,28,0.06);
  border: 1px solid rgba(6,19,28,0.1);
  white-space: nowrap;
}

.sidebar-close {
  display: none;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--steel);
  border-radius: var(--radius-xs);
  transition: all 0.2s;
}

.sidebar-close:hover {
  background: rgba(6,19,28,0.06);
  color: var(--navy);
}

.sidebar-close svg {
  width: 18px;
  height: 18px;
}

/* Search */
.sidebar-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(6,19,28,0.12);
  background: #fff;
  box-shadow: var(--shadow-xs);
  margin-bottom: 16px;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.sidebar-search:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,152,58,0.15);
}

.sidebar-search input {
  width: 100%;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--navy);
  outline: none;
}

.sidebar-search input::placeholder {
  color: var(--steel-light);
}

.search-icon {
  width: 18px;
  height: 18px;
  color: var(--steel);
  display: inline-flex;
}

.search-icon svg {
  width: 18px;
  height: 18px;
}

/* Summary */
.sidebar-summary {
  display: grid;
  gap: 8px;
  padding: 12px;
  margin-bottom: 18px;
  border-radius: var(--radius-sm);
  background: rgba(6,19,28,0.04);
}

.summary-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--navy);
}

.summary-line::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,152,58,0.18);
}

/* Filter groups */
.sidebar-group {
  margin-bottom: 22px;
}

.sidebar-group h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--steel);
  margin-bottom: 10px;
}

.sidebar-options {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Custom radio buttons */
.sidebar-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-xs);
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--navy);
  transition: background 0.2s;
}

.sidebar-check:hover {
  background: rgba(6,19,28,0.03);
}

.sidebar-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.check-mark {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(6,19,28,0.18);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: all 0.25s var(--ease-out);
}

.check-mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--gold);
  transform: scale(0);
  transition: transform 0.25s var(--ease-out);
}

.sidebar-check input:checked ~ .check-mark {
  border-color: var(--gold);
}

.sidebar-check input:checked ~ .check-mark::after {
  transform: scale(1);
}

.sidebar-check input:checked ~ span:last-child {
  font-weight: 600;
  color: var(--navy);
}

/* Reset button */
.sidebar-reset {
  width: 100%;
  margin-top: 4px;
  padding: 10px;
  font-size: 0.82rem;
}

/* Quick links */
.sidebar-subhead {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--steel);
  margin: 18px 0 10px;
}

.sidebar-links {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.sidebar-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(6,19,28,0.08);
  background: #fff;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 600;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}

.sidebar-links a:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-xs);
  border-color: rgba(201,152,58,0.4);
}

.link-arrow {
  font-size: 0.9rem;
  color: var(--gold-dark);
}

/* Help card */
.sidebar-help {
  padding: 14px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.9);
  border: 1px dashed rgba(6,19,28,0.15);
  margin-bottom: 18px;
}

.sidebar-help h4 {
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--steel);
}

.sidebar-help p {
  font-size: 0.86rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.sidebar-help p:last-child {
  margin-bottom: 0;
}

/* Sidebar CTA */
.sidebar-cta {
  margin-top: 20px;
  padding: 18px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-sm);
  text-align: center;
}

.sidebar-cta p {
  color: rgba(249,246,240,0.7);
  font-size: 0.82rem;
  margin-bottom: 12px;
  line-height: 1.5;
}

.sidebar-cta .btn {
  width: 100%;
  padding: 10px 16px;
  font-size: 0.82rem;
}

/* Products main area */
.products-topbar {
  margin-bottom: 16px;
}

.products-count {
  font-size: 0.85rem;
  color: var(--steel);
  font-weight: 500;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

/* No results message */
.product-grid-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 20px;
  color: var(--steel);
  font-size: 0.95rem;
}

/* Sidebar overlay for mobile */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6,15,26,0.5);
  z-index: 199;
}

.sidebar-overlay.is-active {
  display: block;
}

.product-card {
  border: 1px solid rgba(6,19,28,0.06);
  border-radius: var(--radius-md);
  padding: 24px;
  background: var(--cream);
  display: grid;
  gap: 14px;
  transition: all 0.35s var(--ease-out);
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,152,58,0.2);
}

.product-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}

.product-card > p {
  color: var(--steel);
  font-size: 0.9rem;
  line-height: 1.5;
}

.specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.specs span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--steel);
  background: rgba(6,19,28,0.04);
  padding: 4px 10px;
  border-radius: 999px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid rgba(6,19,28,0.06);
}

.price-row strong {
  font-size: 0.95rem;
  color: var(--navy);
}

.price-row .btn {
  padding: 8px 18px;
  font-size: 0.82rem;
}

/* ============================================
   PROJECTS
   ============================================ */

.projects {
  background: linear-gradient(180deg, var(--cream) 0%, rgba(201,152,58,0.04) 100%);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.project-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  transition: all 0.35s var(--ease-out);
  position: relative;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.project-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.project-card p {
  color: var(--steel);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================
   MODIFICATIONS
   ============================================ */

.mods {
  background: var(--white);
}

.mods h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.03em;
}

.mods-inner {
  display: grid;
  gap: 48px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.mods-content > p {
  color: var(--steel);
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 12px;
}

.mods-list {
  margin: 24px 0 28px;
  padding-left: 0;
  list-style: none;
  color: var(--steel);
}

.mods-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid rgba(6,19,28,0.05);
  line-height: 1.5;
}

.mods-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid var(--gold);
  border-radius: 3px;
  transform: translateY(-50%) rotate(45deg);
}

.mods-visual {
  display: grid;
  gap: 16px;
}

.mod-panel {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--cream);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s var(--ease-out);
}

.mod-panel:hover {
  transform: translateY(-3px);
}

.mod-panel span {
  font-size: 0.82rem;
  color: rgba(249,246,240,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mod-panel strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  margin-top: 6px;
  letter-spacing: 0.03em;
}

.mod-panel.outline {
  background: transparent;
  color: var(--navy);
  border: 2px dashed rgba(6,19,28,0.15);
  box-shadow: none;
}

.mod-panel.outline span {
  color: var(--steel);
}

.mod-panel.outline strong {
  color: var(--navy);
}

/* ============================================
   PROCESS / HOW IT WORKS
   ============================================ */

.process {
  background: var(--cream);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* Connecting line between steps */
.process-grid::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  opacity: 0.3;
  z-index: 0;
}

.process-step {
  background: var(--white);
  padding: 28px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(6,19,28,0.06);
  text-align: center;
  position: relative;
  z-index: 1;
  margin: 0 8px;
  transition: all 0.35s var(--ease-out);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-dark);
  border-radius: 50%;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 14px;
  box-shadow: var(--shadow-gold);
}

.process-step h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.process-step p {
  color: var(--steel);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ============================================
   COVERAGE / DELIVERY
   ============================================ */

.coverage {
  background:
    radial-gradient(ellipse at 80% 50%, rgba(201,152,58,0.08), transparent 50%),
    linear-gradient(160deg, var(--navy-dark), var(--navy), var(--navy-mid));
  color: var(--cream);
}

.coverage h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.03em;
}

.coverage > .container > div > p {
  color: rgba(249,246,240,0.6);
  line-height: 1.6;
  margin-top: 10px;
}

.coverage-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.coverage-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.coverage-stats div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.coverage-stats strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: var(--gold-light);
  letter-spacing: 0.03em;
}

.coverage-stats span {
  font-size: 0.82rem;
  color: rgba(249,246,240,0.5);
}

.coverage-map {
  height: 280px;
  background:
    radial-gradient(circle at 20% 35%, rgba(201,152,58,0.15), transparent 35%),
    radial-gradient(circle at 65% 65%, rgba(201,152,58,0.12), transparent 30%),
    rgba(249,246,240,0.04);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(249,246,240,0.08);
}

.map-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 20px rgba(201,152,58,0.6);
  animation: pulse-dot 2.5s ease-in-out infinite;
}

.map-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(201,152,58,0.3);
  animation: pulse-ring 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.85); }
}

@keyframes pulse-ring {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0; transform: scale(2); }
}

.map-dot:nth-child(1) { top: 28%; left: 22%; animation-delay: 0s; }
.map-dot:nth-child(2) { top: 52%; left: 48%; animation-delay: 0.8s; }
.map-dot:nth-child(3) { top: 32%; left: 68%; animation-delay: 1.6s; }

/* ============================================
   QUOTE / DEVIS
   ============================================ */

.quote {
  background: var(--cream);
}

.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

.quote h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.03em;
}

.quote > .container > div > p {
  color: var(--steel);
  line-height: 1.6;
  margin-top: 10px;
}

.quote-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--cream);
  padding: 28px;
  border-radius: var(--radius-md);
  margin-top: 28px;
  box-shadow: var(--shadow-lg);
}

.quote-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.quote-card p {
  color: rgba(249,246,240,0.65);
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

.quote-card .btn-ghost {
  border-color: rgba(249,246,240,0.25);
  color: var(--cream);
}

.quote-card .btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201,152,58,0.1);
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(6,19,28,0.04);
}

.quote-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(6,19,28,0.10);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--navy);
  background: var(--cream);
  transition: all 0.25s var(--ease-out);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,152,58,0.12);
  background: var(--white);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: var(--steel-light);
}

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

.quote-form .btn {
  grid-column: 1 / -1;
  justify-self: start;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--navy-dark);
  color: rgba(249,246,240,0.7);
  padding: 56px 0 0;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,152,58,0.4), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 40px;
}

.footer-brand {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.site-footer p {
  line-height: 1.6;
  font-size: 0.9rem;
}

.site-footer h4 {
  color: var(--white);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  color: rgba(249,246,240,0.6);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.site-footer a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(249,246,240,0.08);
  padding: 18px 0;
  margin-top: 32px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(249,246,240,0.4);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .mods-inner {
    grid-template-columns: 1fr;
  }

  .coverage-inner {
    grid-template-columns: 1fr;
  }

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

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

  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-main {
    align-items: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .lead {
    margin: 0 auto;
  }

  .hero-floating-badges {
    justify-content: center;
  }

  .hero-sidepanel {
    max-width: 640px;
    margin: 0 auto 10px;
  }

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

@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
    gap: 8px;
  }

  .logo { order: 0; }

  .nav-actions {
    order: 1;
    margin-left: auto;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px;
    order: 2;
    width: 100%;
    padding-top: 8px;
    border-top: 1px solid rgba(6,19,28,0.06);
  }

  .nav-links a {
    min-width: 78px;
    font-size: 0.68rem;
    padding: 6px 6px 8px;
  }

  .nav-icon { width: 32px; height: 28px; }
  .nav-icon svg { width: 24px; height: 24px; }

  /* Sidebar becomes slide-out drawer on tablet/mobile */
  .sidebar-mobile-toggle {
    display: inline-flex;
  }

  .products-layout {
    grid-template-columns: 1fr;
  }

  .product-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    z-index: 200;
    border-radius: 0;
    border: none;
    overflow-y: auto;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    transition: left 0.35s var(--ease-out);
    padding: 20px 24px;
  }

  .product-sidebar.is-open {
    left: 0;
  }

  .sidebar-close {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .video-inner {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .process-grid::before { display: none; }

  .process-step { margin: 0; }

  .trust-bar-inner { gap: 24px; }

  .hero-badge {
    position: static;
    margin-top: 18px;
    display: inline-block;
  }

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

@media (max-width: 600px) {
  .topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .nav-links {
    display: none;
  }

  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.98);
    padding: 14px;
    border-radius: var(--radius-sm);
    margin-top: 8px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(6,19,28,0.08);
  }

  .nav-links a {
    min-width: auto;
  }

  .nav-label {
    white-space: normal;
  }

  section {
    padding: 56px 0;
  }

  .section-head h2 {
    font-size: 2rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    padding: 30px 0 14px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-highlights {
    gap: 20px;
  }

  .hero-floating-badges {
    gap: 12px;
    margin-top: 32px;
  }

  .hero-float-badge {
    padding: 14px 20px;
    min-width: 100px;
  }

  .float-badge-number {
    font-size: 1.4rem;
  }

  .float-badge-label {
    font-size: 0.68rem;
  }

  .hero-scroll-indicator {
    bottom: 56px;
  }

  .hero-sidepanel {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .sidepanel-logo {
    width: 46px;
    height: 46px;
  }

  .sidepanel-logo img {
    width: 32px;
    height: 32px;
  }

  .sidepanel-phone {
    font-size: 1rem;
  }

  .sidepanel-nav {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .quote-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .trust-bar-inner {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
}

/* ============================================
   ANIMATIONS & MICRO-INTERACTIONS
   ============================================ */

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation for grid items */
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.40s; }
.reveal:nth-child(7) { transition-delay: 0.48s; }

/* Header shrink on scroll */
.nav-bar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-bar.scrolled .nav {
  padding: 6px 0;
}

.nav-bar.scrolled .logo-badge {
  width: 46px;
  height: 46px;
}

.nav-bar.scrolled .logo-title {
  font-size: 1.15rem;
}

.nav-bar.scrolled .logo-sub {
  font-size: 0.78rem;
}

.nav-bar.scrolled .nav-icon {
  width: 32px;
  height: 28px;
}

.nav-bar.scrolled .nav-icon svg {
  width: 24px;
  height: 24px;
}

.nav-bar.scrolled .nav-links a {
  padding: 5px 6px 7px;
  font-size: 0.68rem;
}

/* Smooth transitions for header shrink */
.nav-bar .nav,
.nav-bar .logo-badge,
.nav-bar .logo-title,
.nav-bar .logo-sub,
.nav-bar .nav-icon,
.nav-bar .nav-icon svg,
.nav-bar .nav-links a {
  transition: all 0.3s var(--ease-out);
}

/* ============================================
   NAV — Devis CTA button
   ============================================ */

.nav-devis-btn {
  padding: 9px 20px;
  font-size: 0.82rem;
  white-space: nowrap;
  letter-spacing: 0.03em;
}

@media (max-width: 900px) {
  .nav-devis-btn {
    display: none;
  }
}

/* ============================================
   CATEGORY CARDS — Icons & Links
   ============================================ */

.cat-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.cat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(201,152,58,0.12), rgba(201,152,58,0.05));
  border: 1px solid rgba(201,152,58,0.2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.35s var(--ease-out);
}

.cat-icon svg {
  width: 26px;
  height: 26px;
  min-width: 26px;
  min-height: 26px;
  color: var(--gold-dark);
  transition: color 0.35s var(--ease-out);
}

.cat-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-dark);
  background: rgba(201,152,58,0.1);
  border: 1px solid rgba(201,152,58,0.2);
  padding: 4px 10px;
  border-radius: 99px;
  white-space: nowrap;
}

.cat-badge--cold {
  color: #3a9bc9;
  background: rgba(58,155,201,0.08);
  border-color: rgba(58,155,201,0.2);
}

.cat-badge--pro {
  color: #4caf7d;
  background: rgba(76,175,125,0.08);
  border-color: rgba(76,175,125,0.2);
}

.category-card:hover .cat-icon {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.category-card:hover .cat-icon svg {
  color: var(--navy-dark);
}

.cat-specs {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cat-specs li {
  font-size: 0.8rem;
  color: var(--steel);
  display: flex;
  align-items: center;
  gap: 7px;
}

.cat-specs li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-top: 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 9px 16px;
  background: rgba(201,152,58,0.07);
  border: 1px solid rgba(201,152,58,0.18);
  border-radius: 99px;
  transition: all 0.25s var(--ease-out);
}

.cat-link:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: var(--gold);
  color: var(--navy-dark);
  gap: 11px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  background:
    radial-gradient(ellipse at 20% 80%, rgba(201,152,58,0.08), transparent 45%),
    linear-gradient(160deg, var(--navy-dark), var(--navy));
  color: var(--cream);
  padding: 80px 0;
}

.testimonials .section-head h2 {
  color: var(--cream);
}

.testimonials .section-head p {
  color: rgba(249,246,240,0.6);
}

.testimonials .section-head::after {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 7rem;
  font-family: "Bebas Neue", sans-serif;
  color: rgba(201,152,58,0.1);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,152,58,0.35);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testimonial-card > p {
  color: rgba(249,246,240,0.8);
  font-size: 0.95rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 22px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--navy-dark);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: rgba(249,246,240,0.5);
  margin-top: 2px;
  display: block;
}

/* ============================================
   MODS VISUAL — Option grid
   ============================================ */

.mod-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mod-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(11,31,51,0.04);
  border: 1px solid rgba(6,19,28,0.08);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.82rem;
  color: var(--navy);
  font-weight: 500;
  transition: all 0.25s var(--ease-out);
  cursor: default;
}

.mod-option:hover {
  background: rgba(201,152,58,0.08);
  border-color: rgba(201,152,58,0.3);
  color: var(--gold-dark);
}

.mod-opt-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--gold);
  flex-shrink: 0;
  transition: color 0.25s;
}

.mod-opt-icon svg {
  display: block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  max-width: 18px;
  max-height: 18px;
  flex-shrink: 0;
}

.mod-option:hover .mod-opt-icon {
  color: var(--gold-dark);
}

/* ============================================
   FLOATING CTA BUTTON
   ============================================ */

.float-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
}

.float-cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--navy-dark);
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  box-shadow: var(--shadow-gold), 0 4px 20px rgba(0,0,0,0.18);
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.float-cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 48px rgba(201,152,58,0.5), 0 4px 20px rgba(0,0,0,0.22);
}

.float-cta-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .float-cta {
    bottom: 16px;
    right: 16px;
  }

  .float-cta-btn {
    padding: 12px 18px;
    font-size: 0.82rem;
    gap: 8px;
  }

  .float-cta-btn span {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .mod-options-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   STOCKAGE PAGE — Nav active state
   ============================================ */

.nav-links a.nav-active {
  color: var(--gold);
}

.nav-links a.nav-active .nav-label {
  color: var(--gold);
}

/* ============================================
   STOCKAGE PAGE — Hero
   ============================================ */

.page-hero {
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  color: var(--cream);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,152,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.page-hero-content {
  max-width: 580px;
}

.page-hero-content h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin: 14px 0 20px;
}

.page-hero-content h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-content > p {
  color: rgba(249,246,240,0.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.page-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.page-hero-badge {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,152,58,0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  min-width: 180px;
}

.phb-stat {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.phb-stat strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--gold-light);
}

.phb-stat span {
  font-size: 0.75rem;
  color: rgba(249,246,240,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.phb-divider {
  height: 1px;
  background: rgba(201,152,58,0.12);
}

@media (max-width: 768px) {
  .page-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .page-hero-badge {
    flex-direction: row;
    min-width: 0;
  }
  .phb-stat {
    flex: 1;
    padding: 16px;
  }
  .phb-divider {
    width: 1px;
    height: auto;
  }
}

/* ============================================
   STOCKAGE PAGE — Offer sections
   ============================================ */

.offer-section {
  padding: 96px 0;
  background: var(--cream);
}

.offer-section--dark {
  background: linear-gradient(165deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  color: var(--cream);
}

.offer-section--dark .section-head h2 {
  color: var(--cream);
}

.offer-section--dark .section-head p {
  color: rgba(249,246,240,0.65);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.offer-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid rgba(6,19,28,0.07);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.offer-card--cold {
  background: var(--navy-dark);
  border-color: rgba(58,155,201,0.15);
  color: var(--cream);
}

.offer-card--cold p {
  color: rgba(249,246,240,0.65);
}

.offer-card-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.offer-card-top h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
  line-height: 1.1;
}

.offer-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.offer-icon--hazmat {
  background: rgba(201,152,58,0.1);
  border: 1px solid rgba(201,152,58,0.2);
  color: var(--gold-dark);
}

.offer-icon--cold {
  background: rgba(58,155,201,0.12);
  border: 1px solid rgba(58,155,201,0.2);
  color: #5bb8e8;
}

.offer-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-dark);
  background: rgba(201,152,58,0.1);
  border: 1px solid rgba(201,152,58,0.2);
  padding: 3px 10px;
  border-radius: 99px;
}

.offer-badge--cold {
  color: #5bb8e8;
  background: rgba(58,155,201,0.12);
  border-color: rgba(58,155,201,0.25);
}

.offer-card > p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--steel);
}

.offer-specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(6,19,28,0.06);
  border-bottom: 1px solid rgba(6,19,28,0.06);
  padding: 12px 0;
  gap: 0;
}

.offer-card--cold .offer-specs {
  border-color: rgba(255,255,255,0.07);
}

.offer-specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(6,19,28,0.04);
}

.offer-card--cold .offer-specs li {
  border-color: rgba(255,255,255,0.05);
}

.offer-specs li:last-child {
  border-bottom: none;
}

.offer-specs li span {
  color: var(--steel);
  font-weight: 400;
}

.offer-card--cold .offer-specs li span {
  color: rgba(249,246,240,0.45);
}

.offer-specs li strong {
  font-weight: 600;
  color: var(--navy);
}

.offer-card--cold .offer-specs li strong {
  color: var(--cream);
}

.offer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 4px;
}

.offer-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* Certifications strip */
.offer-certif {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 48px;
  padding: 28px 32px;
  background: rgba(11,31,51,0.04);
  border: 1px solid rgba(6,19,28,0.07);
  border-radius: var(--radius-md);
}

.offer-certif--light {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}

.certif-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
}

.offer-certif--light .certif-item {
  color: rgba(249,246,240,0.7);
}

.certif-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* btn-block */
.btn-block {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* ============================================
   STOCKAGE FROID PAGE
   ============================================ */

.page-hero--cold {
  background: linear-gradient(135deg, #0a1628 0%, #0d2137 50%, #0a1628 100%);
}

.page-hero--cold .page-hero-badge {
  background: rgba(99,179,237,0.15);
  border-color: rgba(99,179,237,0.35);
  color: #90cdf4;
}

.page-hero--cold .phb-stat {
  color: #90cdf4;
}

.page-hero--cold .phb-divider {
  background: rgba(99,179,237,0.3);
}

.btn-cold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #2b6cb0, #2c5282);
  color: #fff;
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(43,108,176,0.4);
}

.btn-cold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(43,108,176,0.5);
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: rgba(249,246,240,0.85);
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid rgba(249,246,240,0.3);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-ghost-light:hover {
  border-color: rgba(249,246,240,0.7);
  color: #fff;
  background: rgba(255,255,255,0.05);
}

/* Featured offer card */
.offer-card--featured {
  border-color: #63b3ed;
  box-shadow: 0 0 0 1px #63b3ed, var(--shadow-lg);
  position: relative;
}

.offer-featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2b6cb0, #63b3ed);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

/* Applications grid */
.froid-apps {
  padding: 80px 0;
  background: var(--cream);
}

.froid-apps .section-label {
  text-align: center;
}

.froid-apps h2 {
  text-align: center;
  margin-bottom: 12px;
}

.froid-apps .section-sub {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
  color: rgba(10,22,40,0.6);
  font-size: 1rem;
  line-height: 1.6;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .apps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.app-card {
  background: #fff;
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.app-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.app-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ebf8ff, #bee3f8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2b6cb0;
  flex-shrink: 0;
}

.app-icon svg {
  display: block;
  width: 24px;
  height: 24px;
}

.app-card h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin: 0;
}

.app-card p {
  font-size: 0.88rem;
  color: rgba(10,22,40,0.6);
  line-height: 1.55;
  margin: 0;
}

/* Features grid */
.froid-features {
  padding: 80px 0;
  background: var(--navy);
}

.froid-features .section-label {
  text-align: center;
  color: rgba(249,246,240,0.5);
}

.froid-features h2 {
  text-align: center;
  color: var(--cream);
  margin-bottom: 12px;
}

.froid-features .section-sub {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
  color: rgba(249,246,240,0.6);
  font-size: 1rem;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

.feature-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: background 0.2s;
}

.feature-item:hover {
  background: rgba(255,255,255,0.07);
}

.feature-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: #63b3ed;
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
}

.feature-item h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  color: var(--cream);
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}

.feature-item p {
  font-size: 0.88rem;
  color: rgba(249,246,240,0.6);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   CONTENEURS NEUFS PAGE
   ============================================ */

/* Hero variant — gold accent */
.page-hero--neufs {
  background: linear-gradient(135deg, var(--navy) 0%, #0f2040 55%, var(--navy) 100%);
}

.page-hero--neufs .page-hero-badge {
  background: rgba(212,160,23,0.12);
  border-color: rgba(212,160,23,0.35);
  color: var(--gold);
}

.page-hero--neufs .phb-stat {
  color: var(--gold);
}

.page-hero--neufs .phb-divider {
  background: rgba(212,160,23,0.3);
}

.eyebrow--gold .eyebrow-line--gold {
  background: var(--gold);
  opacity: 0.6;
}

.gold-em {
  font-style: italic;
  color: var(--gold);
}

/* Offer icon — gold/warm for neufs */
.offer-icon--neufs {
  background: linear-gradient(135deg, #fdf3d7, #fbe8a6);
  color: #92650a;
}

/* Badge — gold for neufs */
.offer-badge--neufs {
  background: rgba(212,160,23,0.12);
  color: #92650a;
  border: 1px solid rgba(212,160,23,0.3);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* Featured card variant for neufs (gold border) */
.offer-card--neufs-featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-lg);
}

.offer-featured-badge--neufs {
  background: linear-gradient(135deg, #b7791f, var(--gold));
}

/* 3-column offer grid */
.offer-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 960px) {
  .offer-grid--3 {
    grid-template-columns: 1fr;
  }
}

/* App icon — gold for neufs */
.app-icon--neufs {
  background: linear-gradient(135deg, #fdf3d7, #fbe8a6);
  color: #92650a;
}

/* Why-new section (dark navy, reuses features-grid) */
.neufs-why {
  padding: 80px 0;
  background: var(--navy);
}

.neufs-why .section-label {
  text-align: center;
  color: rgba(249,246,240,0.5);
}

.neufs-why h2 {
  text-align: center;
  color: var(--cream);
  margin-bottom: 12px;
}

/* neufs-apps uses cream bg */
.neufs-apps {
  padding: 80px 0;
  background: var(--cream);
}

.neufs-apps .section-head {
  text-align: center;
}

.neufs-apps .section-head p {
  max-width: 560px;
  margin: 0 auto 48px;
  color: rgba(10,22,40,0.6);
  font-size: 1rem;
  line-height: 1.6;
}

/* ============================================
   CONTENEURS JUMELÉS PAGE
   ============================================ */

/* Hero variant for jumelés */
.page-hero--jumeles {
  background: linear-gradient(135deg, #0a1628 0%, #0e1e35 50%, #0a1628 100%);
}

.page-hero--jumeles .page-hero-badge {
  background: rgba(212,160,23,0.12);
  border-color: rgba(212,160,23,0.35);
  color: var(--gold);
}

.page-hero--jumeles .phb-stat {
  color: var(--gold);
}

.page-hero--jumeles .phb-divider {
  background: rgba(212,160,23,0.3);
}

/* Configuration grid */
.config-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 0;
}

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

.config-card {
  background: #fff;
  border: 1px solid rgba(10,22,40,0.1);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.config-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.config-card--featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-lg);
}

.config-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 4px;
}

/* Visual block showing container units */
.config-visual {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-shrink: 0;
}

.config-visual--3x20 {
  gap: 3px;
}

.config-visual--multi {
  flex-direction: column;
  gap: 3px;
}

.cv-row {
  display: flex;
  gap: 3px;
}

.cv-unit {
  display: block;
  width: 20px;
  height: 32px;
  background: linear-gradient(135deg, var(--navy), #1a3a6b);
  border-radius: 3px;
  opacity: 0.85;
}

.cv-unit--long {
  width: 36px;
}

.config-badge {
  display: inline-block;
  background: rgba(10,22,40,0.07);
  color: var(--navy);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 50px;
}

.config-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin: 0;
}

.config-surface {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0;
}

.config-card p {
  font-size: 0.9rem;
  color: rgba(10,22,40,0.65);
  line-height: 1.6;
  margin: 0;
}

/* Jumeles apps — cream bg */
.jumeles-apps {
  padding: 80px 0;
  background: var(--cream);
}

.jumeles-apps .section-head {
  text-align: center;
}

.jumeles-apps .section-head p {
  max-width: 560px;
  margin: 0 auto 48px;
  color: rgba(10,22,40,0.6);
  font-size: 1rem;
  line-height: 1.6;
}

/* App icon — warm amber for jumelés */
.app-icon--jumeles {
  background: linear-gradient(135deg, #fffbeb, #fde68a);
  color: #92650a;
}

/* Process section — dark navy, reuses features-grid */
.jumeles-process {
  padding: 80px 0;
  background: var(--navy);
}

.jumeles-process .section-head {
  text-align: center;
}

.jumeles-process h2 {
  color: var(--cream);
}

.jumeles-process .section-head p {
  max-width: 480px;
  margin: 0 auto 48px;
  color: rgba(249,246,240,0.6);
  font-size: 1rem;
  line-height: 1.6;
}

/* ============================================
   PERSONNALISATIONS PAGE
   ============================================ */

.page-hero--perso {
  background: linear-gradient(135deg, #0a1628 0%, #111e36 55%, #0a1628 100%);
}

.page-hero--perso .page-hero-badge,
.page-hero-badge--perso {
  background: rgba(212,160,23,0.12);
  border-color: rgba(212,160,23,0.35);
  color: var(--gold);
}

.page-hero--perso .phb-stat {
  color: var(--gold);
}

.page-hero--perso .phb-divider {
  background: rgba(212,160,23,0.3);
}

/* Catalogue section */
.perso-catalog {
  padding: 80px 0;
  background: var(--cream);
}

.perso-catalog .section-head {
  text-align: center;
}

.perso-catalog .section-head p {
  max-width: 600px;
  margin: 0 auto 48px;
  color: rgba(10,22,40,0.6);
  font-size: 1rem;
  line-height: 1.6;
}

.perso-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

.perso-cat-card {
  background: #fff;
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.perso-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.perso-cat-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #fdf3d7, #fbe8a6);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #92650a;
  margin-bottom: 20px;
}

.perso-cat-icon svg {
  display: block;
  width: 28px;
  height: 28px;
}

.perso-cat-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}

.perso-cat-card > p {
  font-size: 0.9rem;
  color: rgba(10,22,40,0.6);
  line-height: 1.6;
  margin: 0 0 20px;
}

.perso-cat-options {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.perso-cat-options li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  color: var(--navy);
  line-height: 1.45;
}

.perso-cat-options li svg {
  display: block;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}

/* Inline CTA under catalog */
.perso-catalog-cta {
  margin-top: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.perso-catalog-cta p {
  font-size: 0.95rem;
  color: rgba(10,22,40,0.6);
}

/* Réalisations section */
.perso-realisa {
  padding: 80px 0;
  background: var(--navy);
}

.perso-realisa .section-head {
  text-align: center;
}

.perso-realisa h2 {
  color: var(--cream);
}

.perso-realisa .section-head p {
  max-width: 560px;
  margin: 0 auto 48px;
  color: rgba(249,246,240,0.6);
  font-size: 1rem;
  line-height: 1.6;
}

.perso-project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .perso-project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .perso-project-grid {
    grid-template-columns: 1fr;
  }
}

.perso-project-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s, transform 0.2s;
}

.perso-project-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
}

.perso-project-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(212,160,23,0.2), rgba(212,160,23,0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.perso-project-icon svg {
  display: block;
  width: 28px;
  height: 28px;
}

.perso-project-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--cream);
  letter-spacing: 0.04em;
  margin: 0;
}

.perso-project-card p {
  font-size: 0.85rem;
  color: rgba(249,246,240,0.6);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.perso-project-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.perso-project-tags li {
  background: rgba(212,160,23,0.15);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid rgba(212,160,23,0.25);
}

/* Process section */
.perso-process {
  padding: 80px 0;
  background: var(--navy);
}

.perso-process .section-head {
  text-align: center;
}

.perso-process h2 {
  color: var(--cream);
}

.perso-process .section-head p {
  max-width: 520px;
  margin: 0 auto 48px;
  color: rgba(249,246,240,0.6);
  font-size: 1rem;
  line-height: 1.6;
}

/* ============================================
   BUREAU PLAIN-PIED PAGE
   ============================================ */

.page-hero--bureau {
  background: linear-gradient(135deg, #0a1628 0%, #0f2040 55%, #0a1628 100%);
}

.page-hero-badge--bureau {
  background: rgba(212,160,23,0.12);
  border-color: rgba(212,160,23,0.35);
  color: var(--gold);
}

.page-hero--bureau .phb-stat { color: var(--gold); }
.page-hero--bureau .phb-divider { background: rgba(212,160,23,0.3); }

.offer-icon--bureau {
  background: linear-gradient(135deg, #fdf3d7, #fbe8a6);
  color: #92650a;
}

.offer-badge--bureau {
  background: rgba(212,160,23,0.12);
  color: #92650a;
  border: 1px solid rgba(212,160,23,0.3);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

.offer-card--bureau-featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-lg);
}

/* Équipements inclus — dark navy */
.bureau-equip {
  padding: 80px 0;
  background: var(--navy);
}

.bureau-equip .section-head {
  text-align: center;
}

.bureau-equip h2 { color: var(--cream); }

/* Applications — cream */
.bureau-apps {
  padding: 80px 0;
  background: var(--cream);
}

.bureau-apps .section-head { text-align: center; }

.bureau-apps .section-head p {
  max-width: 580px;
  margin: 0 auto 48px;
  color: rgba(10,22,40,0.6);
  font-size: 1rem;
  line-height: 1.6;
}

.app-icon--bureau {
  background: linear-gradient(135deg, #fdf3d7, #fbe8a6);
  color: #92650a;
}

/* Options grid */
.bureau-options {
  padding: 80px 0;
  background: var(--navy);
}

.bureau-options .section-head { text-align: center; }
.bureau-options h2 { color: var(--cream); }

.bureau-options .section-head p {
  max-width: 520px;
  margin: 0 auto 48px;
  color: rgba(249,246,240,0.6);
  font-size: 1rem;
  line-height: 1.6;
}

.bureau-opts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 960px) {
  .bureau-opts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .bureau-opts-grid { grid-template-columns: 1fr; }
}

.bureau-opt {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  color: rgba(249,246,240,0.85);
  transition: background 0.2s;
}

.bureau-opt:hover { background: rgba(255,255,255,0.09); }

.bureau-opt svg {
  display: block;
  flex-shrink: 0;
  color: var(--gold);
}

/* ── LOCATION PAGE ─────────────────────────────────────── */
.page-hero--location {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2540 60%, #0d1a30 100%);
}
.page-hero--location .page-hero-accent {
  color: var(--gold);
}
.page-hero-badge--location {
  background: rgba(212,175,55,.15);
  border: 1px solid rgba(212,175,55,.35);
  color: var(--gold);
}
.offer-icon--location {
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.3);
  color: var(--gold);
}
.offer-badge--location {
  background: rgba(212,175,55,.15);
  color: var(--gold);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .2rem .55rem;
  border-radius: 2rem;
  text-transform: uppercase;
}
.offer-card--location-featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #1a2540 0%, #0d1a30 100%);
  color: var(--cream);
}
.offer-card--location-featured .offer-price {
  color: var(--gold);
}
.offer-card--location-featured .offer-feature {
  color: rgba(255,255,255,.8);
}
.location-fleet {
  background: var(--navy);
  padding: 5rem 0;
}
.location-fleet .section-title { color: var(--cream); }
.location-fleet .section-sub { color: rgba(255,255,255,.6); }
.app-icon--location {
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.3);
  color: var(--gold);
}
.location-avantages {
  background: var(--navy);
  padding: 5rem 0;
}
.location-avantages .section-title { color: var(--cream); }
.location-avantages .feature-num {
  color: var(--gold);
  border-color: rgba(212,175,55,.3);
}
.location-avantages .feature-item h3 { color: var(--cream); }
.location-avantages .feature-item p { color: rgba(255,255,255,.65); }
