/* ============================================
   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%);
}

.video-card {
  background: var(--navy-dark);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.video-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-lg) + 1px);
  background: linear-gradient(135deg, rgba(201,152,58,0.3), transparent 50%, rgba(201,152,58,0.15));
  z-index: -1;
}

.video-card video {
  width: 100%;
  display: block;
  border-radius: calc(var(--radius-lg) - 4px);
}

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

.hero {
  padding: 0;
  min-height: 70vh;
  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.88) 0%, rgba(7,18,28,0.62) 45%, rgba(6,15,24,0.9) 100%),
    radial-gradient(circle at 20% 15%, rgba(201,152,58,0.2), transparent 45%);
  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.05) contrast(0.95) brightness(0.9);
  transform: scale(1.02);
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: clamp(420px, 62vh, 760px);
  padding: 130px 0 60px;
  position: relative;
  z-index: 2;
}

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

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

.eyebrow::before {
  content: none;
}

.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 4.6rem);
  margin: 20px 0;
  line-height: 1.02;
  letter-spacing: 0.02em;
  text-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

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

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

.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;
}

/* ============================================
   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
   ============================================ */

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

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  justify-content: center;
}

.chip {
  border: 1.5px solid rgba(6,19,28,0.12);
  background: transparent;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.88rem;
  font-family: inherit;
  color: var(--steel);
  transition: all 0.25s var(--ease-out);
}

.chip:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(201,152,58,0.05);
}

.chip.is-active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}

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

.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) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .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;
  }
}

@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; }


  .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: 90px 0 40px;
  }

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

  .hero-highlights {
    gap: 20px;
  }

  .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);
}
