/* ================================================================
   GEOSECURE — LANDING PAGE
   Brand: Navy #0B2149 + Cream #F7EFEE
   Fonts: Koulen (display), Hind Vadodara (body)
   ================================================================ */

:root {
  /* Brand palette (extracted from geosecure.com.au) */
  --navy:        #0B2149;
  --navy-deep:   #06152F;
  --navy-soft:   #162A4D;
  --navy-glass:  rgba(11, 33, 73, 0.04);
  --cream:       #F7EFEE;
  --cream-deep:  #EFE4E2;
  --cool-white:  #F7F9FF;
  --white:       #FFFFFF;

  /* Ink */
  --ink:         #0B2149;
  --ink-muted:   #4B5773;
  --ink-soft:    #6B7796;
  --ink-light:   rgba(247, 239, 238, 0.72);
  --ink-light-2: rgba(247, 239, 238, 0.55);

  /* Borders */
  --border:      #E6E8F0;
  --border-strong: #D2D6E0;
  --border-dark: rgba(247, 239, 238, 0.12);

  /* Type scale */
  --f-display:   "Koulen", "Arial Narrow", "Impact", sans-serif;
  --f-body:      "Hind Vadodara", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Motion */
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft:   cubic-bezier(0.4, 0, 0.2, 1);

  /* Rhythm */
  --container:   1280px;
  --gutter:      clamp(1.25rem, 4vw, 3rem);
  --section-y:   clamp(4.5rem, 9vw, 8rem);
  --radius:      4px;
  --radius-lg:   14px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: clamp(1rem, 0.94rem + 0.25vw, 1.125rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  border: 0;
  background: none;
  cursor: pointer;
  color: inherit;
}

::selection { background: var(--navy); color: var(--cream); }

/* --------------------------------------------------------------
   TYPOGRAPHY
   -------------------------------------------------------------- */

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400; /* Koulen has one weight */
  letter-spacing: 0.005em;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.75rem, 2rem + 5vw, 6rem); line-height: 0.95; }
h2 { font-size: clamp(2.25rem, 1.5rem + 3.4vw, 4.5rem); line-height: 0.98; }
h3 { font-size: clamp(1.35rem, 1.1rem + 1vw, 1.8rem); line-height: 1.1; }
h4 { font-size: 1rem; letter-spacing: 0.06em; }

p { margin: 0; }
p + p { margin-top: 1rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 1.5rem;
  padding: 0.4rem 0.9rem 0.4rem 0.6rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--white);
}
.eyebrow--light {
  color: var(--cream);
  border-color: var(--border-dark);
  background: rgba(247, 239, 238, 0.06);
}
.eyebrow__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 0 0 4px rgba(11, 33, 73, 0.12);
  animation: pulse 2.4s ease-in-out infinite;
}
.eyebrow--light .eyebrow__dot {
  background: var(--cream);
  box-shadow: 0 0 0 4px rgba(247, 239, 238, 0.18);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.72; }
}

/* --------------------------------------------------------------
   LAYOUT PRIMITIVES
   -------------------------------------------------------------- */

.section { padding: var(--section-y) 0; position: relative; }
.section__inner {
  width: 100%;
  max-width: var(--container);
  padding: 0 var(--gutter);
  margin: 0 auto;
  position: relative;
}
.section__head { max-width: 920px; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__head--center .eyebrow { margin-left: 0; }
.section__head--center .section__lede {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section__head--center .section__title {
  margin-left: auto;
  margin-right: auto;
}
.section__title { max-width: 22ch; }
.section__title--light { color: var(--cream); }
.section__lede {
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.28rem);
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 62ch;
  margin-top: 1.5rem;
}
.section__lede--light { color: var(--ink-light); }
.section__lede--muted { color: var(--ink-soft); }

/* --------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.35s var(--ease);
  position: relative;
  will-change: transform;
  isolation: isolate;
}
.btn svg { transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
  background: var(--navy);
  color: var(--cream);
  box-shadow: 0 10px 24px -14px rgba(11, 33, 73, 0.55);
}
.btn--primary:hover {
  background: var(--navy-deep);
  box-shadow: 0 22px 40px -18px rgba(11, 33, 73, 0.6);
}

.btn--cream {
  background: var(--cream);
  color: var(--navy);
  box-shadow: 0 10px 24px -12px rgba(0, 0, 0, 0.45);
}
.btn--cream:hover {
  background: var(--white);
  box-shadow: 0 22px 40px -14px rgba(0, 0, 0, 0.5);
}

.btn--sm { padding: 0.6rem 1.05rem; font-size: 0.85rem; }
.btn--lg { padding: 1.15rem 2rem; font-size: 1.05rem; }

/* --------------------------------------------------------------
   HEADER
   -------------------------------------------------------------- */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.85rem 0;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), padding 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--border);
  padding: 0.55rem 0;
}
.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header__brand { flex: 0 0 auto; display: block; }
.header__logo { height: 40px; width: auto; display: block; }
.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2rem);
}
.header__nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0.45rem 0;
  position: relative;
  transition: color 0.2s var(--ease);
}
.header__nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--navy);
  transition: width 0.35s var(--ease);
}
.header__nav a:hover { color: var(--navy); }
.header__nav a:hover::after { width: 100%; }

.header__cta { flex: 0 0 auto; }

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.header__burger span {
  width: 22px; height: 2px;
  background: var(--navy);
  transition: transform 0.35s var(--ease), opacity 0.2s var(--ease);
}

/* --------------------------------------------------------------
   HERO
   -------------------------------------------------------------- */

.hero {
  position: relative;
  padding-top: clamp(7rem, 12vh, 9rem);
  padding-bottom: 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cool-white) 0%, var(--white) 68%);
}

.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(11, 33, 73, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11, 33, 73, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 70% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 70% 40%, black 30%, transparent 80%);
}
.hero__glow {
  position: absolute;
  top: -20%; right: -15%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(11, 33, 73, 0.09) 0%, transparent 60%);
  filter: blur(20px);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: 0;
}

.hero__copy { position: relative; z-index: 2; }
.hero__title {
  font-size: clamp(2.75rem, 1.4rem + 4vw, 4.75rem);
  line-height: 0.95;
  letter-spacing: 0.005em;
  margin-bottom: 1.75rem;
  color: var(--navy);
}
.split-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em; /* prevent descender clipping */
  white-space: nowrap;
}
.split-word {
  display: inline-block;
  will-change: transform;
}
/* Pre-hide only when JS is active — otherwise the title is visible without animation */
html.js .split-word { visibility: hidden; }
.split-word--accent {
  color: var(--navy);
  font-style: italic;
  position: relative;
}
.split-word--accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 0.14em;
  background: var(--cream-deep);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s var(--ease) 1.2s;
}
.hero__title.is-revealed .split-word--accent::after { transform: scaleX(1); }

/* Italic-only accent (no underline highlight) */
.split-word--italic {
  color: var(--navy);
  font-style: italic;
}

.hero__sub em {
  font-style: italic;
  color: var(--navy);
  font-weight: 500;
}

.hero__sub {
  max-width: 52ch;
  font-size: clamp(1.05rem, 1rem + 0.35vw, 1.28rem);
  line-height: 1.6;
  color: var(--ink-muted);
  margin-bottom: 1.15rem;
}
.hero__sub--strong { color: var(--ink); font-weight: 500; }

.hero__cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.5rem;
}
.hero__micro {
  font-size: 0.88rem;
  color: var(--ink-soft);
  max-width: 30ch;
  line-height: 1.5;
}

/* Hero visual — dashboard illustration on top, stats row beneath */
.hero__visual {
  position: relative;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}
.hero__dashboard {
  position: relative;
  padding: 1.25rem 1rem 0.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -30px rgba(11, 33, 73, 0.28);
}
.hero__dashboard::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  left: 0.85rem;
  width: 44px;
  height: 8px;
  background:
    radial-gradient(circle at 4px 4px, #E14C3C 3px, transparent 3.5px),
    radial-gradient(circle at 18px 4px, #E6B341 3px, transparent 3.5px),
    radial-gradient(circle at 32px 4px, #57B25C 3px, transparent 3.5px);
  border-radius: 999px;
  opacity: 0.7;
}
.hero__dashboard-img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0.75rem auto 0;
}

.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.85rem;
  align-items: stretch;
}
.hero__kpi {
  padding: 0.9rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 44px -22px rgba(11, 33, 73, 0.28);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.hero__kpi-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero__kpi-value {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 1rem + 1.4vw, 2.1rem);
  line-height: 1;
  color: var(--navy);
}
.hero__kpi-trend {
  font-size: 0.75rem;
  font-weight: 500;
  color: #17864C;
}
.hero__kpi-trend--down { color: #C0532B; }

.hero__kpi--one {
  animation: float 6s ease-in-out infinite;
}
.hero__kpi--two {
  animation: float 7s ease-in-out infinite 0.8s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero__map {
  width: 118px;
  padding: 0.5rem 0.5rem 0.4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 44px -22px rgba(11, 33, 73, 0.28);
  animation: float 8s ease-in-out infinite 1.2s;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.hero__map img { border-radius: 6px; display: block; }
.hero__map-label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
}

/* Trust strip — deliberately loud so it does not blend into the hero */
.trust {
  position: relative;
  z-index: 2;
  margin-top: 4rem;
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
  border-top: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 20px 40px -32px rgba(11, 33, 73, 0.35);
}
.trust__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 2.75rem var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.trust__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(11, 33, 73, 0.08);
  border-radius: var(--radius-lg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 8px 20px -18px rgba(11, 33, 73, 0.3);
  min-width: 0;
}
.trust__badge {
  height: 72px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 6px 12px rgba(11, 33, 73, 0.18));
}
.trust__badge--iso {
  height: 82px;
  max-width: 96px;
}
.trust__item div {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}
.trust__item strong {
  font-family: var(--f-display);
  font-size: clamp(1.35rem, 0.9rem + 0.6vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1;
}
.trust__item span {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-top: 0.35rem;
  font-weight: 500;
  line-height: 1.25;
}
.trust__dot { display: none; }

/* Geotab badge is designed for dark backgrounds — invert it to read on cream by default */
.trust__badge--geotab {
  max-width: 140px;
  height: 62px;
  filter: invert(1) grayscale(1) contrast(1.4);
}

/* Trust cards: navy on hover (matches other card families) */
.trust__item {
  cursor: default;
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.trust__item:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 20px 36px -22px rgba(11, 33, 73, 0.55);
}
.trust__item:hover strong { color: var(--cream); }
.trust__item:hover span { color: rgba(247, 239, 238, 0.72); }
.trust__item:hover .trust__badge--geotab {
  filter: none;
}

/* --------------------------------------------------------------
   PROBLEM
   -------------------------------------------------------------- */

.problem { background: var(--cream); }
.problem__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.problem__copy .section__title { color: var(--ink); }

.checklist {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: grid;
  gap: 0.9rem;
}
.checklist--dot li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 1.02rem;
  color: var(--ink-muted);
  line-height: 1.5;
}
.checklist--dot li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--navy);
}

.pull-quote {
  margin-top: 2.5rem;
  padding: 1.6rem 1.75rem;
  border-left: 3px solid var(--navy);
  background: var(--white);
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--ink);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pull-quote span {
  display: block;
  margin-top: 0.5rem;
  color: var(--ink-muted);
  font-weight: 500;
}

/* Screen frame that wraps the signal panel */
.screen {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 50px 90px -40px rgba(11, 33, 73, 0.4),
    0 0 0 8px rgba(255, 255, 255, 0.55);
}
.screen::before {
  content: "";
  position: absolute;
  inset: -22px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 20% 0%, rgba(11, 33, 73, 0.08), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(11, 33, 73, 0.06), transparent 55%);
  z-index: -1;
  pointer-events: none;
}
.screen__chrome {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(180deg, #F4F5F9 0%, #E9ECF2 100%);
  border-bottom: 1px solid var(--border);
}
.screen__dots {
  display: inline-flex;
  gap: 6px;
  flex: 0 0 auto;
}
.screen__dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #E14C3C;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.05);
}
.screen__dots span:nth-child(2) { background: #E6B341; }
.screen__dots span:nth-child(3) { background: #57B25C; }
.screen__url {
  flex: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(11, 33, 73, 0.08);
  border-radius: 999px;
  font-size: 0.72rem;
  color: var(--ink-soft);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.screen__url svg { flex: 0 0 auto; color: #17864C; }
.screen__meta {
  flex: 0 0 auto;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Signal panel — sits inside the screen frame */
.signal-panel {
  position: relative;
  padding: 1.4rem 1.4rem 1.25rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.signal-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.25rem 0.9rem;
  border-bottom: 1px dashed var(--border-strong);
  margin-bottom: 0.35rem;
}
.signal-panel__title {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}
.signal-panel__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #17864C;
  box-shadow: 0 0 0 4px rgba(23, 134, 76, 0.18);
  animation: signalPulse 1.8s ease-in-out infinite;
}
@keyframes signalPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 4px rgba(23, 134, 76, 0.18); }
  50% { opacity: 0.65; box-shadow: 0 0 0 7px rgba(23, 134, 76, 0.06); }
}
.signal-panel__meta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.signal {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  transition: background 0.3s var(--ease);
}
.signal:hover { background: rgba(11, 33, 73, 0.03); }
.signal--clear { background: rgba(23, 134, 76, 0.06); }

.signal__icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(11, 33, 73, 0.05);
  color: var(--ink-muted);
}
.signal__icon svg { width: 18px; height: 18px; }
.signal--clear .signal__icon {
  background: rgba(23, 134, 76, 0.14);
  color: #17864C;
}

.signal__body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}
.signal__label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
}
.signal--clear .signal__label { color: #146840; }

.signal__bar {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(11, 33, 73, 0.08);
  overflow: hidden;
}
.signal__bar-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: var(--fill, 50%);
  background: linear-gradient(90deg, #17864C, #22A661);
  border-radius: 999px;
}
.signal__bar-fill--murky {
  background:
    repeating-linear-gradient(
      45deg,
      rgba(192, 83, 43, 0.55) 0 6px,
      rgba(192, 83, 43, 0.2) 6px 12px
    );
}

.signal__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
}
.signal__tag--clear {
  color: #17864C;
  background: rgba(23, 134, 76, 0.14);
}
.signal__tag--murky {
  color: #C0532B;
  background: rgba(192, 83, 43, 0.12);
}

.signal-panel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
  padding: 0.85rem 0.75rem 0.15rem;
  border-top: 1px dashed var(--border-strong);
  font-size: 0.8rem;
  color: var(--ink-muted);
}
.signal-panel__stat {
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: #C0532B;
  letter-spacing: 0.02em;
}

/* --------------------------------------------------------------
   INDUSTRIES (NAVY)
   -------------------------------------------------------------- */

.industries {
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.industries::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(247, 239, 238, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(247, 239, 238, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.industries .section__inner { position: relative; z-index: 1; }

/* Split heading: each line on its own row, contrasting colours */
.ind-heading { display: block; max-width: 24ch; }
.ind-heading__line {
  display: block;
  line-height: 1;
  padding-bottom: 0.06em;
}
.ind-heading__line--1 {
  color: rgba(247, 239, 238, 0.55);
}
.ind-heading__line--2 {
  color: var(--cream);
}
.ind-heading__line--3 {
  color: #FFB27A;
  font-style: italic;
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.ind-card {
  position: relative;
  padding: 2.2rem 1.75rem 1.75rem;
  background: rgba(247, 239, 238, 0.04);
  border: 1px solid rgba(247, 239, 238, 0.1);
  border-radius: var(--radius-lg);
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease), transform 0.35s var(--ease);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.ind-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(247, 239, 238, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.ind-card:hover {
  border-color: rgba(247, 239, 238, 0.28);
  background: rgba(247, 239, 238, 0.07);
  transform: translateY(-4px);
}
.ind-card:hover::before { opacity: 1; }

.ind-card__num {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: var(--f-display);
  font-size: 1.35rem;
  color: rgba(247, 239, 238, 0.35);
  letter-spacing: 0.05em;
}
.ind-card__icon {
  height: 44px;
  width: 44px;
  margin-bottom: 1.5rem;
  color: var(--cream);
  opacity: 0.9;
  transition: transform 0.4s var(--ease);
}
.ind-card:hover .ind-card__icon { transform: translateY(-2px); }
.ind-card__title {
  color: var(--cream);
  font-size: clamp(1.35rem, 1.1rem + 0.6vw, 1.7rem);
  margin-bottom: 1.15rem;
}
.ind-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.5rem;
}
.ind-card__list li {
  font-size: 0.85rem;
  padding: 0.3rem 0.65rem;
  background: rgba(247, 239, 238, 0.08);
  border: 1px solid rgba(247, 239, 238, 0.14);
  border-radius: 999px;
  color: rgba(247, 239, 238, 0.88);
}

/* --------------------------------------------------------------
   VISIBILITY (CHECKLIST)
   -------------------------------------------------------------- */

.visibility {
  background: var(--cool-white);
  position: relative;
  overflow: hidden;
}
.visibility::before {
  content: "";
  position: absolute;
  top: -10%; right: -10%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(11, 33, 73, 0.05), transparent 60%);
  pointer-events: none;
}
.visibility .section__inner { position: relative; z-index: 1; }

/* Head — tighter widths so title and lede don't create widows */
.vis-head { max-width: 780px; }
.vis-title {
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}
.vis-lede {
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
}

.vis-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
}
.vis-card {
  position: relative;
  padding: 1.5rem 1.4rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 190px;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
  overflow: hidden;
}
.vis-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(11, 33, 73, 0.08), transparent 40%);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.vis-card:hover {
  transform: translateY(-4px);
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 30px 60px -28px rgba(11, 33, 73, 0.55);
}
.vis-card:hover::after { opacity: 1; }
.vis-card:hover .vis-card__title { color: var(--cream); }
.vis-card:hover .vis-card__note {
  color: rgba(247, 239, 238, 0.72);
  border-top-color: rgba(247, 239, 238, 0.18);
}
.vis-card:hover .vis-card__icon {
  background: rgba(247, 239, 238, 0.14);
  color: var(--cream);
}

.vis-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(11, 33, 73, 0.06);
  color: var(--navy);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.vis-card__icon svg { width: 24px; height: 24px; }
.vis-card:hover .vis-card__icon { transform: rotate(-6deg) scale(1.05); }

.vis-card__title {
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
}
.vis-card__note {
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--ink-soft);
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px dashed var(--border-strong);
}


.visibility__footer {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.visibility__footnote {
  max-width: 68ch;
  font-size: 1.05rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin: 0;
}
.visibility__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy);
  padding: 0.65rem 0.25rem;
  border-bottom: 1.5px solid var(--navy);
  transition: gap 0.3s var(--ease);
}
.visibility__cta:hover { gap: 0.85rem; }
.visibility__cta svg { transition: transform 0.3s var(--ease); }
.visibility__cta:hover svg { transform: translateX(3px); }

/* --------------------------------------------------------------
   PLAN
   -------------------------------------------------------------- */

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

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
}
.plan-grid::before {
  content: "";
  position: absolute;
  top: 5.25rem;
  left: 8%;
  right: 8%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--border-strong) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.plan-step {
  position: relative;
  padding: 2.5rem 1.75rem 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  z-index: 1;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.plan-step:hover {
  transform: translateY(-6px);
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 32px 60px -28px rgba(11, 33, 73, 0.55);
}
.plan-step:hover .plan-step__num,
.plan-step:hover .plan-step__title { color: var(--cream); }
.plan-step:hover .plan-step__verb { color: rgba(247, 239, 238, 0.55); }
.plan-step:hover .plan-step__body { color: rgba(247, 239, 238, 0.75); }
.plan-step:hover .plan-step__num-wrap {
  border-bottom-color: rgba(247, 239, 238, 0.18);
}
.plan-step__num-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.plan-step__num {
  font-family: var(--f-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--navy);
}
.plan-step__verb {
  font-family: var(--f-display);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.plan-step__title {
  font-size: clamp(1.2rem, 1rem + 0.6vw, 1.55rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--ink);
}
.plan-step__body {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ink-muted);
}

/* --------------------------------------------------------------
   SHOWCASE BAND (vehicle → device → dashboard)
   -------------------------------------------------------------- */

.showcase {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(4rem, 8vw, 7rem);
  background: linear-gradient(180deg, var(--white) 0%, var(--cool-white) 100%);
  overflow: hidden;
}
.showcase__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.showcase__eyebrow {
  margin-left: auto;
  margin-right: auto;
}
.showcase__title {
  font-family: var(--f-display);
  font-size: clamp(1.75rem, 1.1rem + 2.4vw, 3rem);
  line-height: 1;
  color: var(--ink);
  max-width: 22ch;
  margin: 0 auto 1rem;
  text-transform: uppercase;
}
.showcase__lede {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
  color: var(--ink-muted);
  max-width: 60ch;
  margin: 0 auto 3rem;
  line-height: 1.55;
}
.showcase__band {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0 0;
}
.showcase__img {
  display: block;
  width: 100%;
  max-width: 1180px;
  height: auto;
  margin: 0 auto;
}
.showcase__legend {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1180px;
  margin: 3rem auto 0;
  padding-top: 3rem;
}
/* Timeline connector across the three step cards */
.showcase__legend::before {
  content: "";
  position: absolute;
  top: 3.9rem;
  left: 12%;
  right: 12%;
  height: 2px;
  background:
    repeating-linear-gradient(90deg, var(--navy) 0 6px, transparent 6px 14px);
  opacity: 0.35;
  z-index: 0;
}

.show-step {
  position: relative;
  padding: 2rem 1.75rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 1;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
.show-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 60px -28px rgba(11, 33, 73, 0.55);
  border-color: var(--navy);
}
.show-step:hover {
  background: var(--navy);
}
.show-step:hover .show-step__num,
.show-step:hover .show-step__title { color: var(--cream); }
.show-step:hover .show-step__label { color: rgba(247, 239, 238, 0.65); }
.show-step:hover .show-step__body { color: rgba(247, 239, 238, 0.75); }
.show-step:hover .show-step__head {
  border-bottom-color: rgba(247, 239, 238, 0.18);
}
.show-step:hover .show-step__icon {
  background: rgba(247, 239, 238, 0.14);
  color: var(--cream);
}
.show-step:hover .show-step__tags li {
  background: rgba(247, 239, 238, 0.12);
  color: var(--cream);
}

.show-step__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--border-strong);
  margin-bottom: 0.25rem;
}
.show-step__num {
  font-family: var(--f-display);
  font-size: 2.75rem;
  line-height: 1;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.show-step__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(11, 33, 73, 0.06);
  color: var(--navy);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
.show-step__icon svg { width: 28px; height: 28px; }
.show-step:hover .show-step__icon { transform: rotate(-6deg); }

.show-step__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.show-step__title {
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 1rem + 0.6vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin: 0;
  line-height: 1.05;
}
.show-step__body {
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.5;
  margin: 0;
}
.show-step__tags {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.show-step__tags li {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: rgba(11, 33, 73, 0.06);
  color: var(--navy);
}


/* --------------------------------------------------------------
   TECH PARTNERS (inside capability)
   -------------------------------------------------------------- */

.tech-partners {
  max-width: 1000px;
  margin: 2.5rem auto 0;
  padding: 1.75rem clamp(1rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
}
.tech-partners img {
  max-height: 36px;
  max-width: 100%;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s var(--ease);
}
.tech-partners img:hover { opacity: 1; }
.tech-partners__label {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.25rem;
}

/* --------------------------------------------------------------
   WHY GEOSECURE (NAVY)
   -------------------------------------------------------------- */

.why {
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: "";
  position: absolute;
  top: 20%; left: -10%;
  width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(247, 239, 238, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  position: relative;
  z-index: 1;
}

.why__band {
  margin-top: clamp(3rem, 5vw, 4.5rem);
  padding-top: clamp(2rem, 3.5vw, 3rem);
  border-top: 1px solid rgba(247, 239, 238, 0.12);
}
.why__band-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 239, 238, 0.6);
  margin-bottom: 1.5rem;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.why-list li {
  position: relative;
  padding: 1.1rem 1.25rem 1.1rem 3rem;
  color: var(--cream);
  font-size: 0.95rem;
  line-height: 1.4;
  background: rgba(247, 239, 238, 0.05);
  border: 1px solid rgba(247, 239, 238, 0.1);
  border-radius: var(--radius-lg);
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease);
  display: flex;
  align-items: center;
}
.why-list li::before {
  content: "→";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.3s var(--ease);
}
.why-list li:hover {
  background: rgba(247, 239, 238, 0.1);
  border-color: rgba(247, 239, 238, 0.28);
  transform: translateY(-2px);
}
.why-list li:hover::before {
  transform: translateY(-50%) translateX(2px);
}

.why__proof {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.proof-badge {
  padding: 1.75rem 1.4rem;
  background: rgba(247, 239, 238, 0.05);
  border: 1px solid rgba(247, 239, 238, 0.12);
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.proof-badge:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 239, 238, 0.32);
  background: rgba(247, 239, 238, 0.09);
}
.proof-badge img {
  height: 56px;
  width: auto;
  margin-bottom: 1.25rem;
  object-fit: contain;
}
/* Geotab reseller badge is designed for dark backgrounds — keep as is */
.proof-badge__img--geotab {
  filter: none;
  max-width: 180px;
}
/* Colored badges (AUS, ISO) — display on a soft white puck so the colours read */
.proof-badge__img:not(.proof-badge__img--geotab) {
  background: var(--white);
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 8px 20px -12px rgba(0, 0, 0, 0.4);
}
.proof-badge__stat {
  display: flex;
  align-items: baseline;
  margin-bottom: 1.25rem;
  color: var(--cream);
  font-family: var(--f-display);
  font-size: 3.2rem;
  line-height: 1;
}
.proof-badge__stat span:last-child { font-size: 2rem; margin-left: 0.15rem; }
.proof-badge h4 {
  color: var(--cream);
  font-family: var(--f-display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.65rem;
}
.proof-badge p {
  font-size: 0.87rem;
  line-height: 1.5;
  color: var(--ink-light-2);
}

/* --------------------------------------------------------------
   CAPABILITY STRIP
   -------------------------------------------------------------- */

.capability {
  padding: var(--section-y) 0 calc(var(--section-y) - 2rem);
  background: var(--white);
  overflow: hidden;
}
.capability__title {
  font-size: clamp(2rem, 1.4rem + 3vw, 3.5rem);
  color: var(--ink);
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}

/* Capabilities pill list — replaces the marquee so the list is readable */
.cap-list-wrap {
  margin-top: 3.5rem;
  text-align: center;
}
.cap-list__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
}
.cap-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 960px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 0.75rem;
}
.cap-list li {
  padding: 0.7rem 1.15rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  border-radius: 999px;
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.cap-list li:hover {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -12px rgba(11, 33, 73, 0.45);
}

/* --------------------------------------------------------------
   PROOF
   -------------------------------------------------------------- */

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

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.proof-card {
  padding: 2.25rem 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -30px rgba(11, 33, 73, 0.28);
}
.proof-card__logo {
  height: 88px;
  display: flex;
  align-items: center;
}
.proof-card__logo img {
  max-height: 88px;
  max-width: 320px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}
.proof-card__quote {
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
  padding: 0;
  font-weight: 500;
  quotes: '\201C' '\201D';
}
.proof-card__quote::before {
  content: open-quote;
  font-family: var(--f-display);
  font-size: 2.2rem;
  color: var(--navy);
  line-height: 0;
  vertical-align: -0.3em;
  margin-right: 0.15em;
}
.proof-card__quote::after {
  content: close-quote;
  font-family: var(--f-display);
  font-size: 2.2rem;
  color: var(--navy);
  line-height: 0;
  vertical-align: -0.3em;
  margin-left: 0.15em;
}
.proof-card__meta {
  display: flex;
  flex-direction: column;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.proof-card__client {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
}
.proof-card__role {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.client-logos {
  border-top: 1px solid var(--border-strong);
  padding-top: 3rem;
}
.client-logos__caption {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
}
.client-logos__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 2.5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.client-logos__row img {
  max-height: 100px;
  max-width: 100%;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  opacity: 0.92;
  transition: opacity 0.3s var(--ease);
}
.client-logos__row img:hover {
  opacity: 1;
}

/* --------------------------------------------------------------
   FINAL CTA
   -------------------------------------------------------------- */

.final-cta {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
  text-align: center;
}
.final-cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(247, 239, 238, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(247, 239, 238, 0.06) 0%, transparent 50%);
}
.final-cta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(247, 239, 238, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(247, 239, 238, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent 80%);
}
.final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
}
.final-cta__inner .eyebrow { margin-left: auto; margin-right: auto; }
.final-cta__title {
  font-size: clamp(2.5rem, 1.75rem + 4vw, 5rem);
  line-height: 0.98;
  color: var(--cream);
  margin-bottom: 1.75rem;
  font-family: var(--f-display);
  text-transform: uppercase;
  max-width: 20ch;
  margin-inline: auto;
}
.final-cta__lede {
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink-light);
  margin-bottom: 2.5rem;
  max-width: 55ch;
  margin-inline: auto;
}
.final-cta__actions {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.final-cta__micro {
  font-size: 0.85rem;
  color: var(--ink-light-2);
  max-width: 40ch;
}

/* --------------------------------------------------------------
   FOOTER CTA
   -------------------------------------------------------------- */

.footer-cta { padding: 4rem 0; background: var(--white); border-bottom: 1px solid var(--border); }
.footer-cta__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.footer-cta__title {
  font-family: var(--f-display);
  font-size: clamp(1.25rem, 1rem + 0.6vw, 1.6rem);
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.footer-cta__body {
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.55;
  max-width: 55ch;
}
.footer-cta__contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.footer-cta__link {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 0.5rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.footer-cta__link:hover { border-color: var(--navy); background: var(--cream); }
.footer-cta__link span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  align-self: center;
}
.footer-cta__link strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

/* --------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------- */

.footer { background: var(--navy-deep); color: var(--ink-light); padding: 3rem 0 2.5rem; }
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer__brand p { max-width: 50ch; font-size: 0.9rem; margin-top: 1rem; }
.footer__logo { height: 40px; width: auto; display: block; }
.footer__legal p { font-size: 0.82rem; color: var(--ink-light-2); }

/* --------------------------------------------------------------
   REVEAL DEFAULTS (before GSAP arrives, hide the split words)
   -------------------------------------------------------------- */

/* Only hide reveal elements when JS is present. If JS never runs, content
   stays visible instead of being permanently blank. */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
}
html.js [data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
}
html.js [data-reveal-lines] {
  opacity: 0;
}

/* --------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------- */

@media (max-width: 1100px) {
  .header__nav { display: none; }
  .header__burger { display: flex; }

  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 2rem;
  }
  .hero__visual {
    max-width: 560px;
    margin: 3rem auto 0;
    width: 100%;
  }

  .problem__inner { grid-template-columns: 1fr; }
  .screen { margin-top: 3rem; }

  .why__inner { grid-template-columns: 1fr; }
  .why__proof { grid-template-columns: repeat(2, 1fr); }
  .why-list { grid-template-columns: repeat(2, 1fr); }

  .client-logos__row { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

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

@media (max-width: 780px) {
  :root { --section-y: clamp(3.5rem, 8vw, 6rem); }

  .hero { padding-top: 6rem; }
  .hero__title { font-size: clamp(2.5rem, 8vw, 3.5rem); }
  .split-line { white-space: normal; }

  .trust__inner { grid-template-columns: 1fr; padding: 1.5rem var(--gutter); gap: 0.75rem; }

  .ind-grid { grid-template-columns: 1fr; }
  .vis-grid { grid-template-columns: 1fr; }
  .vis-card { min-height: 0; }
  .plan-grid { grid-template-columns: 1fr; }
  .plan-grid::before { display: none; }
  .why__proof { grid-template-columns: 1fr; }
  .why-list { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }

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

  .hero__kpi { min-width: 150px; padding: 0.75rem 0.9rem; }
  .hero__kpi-value { font-size: 1.8rem; }
  .hero__map { width: 130px; }

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

  .showcase__legend { grid-template-columns: 1fr; gap: 1.25rem; padding-top: 1.5rem; }
  .showcase__legend::before { display: none; }
  .tech-partners {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 1.5rem;
    padding: 1.5rem 1rem;
  }
  .tech-partners__label { grid-column: 1 / -1; }

  .footer__inner { align-items: flex-start; }

  /* Mobile nav overlay */
  .header__nav {
    position: fixed;
    top: 60px;
    left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding: 1rem var(--gutter);
    transform: translateY(-110%);
    transition: transform 0.35s var(--ease);
    z-index: 99;
  }
  .header__nav.is-open {
    display: flex;
    transform: translateY(0);
  }
  .header__nav.is-open a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1.05rem;
  }
  .header__cta { display: none; }
}

@media (max-width: 480px) {
  .hero__map { width: 100px; }
  .hero__kpi { min-width: 130px; }
  .signal-panel { padding: 1.1rem 1rem; }
  .signal__label { font-size: 0.8rem; }
  .proof-card { padding: 1.75rem 1.5rem; }
  .final-cta__title { font-size: clamp(2rem, 8vw, 2.75rem); }
}

/* --------------------------------------------------------------
   ACCESSIBILITY
   -------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal], [data-reveal-stagger] > *, [data-reveal-lines], .split-word {
    opacity: 1 !important;
    transform: none !important;
  }
}

*:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
  border-radius: 3px;
}
.industries *:focus-visible,
.why *:focus-visible,
.final-cta *:focus-visible,
.footer *:focus-visible {
  outline-color: var(--cream);
}
