/* ─── RESET & TOKENS ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#nem-nav-spacer {
  transition: height 0.2s ease-out;
  height: 80px;
}

@media (max-width: 960px) {
  #nem-nav-spacer {
    height: 70px;
  }
}

.mobile-break {
  display: none;
}

:root {
  --navy: #1a2a4a;
  --navy-light: #243660;
  --blue: #2f6ec4;
  --blue-mid: #2563b0;
  --accent: #e8b84b;
  --light: #f4f6fa;
  --mid: #d8dde8;
  --text: #2c2c2c;
  --muted: #6b7280;
  --white: #ffffff;

  --NavyButton: #1e55a0;
  --lightNavyButton: #276ccc;

  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius: 4px;
  --shadow: 0 2px 10px rgba(26, 42, 74, .08);
  --shadow-lg: 0 8px 20px rgba(26, 42, 74, .13);
  --hero-gradient: linear-gradient(-45deg, #0d1d36 0%, #1a3060 55%, #2a468a 100%);
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;

  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

body.is-exiting {
  opacity: 0;
}

body.page-transition-out {
  opacity: 0;
}

body.is-loading {
  opacity: 0;
}

body.page-transition-in {
  animation: pageFadeIn 0.5s ease-out forwards;
}

body.page-transition-in {
  animation: none;
}

html {
  opacity: 1 !important;
  transition: none !important;
}

/* ─── UTILITY ─── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── TOPBAR ─── */
.topbar {
  background: var(--navy);
  padding: 11px 0;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .6);

  max-height: 60px;
  overflow: hidden;
  opacity: 1;

  transition:
    max-height .3s ease,
    padding .3s ease,
    opacity .22s ease,
    background .28s ease,
    box-shadow .28s ease,
    backdrop-filter .28s ease;
}

.topbar .container {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  align-items: center;
}

.topbar a {
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
}

.topbar a:hover {
  color: var(--accent);
}

/* ─── NAVIGATION BAR ─── */
#header-spacer {
  display: block;
  width: 100%;
  height: 118px;
}

.header {
  background: var(--navy-light);
  padding: 14px 0;
  position: relative;
  z-index: 100;
  width: 100%;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .25);
  transition:
    padding .28s ease,
    background .28s ease,
    box-shadow .28s ease;
}

/* Ensure the transition is silky smooth */
.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), top 0.4s ease;
  will-change: transform;
}

/* The 'Hidden' state - slides up out of view */
.site-header.header-hidden {
  transform: translateY(-100%);
}

.site-header.scrolled {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header.scrolled .header {
  background: rgba(18, 25, 43, 0.75) !important;
  padding: 10px 0;
  transition: background 0.5s ease;
}

.site-header.scrolled .topbar,
.site-header.scrolled .header {
  transition: all 0.5s ease-in-out;
}

/* ─── NAV BAR CONTAINER ─── */
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-mark {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  object-fit: contain;
  transition: width 0.3s ease, height 0.3s ease;
}

.site-header.scrolled .logo-mark {
  width: 60px;
  height: 60px;
}

.brand-text {
  line-height: 1.25;
}

.brand-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .03em;
  color: rgba(255, 255, 255, .92);
  padding-bottom: 3px;
  display: block;
}

.brand-sub {
  font-size: clamp(4px, 1.47vw, 15px);
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  white-space: nowrap;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
}

.nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;

  color: rgba(255, 255, 255, .75);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color .2s, background .2s;
}

.nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .08);
}

.nav a.active {
  color: var(--white);
}

.btn-navbar-quote {
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  letter-spacing: .07em !important;
  text-transform: uppercase;
  margin-left: 6px;

  padding: 10px 18px !important;
  background: var(--blue) !important;
  color: var(--white) !important;
  border-radius: var(--radius) !important;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .15s !important;
  white-space: nowrap;
}

.btn-navbar-quote:hover {
  background: #1e55a0 !important;
  transform: translateY(-1px);
}

/* HAMBURGER */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: white;
  margin: 5px 0;
  transition: .3s;
}

/* ─── HERO PANEL BACKGROUND ─── */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 60px 0 90px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-gradient);
  opacity: 1;
}

.hero::after {
  content: '';
  position: absolute;
  height: 60px;
  background: var(--light);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-inner {
  align-items: flex-start;
  display: grid;
  grid-template-columns: 1.6fr .9fr;
  gap: 50px;
  align-items: center;
}

/* ─── HERO TOP MESSAGE ─── */
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ─── HERO TAGLINE ─── */
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5.7vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: .01em;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--accent);
}

.hero-desc {
  color: rgba(255, 255, 255, .7);
  font-size: 17px;
  font-weight: 200;
  max-width: auto;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-cta-container {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-template {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: .07em;
  text-transform: uppercase;
  background: var(--blue);
  color: white;
  padding: 14px 30px;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
}

.btn-template:hover {
  background: #1e55a0;
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .07em;
  text-transform: uppercase;
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, .35);
  transition: border-color .2s, background .2s;
}

.btn-outline:hover {
  border-color: white;
  background: rgba(255, 255, 255, .08);
}

/* ─── HERO RIGHT IMAGE ─── */
.hero-visual img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  padding-bottom: 6px;
}

.hero-visual {
  min-width: 0;
}

.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: rgba(255, 255, 255, .06);
  border: 2px dashed rgba(255, 255, 255, .18);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .3);
  font-size: 14px;
  letter-spacing: .06em;
  font-family: var(--font-head);
}

.hero-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-badge {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 18px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge span {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .85);
  text-transform: uppercase;
  margin-top: 6px;
}

.hero-badge-wide {
  grid-column: 1 / 3;
}

.hero-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: .05em;
}

.hero-badge span {
  font-size: 13px;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  font-weight: 600;
}

/* ─── SECTION HEADER ─── */
.section-head {
  text-align: center;
  margin-bottom: 40px;
  margin-top: -40px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(47, 110, 196, .09);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: .01em;
  margin-bottom: 2px;
}

.section-rule {
  width: 180px;
  height: 3.4px;
  background: var(--accent);
  margin: 0 auto;
  border-radius: 2px;
}

/* ─── SERVICES ─── */
.services-section {
  padding: 30px 0 60px;
  position: relative;
  z-index: 1;
  overflow: visible;
  background: var(--white);
}

.services-section::before {
  content: '';
  position: absolute;
  left: -5%;
  right: -5%;
  top: -50px;
  height: 60px;
  background: rgb(255, 255, 255);

  border-radius: 100% 100% / 100% 100% 0 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: rgb(255, 255, 255);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(26, 42, 74, .18);
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}

/*.card:hover {
    box-shadow: 0px 1px 13px rgba(26, 42, 74, .50);
}*/

.card-img {
  height: 210px;
  background: var(--mid);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.card-img-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #c8d0e0 0%, #e0e5f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: .08em;
  color: rgba(26, 42, 74, .3);
  text-transform: uppercase;
}

.card-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 42, 74, .78);
  backdrop-filter: blur(4px);
  color: white;
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 540;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 15px;
}

.card-body {
  padding: 24px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-text {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 22px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  transition: gap .2s;
}

.card-link svg {
  width: 16px;
  height: 16px;
  transition: transform .2s;
}

.card-link:hover {
  color: var(--navy);
}

.card-link:hover svg {
  transform: translateX(3px);
}

/* ─── BRAND STRIP ─── */

.brand-strip {
  background: var(--navy);
  padding: 30px 0 30px;
  text-align: center;
  align-content: center;
}

.brand-strip-top h3 {
  font-family: var(--font-head);
  font-size: 45px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.brand-strip-top span {
  display: block;
  margin-top: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);

}

.brand-strip-line {
  width: 180px;
  height: 2px;
  margin: 15px auto 22px;
  background: linear-gradient(90deg,
      transparent,
      rgba(232, 184, 75, .9),
      transparent);
  opacity: .55;
}

.brand-strip-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.brand-strip-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 20px 24px
}

/* Card Titles */
.brand-strip-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 27px;
  font-weight: 600;
  padding: 5px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: .05em;
  margin-bottom: 8px;
  white-space: nowrap;
}

/* Body Text */
.brand-strip-card span {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .70);
  line-height: 1.5;
}

/* FRAME SIZING / STYLE */
.brand-strip .hero-badge {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 22px 20px;
}

.stat strong {
  font-family: var(--font-head);
  font-size: 32px;
  color: var(--accent);
}

.stat span {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
  margin-top: 6px;
}

/* TIMELINE */

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 29px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      rgba(232, 184, 75, .9),
      rgba(232, 184, 75, .9),
      transparent);
  opacity: .55;
}

.timeline-step {
  text-align: center;
  position: relative;
  padding-top: 58px;
  max-width: 220px;
  margin: auto;
}

.timeline-step h4 {
  margin-top: 8px;
  margin-bottom: 6px;
}

.timeline-step p {
  font-size: 14px;
  line-height: 1.55;
}

.timeline-step {
  transition: transform .25s ease;
}

.timeline-step:hover {
  transform: translateY(-6px);
}

.step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;

  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, .38) 0%, rgba(255, 255, 255, .10) 18%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, #f6d97a 0%, #e7ba4d 42%, #cf9a2c 100%);

  border: 1px solid rgba(120, 78, 10, .35);

  color: #13284d;
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: .1em;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 10px 22px rgba(0, 0, 0, .30),
    inset 0 2px 2px rgba(255, 255, 255, .22),
    inset 0 -4px 8px rgba(120, 78, 10, .18);

  z-index: 2;
}

.step-number::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .14);
  pointer-events: none;
}

.timeline-step h4 {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 8px;
}

.timeline-step p {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.6;
  max-width: 220px;
  margin: auto;
}

/* ─── FEATURE / ABOUT ─── */
.feature-section {
  background-color: white;
  padding: 30px 0;
}

.feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.feature-img-wrap {
  position: relative;
}

.feature-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #c8d0e0 0%, #e0e5f0 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: .07em;
  color: rgba(26, 42, 74, .3);
  text-transform: uppercase;
}

.feature-accent-bar {
  position: absolute;
  left: -16px;
  top: 24px;
  bottom: 24px;
  width: 5px;
  background: var(--accent);
  border-radius: 3px;
}

.feature-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 650;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(47, 110, 196, .09);
  padding: 5px 20px;
  border-radius: 20px;
  margin-bottom: 25px;
}

.feature-h {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: .01em;
}

.feature-h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(30px, 3vw, 55px);
  color: var(--blue);
  line-height: 1.15;
  letter-spacing: .01em;
  width: 100%;
  padding-bottom: 16px;
}

.feature-h3 {
  font-family: var(--font-head);
  font-weight: 650;
  font-size: clamp(20px, 3vw, 30px);
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: .01em;
  text-align: center;
  width: 100%;
  padding-bottom: 15px;
}

.feature-p {
  color: rgba(107, 114, 128, 1);
  line-height: 1.8;
  margin-bottom: 32px;
  font-size: 16px;
  margin-top: 10px;
}

.feature-checks {
  margin-bottom: 36px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 16px;
  color: var(--text);
  line-height: 1.5;
}

.check-icon {
  width: 22px;
  height: 22px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-icon svg {
  width: 12px;
  height: 12px;
}

/* ─── CONTACT BAND ─── */
.contact-band {
  background: var(--light);
  border-top: 1px solid var(--mid);
  border-bottom: 1px solid var(--mid);
  padding: 64px 0;
  text-align: center;
}

.contact-band h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 42px);
  color: var(--navy);
  margin-bottom: 12px;
}

.contact-band p {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 17px;
}

.contact-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-dark {
  font-family: 'DM Sans', sans-serif;
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--navy);
  color: white;
  padding: 14px 34px;
  border-radius: 40px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
}

.btn-dark:hover {
  background: #0d1d36;
  transform: translateY(-2px);
}

/* ─── FOOTER ─── */
.footer {
  background: #111827;
  color: rgba(255, 255, 255, .7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
  margin-bottom: 0px;
  margin-left: 40px;
}

.footer-brand-name {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 18px;
  color: white;
  display: block;
  margin-bottom: 2px;
  letter-spacing: .02em;
}

.footer-brand-sub {
  font-size: 12px;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .45);
  max-width: 240px;
  margin-bottom: 20px;
}

.footer-contact-line {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 6px;
}

.footer-contact-line a {
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
}

.footer-contact-line a:hover {
  color: var(--accent);
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-links .coming {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .6);
  padding: 3px 10px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: middle;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .02em;
}

.footer-copy a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
}

.footer-copy a:hover {
  color: var(--accent);
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  text-decoration: none;
  color: rgba(255, 255, 255, .6);
}

.social-icon:hover {
  background: var(--blue);
  color: white;
}

.social-icon svg {
  width: 16px;
  height: 16px;
}

/* ─── FLOATING CONTACT ─── */
.floating-contact {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  background: var(--navy);
  color: white;
  padding: 12px 22px;
  border-radius: 40px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .3);
  transition: background .2s, transform .15s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.floating-contact:hover {
  background: var(--light);
  transform: translateY(-2px);
}

.floating-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .6;
    transform: scale(1.3);
  }
}

/* ─── MOBILE NAV OVERLAY ─── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 300;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.nav-overlay.open {
  display: flex;
}

.nav-overlay a {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
}

.nav-overlay a:hover {
  color: var(--accent);
}

.nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease, box-shadow .4s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── TABLET MODE ─── */
@media (max-width: 960px) {

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 56px 36px;
  }

  .timeline::before {
    display: none;
  }

  .timeline-step {
    max-width: 280px;
    margin: 0 auto;
  }

  .timeline-step:nth-child(1),
  .timeline-step:nth-child(2),
  .timeline-step:nth-child(3),
  .timeline-step:nth-child(4) {
    position: relative;
  }

  .timeline-step:nth-child(1)::before,
  .timeline-step:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
        rgba(232, 184, 75, .55),
        rgba(232, 184, 75, .9));
    z-index: 0;
  }

  .feature-h2 {
    text-align: center;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-visual {
    display: flex;
  }

  .hero-visual img {
    aspect-ratio: 16 / 10;
  }

  .hero-eyebrow {
    font-size: 18px !important;
    text-align: center;
    white-space: normal;
  }

  .hero h1 {
    font-size: 50px !important;
    text-align: center;
  }

  .hero-badges {
    grid-template-columns: 1fr;
    margin-left: 12px;
  }

  .hero-badge-wide {
    grid-column: auto;
  }

  .hero-desc {
    text-align: center;
    max-width: 600px;
    justify-self: center;
  }

  .feature-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature-img-wrap {
    width: 100%;
  }

  .feature-img-wrap img {
    width: 100%;
    height: clamp(100px, 5vw, 200px);
    object-fit: cover;
    display: block;
  }

  .feature-accent-bar {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand-name {
    font-size: clamp(5px, 2vw, 20px);
    white-space: nowrap;
  }

  .brand-text {
    min-width: 0;
  }

  .brand-sub {
    font-size: clamp(10px, 2vw, 15px);
    max-width: 180px;
    white-space: normal;
  }

  .brand-sub-dot {
    display: none;
  }

  .brand-sub-main::after {
    content: '';
    display: block;
  }

  .brand-strip-badge {
    display: none;
  }

  .brand-strip-stats {
    gap: 28px;
  }

  .hero-cta-container {
    flex-direction: column;
    align-items: center;
  }

  .btn-navbar-quote {
    font-size: 13px !important;
    padding: 8px 12px !important;
  }

  .nav a {
    font-size: 15px;
    padding: 8px 7px;
    letter-spacing: .04em;
  }

  .brand-strip {
    padding: 28px 0 28px;
  }

  .brand-strip-top h3 {
    font-size: 36px;
  }

  .brand-strip-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 860px;
  }

  .brand-strip-card {
    padding: 14px 12px 13px;
  }

  .brand-strip-card strong {
    font-size: 22px;
  }

  .brand-strip-card span {
    font-size: 11px;
    letter-spacing: .09em;
  }
}

/* ─── MOBILE MODE ─── */
@media (max-width: 820px) {


  .mobile-break {
    display: block;
  }

  .hero-eyebrow {
    font-size: 14px !important;
    text-align: center;
    white-space: normal;
  }


  .topbar {
    display: none;
  }

  .nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .nav-overlay {
    gap: 24px;

  }

  .nav-overlay.active a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-overlay a {
    font-size: 28px;
  }

  .nav-overlay .btn-navbar-quote {
    font-size: 18px !important;
    padding: 12px 32px !important;
    margin-top: 8px;
  }

  .hamburger {
    display: block;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .brand-name {
    font-size: clamp(12px, 3.5vw, 14px);
  }

  .brand-strip-stats {
    flex-direction: column;
    gap: 16px;
  }

  .brand-strip .container {
    flex-direction: column;
    text-align: center;
  }

  .brand-strip-cards {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    margin-bottom: 30px;
  }

  .hero h1 {
    font-size: 30px !important;
  }

  .hero-visual img {
    height: auto !important;
    align-self: stretch;
    min-height: 200px;
    min-width: 100px;
  }

  .hero {
    padding: 24px 0 64px;
  }

  .hero-desc {
    max-width: 96%;
    font-size: 15px;
  }

  .contact-cta {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .floating-contact span {
    display: none;
  }

  .floating-contact {
    padding: 14px;
    border-radius: 50%;
  }

  .btn-navbar-quote {
    font-size: 10px !important;
    padding: 8px 12px !important;
  }

}