/* ============================================================
   DIREKT SALES CORP. — style.css
   Color Tokens:
     Navy:         #0A1F44
     Navy Deep:    #061428
     Gold:         #F5B400
     Gold Dark:    #d49b00
     White:        #FFFFFF
     Light Gray:   #E9EDF3
     Mid Gray:     #d0d6e2
     Text Dark:    #1a1a2e
============================================================ */

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* Prevent any child element from causing horizontal page scroll */
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  background: #fff;
  overflow-x: hidden;
  max-width: 100%;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-user-drag: none;
  user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  cursor: default;
}

/* Prevent any section from contributing to horizontal page scroll */
section, header, footer, nav {
  max-width: 100%;
  overflow-x: clip;
}

ul { list-style: none; }
a  { text-decoration: none; color: inherit; }

/* ─── Focus Ring ────────────────────────────────────────────── */
:focus-visible {
  outline: 3px solid #F5B400;
  outline-offset: 3px;
}

/* ─── Typography ────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

/* ─── Gold K Accent ──────────────────────────────────────────── */
.gold-k { color: #F5B400; }

/* ─── Utilities ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.centered { text-align: center; }
.gold     { color: #F5B400; }
.white    { color: #fff; }
.navy     { color: #0A1F44; }
.navy-text { color: #0A1F44; }

/* ─── Section Headings ──────────────────────────────────────── */
.section-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  line-height: 1.25;
}

.section-heading.white { color: #fff; }
.section-heading.navy  { color: #0A1F44; }

/* Gold accent bar under section headings */
.section-accent {
  display: block;
  width: 56px;
  height: 4px;
  background: #F5B400;
  border-radius: 2px;
  margin: 0.75rem auto 2.5rem;
}

.section-accent.left { margin-left: 0; }

.section-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  margin-bottom: 2.5rem;
  opacity: 0.8;
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.8rem 1.75rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.btn-gold {
  background: #F5B400;
  color: #0A1F44;
  border-color: #F5B400;
}
.btn-gold:hover { background: #d49b00; border-color: #d49b00; }

.btn-navy-outline {
  background: #0A1F44;
  color: #fff;
  border-color: #F5B400;
}
.btn-navy-outline:hover { background: #0d2859; }

.btn-blue {
  background: #1a3a7a;
  color: #fff;
  border-color: #1a3a7a;
}
.btn-blue:hover { background: #1e4490; }

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 0.92rem;
}


/* ============================================================
   PHOTO STRIP — Real image sizing
============================================================ */
.strip-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ============================================================
   INDUSTRY CARDS — Real image sizing
============================================================ */
.card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ============================================================
   CERTIFICATE CARDS — Real image sizing
============================================================ */
.cert-img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  object-position: center;
  display: block;
}


/* ============================================================
   NAVIGATION
============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #0A1F44;
  border-bottom: 1px solid rgba(245,180,0,0.15);
  transition: box-shadow 0.3s ease;
}

#navbar.scrolled {
  box-shadow: 0 4px 28px rgba(0,0,0,0.45);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}

.logo-main {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
}

.logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  word-spacing: -0.08em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
  padding: 0.45rem 0.6rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
  color: #F5B400;
  border-bottom-color: #F5B400;
}

.nav-cta {
  flex-shrink: 0;
  font-size: 0.75rem;
  padding: 0.55rem 1.3rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Menu — max-height only (display:none breaks the transition) */
.mobile-menu {
  background: #0A1F44;
  border-top: 1px solid rgba(255,255,255,0.08);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}

.mobile-menu.open {
  max-height: 520px;
}

.mobile-menu ul {
  padding: 1rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.mobile-link {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mobile-link:hover { color: #F5B400; }
.mobile-cta { margin-top: 1rem; text-align: center; display: block; }


/* ============================================================
   HERO SECTION
============================================================ */
.hero-section {
  position: relative;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(30, 70, 150, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(4, 10, 30, 0.55) 0%, transparent 55%),
    linear-gradient(175deg, #040e20 0%, #0A1F44 45%, #050f26 100%);
  display: flex;
  flex-direction: column;
  padding-top: 68px;
}

/* Photo Strip */
.hero-photo-strip {
  width: 100%;
  background: rgba(4, 12, 35, 0.6);
  position: relative;
}

/* Fade bottom of photos into the dark hero section — removes hard edge */
.hero-photo-strip::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: linear-gradient(to bottom, transparent, #040e20);
  pointer-events: none;
  z-index: 1;
}

.photo-strip-inner {
  display: flex;
  justify-content: center;
  gap: 0;
  width: 100%;
}

.strip-card {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(245,180,0,0.12);
}

.strip-card:last-child { border-right: none; }

.strip-placeholder { opacity: 0.82; }


/* Hero Content */
.hero-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem 4rem;
  position: relative;
}

/* Subtle radial glow behind headline — capped to viewport width */
.hero-overlay::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(700px, 100%);
  height: 400px;
  background: radial-gradient(ellipse, rgba(245,180,0,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 920px;
  position: relative;
  z-index: 1;
}


.hero-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5.8vw, 4rem);
  color: #fff;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  line-height: 1.12;
}

.hero-subheadline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: #F5B400;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.hero-divider {
  width: 60px;
  height: 3px;
  background: #F5B400;
  border-radius: 2px;
  margin: 0 auto 1.5rem;
  opacity: 0.7;
}

.hero-body {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  max-width: 680px;
  margin: 0 auto 2.75rem;
  line-height: 1.75;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}


/* ============================================================
   WHO WE ARE
============================================================ */
.who-section {
  padding: 5rem 0;
  background: #fff;
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.who-eyebrow {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F5B400;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.who-text h2 {
  font-size: clamp(1.25rem, 2.6vw, 1.8rem);
  margin-bottom: 0;
  color: #0A1F44;
}

.who-text .section-accent { margin-left: 0; }

.who-text p {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.93rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Map Container */
.map-container {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 48%, rgba(44, 141, 255, 0.24), transparent 38%),
    linear-gradient(145deg, #061428 0%, #0A1F44 100%);
  border-radius: 16px;
  padding: 1.4rem 1.6rem 1.2rem;
  box-shadow: 0 18px 58px rgba(10,31,68,0.38), 0 0 0 1px rgba(245,180,0,0.12);
}

.map-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(255,255,255,0.08) 49%, transparent 50%),
    linear-gradient(0deg, transparent 0 48%, rgba(255,255,255,0.06) 49%, transparent 50%);
  background-size: 64px 64px;
  opacity: 0.22;
  pointer-events: none;
}

.map-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 959 / 593;
  z-index: 1;
}

.usa-map-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 0 8px rgba(83, 178, 255, 0.95))
    drop-shadow(0 0 22px rgba(42, 132, 255, 0.55));
  opacity: 0.98;
}

.map-glow-field {
  position: absolute;
  inset: 8% 6%;
  background:
    radial-gradient(circle at 50% 45%, rgba(91, 198, 255, 0.2), transparent 34%),
    radial-gradient(circle at 75% 35%, rgba(245, 180, 0, 0.12), transparent 22%);
  filter: blur(14px);
  pointer-events: none;
}

.map-nodes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.map-node {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #F5B400;
  box-shadow: 0 0 8px rgba(245,180,0,0.95), 0 0 18px rgba(91,198,255,0.7);
  transform: translate(-50%, -50%);
  animation: map-node-pulse 2.8s ease-in-out infinite;
  animation-delay: var(--d);
}

.map-node::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(91, 198, 255, 0.5);
  border-radius: inherit;
  animation: map-node-ring 2.8s ease-out infinite;
  animation-delay: var(--d);
}

@keyframes map-node-pulse {
  0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(0.82); }
  50%      { opacity: 1;    transform: translate(-50%, -50%) scale(1.18); }
}

@keyframes map-node-ring {
  0%   { opacity: 0.45; transform: scale(0.4); }
  70%  { opacity: 0;    transform: scale(1.35); }
  100% { opacity: 0;    transform: scale(1.35); }
}

/* Map Stats Overlay */
.map-stats {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  background: rgba(6, 20, 40, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 1.35rem 2.1rem;
  border: 1px solid rgba(245, 180, 0, 0.35);
  box-shadow: 0 14px 30px rgba(0,0,0,0.28), inset 0 0 18px rgba(83,178,255,0.08);
  pointer-events: none;
  min-width: 180px;
}

.map-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  line-height: 1;
  color: #F5B400;
}

.stat-suffix {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  display: inline;
  color: #F5B400;
}

.stat-label {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  color: #fff;
  letter-spacing: 0.12em;
  margin-top: 0.25rem;
  text-transform: uppercase;
}

.stat-sublabel {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-divider {
  width: 100%;
  height: 1px;
  background: rgba(245, 180, 0, 0.35);
  margin: 0.8rem 0;
}


/* ============================================================
   INDUSTRIES & PROGRAMS
============================================================ */
.industries-section {
  padding: 4.5rem 0;
  background: #E9EDF3;
}

.industries-section .section-heading {
  margin-bottom: 0;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.industry-card {
  position: relative;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.06);
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.14);
}

.card-body {
  padding: 1.3rem 1.5rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  color: #0A1F44;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  line-height: 1.4;
}

.card-body p {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1rem;
}

.card-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: #F5B400;
  letter-spacing: 0.07em;
  transition: opacity 0.2s;
  margin-top: auto;
  text-transform: uppercase;
}

.card-link:hover { opacity: 0.7; }

/* Featured Travel Card */
.travel-featured {
  border: 2.5px solid #F5B400;
  background: #0A1F44;
}

.travel-featured .card-title { color: #F5B400; }
.travel-featured .card-body p { color: rgba(255,255,255,0.8); }

.new-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #F5B400;
  color: #0A1F44;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.65rem;
  padding: 0.28rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.08em;
  z-index: 2;
  text-transform: uppercase;
}


/* ============================================================
   TRAVEL CERTIFICATE PROGRAMS — DEDICATED SECTION
   Light gray background matching the mockup
============================================================ */
.travel-section {
  position: relative;
  background: #E9EDF3;
  border-top: 1px solid #d0d6e2;
  border-bottom: 1px solid #d0d6e2;
}

.travel-overlay {
  padding: 4.5rem 0;
}

.travel-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.travel-subheader {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(0.75rem, 1.4vw, 0.9rem);
  color: #0A1F44;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.35rem;
  opacity: 0.65;
}

.travel-intro {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: #555;
  max-width: 640px;
  margin: 0.5rem auto 0;
  line-height: 1.7;
}

/* ── Travel section layout ─────────────────────────────────── */
.travel-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Top row: in-store | 2×2 cert cards | checklist */
.travel-top-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 0.9fr;
  grid-template-rows: auto auto;
  column-gap: 2.5rem;
  row-gap: 1rem;
  align-items: start;
}

/* Left column spans both rows so its height does not push row 2 down */
.travel-top-grid > .travel-col:first-child {
  grid-column: 1;
  grid-row: 1 / 3;
}

/* Center column: cert cards — row 1 only */
.travel-top-grid > .travel-col:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

/* Right column: checklist — row 1 only */
.travel-top-grid > .travel-col:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.travel-col { color: #333; }

/* Full-width Direkt Mail block — nullified, replaced by travel-bottom-grid */
.travel-mail-full { display: none; }

.travel-mail-full .travel-block-body p {
  padding-left: 0;
}

/* Bottom row: Direkt Mail | Direkt Customer Insights */
.travel-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(10, 31, 68, 0.12);
}

.travel-block-body--columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2.5rem;
}

/* ── Left column: two stacked blocks (In-Store + Direct Mail) ── */
.travel-block {
  margin-bottom: 0;
}

.travel-block-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.travel-block-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.travel-block-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  color: #0A1F44;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.35;
}

.travel-block-body p {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.82rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0.6rem;
  padding-left: 1.6rem; /* indent to align with text beside icon */
}

.travel-block-body p:last-child { margin-bottom: 0; }

.travel-block-divider {
  height: 1px;
  background: rgba(10,31,68,0.1);
  margin: 1.25rem 0;
}

.travel-example {
  font-style: italic !important;
  color: #0A1F44 !important;
  background: rgba(10,31,68,0.05);
  border-left: 3px solid #F5B400;
  padding: 0.4rem 0.65rem !important;
  border-radius: 0 4px 4px 0;
  margin-left: 1.6rem !important;
  padding-left: 0.65rem !important;
}

/* keep old classes from being orphaned */
.travel-col-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  color: #0A1F44;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.travel-col p {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  line-height: 1.72;
  color: #555;
  margin-bottom: 0.75rem;
}

/* ── Center column: dark navy checklist panel ────────────────── */
.travel-checklist-panel {
  background: #0A1F44;
  border-radius: 10px;
  padding: 1.5rem 1.5rem 1.6rem;
  box-shadow: 0 4px 20px rgba(10,31,68,0.18);
}

.travel-checklist-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid rgba(245,180,0,0.35);
}

/* 2-column grid inside panel — matches mockup layout */
.travel-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.15rem 0.5rem;
  margin-bottom: 0;
}

/* Single-column override for the right-panel checklist */
.travel-checklist--single {
  grid-template-columns: 1fr;
}

.travel-checklist li {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
  padding: 0.35rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.check-icon {
  color: #4ade80;
  font-weight: 800;
  flex-shrink: 0;
  font-size: 0.75rem;
}

/* ─── Certificate Cards ─────────────────────────────────────── */
/* Styled to look like physical printed award certificates.
   Replace .cert-visual divs with real destination photos
   (cruise ship / airplane / tropical beach) when available.    */

.cert-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.cert-card {
  border: 2px solid #F5B400;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 3px 16px rgba(0,0,0,0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cert-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 180, 0, 0.28);
}

/* Gold header area — matches mockup's gold top bar */
.cert-header {
  background: linear-gradient(90deg, #c98e00, #F5B400 40%, #F5B400 60%, #c98e00);
  padding: 0.4rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-congrats {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  color: #0A1F44;
  letter-spacing: 0.04em;
  font-style: italic;
}

.cert-tagline {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.52rem;
  color: rgba(10,31,68,0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}


/* Award name bar at bottom of card */
.cert-award-bar {
  background: #0A1F44;
  padding: 0.55rem 0.5rem 0.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  text-align: center;
}

.cert-award {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.68rem;
  color: #F5B400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.25;
}

.cert-award-brand {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.48rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.25;
}

/* keep old selectors from breaking anything */
.cert-award-sub { display: none; }
.cert-divider    { display: none; }
.cert-text       { display: none; }


/* ============================================================
   HOW WE DELIVER RESULTS
============================================================ */
.process-section {
  padding: 5.5rem 0;
  background: #0A1F44;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 3.5rem;
  flex-wrap: nowrap;
}

.process-step {
  flex: 1;
  max-width: 230px;
  text-align: center;
  padding: 0 1rem;
}

.step-icon {
  width: 82px;
  height: 82px;
  border: 2px solid rgba(245,180,0,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: rgba(245, 180, 0, 0.07);
  transition: background 0.3s, border-color 0.3s;
}

.process-step:hover .step-icon {
  background: rgba(245, 180, 0, 0.16);
  border-color: #F5B400;
}

.mini-us-map {
  position: relative;
  width: 58px;
  height: 36px;
}

.scale-icon .mini-us-map {
  width: 36px;
  height: 24px;
}

.mini-us-map img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  object-fit: contain;
  filter:
    drop-shadow(0 0 4px rgba(83, 178, 255, 0.8))
    drop-shadow(0 0 9px rgba(42, 132, 255, 0.45));
  opacity: 0.98;
}

.mini-us-map--process img {
  filter:
    drop-shadow(0 0 4px rgba(245, 180, 0, 0.9))
    drop-shadow(0 0 10px rgba(216, 157, 0, 0.45));
}

.mini-map-node {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 1;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #F5B400;
  box-shadow: 0 0 7px rgba(245,180,0,0.95), 0 0 12px rgba(91,198,255,0.7);
  transform: translate(-50%, -50%);
  animation: mini-map-node-pulse 2.6s ease-in-out infinite;
  animation-delay: var(--d);
}

.scale-icon .mini-map-node {
  width: 3px;
  height: 3px;
}

.mini-us-map--process .mini-map-node {
  background: #0A1F44;
  box-shadow: 0 0 5px rgba(10,31,68,0.7), 0 0 10px rgba(245,180,0,0.45);
}

@keyframes mini-map-node-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.85); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.35); }
}

.step-number {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: #F5B400;
  color: #0A1F44;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  border-radius: 50%;
  line-height: 30px;
  text-align: center;
  margin-bottom: 0.8rem;
}

.step-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  line-height: 1.4;
}

.step-desc {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
}

/* Connector Dashes */
.step-connector {
  flex-shrink: 0;
  width: 56px;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(245,180,0,0.55) 0,
    rgba(245,180,0,0.55) 7px,
    transparent 7px,
    transparent 14px
  );
  align-self: center;
  margin-top: -2.5rem;
}


/* ============================================================
   BUILT FOR SCALE
   Compact single-row strip — matches the mockup's thin icon bar
============================================================ */
.scale-section {
  padding: 3.5rem 0;
  background: #fff;
  border-top: 1px solid #dde2ed;
  border-bottom: 1px solid #dde2ed;
}

.scale-section .section-heading { margin-bottom: 0; }

.scale-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  border-top: 1px solid #e8ecf3;
  padding-top: 2rem;
}

.scale-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  flex: 1;
  min-width: 120px;
  max-width: 160px;
  border-right: 1px solid #e8ecf3;
  transition: background 0.2s;
}

.scale-item:last-child { border-right: none; }
.scale-item:hover { background: #f8f9fc; }

.scale-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E9EDF3;
  border-radius: 50%;
  transition: background 0.2s;
}

.scale-item:hover .scale-icon { background: rgba(245,180,0,0.12); }

.scale-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  color: #0A1F44;
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-transform: uppercase;
}


/* ============================================================
   NATIONWIDE COVERAGE
============================================================ */
.coverage-section {
  padding: 5.5rem 0;
  background: #E9EDF3;
}

.coverage-map-wrap {
  max-width: 900px;
  margin: 0 auto 3rem;
  background: linear-gradient(145deg, #061428, #0A1F44);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 48px rgba(10,31,68,0.25), 0 0 0 1px rgba(245,180,0,0.1);
}

.coverage-map { width: 100%; height: auto; }

.coverage-path {
  fill: rgba(30, 80, 180, 0.18);
  stroke: #3a7bd5;
  stroke-width: 6;
}

.coverage-path.alaska,
.coverage-path.hawaii { stroke-width: 5; }

.coverage-dot { fill: #F5B400; }

.pulse-dot {
  animation: coverage-pulse 2.2s ease-in-out infinite;
}

.pulse-dot:nth-child(2n)  { animation-delay: 0.4s; }
.pulse-dot:nth-child(3n)  { animation-delay: 0.8s; }
.pulse-dot:nth-child(4n)  { animation-delay: 1.2s; }
.pulse-dot:nth-child(5n)  { animation-delay: 1.6s; }

@keyframes coverage-pulse {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50%       { opacity: 1;    transform: scale(1.65); }
}

/* Coverage Stats */
.coverage-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cov-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #dde2ed;
}

.cov-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.6rem;
  color: #0A1F44;
  line-height: 1;
}

.cov-suffix {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: #F5B400;
}

.cov-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.75rem;
  color: #666;
  letter-spacing: 0.06em;
  margin-top: 0.45rem;
  text-transform: uppercase;
  font-weight: 700;
}


/* ============================================================
   CTA / CONTACT SECTION
============================================================ */
.cta-section {
  position: relative;
  background-image:
    linear-gradient(160deg, rgba(4,14,32,0.52) 0%, rgba(10,31,68,0.38) 50%, rgba(4,14,32,0.52) 100%),
    url('./assets/images/cta-bg-skyline.jpg');
  background-size: cover;
  background-position: center bottom;
  border-top: 2px solid rgba(245,180,0,0.18);
  overflow: hidden;
}

/* Bottom gradient — blends section seamlessly into dark footer */
.cta-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #061224);
  pointer-events: none;
  z-index: 2;
}

.cta-overlay { padding: 0; position: relative; z-index: 1; }

.cta-content {
  display: grid;
  grid-template-columns: 1.3fr 1.2fr 1.3fr;
  align-items: flex-end;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
}

.cta-text {
  text-align: center;
  padding: 1.3rem 1.5rem;
  align-self: center;
  background: rgba(4, 14, 32, 0.62);
  border-radius: 10px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.cta-team {
  display: flex;
  align-items: flex-end;
  align-self: stretch;
}

/* width:auto + fixed height guarantees both photos render at identical pixel height */
.cta-team-img {
  width: auto !important;
  max-width: 100%;
  height: 360px !important;
  display: block;
  object-fit: contain;
}

.cta-team--left  { justify-content: flex-end; }
.cta-team--right { justify-content: flex-start; }

.cta-eyebrow {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,180,0,0.7);
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.cta-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  line-height: 1.2;
}

.cta-body { margin-bottom: 0.9rem; }

.cta-body p {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  max-width: 520px;
  margin: 0 auto 0.45rem;
}

.cta-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}


/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: linear-gradient(180deg, #0a1e3e 0%, #061224 100%);
  padding-top: 4.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 2fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.85rem;
}

.footer-logo .logo-main { font-size: 1.7rem; }
.footer-logo .logo-sub  { font-size: 0.72rem; }

.footer-tagline {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 1.35rem;
  max-width: 220px;
}

.footer-social { display: flex; gap: 0.75rem; }

.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.25s, color 0.25s;
}

.social-icon:hover { background: #F5B400; color: #0A1F44; }

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  color: #F5B400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.35rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.footer-links a:hover { color: #F5B400; }

.footer-contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact a {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  transition: color 0.2s;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.footer-contact a:hover { color: #F5B400; }
.footer-contact em { font-size: 0.75rem; opacity: 0.65; }

.footer-map-col .footer-heading { margin-bottom: 0.85rem; }

.footer-map-mini {
  position: relative;
  width: 100%;
  max-width: 160px;
  aspect-ratio: 1.45 / 1;
  background:
    radial-gradient(circle at 48% 44%, rgba(44, 141, 255, 0.23), transparent 40%),
    linear-gradient(145deg, rgba(8, 26, 54, 0.92) 0%, rgba(10, 31, 68, 0.95) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.footer-map-mini-art {
  position: absolute;
  inset: 8% 6%;
  width: 88%;
  height: 84% !important;
  object-fit: contain;
  filter:
    drop-shadow(0 0 4px rgba(83, 178, 255, 0.85))
    drop-shadow(0 0 10px rgba(42, 132, 255, 0.45));
}

.footer-mini-node {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #F5B400;
  box-shadow: 0 0 7px rgba(245,180,0,0.9), 0 0 11px rgba(91,198,255,0.62);
  transform: translate(-50%, -50%);
  animation: footer-mini-pulse 2.8s ease-in-out infinite;
  animation-delay: var(--d);
}

@keyframes footer-mini-pulse {
  0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(0.82); }
  50%      { opacity: 1;    transform: translate(-50%, -50%) scale(1.25); }
}

.footer-map-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}

.footer-bottom {
  background: rgba(0,0,0,0.25);
  text-align: center;
  padding: 1.1rem 2rem;
}

.footer-bottom p {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}


/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0s);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0s);
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.industries-grid .fade-up:nth-child(1) { --delay: 0s; }
.industries-grid .fade-up:nth-child(2) { --delay: 0.08s; }
.industries-grid .fade-up:nth-child(3) { --delay: 0.16s; }
.industries-grid .fade-up:nth-child(4) { --delay: 0.24s; }
.industries-grid .fade-up:nth-child(5) { --delay: 0.32s; }
.industries-grid .fade-up:nth-child(6) { --delay: 0.40s; }

.scale-grid .fade-up:nth-child(1) { --delay: 0s; }
.scale-grid .fade-up:nth-child(2) { --delay: 0.07s; }
.scale-grid .fade-up:nth-child(3) { --delay: 0.14s; }
.scale-grid .fade-up:nth-child(4) { --delay: 0.21s; }
.scale-grid .fade-up:nth-child(5) { --delay: 0.28s; }
.scale-grid .fade-up:nth-child(6) { --delay: 0.35s; }
.scale-grid .fade-up:nth-child(7) { --delay: 0.42s; }
.scale-grid .fade-up:nth-child(8) { --delay: 0.49s; }

.coverage-stats .fade-up:nth-child(1) { --delay: 0s; }
.coverage-stats .fade-up:nth-child(2) { --delay: 0.1s; }
.coverage-stats .fade-up:nth-child(3) { --delay: 0.2s; }
.coverage-stats .fade-up:nth-child(4) { --delay: 0.3s; }

.travel-top-grid .fade-up:nth-child(1) { --delay: 0s; }
.travel-top-grid .fade-up:nth-child(2) { --delay: 0.12s; }
.travel-top-grid .fade-up:nth-child(3) { --delay: 0.24s; }
.travel-bottom-grid .fade-up:nth-child(1) { --delay: 0.36s; }
.travel-bottom-grid .fade-up:nth-child(2) { --delay: 0.48s; }


/* ============================================================
   RESPONSIVE — Wide desktop (1280px+)
============================================================ */
@media (min-width: 1280px) {
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
}


/* ============================================================
   RESPONSIVE — Tablet large (1024–1279px)
============================================================ */
@media (max-width: 1279px) {
  .nav-link            { font-size: 0.62rem; padding: 0.4rem 0.42rem; }
  .who-grid            { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .industries-grid     { grid-template-columns: repeat(3, 1fr); }
  .scale-grid          { gap: 0; }
  .scale-item          { min-width: 100px; max-width: 130px; }
  .footer-grid         { grid-template-columns: 1.2fr 1fr; gap: 2rem; }
  .footer-contact-wrap { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
}


/* ============================================================
   RESPONSIVE — Tablet (768–1023px)
   Hamburger replaces desktop nav.
============================================================ */
@media (max-width: 1023px) {
  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .hamburger           { display: flex; }

  /* Hero photo strip: scrollable row, no page overflow */
  .hero-photo-strip  { overflow-x: auto; -webkit-overflow-scrolling: touch; overflow-y: visible; }
  .photo-strip-inner { flex-wrap: nowrap; }
  .strip-card        { min-width: 190px; max-width: 240px; flex-shrink: 0; }

  /* Industries: 2 columns */
  .industries-grid   { grid-template-columns: repeat(2, 1fr); }

  /* Travel: single column */
  .travel-top-grid         { grid-template-columns: 1fr; gap: 1.75rem; }
  .travel-bottom-grid      { grid-template-columns: 1fr; gap: 1.75rem; }
  .travel-block-body--columns { grid-template-columns: 1fr; gap: 0.75rem; }
  .travel-block-body p     { padding-left: 0; }
  .travel-example          { margin-left: 0 !important; padding-left: 0.65rem !important; }
  .travel-checklist        { grid-template-columns: 1fr 1fr; }

  /* Who We Are: single column */
  .who-grid { grid-template-columns: 1fr; }

  /* Process: 2x2 wrap */
  .process-steps  { flex-wrap: wrap; gap: 2.5rem; justify-content: center; }
  .step-connector { display: none; }
  .process-step   { max-width: 46%; flex: 0 0 46%; }

  /* Footer */
  .footer-grid         { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-contact-wrap { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
}


/* ============================================================
   RESPONSIVE — Mobile (<768px)
   Full single-column layout. Touch-optimised sizing.
============================================================ */
@media (max-width: 767px) {
  /* ── Base ─────────────────────────────────────────────────── */
  .container { padding: 0 1rem; }

  /* ── Navigation ────────────────────────────────────────────── */
  .nav-container { padding: 0 1rem; height: 60px; }
  .logo-main     { font-size: 1.25rem; }
  .logo-sub      { font-size: 0.6rem; }
  .mobile-menu ul { padding: 0.75rem 1.25rem 1.25rem; }
  .mobile-link    { font-size: 0.9rem; padding: 0.6rem 0; }
  .mobile-cta     { margin-top: 0.75rem; }

  /* ── Hero ──────────────────────────────────────────────────── */
  .hero-section     { padding-top: 60px; }
  .hero-photo-strip { display: none; }
  .hero-overlay     { padding: 3rem 1rem 4rem; }
  .hero-eyebrow     { font-size: 0.65rem; margin-bottom: 0.65rem; }
  .hero-headline    { font-size: clamp(1.7rem, 7vw, 2.4rem); line-height: 1.18; }
  .hero-subheadline { font-size: 0.88rem; letter-spacing: 0.07em; }
  .hero-body        { font-size: 0.88rem; margin-bottom: 2rem; }
  .hero-cta-row     { flex-direction: column; align-items: center; gap: 0.75rem; }
  .hero-cta-row .btn { width: 100%; max-width: 280px; text-align: center; }

  /* ── Who We Are ────────────────────────────────────────────── */
  .who-section  { padding: 3.5rem 0; }
  .who-grid     { grid-template-columns: 1fr; gap: 2rem; }
  .map-container { margin-top: 0; padding: 1.5rem 1rem; }
  .map-stats     { padding: 1rem 1.25rem; min-width: 140px; }
  .stat-number   { font-size: 2rem; }

  /* ── Industries ──────────────────────────────────────────────  */
  .industries-section { padding: 3rem 0; }
  .industries-section .section-heading { font-size: 1.2rem; }
  .industries-grid    { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .card-img           { height: 120px; }
  .card-body          { padding: 0.75rem 0.9rem 1rem; }
  .card-title         { font-size: 0.7rem; margin-bottom: 0.4rem; }
  .card-body p        { font-size: 0.76rem; line-height: 1.55; }
  .card-link          { font-size: 0.7rem; }

  /* ── Travel Certificates ────────────────────────────────────── */
  .travel-overlay    { padding: 3rem 0; }
  .travel-top-grid   { grid-template-columns: 1fr; gap: 1.5rem; }
  .travel-bottom-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .travel-mail-full  { padding-top: 1.75rem; }
  .travel-block-body--columns { grid-template-columns: 1fr; }
  .travel-block-body p  { padding-left: 0; font-size: 0.82rem; }
  .travel-example    { margin-left: 0 !important; padding-left: 0.6rem !important; }
  .travel-checklist  { grid-template-columns: 1fr 1fr; }
  .travel-checklist-panel { padding: 1.25rem; }
  .cert-cards { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .cert-img   { height: 72px; }

  /* ── Process ────────────────────────────────────────────────── */
  .process-section { padding: 3.5rem 0; }
  .process-steps   { flex-direction: column; align-items: center; gap: 2rem; }
  .step-connector  { display: none; }
  .process-step    { max-width: 100%; width: 100%; padding: 0; }
  .step-desc       { font-size: 0.82rem; }

  /* ── Built for Scale ────────────────────────────────────────── */
  .scale-section { padding: 2.5rem 0; }
  .scale-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid #e8ecf3;
    padding-top: 1.5rem;
    gap: 0;
  }
  .scale-item {
    min-width: unset;
    max-width: unset;
    flex: unset;
    padding: 0.85rem 0.5rem;
    border-right: none;
    border-bottom: 1px solid #e8ecf3;
    border-radius: 0;
  }
  .scale-item:nth-child(odd)  { border-right: 1px solid #e8ecf3; }
  .scale-item:nth-child(7),
  .scale-item:nth-child(8)    { border-bottom: none; }
  .scale-icon  { width: 40px; height: 40px; }
  .scale-label { font-size: 0.65rem; }

  /* ── CTA / Contact ──────────────────────────────────────────── */
  .cta-content  { grid-template-columns: 1fr; }
  .cta-team     { display: none; }
  .cta-text     { padding: 3rem 1rem; }
  .cta-eyebrow  { font-size: 0.65rem; }
  .cta-headline { font-size: clamp(1.25rem, 5.5vw, 1.7rem); line-height: 1.25; }
  .cta-body p   { font-size: 0.84rem; }
  .cta-btn-row  { flex-direction: column; align-items: center; gap: 0.75rem; }
  .cta-btn-row .btn { width: 100%; max-width: 280px; text-align: center; }

  /* ── Footer ──────────────────────────────────────────────────── */
  .site-footer         { padding-top: 3rem; }
  .footer-grid         { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
  .footer-contact-wrap { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-tagline      { max-width: 100%; }
  .footer-map-mini { max-width: 120px; }
}


/* ============================================================
   RESPONSIVE — Small mobile (≤480px)
   Extra squeeze for 320–375px devices.
============================================================ */
@media (max-width: 480px) {
  .industries-grid { grid-template-columns: 1fr; gap: 0.85rem; }
  .card-img        { height: 150px; }

  .travel-checklist { grid-template-columns: 1fr; }
  .travel-bottom-grid { gap: 1.25rem; }
  .cert-img { height: 62px; }

  .hero-headline  { font-size: 1.6rem; }
  .hero-cta-row .btn { font-size: 0.75rem; padding: 0.7rem 1.25rem; }

  .process-step { padding: 0; }

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

/* ============================================================
   CONTACT MODAL
============================================================ */
.contact-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 12, 35, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.contact-modal-overlay[hidden] { display: none; }

.contact-modal-box {
  background: #0A1F44;
  border: 1px solid rgba(245, 180, 0, 0.28);
  border-radius: 16px;
  padding: 2.5rem 2.75rem 2.25rem;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
}

.contact-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
}

.contact-modal-close:hover { color: #F5B400; }

/* ── Eyebrow label ─────────────────────────────────────── */
.modal-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F5B400;
  margin-bottom: 0.4rem;
}

/* ── Title ─────────────────────────────────────────────── */
.contact-modal-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  color: #fff;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
  line-height: 1.1;
}

/* ── Gold accent bar below title ───────────────────────── */
.modal-title-accent {
  display: block;
  width: 40px;
  height: 3px;
  background: #F5B400;
  border-radius: 2px;
  margin-bottom: 1.75rem;
}

/* ── Section labels ────────────────────────────────────── */
.modal-section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.75rem;
}

/* ── Contact info rows ─────────────────────────────────── */
.modal-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 0;
}

.modal-contact-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.modal-contact-row:hover {
  background: rgba(245, 180, 0, 0.1);
  border-color: rgba(245, 180, 0, 0.35);
}

.modal-contact-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(245, 180, 0, 0.12);
  border: 1px solid rgba(245, 180, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F5B400;
}

.modal-contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.modal-contact-value {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
}

.modal-contact-note {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ── OR divider ────────────────────────────────────────── */
.modal-or-divider {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 1.5rem 0 1.25rem;
}

.modal-or-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.modal-or-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 0.25rem 0.65rem;
}

/* ── Form sub-label ────────────────────────────────────── */
.contact-modal-sub {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

/* ── Form fields ───────────────────────────────────────── */
.contact-modal-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.contact-modal-form label {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.4rem;
}

.contact-modal-form input,
.contact-modal-form textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: #fff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
}

.contact-modal-form input::placeholder,
.contact-modal-form textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.contact-modal-form input:focus,
.contact-modal-form textarea:focus {
  border-color: rgba(245, 180, 0, 0.55);
  background: rgba(255,255,255,0.08);
}

.btn-full { width: 100%; justify-content: center; margin-top: 0.5rem; }

.form-note {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.22);
  text-align: center;
  margin-top: 0.75rem;
}

@media (max-width: 520px) {
  .contact-modal-box { padding: 2rem 1.5rem 1.75rem; }
  .modal-contact-row { gap: 0.7rem; padding: 0.7rem 0.85rem; }
}

/* ============================================================
   NATIONWIDE DIAGNOSTIC OUTREACH — Card
============================================================ */
.ndo-logo-strip {
  background: #f0f3f8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border-top: 1px solid #dce2ec;
  border-radius: 0 0 10px 10px;
}

.ndo-logo {
  display: block;
  width: 100%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
}

.btn-ndo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding: 0.55rem 1.1rem;
  background: #0A1F44;
  border: 1.5px solid #3a7d44;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: #4caf67;
  text-transform: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-ndo:hover {
  background: #3a7d44;
  color: #fff;
  border-color: #3a7d44;
}

.btn-ndo svg { flex-shrink: 0; }

/* ── About Us 3-line heading ────────────────────────────── */
.who-heading {
  font-size: clamp(1.1rem, 2.3vw, 1.65rem);
  line-height: 1.28;
}

/* ── Card link button reset ─────────────────────────────── */
button.card-link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

/* ============================================================
   THE CERTIFICATE COMPANY — Card & Section Branding
============================================================ */

/* ── Card 6 button ─────────────────────────────────────── */
.btn-tcc {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: auto;
  padding: 0.55rem 1rem;
  background: #F5B400;
  border: 1.5px solid #F5B400;
  border-radius: 6px;
  color: #0A1F44;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  width: 100%;
}

.btn-tcc:hover {
  background: #c98e00;
  border-color: #c98e00;
  color: #0A1F44;
}

.btn-tcc svg { flex-shrink: 0; }

.btn-tcc-label {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.btn-tcc-main {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.btn-tcc-sub {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.02em;
  opacity: 0.75;
  line-height: 1.2;
}

/* ── TCC section brand bar — spans cert cards + checklist (grid col 2–3) ── */
.tcc-section-brand {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-top: 0;
  padding: 0.85rem 1.4rem;
  background: #fff;
  border: 1px solid #dce2ec;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(10, 31, 68, 0.07);
  flex-wrap: nowrap;
  grid-column: 2 / 4;
  grid-row: 2;
}

.tcc-section-logo {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
}

.tcc-section-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 160px;
}

.tcc-section-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(0.82rem, 1.5vw, 0.96rem);
  color: #0A1F44;
  letter-spacing: 0.02em;
}

.tcc-section-tagline {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.74rem;
  color: #666;
  line-height: 1.4;
}

/* Button override: ensure it doesn't stretch full width inside flex row */
.tcc-brand-btn {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .tcc-section-brand { grid-column: 1; grid-row: auto; flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .tcc-brand-btn { width: 100%; text-align: center; }
}
