/* ============================================================
   Reliance Security — style.css
   Light / clean professional scheme
   Brand: Navy #1C3054  ·  Red #C31F2E  ·  White #FFFFFF
   Fonts: Bebas Neue (display) + Outfit (body)
   Container: 1400px
   ============================================================ */

/* ── Variables ────────────────────────────────────────────── */
:root {
  --bg:          #FFFFFF;
  --bg-2:        #F4F6FA;
  --bg-3:        #EDF0F6;
  --navy:        #1C3054;
  --navy-dk:     #142440;
  --navy-lt:     #2A4570;
  --red:         #C31F2E;
  --red-lt:      #D93040;
  --text:        #1A1F2E;
  --text-2:      #3E4558;
  --muted:       #7A8399;
  --border:      #DDE1EA;
  --border-lt:   #ECEEF4;
  --white:       #FFFFFF;
  --nav-h:       76px;
  --radius:      6px;
  --radius-lg:   10px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Outfit', sans-serif;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:   0 1px 4px rgba(28,48,84,.06), 0 4px 16px rgba(28,48,84,.07);
  --shadow-md:   0 4px 16px rgba(28,48,84,.09), 0 12px 40px rgba(28,48,84,.10);
  --shadow-lg:   0 8px 32px rgba(28,48,84,.12), 0 24px 64px rgba(28,48,84,.12);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ── Layout ───────────────────────────────────────────────── */
.section-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-overline {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .85rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.section-overline::before,
.section-overline::after {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--red);
  opacity: .4;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  letter-spacing: .03em;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .78rem 1.85rem;
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  border-radius: var(--radius);
  transition: all .2s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-navy {
  background: var(--navy);
  color: #fff;
  border: 1.5px solid var(--navy);
}
.btn-navy:hover {
  background: var(--navy-lt);
  border-color: var(--navy-lt);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(28,48,84,.25);
}

.btn-red {
  background: var(--red);
  color: #fff;
  border: 1.5px solid var(--red);
}
.btn-red:hover {
  background: var(--red-lt);
  border-color: var(--red-lt);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(195,31,46,.3);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--navy);
  background: var(--bg-2);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.65);
  transform: translateY(-1px);
}

.btn-lg {
  padding: .9rem 2.3rem;
  font-size: .95rem;
}


/* ════════════════════════════════════════════
   NAV
════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(28,48,84,.06);
  transition: box-shadow .25s var(--ease);
}
.site-nav.scrolled {
  box-shadow: 0 2px 24px rgba(28,48,84,.10);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity .2s;
}
.nav-logo:hover { opacity: .85; }
.nav-logo img {
  height: 64px;
  width: auto;
  display: block;
}

/* Divider */
.nav-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
  flex-shrink: 0;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: .1rem;
  margin-left: auto;
}

.nav-link {
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-2);
  padding: .45rem .9rem;
  position: relative;
  transition: color .22s var(--ease);
}
/* Sliding underline */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: .9rem;
  right: .9rem;
  height: 1.5px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s var(--ease);
}
.nav-link:hover {
  color: var(--navy);
}
.nav-link:hover::after {
  transform: scaleX(1);
}
.nav-link.active {
  color: var(--navy);
  font-weight: 600;
}
.nav-link.active::after {
  transform: scaleX(1);
  background: var(--red);
}

/* Phone CTA */
.nav-phone {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem 1.2rem;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--white);
  background: var(--red);
  border: 1.5px solid var(--red);
  border-radius: var(--radius);
  flex-shrink: 0;
  transition: all .2s var(--ease);
}
.nav-phone svg { width: 14px; height: 14px; }
.nav-phone:hover {
  background: #a8192a;
  border-color: #a8192a;
  box-shadow: 0 4px 14px rgba(195,31,46,.3);
}

/* ── Mega Menu ────────────────────────────────────────────── */
.nav-item-mega {
  position: relative;
}

.nav-link-mega {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.mega-chevron {
  width: 10px;
  height: 10px;
  transition: transform .22s var(--ease);
  flex-shrink: 0;
  margin-top: 1px;
}
.nav-item-mega.open .mega-chevron {
  transform: rotate(180deg);
}

/* The bubble panel */
.mega-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 700px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow:
    0 4px 6px rgba(28,48,84,.04),
    0 20px 60px rgba(28,48,84,.13),
    0 0 0 1px rgba(28,48,84,.03);
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 2px 1fr 2px 220px;
  gap: 1.75rem;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity .22s var(--ease),
    transform .22s var(--ease),
    visibility .22s;
  z-index: 200;
}
/* Arrow pointer */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: #fff;
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  border-radius: 2px 0 0 0;
  transform: translateX(-50%) rotate(45deg);
}

.nav-item-mega.open .mega-menu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Column divider */
.mega-col-divider {
  width: 1px;
  background: var(--border-lt);
  align-self: stretch;
}

/* Column title */
.mega-col-title {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.mega-col-title svg {
  width: 13px;
  height: 13px;
  color: var(--navy);
  opacity: .5;
  flex-shrink: 0;
}

/* Mega links */
.mega-links {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.mega-link {
  display: flex;
  flex-direction: column;
  gap: .12rem;
  padding: .55rem .7rem;
  border-radius: 8px;
  transition: background .16s var(--ease);
  color: var(--text);
}
.mega-link:hover {
  background: var(--bg-2);
}
.mega-link:hover .mega-link-label {
  color: var(--navy);
}

.mega-link-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  transition: color .16s;
  line-height: 1.2;
}

.mega-link-sub {
  font-size: .73rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.3;
}

/* CTA panel */
.mega-cta {
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border-radius: 10px;
  padding: 1.35rem;
  align-self: start;
}

.mega-cta-badge {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .85rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.mega-cta-badge svg {
  width: 24px;
  height: 24px;
}

.mega-cta-heading {
  font-size: .84rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: .4rem;
}

.mega-cta-body {
  font-size: .75rem;
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 1.1rem;
}

.mega-cta-btn {
  display: block;
  text-align: center;
  padding: .6rem .9rem;
  background: var(--navy);
  color: #fff;
  border-radius: 7px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .03em;
  transition: background .18s var(--ease), box-shadow .18s;
  margin-bottom: .65rem;
}
.mega-cta-btn:hover {
  background: var(--navy-lt);
  box-shadow: 0 4px 12px rgba(28,48,84,.22);
}

.mega-cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--red);
  transition: color .15s;
}
.mega-cta-phone svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.mega-cta-phone:hover { color: var(--red-lt); }

/* Mobile sub-links */
.nav-mobile-group { display: flex; flex-direction: column; }

.nav-mobile-group-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font-body);
  text-align: left;
  cursor: pointer;
}
.mobile-chevron {
  width: 10px;
  height: 10px;
  transition: transform .22s var(--ease);
  flex-shrink: 0;
}
.nav-mobile-group.open .mobile-chevron { transform: rotate(180deg); }

.nav-mobile-sub {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s var(--ease);
  padding-left: 1rem;
}
.nav-mobile-group.open .nav-mobile-sub { max-height: 600px; }

.nav-mobile-sub-link {
  font-size: .83rem;
  font-weight: 400;
  color: var(--muted);
  padding: .45rem 0;
  border-bottom: 1px solid var(--border-lt);
  transition: color .15s;
}
.nav-mobile-sub-link:hover { color: var(--navy); }

/* Backdrop overlay when mega open */
.mega-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 190;
}
.mega-backdrop.active { display: block; }

/* Clamp mega to viewport edge on smaller desktops */
@media (max-width: 1100px) {
  .mega-menu {
    left: auto;
    right: 0;
    transform: translateY(-8px);
  }
  .nav-item-mega.open .mega-menu {
    transform: translateY(0);
  }
  .mega-menu::before {
    left: auto;
    right: 80px;
    transform: rotate(45deg);
  }
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 34px;
  padding: 4px;
  margin-left: auto;
  position: relative;
}
/* Invisible expanded hit area — brings the tap target to ~44px without moving layout */
.nav-hamburger::before {
  content: '';
  position: absolute;
  inset: -10px;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s var(--ease);
  box-shadow: 0 8px 24px rgba(28,48,84,.09);
}
/* Cap to viewport and scroll inside — a fixed 400px cap clipped Contact/phone
   once the Products accordion grew to 9 links */
.nav-mobile.open { max-height: calc(100vh - var(--nav-h)); overflow-y: auto; }

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  padding: 1rem 2.5rem 1.5rem;
  gap: .15rem;
}
.nav-mobile-link {
  font-size: .92rem;
  font-weight: 500;
  color: var(--text-2);
  padding: .7rem 0;
  border-bottom: 1px solid var(--border-lt);
  transition: color .15s;
}
.nav-mobile-link:hover { color: var(--navy); }
.nav-mobile-phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
}


/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--navy-dk);
}

/* Canvas fills the whole hero */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Hero background gradient */
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0E1D38 0%, #1C3054 50%, #1A3A65 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 50%; height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(195,31,46,.05) 100%);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 6rem) 2.5rem 5rem;
  width: 100%;
  text-align: center;
}

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

.hero-overline {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
}
.hero-overline-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  line-height: .97;
  letter-spacing: .02em;
  color: #fff;
  margin-bottom: 1.75rem;
}
.hero-headline em {
  font-style: normal;
  color: var(--red);
  display: block;
}

.hero-body {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  margin-bottom: 2.75rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

/* Badges row below CTAs */
.hero-badges {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  padding: .5rem 1rem;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 99px;
  transition: color .2s, border-color .2s;
}
.hero-badge svg {
  width: 14px; height: 14px;
  color: rgba(255,255,255,.3);
  flex-shrink: 0;
}
.hero-badge:hover {
  color: rgba(255,255,255,.7);
  border-color: rgba(255,255,255,.18);
}

/* Trust strip */
.hero-trust {
  position: relative;
  z-index: 1;
  background: rgba(14,29,56,.7);
  border-top: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}
.hero-trust-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
}
.trust-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  text-align: center;
}
.trust-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: .04em;
  color: #fff;
  line-height: 1;
}
.trust-num sup { font-size: 1rem; }
.trust-label {
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════ */
.services {
  padding: 7rem 0;
  background: var(--bg);
}

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

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s;
  color: var(--text);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: transparent;
}
.service-card:hover .service-link { color: var(--red); }

.service-card-img {
  width: 100%;
  height: 190px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-2);
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.75);
  transition: filter .35s var(--ease), transform .5s var(--ease);
}
.service-card:hover .service-card-img img {
  filter: saturate(1);
  transform: scale(1.04);
}

.service-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}

.service-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .25rem;
  color: var(--navy);
  flex-shrink: 0;
  transition: background .2s, color .2s;
}
.service-icon svg { width: 20px; height: 20px; }
.service-card:hover .service-icon {
  background: var(--navy);
  color: #fff;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: .04em;
  color: var(--navy);
  line-height: 1.1;
}

.service-card p {
  font-size: .88rem;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.72;
  flex: 1;
}

.service-link {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .5rem;
  transition: color .18s;
}


/* ════════════════════════════════════════════
   TRUSTED BY
════════════════════════════════════════════ */
.trusted-by {
  padding: 7rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* Dot grid texture */
.trusted-by::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Red top accent line */
.trusted-by::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}

.trusted-by .section-inner {
  position: relative;
  z-index: 1;
}

.trusted-by .section-overline {
  color: rgba(255,255,255,.4);
}

.trusted-by .section-title {
  color: #fff;
}

.trusted-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 4rem;
}

.trusted-body p {
  font-size: .97rem;
  font-weight: 300;
  color: rgba(255,255,255,.6);
  line-height: 1.9;
}

.trusted-body strong {
  color: rgba(255,255,255,.9);
  font-weight: 600;
}

/* ════════════════════════════════════════════
   WHY CHOOSE
════════════════════════════════════════════ */
.why-choose {
  padding: 7rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.why-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  opacity: 0;
  transform: translateY(16px);
  transition: box-shadow .22s var(--ease), transform .22s var(--ease), opacity .5s ease;
}

.why-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.why-card.in-view:hover {
  box-shadow: 0 8px 28px rgba(28,48,84,.09);
  transform: translateY(-3px);
}

.why-icon {
  width: 44px;
  height: 44px;
  background: rgba(28,48,84,.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--navy);
}

.why-icon svg {
  width: 22px;
  height: 22px;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .6rem;
  line-height: 1.3;
}

.why-card p {
  font-size: .9rem;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.75;
}

/* ════════════════════════════════════════════
   INTERIOR HERO
════════════════════════════════════════════ */
.interior-hero {
  position: relative;
  padding: calc(var(--nav-h) + 5rem) 0 4.5rem;
  overflow: hidden;
  background: var(--navy-dk);
}

.interior-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0E1D38 0%, #1C3054 55%, #1A3A65 100%);
  z-index: 0;
}
.interior-hero-bg::after {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 55%; height: 100%;
  background: linear-gradient(135deg, transparent 35%, rgba(195,31,46,.06) 100%);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.interior-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: .6;
}

.interior-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* Breadcrumb */
.interior-breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.breadcrumb-link {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  transition: color .15s;
}
.breadcrumb-link:hover { color: rgba(255,255,255,.7); }
.breadcrumb-sep svg {
  width: 6px; height: 10px;
  color: rgba(255,255,255,.2);
  display: block;
}
.breadcrumb-current {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

/* Title */
.interior-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: .03em;
  line-height: .96;
  color: #fff;
  margin-bottom: .9rem;
}

/* Red underline accent on last word — optional, applied via CSS */
.interior-hero-title em {
  font-style: normal;
  color: var(--red);
}

/* Subtitle */
.interior-hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  max-width: 580px;
}

@media (max-width: 860px) {
  .interior-hero { padding: calc(var(--nav-h) + 3.5rem) 0 3rem; }
  .interior-hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
}

/* ── Trusted By & Why Choose: responsive ─────────────────── */
@media (max-width: 860px) {
  .trusted-body { grid-template-columns: 1fr; gap: 1.5rem; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .why-grid { grid-template-columns: 1fr; }
  .trusted-by, .why-choose { padding: 4rem 0; }
}

/* ════════════════════════════════════════════
   CTA BAND — Contact form
════════════════════════════════════════════ */
.cta-band {
  padding: 7rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* Subtle background texture */
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
/* Red diagonal wash — right side */
.cta-band::after {
  content: '';
  position: absolute;
  right: -5%;
  top: -10%;
  width: 50%;
  height: 120%;
  background: rgba(195,31,46,.06);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

/* Left copy */
.cta-band-content { max-width: 520px; }

.cta-overline {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.cta-overline-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.cta-band-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  letter-spacing: .03em;
  line-height: 1.02;
  color: #fff;
  margin-bottom: 1.1rem;
}

.cta-band-sub {
  font-size: .96rem;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
  margin-bottom: 2.25rem;
}

/* Trust list */
.cta-trust-list {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.cta-trust-item {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .84rem;
  font-weight: 400;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}
.cta-trust-item svg {
  width: 14px; height: 14px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
  opacity: .85;
}

/* ── Form card ────────────────────────────── */
.cta-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow:
    0 0 0 1px rgba(28,48,84,.06),
    0 24px 64px rgba(0,0,0,.22),
    0 8px 24px rgba(0,0,0,.12);
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.cta-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cta-form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.cta-form-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--text-2);
  text-transform: uppercase;
}
.cta-form-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
}

.cta-form-input {
  width: 100%;
  padding: .7rem .95rem;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.cta-form-input::placeholder { color: var(--muted); opacity: .7; }
.cta-form-input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(28,48,84,.1);
}

/* Select */
.cta-form-select-wrap {
  position: relative;
}
.cta-form-select {
  cursor: pointer;
  padding-right: 2.5rem;
}
.cta-select-chevron {
  position: absolute;
  right: .85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 11px; height: 11px;
  color: var(--muted);
  pointer-events: none;
}

/* Textarea */
.cta-form-textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.6;
}

/* Error */
.cta-form-error {
  font-size: .8rem;
  color: var(--red);
  background: rgba(195,31,46,.07);
  border: 1px solid rgba(195,31,46,.15);
  border-radius: var(--radius);
  padding: .6rem .85rem;
}

/* Submit button */
.cta-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  width: 100%;
  padding: .85rem 1.5rem;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .2s var(--ease), box-shadow .2s, transform .15s;
  margin-top: .15rem;
}
.cta-form-submit svg { width: 15px; height: 15px; transition: transform .2s var(--ease); }
.cta-form-submit:hover {
  background: var(--navy-lt);
  box-shadow: 0 6px 20px rgba(28,48,84,.28);
  transform: translateY(-1px);
}
.cta-form-submit:hover svg { transform: translateX(3px); }
.cta-form-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

/* Privacy note */
.cta-form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-size: .72rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}
.cta-form-note svg { width: 12px; height: 12px; flex-shrink: 0; }

/* ── Responsive ───────────────────────────── */
@media (max-width: 1024px) {
  .cta-band-inner { grid-template-columns: 1fr; gap: 4rem; }
  .cta-band-content { max-width: 100%; }
}
@media (max-width: 580px) {
  .cta-form-card { padding: 1.75rem; }
  .cta-form-row { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer {
  background: var(--navy-dk);
  padding: 5.5rem 0 0;
  color: rgba(255,255,255,.75);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem 4.5rem;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.3fr;
  gap: 5rem;
}

/* Footer brand */
.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.25rem;
  transition: opacity .2s;
}
.footer-logo:hover { opacity: .8; }
.footer-logo img {
  height: 54px;
  width: auto;
  /* Make it work on dark bg — the logo has a white or light background, add slight filter */
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: .85rem;
  font-weight: 300;
  color: rgba(255,255,255,.45);
  line-height: 1.8;
  margin-bottom: .75rem;
}
.footer-serving {
  font-size: .78rem;
  color: rgba(255,255,255,.28);
  line-height: 1.7;
}
.footer-serving strong {
  color: rgba(255,255,255,.45);
  font-weight: 600;
}

.footer-col-title {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 1.25rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.footer-nav a {
  font-size: .88rem;
  font-weight: 400;
  color: rgba(255,255,255,.5);
  transition: color .15s;
}
.footer-nav a:hover { color: #fff; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.footer-contact svg {
  width: 15px;
  height: 15px;
  color: rgba(255,255,255,.3);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact span {
  font-size: .86rem;
  font-weight: 300;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
}
.footer-contact a { transition: color .15s; }
.footer-contact a:hover { color: #fff; }

/* Footer bar */
.footer-bar {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .74rem;
  color: rgba(255,255,255,.22);
  letter-spacing: .04em;
}


/* ════════════════════════════════════════════
   PRODUCT PAGES — shared styles
════════════════════════════════════════════ */

/* ── Sub-nav strip ───────────────────────── */
.product-subnav {
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.product-subnav .section-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.product-subnav .section-inner::-webkit-scrollbar { display: none; }
.subnav-link {
  display: block;
  padding: 1rem 1.5rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.subnav-link:hover,
.subnav-link.active {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

/* ── Product section ─────────────────────── */
.product-section {
  padding: 7rem 0;
  background: var(--bg);
}
.product-section-alt {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.product-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.product-section-inner-rev {
  /* visual stays: image left, copy right via source order on mobile */
}

.product-content {}
.product-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.product-body {
  font-size: .93rem;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: .9rem;
}

/* Feature checklist */
.product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem .75rem;
  margin: 1.75rem 0 2rem;
}
.product-feature {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text);
}
.product-feature svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  color: var(--red);
}

/* Visual column */
.product-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: var(--bg-3);
}
.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 320px;
}

/* Icon display — for products without images */
.product-visual-icon {
  border: none;
  box-shadow: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: visible;
  border-radius: 0;
}
.product-icon-display {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.product-icon-display svg {
  width: 120px;
  height: 120px;
}

/* ── How It Works / Steps ─────────────────── */
.product-how-it-works {
  padding: 6rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.hiw-step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.hiw-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.hiw-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: .06em;
  color: var(--navy);
  opacity: .18;
  line-height: 1;
  margin-bottom: .9rem;
}
.hiw-num svg {
  width: 28px; height: 28px;
  opacity: 1;
  color: var(--navy);
}
.hiw-step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: .04em;
  color: var(--navy);
  margin-bottom: .55rem;
}
.hiw-step p {
  font-size: .86rem;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.75;
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 1100px) {
  .product-section-inner { gap: 3.5rem; }
  .hiw-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .product-section-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  /* On mobile, always put image below copy */
  .product-section-inner-rev .product-visual { order: 2; }
  .product-section-inner-rev .product-content { order: 1; }
  .product-icon-display { width: 180px; height: 180px; }
  .product-icon-display svg { width: 80px; height: 80px; }
  .product-features { grid-template-columns: 1fr; }
  .hiw-grid { grid-template-columns: 1fr; }
  .subnav-link { padding: .85rem 1.1rem; font-size: .68rem; }
}

/* ════════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════════ */

/* ── Intro ───────────────────────────────── */
.about-intro {
  padding: 7rem 0;
  background: var(--bg);
}
.about-intro-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 6rem;
  align-items: start;
}
.about-intro-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.about-intro-body {
  font-size: .96rem;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 1rem;
}

/* Stats sidebar */
.about-intro-stats {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.about-stat {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  transition: box-shadow .2s, transform .2s;
}
.about-stat:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  letter-spacing: .04em;
  color: var(--navy);
  line-height: 1;
}
.about-stat-num sup { font-size: 1.2rem; }
.about-stat-label {
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
}

/* ── Values ──────────────────────────────── */
.about-values {
  padding: 7rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow .22s var(--ease), transform .22s var(--ease), border-color .22s;
}
.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: transparent;
}
.value-icon {
  width: 44px; height: 44px;
  background: var(--bg-2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--navy);
  border: 1px solid var(--border);
  transition: background .2s, color .2s, border-color .2s;
}
.value-icon svg { width: 20px; height: 20px; }
.value-card:hover .value-icon {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: .04em;
  color: var(--navy);
  margin-bottom: .55rem;
}
.value-card p {
  font-size: .875rem;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.75;
}

/* ── President ───────────────────────────── */
.about-president {
  padding: 7rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.about-president-inner {}
.president-card {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem 3.5rem;
  box-shadow: var(--shadow-sm);
}
.president-avatar {
  flex-shrink: 0;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.president-avatar svg { width: 80px; height: 80px; }
.president-content { flex: 1; }
.president-name {
  font-family: var(--font-display);
  font-size: 2.6rem;
  letter-spacing: .04em;
  color: var(--navy);
  line-height: 1;
  margin-bottom: .3rem;
}
.president-title {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}
.president-bio {
  font-size: .95rem;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: .9rem;
}

/* ── Office ──────────────────────────────── */
.about-office {
  padding: 7rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.about-office-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.office-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: .03em;
  color: var(--navy);
  margin-bottom: .9rem;
  line-height: 1.05;
}
.office-body {
  font-size: .95rem;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.office-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.office-details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.office-details svg {
  width: 18px; height: 18px;
  color: var(--navy);
  flex-shrink: 0;
  margin-top: 3px;
  opacity: .6;
}
.office-details strong {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .2rem;
}
.office-details span {
  font-size: .92rem;
  color: var(--text-2);
  line-height: 1.65;
}
.office-details a { color: var(--navy); transition: color .15s; }
.office-details a:hover { color: var(--red); }

/* Map placeholder */
.office-map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.office-map-placeholder {
  background: var(--bg-3);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 2rem;
  text-align: center;
}
.office-map-placeholder svg { width: 60px; height: 60px; margin-bottom: .5rem; }
.office-map-placeholder p {
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.6;
}
.btn-sm { padding: .55rem 1.25rem; font-size: .8rem; }

/* ── Responsive ──────────────────────────── */
@media (max-width: 1100px) {
  .about-intro-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-intro-stats { flex-direction: row; flex-wrap: wrap; position: static; }
  .about-stat { flex: 1 1 calc(50% - .375rem); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-office-inner { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 860px) {
  .values-grid { grid-template-columns: 1fr; }
  .president-card { flex-direction: column; gap: 2rem; padding: 2rem; }
  .about-stat { flex: 1 1 100%; }
}

/* ════════════════════════════════════════════
   PRODUCTS LANDING PAGE
════════════════════════════════════════════ */
.products-landing {
  padding: 7rem 0;
  background: var(--bg);
}

.product-landing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.plg-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  text-decoration: none;
  transition: box-shadow .22s var(--ease), transform .22s var(--ease), border-color .22s;
  gap: 1.5rem;
}
.plg-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--navy);
}

.plg-card-icon {
  width: 56px; height: 56px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
  transition: background .2s, color .2s, border-color .2s;
}
.plg-card-icon svg { width: 26px; height: 26px; }
.plg-card:hover .plg-card-icon {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.plg-card-body { flex: 1; }
.plg-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: .04em;
  color: var(--navy);
  margin-bottom: .55rem;
  line-height: 1.1;
}
.plg-card-body > p {
  font-size: .9rem;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 1.1rem;
}
.plg-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .6rem;
}
.plg-card-list li {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: .3rem .8rem;
}

.plg-card-cta {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  transition: gap .2s;
}
.plg-card-cta svg { width: 14px; height: 14px; transition: transform .2s; }
.plg-card:hover .plg-card-cta svg { transform: translateX(4px); }

/* Not-sure nudge */
.plg-nudge {
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  background: var(--navy);
  padding: 2.5rem 3rem;
}
.plg-nudge-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.plg-nudge-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: .3rem;
}
.plg-nudge-sub {
  font-size: .88rem;
  font-weight: 300;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
}
.plg-nudge-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.plg-nudge .btn-navy {
  background: var(--red);
  border-color: var(--red);
}
.plg-nudge .btn-navy:hover {
  background: #a8192a;
  border-color: #a8192a;
}
.plg-nudge .btn-outline {
  border-color: rgba(255,255,255,.35);
  color: #fff;
}
.plg-nudge .btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}

@media (max-width: 860px) {
  .product-landing-grid { grid-template-columns: 1fr; }
  .plg-nudge { padding: 2rem; }
  .plg-nudge-inner { flex-direction: column; align-items: flex-start; }
}

/* ════════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════════ */

/* ── Quick contact cards ─────────────────── */
.contact-cards-section {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.contact-cards-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.4rem;
  text-decoration: none;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  position: relative;
}
a.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--navy);
}
.contact-card-static { cursor: default; }
.contact-card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
  transition: background .2s, color .2s;
}
.contact-card-icon svg { width: 18px; height: 18px; }
a.contact-card:hover .contact-card-icon {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.contact-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .15rem;
  min-width: 0;
}
.contact-card-label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-card-value {
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.contact-card-arrow {
  width: 14px; height: 14px;
  color: var(--muted);
  flex-shrink: 0;
  transition: color .15s, transform .15s;
}
a.contact-card:hover .contact-card-arrow {
  color: var(--navy);
  transform: translateX(3px);
}

/* ── Contact body: form + info ───────────── */
.contact-body {
  padding: 7rem 0;
  background: var(--bg);
}
.contact-body-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.contact-form-col,
.contact-info-col {}

.contact-col-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  letter-spacing: .03em;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: .65rem;
}
.contact-col-sub {
  font-size: .93rem;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.contact-form-col .cta-form {
  background: none;
  padding: 0;
  border: none;
  box-shadow: none;
}
.contact-form-col .cta-form-submit {
  width: 100%;
}
.contact-map-embed {
  margin-top: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-map-embed .office-map-placeholder {
  min-height: 240px;
  padding: 2rem;
}

/* ── Calendly section ────────────────────── */
.contact-calendly {
  padding: 7rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.contact-calendly-inner {}
.contact-calendly-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.calendly-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: var(--bg);
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 1100px) {
  .contact-cards-inner { grid-template-columns: repeat(2, 1fr); }
  .contact-body-inner { gap: 3.5rem; }
}
@media (max-width: 860px) {
  .contact-cards-inner { grid-template-columns: 1fr 1fr; }
  .contact-body-inner { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .contact-cards-inner { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════
   PRIVATE PAGE
════════════════════════════════════════════ */
.private-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--bg-2);
}
.private-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--shadow-md);
}


/* ════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-overline { animation: fadeUp .6s var(--ease) .1s both; }
.hero-headline  { animation: fadeUp .7s var(--ease) .2s both; }
.hero-body      { animation: fadeUp .6s var(--ease) .35s both; }
.hero-actions   { animation: fadeUp .6s var(--ease) .45s both; }
.hero-visual    { animation: fadeUp .9s var(--ease) .25s both; }


/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-strip-inner { gap: 4rem; }
  .about-strip-img { width: 380px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav-links, .nav-phone, .nav-divider { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: block; }

  .hero-inner {
    padding-top: calc(var(--nav-h) + 3.5rem);
    padding-bottom: 3rem;
  }
  .hero-headline { font-size: clamp(2.5rem, 9vw, 4rem); }
  .hero-trust-inner { flex-wrap: wrap; gap: 1.5rem; }
  .trust-divider { display: none; }
  .trust-item { flex: 0 1 calc(50% - .75rem); }

  .about-strip-inner { flex-direction: column-reverse; gap: 2.5rem; }
  .about-map { width: 100%; }
  .hamilton-map { max-height: 320px; }

  .cta-band-inner { flex-direction: column; text-align: center; gap: 2.5rem; }
  .cta-band-sub { margin: .8rem auto 0; }
  .cta-band-actions { flex-direction: row; justify-content: center; }
}

@media (max-width: 580px) {
  /* ── Unified 1.5rem gutter on all full-width inner wrappers ── */
  .section-inner,
  .nav-inner,
  .hero-inner,
  .interior-hero-inner,
  .cta-band-inner,
  .footer-inner,
  .footer-bar { padding-left: 1.5rem; padding-right: 1.5rem; }

  .nav-mobile-links { padding-left: 1.5rem; padding-right: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 3rem; }
  .footer-bar { flex-direction: column; gap: .5rem; text-align: center; }

  .services-grid { grid-template-columns: 1fr; }
  .cta-band-actions { flex-direction: column; align-items: stretch; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}

/* Products mobile group label link */
.nav-mobile-group-label {
  color: inherit;
  text-decoration: none;
  flex: 1;
}
.nav-mobile-group-label:hover { color: var(--navy); }

/* ═══════════════════════════════════════════
   TRUSTED PARTNERS STRIP
═══════════════════════════════════════════ */
.partners-section { padding: 5rem 0; }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}
.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 2rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.partner-card:hover {
  border-color: var(--navy);
  box-shadow: 0 8px 24px rgba(28, 48, 84, .10);
  transform: translateY(-2px);
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--navy);
}
.partner-logo img {
  max-height: 56px;
  max-width: 150px;
  object-fit: contain;
  display: block;
}
.partner-name {
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ── Mobile refinements (launch QA pass) ─────────────────── */
@media (max-width: 860px) {
  /* 16px stops iOS Safari from auto-zooming on input focus */
  .cta-form-input { font-size: 1rem; }
}
@media (max-width: 580px) {
  .partners-section { padding: 3.5rem 0; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .partner-card { padding: 1.4rem .75rem; }
}

/* ── Footer: social icons + web credit ───────────────────── */
.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.65);
  transition: color .2s, border-color .2s, background .2s;
}
.footer-social a:hover {
  color: #fff;
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.06);
}
.footer-social svg { width: 19px; height: 19px; }

.footer-credit a {
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .2s;
}
.footer-credit a:hover { color: #fff; }

/* ═══════════════════════════════════════════
   THANK YOU PAGE
═══════════════════════════════════════════ */
.thankyou-section { padding: 5rem 0 6rem; }
.thankyou-inner {
  max-width: 640px;
  text-align: center;
}
.thankyou-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  margin: 0 auto 1.75rem;
  border-radius: 50%;
  background: rgba(195, 31, 46, .08);
  color: var(--red);
}
.thankyou-check svg { width: 42px; height: 42px; }
.thankyou-body {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.8;
  margin: 1rem 0 2.25rem;
}
.thankyou-body a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}
.thankyou-body a:hover { text-decoration: underline; }
.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.thankyou-redirect {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
}
@media (max-width: 580px) {
  .thankyou-actions { flex-direction: column; align-items: stretch; }
  .thankyou-actions .btn { justify-content: center; }
}
