/* =========================================================
   VARIABLES & RESET
   ========================================================= */
:root {
  --navy:       #001a4d;
  --navy-dark:  #000d2e;
  --blue:       #0d47a1;
  --blue-mid:   #1565c0;
  --blue-light: #1976d2;
  --blue-bright:#2196f3;
  --red:        #c62828;
  --red-bright: #e53935;
  --white:      #ffffff;
  --off-white:  #f5f7fa;
  --black:      #080808;
  --dark:       #0f0f0f;
  --dark-2:     #1a1a1a;
  --dark-3:     #242424;
  --gray:       #888;
  --gray-light: #dde1e7;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* =========================================================
   LAYOUT HELPERS
   ========================================================= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 7rem 0; }

/* =========================================================
   TYPOGRAPHY ATOMS
   ========================================================= */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--red-bright);
  flex-shrink: 0;
}

.eyebrow--light { color: rgba(255,255,255,0.5); }
.eyebrow--light::before { background: rgba(255,255,255,0.3); }

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--dark);
}

.section-title--light { color: var(--white); }

.section-head { margin-bottom: 4rem; }

/* =========================================================
   LOGO
   ========================================================= */
.logo {
  display: inline-flex;
  align-items: center;
}

.logo__img {
  height: 224px;
  width: auto;
  display: block;
  /* crop the transparent whitespace baked into the 800x800 PNG */
  margin-top: -50px;
  margin-bottom: -74px;
}

.logo__img--footer {
  height: 192px;
  margin-top: -43px;
  margin-bottom: -63px;
}


/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease),
              transform 0.2s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}

.btn--sm  { font-size: 0.8rem;  padding: 0.5rem 1.2rem; }
.btn--lg  { font-size: 0.95rem; padding: 1rem 2rem; }
.btn--full { width: 100%; }

.btn--red {
  background: var(--red-bright);
  color: var(--white);
  border-color: var(--red-bright);
}
.btn--red:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(229,57,53,0.45);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,26,77,0.45);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover {
  background: #eef0f4;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,255,255,0.2);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.reveal--from-right {
  transform: translateX(44px);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.stagger-1.visible { transition-delay: 0.08s; }
.stagger-2.visible { transition-delay: 0.18s; }
.stagger-3.visible { transition-delay: 0.28s; }
.stagger-4.visible { transition-delay: 0.38s; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  padding: 0.5rem 0;
  transition: padding 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.nav.solid {
  background: rgba(0, 13, 46, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.5rem 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  flex: 1;
}

.nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  position: relative;
  transition: color 0.2s;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red-bright);
  transition: width 0.25s var(--ease);
}

.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }

.nav__ctas {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

.nav__phone {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.nav__phone:hover { color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

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

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(80vw, 360px);
  height: 100vh;
  height: 100dvh;
  background: var(--dark-2);
  z-index: 901;
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: right 0.4s var(--ease);
  border-left: 1px solid rgba(255,255,255,0.06);
}

.mobile-menu.open { right: 0; }

.mobile-menu__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--white);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu__close:hover { background: rgba(255,255,255,0.1); }

.mobile-menu__link {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.mobile-menu__link:hover { color: var(--red-bright); }
.mobile-menu__cta { margin-top: 2rem; }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 899;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/5463581/pexels-photo-5463581.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center 30%;
  animation: slowZoom 24s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes slowZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    rgba(0, 8, 35, 0.93) 0%,
    rgba(0, 22, 70, 0.87) 40%,
    rgba(5, 40, 95, 0.78) 65%,
    rgba(0, 5, 20, 0.7) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 9rem 2rem 6rem;
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.75rem;
  animation: fadeUp 0.9s 0.2s both;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--red-bright);
}

.hero__title {
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 2rem;
}

.hero__title .line { display: block; }
.hero__title .line:nth-child(1) { animation: fadeUp 0.9s 0.35s both; }
.hero__title .line:nth-child(2) { animation: fadeUp 0.9s 0.5s  both; }
.hero__title .line:nth-child(3) { animation: fadeUp 0.9s 0.65s both; }

.hero__title .accent {
  color: var(--red-bright);
}

.hero__sub {
  max-width: 540px;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.9s 0.78s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4.5rem;
  animation: fadeUp 0.9s 0.92s both;
}

.hero__stats {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem 2rem;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  animation: fadeUp 0.9s 1.05s both;
}

.hero__stat { text-align: center; }

.hero__stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.hero__stat span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.hero__stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeUp 0.9s 1.3s both;
}

.hero__scroll-hint span {
  display: block;
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  margin: 0 auto;
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1);   opacity: 0.8; }
  50%       { transform: scaleY(0.6); opacity: 0.3; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   HERO SOCIAL SIDEBAR
   ========================================================= */
.hero__social {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  animation: fadeUp 0.9s 1.4s both;
}

.hero__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.hero__social-link:hover {
  color: var(--white);
  transform: scale(1.2);
}

.hero__social-link svg { display: block; }

.hero__social-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent);
  margin: 0.25rem 0;
}

.hero__social-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  margin-top: 0.25rem;
  user-select: none;
}

@media (max-width: 768px) {
  .hero__social { display: none; }
}

/* =========================================================
   STATS BAND
   ========================================================= */
.statsband {
  background: var(--navy);
  padding: 3.5rem 2rem;
}

.statsband__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.statsband__item { position: relative; }

.statsband__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.1);
}

.statsband__item b {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
}

.statsband__item em {
  font-style: normal;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--red-bright);
}

.statsband__item p {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 0.5rem;
}

/* =========================================================
   MARQUEE TICKER
   ========================================================= */
.marquee-section {
  overflow: hidden;
  background: var(--red-bright);
  padding: 1.1rem 0;
  position: relative;
}

/* subtle top/bottom edge lines */
.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,0.15);
  pointer-events: none;
}
.marquee-section::before { top: 0; }
.marquee-section::after  { bottom: 0; }

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-sep {
  font-size: 0.5rem;
  color: rgba(255,255,255,0.45);
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   EMPATHY STRIP
   ========================================================= */
.empathy {
  background: var(--white);
  padding: 9rem 0;
  overflow: hidden;
  position: relative;
}

.empathy::after {
  content: 'FLORIDA';
  position: absolute;
  right: -1rem;
  bottom: -1.5rem;
  font-size: clamp(7rem, 18vw, 18rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(0,26,77,0.035);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.empathy__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 7rem;
  align-items: center;
}

.empathy__headline {
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.empathy__headline em {
  font-style: italic;
  color: #aaa;
}

.empathy__headline strong {
  color: var(--red-bright);
}

.empathy__right p {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.88;
  margin-bottom: 1.25rem;
}

.empathy__close {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: var(--dark) !important;
  margin-bottom: 2rem !important;
}

.empathy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* =========================================================
   JOBS
   ========================================================= */
.jobs {
  background: var(--navy-dark);
  padding: 5rem 0 6rem;
}

.jobs__intro {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 2.5rem;
}

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

.job-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid transparent;
  border-radius: 6px;
  padding: 2.75rem 2.5rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease),
              transform 0.3s var(--ease);
}

.job-card:hover {
  background: rgba(255,255,255,0.06);
  border-left-color: var(--red-bright);
  transform: translateY(-5px);
}

.job-card__num {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}

.job-card:hover .job-card__num { color: var(--red-bright); }

.job-card__headline {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  flex: 1;
}

.job-card__body {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.78;
  margin-bottom: 2rem;
}

.job-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-bright);
  transition: gap 0.25s var(--ease);
}

.job-card:hover .job-card__cta { gap: 0.85rem; }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how-it-works { background: var(--off-white); }

.hiw__header { margin-bottom: 4rem; }

.hiw__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--gray-light);
}

.hiw__step {
  padding: 3.5rem 3rem 3.5rem 0;
  border-right: 1px solid var(--gray-light);
}

.hiw__step:nth-child(2) { padding: 3.5rem 3rem; }

.hiw__step:last-child {
  border-right: none;
  padding: 3.5rem 0 3.5rem 3rem;
}

.hiw__num {
  font-size: clamp(4.5rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: rgba(0, 26, 77, 0.08);
  line-height: 0.9;
  margin-bottom: 1.25rem;
}

.hiw__content h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.hiw__content p {
  font-size: 0.93rem;
  color: #666;
  line-height: 1.85;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services {
  background: var(--off-white);
  padding-top: 8rem;
  padding-bottom: 6rem;
}

.services .section-head {
  margin-bottom: 5rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 3px;
}

/* Service Card */
.scard {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.scard--featured { grid-row: span 1; }

/* Last 2 cards: wide + narrow */
.scard:nth-child(4) {
  grid-column: 1 / 3;
  aspect-ratio: 16 / 7;
}

.scard:nth-child(5) {
  grid-column: 3 / 4;
  aspect-ratio: auto;
  min-height: 280px;
}

.scard__bg {
  position: absolute;
  inset: 0;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}

.scard:hover .scard__bg { transform: scale(1.06); }

.scard__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 8, 35, 0.96) 0%,
    rgba(0, 8, 35, 0.65) 45%,
    rgba(0, 0, 0, 0.2)   100%
  );
  transition: opacity 0.4s;
}

.scard:hover .scard__overlay {
  background: linear-gradient(
    to top,
    rgba(0, 8, 35, 0.98) 0%,
    rgba(0, 8, 35, 0.8)  55%,
    rgba(0, 0, 0, 0.35)  100%
  );
}

.scard__body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 2.25rem;
}

.scard__icon {
  width: 40px;
  height: 40px;
  color: var(--blue-bright);
  margin-bottom: 0.9rem;
  transition: transform 0.3s var(--ease);
}

.scard__icon--red { color: var(--red-bright); }
.scard:hover .scard__icon { transform: scale(1.1); }

.scard__body h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.scard__body p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.0);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease), color 0.3s;
}

.scard:hover .scard__body p {
  max-height: 80px;
  color: rgba(255,255,255,0.72);
}

.scard__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-top: 0.9rem;
  transition: gap 0.25s;
}

.scard:hover .scard__link { gap: 0.7rem; }

/* =========================================================
   ABOUT
   ========================================================= */
.about { background: var(--white); }

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

.about__visual { position: relative; }

.about__img-frame {
  position: relative;
  border-radius: 6px;
  overflow: visible;
}

.about__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

/* decorative corner accent */
.about__img-frame::before {
  content: '';
  position: absolute;
  inset: -16px -16px auto auto;
  width: 80px;
  height: 80px;
  border-top: 4px solid var(--red-bright);
  border-right: 4px solid var(--red-bright);
  border-radius: 0 6px 0 0;
}

.about__img-frame::after {
  content: '';
  position: absolute;
  inset: auto auto -16px -16px;
  width: 80px;
  height: 80px;
  border-bottom: 4px solid var(--blue-mid);
  border-left: 4px solid var(--blue-mid);
  border-radius: 0 0 0 6px;
}

.about__badge {
  position: absolute;
  bottom: -1.75rem;
  right: -1.75rem;
  width: 112px;
  height: 112px;
  background: var(--red-bright);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  box-shadow: 0 12px 40px rgba(229,57,53,0.4);
}

.about__badge span {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
}

.about__badge strong {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.about__license {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.06em;
}

.about__license svg { color: var(--blue-mid); flex-shrink: 0; }

.about__text .section-title { margin-bottom: 1.25rem; }

.about__body {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

/* Pillars (vouchurch-style numbered list) */
.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.75rem;
  border-top: 1px solid var(--gray-light);
  padding-top: 1.75rem;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.pillar__num {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--red-bright);
  letter-spacing: 0.1em;
  margin-top: 3px;
  flex-shrink: 0;
  min-width: 24px;
}

.pillar__content strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.pillar__content p {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.6;
}

/* =========================================================
   BRANDS
   ========================================================= */
.brands {
  background: var(--off-white);
  padding: 3.5rem 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}

.brands__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.25rem;
}

.brands__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  text-align: center;
}

.brands__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem 4rem;
}

.brands__logos span {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color 0.2s;
  cursor: default;
}

.brands__logos span:hover { color: var(--navy); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials {
  background: var(--navy-dark);
  padding: 7rem 0;
  overflow: hidden;
}

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

.testimonials__slider {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Cards */
.tcard {
  display: none;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 3rem;
  animation: tcardIn 0.5s var(--ease-out) both;
}

.tcard.active { display: block; }

@keyframes tcardIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tcard__stars {
  font-size: 1.1rem;
  color: #ffc107;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.tcard blockquote {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.85;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 0;
}

.tcard blockquote::before {
  content: '\201C';
  position: absolute;
  top: -2.5rem;
  left: -0.5rem;
  font-size: 7rem;
  font-family: Georgia, serif;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  pointer-events: none;
}

.tcard footer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tcard__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blue-mid);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

.tcard footer strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
}

.tcard footer span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* Nav */
.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.t-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.t-btn:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
}

.t-dots { display: flex; gap: 0.5rem; }

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.t-dot.active,
.t-dot:hover {
  background: var(--red-bright);
  transform: scale(1.35);
}

/* =========================================================
   WHY AIR NOW
   ========================================================= */
.why-us {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 5% 70%,  rgba(229,57,53,0.28)   0%, transparent 45%),
    radial-gradient(ellipse at 95% 30%, rgba(33,150,243,0.2)   0%, transparent 45%),
    radial-gradient(ellipse at 50% 110%, rgba(21,101,192,0.35) 0%, transparent 55%),
    linear-gradient(135deg, var(--blue-light) 0%, var(--blue-mid) 30%, var(--navy) 65%, var(--navy-dark) 100%);
}

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

.why-us__header {
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.why-us__item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 3px solid rgba(229,57,53,0.5);
  border-radius: 10px;
  padding: 2.75rem 2.5rem;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease),
              box-shadow 0.3s var(--ease), border-top-color 0.3s var(--ease);
}

.why-us__item:hover {
  background: rgba(255,255,255,0.11);
  border-top-color: var(--red-bright);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.why-us__num {
  font-size: clamp(4.5rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: rgba(255,255,255,0.08);
  line-height: 0.9;
  margin-bottom: 1.5rem;
}

.why-us__item h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.why-us__item p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
}

/* =========================================================
   HOME FAQ
   ========================================================= */
.homefaq { background: var(--white); }

.homefaq__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 7rem;
  align-items: start;
}

.homefaq__left { padding-top: 0.5rem; }

.homefaq__sub {
  font-size: 1rem;
  color: #888;
  margin: 0.75rem 0 2.5rem;
}

.homefaq__right { padding-top: 0; }

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust-strip {
  background: var(--navy);
  padding: 2.75rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.trust-item__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-bright);
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.trust-item span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}

/* =========================================================
   SERVICE AREA LIST (contact section)
   ========================================================= */
.service-area-list {
  font-size: 0.88rem;
  line-height: 1.85;
  color: #666;
}

/* =========================================================
   FLOATING CALL BUTTON (mobile)
   ========================================================= */
.float-call {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 800;
  background: var(--red-bright);
  color: var(--white);
  border-radius: 50px;
  padding: 0.9rem 1.6rem;
  font-size: 0.88rem;
  font-weight: 700;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 30px rgba(229,57,53,0.5);
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.float-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(229,57,53,0.6);
}

/* =========================================================
   CTA BAND
   ========================================================= */
.ctaband {
  position: relative;
  padding: 7rem 2rem;
  text-align: center;
  overflow: hidden;
}

.ctaband__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-mid) 0%, var(--navy) 55%, var(--dark) 100%);
}

.ctaband__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(229,57,53,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 50%, rgba(33,150,243,0.12) 0%, transparent 55%);
}

.ctaband__content {
  position: relative;
  z-index: 1;
}

.ctaband__content h2 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1.05;
  margin: 1rem 0 1.25rem;
}

.ctaband__content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.ctaband__vision {
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.82) !important;
  max-width: 560px;
  margin: 0 auto 0.85rem !important;
  line-height: 1.65 !important;
}

.ctaband__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact { background: var(--white); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}

.contact__info .section-title { margin-bottom: 2rem; }

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact__details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.cdetail__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cdetail__icon svg { width: 18px; height: 18px; }

.contact__details strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.25rem;
}

.contact__details a,
.contact__details span {
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.55;
}

.contact__details a:hover { color: var(--blue-mid); }

/* Form */
.contact__form-wrap {
  background: var(--off-white);
  border-radius: 8px;
  padding: 3rem;
}

.contact__form h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.field { margin-bottom: 1.125rem; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.125rem;
}

.field-row .field { margin-bottom: 0; }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.875rem 1.1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(21,101,192,0.1);
}

.field input::placeholder,
.field textarea::placeholder { color: #aaa; }

.field select { cursor: pointer; color: #aaa; }
.field select.selected { color: var(--dark); }

.field textarea { resize: vertical; min-height: 110px; }

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: #aaa;
  margin-top: 0.875rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--dark); }

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.footer__brand .logo--footer {
  display: inline-flex;
  margin-bottom: 0.2rem;
}

.footer__tagline {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 1.25rem;
}

.footer__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 260px;
  margin-bottom: 0.75rem;
}

.footer__license {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}

.footer__col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.5rem;
}

.footer__col ul { display: flex; flex-direction: column; gap: 0.65rem; }

.footer__col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--white); }

.footer__col p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.footer__col p a {
  font-size: inherit;
  color: rgba(255,255,255,0.65);
}

.footer__social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.social-link:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about__visual { max-width: 500px; }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  .statsband__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .statsband__item:nth-child(2)::after,
  .statsband__item:nth-child(4)::after { display: none; }

  .services__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .scard:nth-child(4) {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 7;
  }

  .scard:nth-child(5) {
    grid-column: 1 / -1;
    min-height: 260px;
    aspect-ratio: 16 / 7;
  }
}

@media (max-width: 900px) {
  .empathy__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .empathy__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .jobs__grid {
    grid-template-columns: 1fr;
  }

  .why-us__grid {
    grid-template-columns: 1fr;
  }

  .homefaq__inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

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

  .hiw__steps {
    grid-template-columns: 1fr;
    border-top: none;
  }

  .hiw__step,
  .hiw__step:nth-child(2),
  .hiw__step:last-child {
    padding: 2.5rem 0;
    border-right: none;
    border-bottom: 1px solid var(--gray-light);
  }

  .hiw__step:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .float-call { display: flex; }

  .trust-strip__inner { grid-template-columns: 1fr; }

  .nav__links,
  .nav__ctas { display: none; }

  .hamburger { display: flex; }

  .section { padding: 5rem 0; }

  .hero__stats {
    flex-wrap: wrap;
    gap: 1.25rem;
  }

  .hero__stat-div { display: none; }

  .services__grid { grid-template-columns: 1fr; }

  .scard:nth-child(4),
  .scard:nth-child(5) {
    grid-column: 1;
    aspect-ratio: 4 / 3;
    min-height: unset;
  }

  .field-row { grid-template-columns: 1fr; }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__actions,
  .ctaband__actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
  }

  .hero__actions .btn,
  .ctaband__actions .btn { justify-content: center; }

  .contact__form-wrap { padding: 2rem 1.5rem; }

  .tcard { padding: 2rem 1.5rem; }
}

/* =========================================================
   NAV DROPDOWN
   ========================================================= */
.nav__link--caret {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.nav__link--caret svg {
  width: 10px;
  height: 10px;
  stroke: rgba(255,255,255,0.5);
  transition: transform 0.22s var(--ease), stroke 0.2s;
  flex-shrink: 0;
}

.nav__dropdown { position: relative; }

.nav__dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -1rem;
  right: -1rem;
  height: 1.6rem;
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 1.4rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  padding: 0.65rem 0;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
  z-index: 100;
  box-shadow: 0 20px 50px rgba(0,0,0,0.55);
}

.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid rgba(255,255,255,0.09);
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown:hover .nav__link--caret svg {
  transform: rotate(180deg);
  stroke: var(--white);
}

.nav__dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1.5rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(255,255,255,0.62);
  transition: color 0.18s, background 0.18s, padding-left 0.22s;
  white-space: nowrap;
}

.nav__dropdown-menu a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.04);
  padding-left: 1.85rem;
}

.nav__dropdown-menu a .dm-icon {
  width: 16px;
  height: 16px;
  opacity: 0.4;
  flex-shrink: 0;
  transition: opacity 0.18s;
}

.nav__dropdown-menu a:hover .dm-icon { opacity: 0.9; }

.nav__link.active { color: var(--white); }
.nav__link.active::after { width: 100%; }

.mobile-menu__link--sub {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.42);
  padding: 0.4rem 0 0.4rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.mobile-menu__link--sub:hover { color: var(--red-bright); }

/* =========================================================
   TESTIMONIALS MARQUEE SCROLL (homepage)
   ========================================================= */
.tmarquee-section {
  overflow: hidden;
  padding-bottom: 5rem;
}

.tmarquee-row {
  display: flex;
  width: max-content;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.tmarquee-row--fwd { animation: marqueeScroll 50s linear infinite; }
.tmarquee-row--rev { animation: marqueeScrollRev 50s linear infinite; }

.tmarquee-row:hover { animation-play-state: paused; }

@keyframes marqueeScrollRev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.tmini {
  width: 360px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 1.75rem 2rem;
  cursor: default;
  transition: background 0.3s, border-color 0.3s;
}

.tmini:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
}

.tmini__stars {
  font-size: 0.85rem;
  color: #ffc107;
  letter-spacing: 0.06em;
  margin-bottom: 0.9rem;
}

.tmini blockquote {
  font-size: 0.93rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.tmini footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.tmini__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue-mid);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  flex-shrink: 0;
}

.tmini footer strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
}

.tmini footer span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
}

/* =========================================================
   BRAND LOGO CAROUSEL
   ========================================================= */
.brand-logos-carousel {
  overflow: hidden;
  background: var(--off-white);
  padding: 3rem 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}

.brand-logos-label {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 2rem;
}

.brand-logos-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 4.5rem;
  animation: marqueeScroll 32s linear infinite;
}

.brand-logos-track:hover { animation-play-state: paused; }

.brand-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  transition: transform 0.3s var(--ease);
}

.brand-logo-img:hover {
  transform: scale(1.08);
}

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: slowZoom 28s ease-in-out infinite alternate;
  will-change: transform;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    rgba(0, 8, 35, 0.96) 0%,
    rgba(0, 22, 70, 0.90) 45%,
    rgba(5, 40, 95, 0.82) 70%,
    rgba(0, 5, 20, 0.75) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 9.5rem 2rem 4.5rem;
  width: 100%;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 1.1rem;
  animation: fadeUp 0.7s 0.2s both;
}

.page-hero__breadcrumb a {
  color: rgba(255,255,255,0.38);
  transition: color 0.2s;
}
.page-hero__breadcrumb a:hover { color: rgba(255,255,255,0.7); }
.page-hero__breadcrumb .sep   { color: rgba(255,255,255,0.18); }
.page-hero__breadcrumb .curr  { color: var(--red-bright); }

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  animation: fadeUp 0.7s 0.3s both;
}

.page-hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red-bright);
  flex-shrink: 0;
}

.page-hero__title {
  font-size: clamp(2.75rem, 6.5vw, 6rem);
  font-weight: 900;
  line-height: 0.97;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 1.25rem;
  animation: fadeUp 0.7s 0.42s both;
}

.page-hero__title .accent { color: var(--red-bright); }

.page-hero__sub {
  max-width: 560px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.78;
  margin-bottom: 2rem;
  animation: fadeUp 0.7s 0.54s both;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeUp 0.7s 0.65s both;
}

/* =========================================================
   SERVICE INTRO SECTION (2-col image + text)
   ========================================================= */
.service-intro { background: var(--white); }

.service-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.service-intro__visual { position: relative; }

.service-intro__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.service-intro__visual::before {
  content: '';
  position: absolute;
  inset: -14px -14px auto auto;
  width: 70px;
  height: 70px;
  border-top: 3px solid var(--red-bright);
  border-right: 3px solid var(--red-bright);
  border-radius: 0 6px 0 0;
  pointer-events: none;
  z-index: -1;
}

.service-intro__visual::after {
  content: '';
  position: absolute;
  inset: auto auto -14px -14px;
  width: 70px;
  height: 70px;
  border-bottom: 3px solid var(--blue-mid);
  border-left: 3px solid var(--blue-mid);
  border-radius: 0 0 0 6px;
  pointer-events: none;
  z-index: -1;
}

.service-intro__text .section-title { margin-bottom: 1.25rem; }

.service-intro__body {
  font-size: 1rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 2rem;
}

.service-intro__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.service-intro__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.93rem;
  color: var(--dark);
  line-height: 1.5;
}

.service-intro__list li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red-bright);
  flex-shrink: 0;
  margin-top: 0.45em;
}

/* =========================================================
   SERVICES OVERVIEW PAGE (service blocks)
   ========================================================= */
.services-overview { background: var(--white); }

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
  overflow: hidden;
}

.service-block--reverse { }

.service-block__img-wrap {
  position: relative;
  overflow: hidden;
}

.service-block__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.service-block:hover .service-block__img { transform: scale(1.04); }

.service-block__body {
  padding: 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--off-white);
}

.service-block--reverse .service-block__img-wrap { order: 2; }
.service-block--reverse .service-block__body { order: 1; background: var(--white); }

.service-block__body .eyebrow { margin-bottom: 0.75rem; }
.service-block__body .section-title { font-size: clamp(1.75rem, 3vw, 2.6rem); margin-bottom: 1.25rem; }

.service-block__desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 2rem;
}

.service-block__features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}

.service-block__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
}

.service-block__check {
  width: 20px;
  height: 20px;
  background: rgba(21,101,192,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-mid);
}

/* =========================================================
   PROCESS STEPS
   ========================================================= */
.process { background: var(--off-white); }

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.pstep {
  background: var(--white);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.pstep:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.1);
}

.pstep::after {
  content: attr(data-step);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5.5rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: rgba(0,26,77,0.05);
  line-height: 1;
  pointer-events: none;
}

.pstep__icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 1.5rem;
  transition: background 0.25s;
}

.pstep:hover .pstep__icon { background: var(--red-bright); }

.pstep h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.pstep p {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.68;
}

/* =========================================================
   BENEFITS GRID
   ========================================================= */
.benefits { background: var(--white); }

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

.benefit-card {
  border: 1.5px solid var(--gray-light);
  border-radius: 10px;
  padding: 2.25rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.benefit-card:hover {
  border-color: var(--blue-mid);
  box-shadow: 0 10px 40px rgba(21,101,192,0.1);
  transform: translateY(-5px);
}

.benefit-card__icon {
  width: 46px;
  height: 46px;
  background: rgba(13,71,161,0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-mid);
  margin-bottom: 1.25rem;
  transition: background 0.25s, color 0.25s;
}

.benefit-card:hover .benefit-card__icon {
  background: var(--navy);
  color: var(--white);
}

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.68;
}

/* =========================================================
   FINANCING BAND
   ========================================================= */
.financing {
  background: var(--navy);
  padding: 6rem 2rem;
}

.financing__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.financing__text .section-title { margin-bottom: 1rem; }

.financing__body {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.82;
  margin-bottom: 2.5rem;
}

.financing__options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.financing__opt {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 1.35rem 1.5rem;
  transition: background 0.22s, border-color 0.22s;
}

.financing__opt:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
}

.financing__opt-icon {
  width: 44px;
  height: 44px;
  background: var(--red-bright);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.financing__opt strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.financing__opt span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
}

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq-section { background: var(--white); }

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 7rem;
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 6rem;
}

.faq-sidebar .section-title { margin-bottom: 1.25rem; }

.faq-sidebar__body {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.faq-list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid var(--gray-light); }
.faq-item:first-child { border-top: 1px solid var(--gray-light); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--blue-mid); }
.faq-question.open  { color: var(--blue-mid); }

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1.5px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.22s, border-color 0.22s, transform 0.28s var(--ease);
}

.faq-question.open .faq-icon {
  background: var(--red-bright);
  border-color: var(--red-bright);
  transform: rotate(45deg);
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--gray);
  transition: stroke 0.22s;
}

.faq-question.open .faq-icon svg { stroke: var(--white); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s var(--ease);
}

.faq-answer.open { max-height: 400px; }

.faq-answer__inner {
  font-size: 0.93rem;
  color: #666;
  line-height: 1.82;
  padding-bottom: 1.5rem;
}

/* =========================================================
   BLOG GRID
   ========================================================= */
.blog-section { background: var(--off-white); }

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

.blog-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

.blog-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.blog-card:hover .blog-card__img { transform: scale(1.07); }

.blog-card__cat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.85rem;
  background: var(--red-bright);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
}

.blog-card__body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__meta {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.blog-card__title {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.blog-card:hover .blog-card__title { color: var(--blue-mid); }

.blog-card__excerpt {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.72;
  flex: 1;
  margin-bottom: 1.5rem;
}

.blog-card__link {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--red-bright);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
  margin-top: auto;
}

.blog-card:hover .blog-card__link { gap: 0.75rem; }

/* =========================================================
   ISSUES GRID (repair page)
   ========================================================= */
.issues { background: var(--off-white); }

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

.issue-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-left: 3px solid transparent;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.issue-card:hover {
  border-color: var(--red-bright);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.issue-num {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--red-bright);
  letter-spacing: 0.1em;
  padding-top: 4px;
  flex-shrink: 0;
  min-width: 22px;
}

.issue-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.35rem;
}

.issue-card p {
  font-size: 0.84rem;
  color: #777;
  line-height: 1.62;
}

/* =========================================================
   EMERGENCY CALLOUT
   ========================================================= */
.emergency-band {
  background: var(--red-bright);
  padding: 3rem 2rem;
}

.emergency-band__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.emergency-band strong {
  display: block;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}

.emergency-band p {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
}

.btn--emergency {
  background: var(--white);
  color: var(--red-bright);
  border-color: var(--white);
  font-size: 1rem;
  padding: 1rem 2.25rem;
  white-space: nowrap;
}

.btn--emergency:hover {
  background: rgba(255,255,255,0.92);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* =========================================================
   VALUES GRID (about page)
   ========================================================= */
.values { background: var(--off-white); }

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

.value-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2.25rem;
  border: 1.5px solid var(--gray-light);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.value-card:hover {
  border-color: var(--blue-mid);
  transform: translateY(-6px);
  box-shadow: 0 18px 55px rgba(0,0,0,0.09);
}

.value-card__num {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: rgba(0,26,77,0.06);
  line-height: 1;
  margin-bottom: 1rem;
}

.value-card__icon {
  width: 46px;
  height: 46px;
  background: rgba(13,71,161,0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-mid);
  margin-bottom: 1.25rem;
  transition: background 0.25s, color 0.25s;
}

.value-card:hover .value-card__icon {
  background: var(--red-bright);
  color: var(--white);
}

.value-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.7;
}

/* =========================================================
   CONTACT PAGE MAP
   ========================================================= */
.contact-map {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
  filter: grayscale(20%) contrast(95%);
}

/* =========================================================
   RESPONSIVE — new components
   ========================================================= */
@media (max-width: 1100px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .faq-sidebar { position: static; }

  .financing__inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

@media (max-width: 900px) {
  .service-intro__grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .service-block {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .service-block--reverse .service-block__img-wrap { order: 0; }
  .service-block--reverse .service-block__body     { order: 0; }

  .service-block__img-wrap { min-height: 320px; }

  .service-block__body { padding: 3rem 2rem; }

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

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

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

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

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

@media (max-width: 600px) {
  .process__grid,
  .benefits__grid,
  .issues-grid,
  .values-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .page-hero__title { letter-spacing: -0.03em; }
}
