/* ============================================================
   UMA GROUP — MAIN STYLESHEET
   Version: 1.0  |  Phase 1 — Design System + Shared Components
   ============================================================
   TABLE OF CONTENTS
   01. CSS Custom Properties (Design Tokens)
   02. Reset & Base
   03. Typography
   04. Layout Utilities
   05. Section Patterns
   06. Buttons
   07. Cards (A · B · C — only 3 styles)
   08. Animations & Transitions
   09. Header & Navigation
   10. Mobile Menu
   11. Footer
   12. Utility Classes
   13. Responsive Breakpoints
   ============================================================ */


/* ============================================================
   01. CSS CUSTOM PROPERTIES — DESIGN TOKENS
   ============================================================ */

:root {
  /* — Colors — */
  --clr-navy:       #1B3E72;
  --clr-navy-dark:  #132d54;
  --clr-navy-light: #2a52a0;
  --clr-green:      #3A8B2F;
  --clr-green-dark: #2d6e24;
  --clr-green-light:#4aad3c;
  --clr-teal:       #1A4548;   /* sustainability pages */
  --clr-bg:         #F8FAFC;
  --clr-white:      #FFFFFF;
  --clr-text:       #243447;
  --clr-text-light: #5A6B7E;
  --clr-peach:      #FFE2C7;   /* testimonials + small accents ONLY */
  --clr-border:     #DDE3EC;
  --clr-border-light: #EFF2F7;
  --clr-footer-bg:  #1B3E72;
  --clr-overlay:    rgba(27, 62, 114, 0.82);
  --clr-overlay-teal: rgba(26, 69, 72, 0.82);

  /* — Typography — */
  --font-primary:   'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --fs-hero-d:  clamp(44px, 5vw, 60px);
  --fs-hero-t:  44px;
  --fs-hero-m:  34px;

  --fs-h1:      clamp(34px, 4.5vw, 56px);
  --fs-h2:      clamp(28px, 3.5vw, 42px);
  --fs-h3:      clamp(22px, 2.5vw, 28px);
  --fs-h4:      18px;
  --fs-h5:      15px;

  --fs-body-lg: 18px;
  --fs-body:    16px;
  --fs-body-sm: 14px;
  --fs-label:   12px;
  --fs-eyebrow: 11px;

  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;

  --lh-tight:  1.15;
  --lh-snug:   1.3;
  --lh-normal: 1.6;
  --lh-relaxed:1.75;

  --ls-tight:  -0.02em;
  --ls-normal:  0;
  --ls-wide:    0.06em;
  --ls-wider:   0.10em;

  /* — Spacing (8px base) — */
  --sp-1:   4px;
  --sp-2:   8px;
  --sp-3:   12px;
  --sp-4:   16px;
  --sp-5:   24px;
  --sp-6:   32px;
  --sp-7:   48px;
  --sp-8:   64px;
  --sp-9:   96px;
  --sp-10: 128px;

  /* — Section padding — */
  --section-py: 80px;
  --section-px: 24px;

  /* — Layout spacing — */
  --gap-sm: 20px;   /* heading → description */
  --gap-md: 40px;   /* medium element gap */
  --gap-lg: 60px;   /* tabs/nav → section heading */
  --gap-xl: 80px;   /* grid → next section */

  /* — Container — */
  --container-max: 1320px;
  --container-wide: 1440px;

  /* — Border radius — */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   20px;
  --radius-full: 9999px;

  /* — Shadows — */
  --shadow-xs:  0 1px 4px rgba(27, 62, 114, 0.06);
  --shadow-sm:  0 2px 10px rgba(27, 62, 114, 0.08);
  --shadow-md:  0 6px 24px rgba(27, 62, 114, 0.11);
  --shadow-lg:  0 14px 44px rgba(27, 62, 114, 0.14);
  --shadow-xl:  0 24px 64px rgba(27, 62, 114, 0.18);

  /* — Transitions — */
  --ease-fast:   150ms ease-in-out;
  --ease-normal: 220ms ease-out;
  --ease-slow:   350ms ease-out;

  /* — Header — */
  --header-h: 80px;
  --header-h-mob: 68px;
}


/* ============================================================
   02. RESET & BASE
   ============================================================ */

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

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

body {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--clr-text);
  background-color: var(--clr-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-primary);
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-primary);
  font-size: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--clr-navy);
  outline-offset: 3px;
}


/* ============================================================
   03. TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--clr-navy);
  letter-spacing: var(--ls-tight);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: -0.01em; }
h4 { font-size: var(--fs-h4); font-weight: var(--fw-semibold); letter-spacing: 0; }
h5 { font-size: var(--fs-h5); font-weight: var(--fw-semibold); letter-spacing: 0; }

p {
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  color: var(--clr-text);
  max-width: 680px;
}

p.lead {
  font-size: var(--fs-body-lg);
  font-weight: var(--fw-regular);
  line-height: 1.7;
  color: var(--clr-text-light);
}

p.caption {
  font-size: var(--fs-body-sm);
  color: var(--clr-text-light);
  line-height: var(--lh-normal);
}

/* Eyebrow label — above headings */
.eyebrow {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-green);
  margin-bottom: var(--sp-3);
}

.eyebrow--light {
  color: var(--clr-peach);
}

/* Section heading block */
.section-header {
  margin-bottom: 50px;
}

.section-header--center {
  text-align: center;
}

.section-header--center p {
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  margin-bottom: 20px;
  margin-top: 16px;
}

.section-header p {
  color: var(--clr-text-light);
  font-size: var(--fs-body-lg);
}

/* Reversed text (on dark backgrounds) */
.text-white,
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white p,
.text-white .eyebrow {
  color: var(--clr-white);
}

.text-white p {
  color: rgba(255, 255, 255, 0.8);
}

.text-white .eyebrow {
  color: var(--clr-peach);
}

/* Pull quote */
.pull-quote {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: var(--fw-medium);
  font-style: italic;
  line-height: 1.55;
  color: var(--clr-text);
  border-left: 4px solid var(--clr-green);
  padding-left: var(--sp-5);
  margin: var(--sp-6) 0;
}

.pull-quote cite {
  display: block;
  font-size: var(--fs-body-sm);
  font-style: normal;
  font-weight: var(--fw-semibold);
  color: var(--clr-navy);
  margin-top: var(--sp-3);
}


/* ============================================================
   04. LAYOUT UTILITIES
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--section-px);
  padding-right: var(--section-px);
}

.container--wide {
  max-width: var(--container-wide);
}

.grid {
  display: grid;
  gap: 30px;
}

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

.grid--col-text-img {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--sp-9);
}

.grid--col-img-text {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--sp-9);
}

.grid--col-img-text .col-img { order: -1; }

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-gap-4  { gap: var(--sp-4); }
.flex-gap-5  { gap: var(--sp-5); }
.flex-gap-6  { gap: var(--sp-6); }


/* ============================================================
   05. SECTION PATTERNS
   ============================================================ */

section {
  position: relative;
}

.section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

/* Alternating backgrounds */
.section--white   { background-color: var(--clr-white); }
.section--bg      { background-color: var(--clr-bg); }
.section--navy    { background-color: var(--clr-navy); }
.section--teal    { background-color: var(--clr-teal); }
.section--footer  { background-color: var(--clr-footer-bg); }

/* Page banner / hero (full-width image with overlay) */
.page-banner {
  position: relative;
  width: 100%;
  height: clamp(280px, 40vw, 420px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--clr-overlay) 0%,
    var(--clr-overlay) 40%,
    rgba(27, 62, 114, 0.55) 75%,
    rgba(27, 62, 114, 0.2) 100%
  );
}

.page-banner__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--sp-8) var(--section-px);
  max-width: var(--container-max);
  margin: 0 auto;
}

.page-banner__content .eyebrow {
  color: var(--clr-peach);
  margin-bottom: var(--sp-2);
}

.page-banner__content h1 {
  color: var(--clr-white);
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.02em;
  max-width: 640px;
  margin-bottom: var(--sp-3);
}

.page-banner__content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--fs-body-lg);
  max-width: 520px;
}

/* Breadcrumb */
.breadcrumb {
  padding: var(--sp-3) 0;
  font-size: var(--fs-body-sm);
  color: var(--clr-text-light);
  border-bottom: 1px solid var(--clr-border-light);
}

.breadcrumb a {
  color: var(--clr-text-light);
  transition: color var(--ease-fast);
}

.breadcrumb a:hover {
  color: var(--clr-navy);
}

.breadcrumb__separator {
  margin: 0 var(--sp-2);
  color: var(--clr-border);
}

.breadcrumb__current {
  color: var(--clr-green);
  font-weight: var(--fw-medium);
}

/* Stats strip */
.stats-strip {
  background-color: var(--clr-navy);
  padding: var(--sp-8) 0;
}

.stats-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: var(--sp-5) var(--sp-4);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item__number {
  display: block;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-2);
}

.stat-item__label {
  display: block;
  font-size: var(--fs-label);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

/* CTA section block */
.cta-block {
  background-color: var(--clr-navy);
  padding: var(--sp-9) 0;
  text-align: center;
}

.cta-block .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
}

.cta-block .eyebrow {
  color: var(--clr-peach);
}

.cta-block h2 {
  color: var(--clr-white);
  max-width: 680px;
}

.cta-block p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0 auto;
}

.cta-block .btn-group {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  justify-content: center;
}

/* Awards badge strip */
.awards-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.award-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 28px 28px 24px;
  min-width: 148px;
  text-align: center;
  transition: box-shadow var(--ease-normal), transform var(--ease-normal), border-color var(--ease-normal);
  position: relative;
}

.award-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-navy), var(--clr-green));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.award-badge:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: rgba(27, 62, 114, 0.18);
}

.award-badge__year {
  display: block;
  font-size: 26px;
  font-weight: var(--fw-bold);
  color: var(--clr-navy);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.award-badge__text {
  font-size: 11px;
  font-weight: var(--fw-semibold);
  color: var(--clr-text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

/* Brand logo marquee */
.marquee-wrapper {
  overflow: hidden;
  padding: var(--sp-5) 0;
  position: relative;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--clr-white), transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--clr-white), transparent);
}

.marquee-track {
  display: flex;
  gap: var(--sp-7);
  animation: marquee-scroll 65s linear infinite;
  width: max-content;
}

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

.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: var(--sp-3) var(--sp-5);
}

.marquee-item img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.55);
  transition: filter var(--ease-normal);
}

.marquee-item img:hover {
  filter: grayscale(0%) opacity(1);
}

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


/* ============================================================
   06. BUTTONS
   ============================================================ */

/* Base button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-primary);
  font-size: var(--fs-label);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-md);
  padding: 14px 32px;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    background-color var(--ease-fast),
    border-color var(--ease-fast),
    color var(--ease-fast),
    box-shadow var(--ease-fast),
    transform var(--ease-fast);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:active {
  transform: translateY(1px);
}

/* Primary — Navy fill */
.btn--primary {
  background-color: var(--clr-navy);
  color: var(--clr-white);
  border-color: var(--clr-navy);
}

.btn--primary:hover {
  background-color: var(--clr-green);
  border-color: var(--clr-green);
  box-shadow: 0 4px 16px rgba(58, 139, 47, 0.30);
}

/* Secondary — Outline navy */
.btn--secondary {
  background-color: transparent;
  color: var(--clr-navy);
  border-color: var(--clr-navy);
}

.btn--secondary:hover {
  background-color: var(--clr-navy);
  color: var(--clr-white);
}

/* Outline white — on dark backgrounds */
.btn--outline-white {
  background-color: transparent;
  color: var(--clr-white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--outline-white:hover {
  background-color: var(--clr-white);
  color: var(--clr-navy);
  border-color: var(--clr-white);
}

/* Ghost — text + arrow only */
.btn--ghost {
  background: none;
  border: none;
  padding: 0;
  color: var(--clr-green);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  transition: gap var(--ease-fast), color var(--ease-fast);
}

.btn--ghost svg,
.btn--ghost .arrow {
  transition: transform var(--ease-fast);
}

.btn--ghost:hover {
  color: var(--clr-navy);
}

.btn--ghost:hover .arrow {
  transform: translateX(4px);
}

/* Green primary — sustainability pages */
.btn--green {
  background-color: var(--clr-green);
  color: var(--clr-white);
  border-color: var(--clr-green);
}

.btn--green:hover {
  background-color: var(--clr-green-dark);
  border-color: var(--clr-green-dark);
}

/* Button group */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
}

/* Icon in button */
.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}


/* ============================================================
   07. CARDS — MAXIMUM 3 STYLES
   ============================================================ */

/* ——— CARD A — Information Card ——— */
.card-a {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: box-shadow var(--ease-normal);
}

.card-a:hover {
  box-shadow: var(--shadow-sm);
}

.card-a__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(58, 139, 47, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-2);
  flex-shrink: 0;
}

.card-a__icon svg {
  width: 28px;
  height: 28px;
  color: var(--clr-green);
  stroke: var(--clr-green);
  fill: none;
}

.card-a__title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--clr-navy);
  line-height: var(--lh-snug);
}

.card-a__body {
  font-size: var(--fs-body);
  color: var(--clr-text-light);
  line-height: var(--lh-relaxed);
  max-width: none;
}

/* Stat variant of Card A */
.card-a--stat {
  text-align: center;
  align-items: center;
  border-top: 3px solid var(--clr-green);
}

.card-a--stat .card-a__number {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: var(--fw-bold);
  color: var(--clr-navy);
  line-height: 1;
  letter-spacing: -0.02em;
}


/* ——— CARD B — Solution/Product Card ——— */
.card-b {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--ease-normal),
    box-shadow var(--ease-normal),
    border-color var(--ease-normal);
  position: relative;
}

.card-b::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--clr-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease-normal);
}

.card-b:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-border);
}

.card-b:hover::before {
  transform: scaleX(1);
}

.card-b__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: var(--clr-bg);
}

.card-b__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--ease-slow);
}

.card-b:hover .card-b__img img {
  transform: scale(1.04);
}

.card-b__content {
  padding: var(--sp-5) var(--sp-5) var(--sp-6);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.card-b__eyebrow {
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-green);
}

.card-b__title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--clr-navy);
  line-height: var(--lh-snug);
}

.card-b__desc {
  font-size: var(--fs-body);
  color: var(--clr-text-light);
  line-height: var(--lh-normal);
  max-width: none;
  flex: 1;
}

.card-b__footer {
  padding: 0 var(--sp-5) var(--sp-5);
}


/* ——— CARD C — Testimonial Card ——— */
.card-c {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-border-light);
  border-left: 4px solid var(--clr-peach);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  height: 100%;
}

.card-c__quote-mark {
  font-size: 56px;
  font-weight: var(--fw-bold);
  color: var(--clr-peach);
  line-height: 0.8;
  letter-spacing: -0.02em;
  font-family: Georgia, serif;
}

.card-c__text {
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  color: var(--clr-text);
  font-style: italic;
  flex: 1;
  max-width: none;
}

.card-c__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--clr-border-light);
}

.card-c__name {
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-navy);
}

.card-c__company {
  font-size: var(--fs-body-sm);
  color: var(--clr-text-light);
}


/* ============================================================
   08. ANIMATIONS & TRANSITIONS
   ============================================================ */

/* Fade In — base class, applied via JS IntersectionObserver */
.animate-fade-in {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

.animate-fade-in.is-visible {
  opacity: 1;
}

/* Fade Up */
.animate-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Stagger delay helpers */
.delay-1 { transition-delay: 80ms; }
.delay-2 { transition-delay: 160ms; }
.delay-3 { transition-delay: 240ms; }
.delay-4 { transition-delay: 320ms; }
.delay-5 { transition-delay: 400ms; }
.delay-6 { transition-delay: 480ms; }

/* Counter (JS driven — class added when visible) */
.counter-value {
  display: inline-block;
}

/* Hover lift (utility) */
.hover-lift {
  transition: transform var(--ease-normal), box-shadow var(--ease-normal);
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Image zoom container */
.img-zoom {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.img-zoom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease-slow);
}

.img-zoom:hover img {
  transform: scale(1.04);
}


/* ============================================================
   09. HEADER & NAVIGATION
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background-color: transparent;
  transition:
    background-color var(--ease-normal),
    box-shadow var(--ease-normal),
    height var(--ease-normal);
}

.site-header.is-scrolled {
  background-color: var(--clr-navy);
  box-shadow: 0 2px 12px rgba(27,62,114,0.25);
  height: calc(var(--header-h) - 12px);
}

.site-header__inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-px);
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

/* Logo */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.site-logo img {
  height: 48px;
  width: auto;
  transition: height var(--ease-normal), opacity var(--ease-normal);
}

.is-scrolled .site-logo img {
  height: 42px;
}

/* Single logo — both logo variants are white-text; header is always dark/navy */
.logo--white { display: block; }
.logo--dark  { display: none; }

/* Primary nav */
.primary-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.primary-nav__item {
  position: relative;
}

.primary-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: var(--sp-3) var(--sp-4);
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: var(--clr-white);
  border-radius: var(--radius-sm);
  transition: color var(--ease-fast), background-color var(--ease-fast);
  white-space: nowrap;
  position: relative;
}

.primary-nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: var(--sp-4);
  right: var(--sp-4);
  height: 2px;
  background-color: var(--clr-green);
  transform: scaleX(0);
  transition: transform var(--ease-fast);
  border-radius: 2px;
}

.primary-nav__link:hover,
.primary-nav__item--active > .primary-nav__link {
  color: rgba(255, 255, 255, 0.75);
}

.primary-nav__link:hover::after,
.primary-nav__item--active > .primary-nav__link::after {
  transform: scaleX(1);
}

.is-scrolled .primary-nav__link:hover {
  color: rgba(255, 255, 255, 0.85);
  background-color: rgba(255, 255, 255, 0.1);
}

/* Dropdown arrow */
.nav-arrow {
  display: inline-flex;
  align-items: center;
  width: 14px;
  height: 14px;
  transition: transform var(--ease-fast);
  flex-shrink: 0;
}

.nav-arrow svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

.primary-nav__item:hover .nav-arrow,
.primary-nav__item--open .nav-arrow {
  transform: rotate(180deg);
}

/* Dropdown panel */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background-color: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: var(--sp-2) var(--sp-3) var(--sp-3);
  padding-top: 12px; /* bridges the gap between nav item and dropdown panel */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--ease-normal),
    transform var(--ease-normal),
    visibility var(--ease-normal);
  z-index: 100;
}

/* Invisible bridge so cursor can travel from nav link into dropdown without gap */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.primary-nav__item:hover .nav-dropdown,
.primary-nav__item--open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__item {
  display: block;
}

.nav-dropdown__link {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text);
  border-radius: var(--radius-md);
  transition: background-color var(--ease-fast), color var(--ease-fast);
  white-space: nowrap;
}

.nav-dropdown__link:hover {
  background-color: var(--clr-bg);
  color: var(--clr-navy);
}

.nav-dropdown__divider {
  height: 1px;
  background-color: var(--clr-border-light);
  margin: var(--sp-2) var(--sp-4);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-shrink: 0;
}

.header-actions .btn--primary {
  background-color: var(--clr-green);
  border-color: var(--clr-green);
}

.header-actions .btn--primary:hover {
  background-color: var(--clr-green-dark);
  border-color: var(--clr-green-dark);
  box-shadow: 0 4px 16px rgba(58, 139, 47, 0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: var(--sp-2);
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: background-color var(--ease-fast);
}

.hamburger:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.is-scrolled .hamburger:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.hamburger__line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--clr-white);
  border-radius: 2px;
  transition: transform var(--ease-normal), opacity var(--ease-fast);
  transform-origin: center;
}

.hamburger.is-active .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-active .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Spacer below fixed header */
.header-offset {
  height: var(--header-h);
}

/* Hero pages (transparent header) — no offset needed */
.has-hero-banner .header-offset {
  display: none;
}


/* ============================================================
   10. MOBILE MENU
   ============================================================ */

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background-color: var(--clr-white);
  z-index: 999;
  overflow-y: auto;
  padding: var(--header-h-mob) 0 var(--sp-8);
  transform: translateX(100%);
  transition: transform var(--ease-slow);
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__inner {
  padding: var(--sp-6) var(--section-px);
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav__item {
  border-bottom: 1px solid var(--clr-border-light);
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) 0;
  font-size: 15px;
  font-weight: var(--fw-semibold);
  color: var(--clr-navy);
}

.mobile-nav__toggle-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-light);
  transition: transform var(--ease-fast);
}

.mobile-nav__toggle-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

.mobile-nav__item--open .mobile-nav__toggle-icon {
  transform: rotate(180deg);
}

.mobile-nav__sub {
  display: none;
  flex-direction: column;
  padding: var(--sp-2) 0 var(--sp-4) var(--sp-5);
  gap: 0;
}

.mobile-nav__item--open .mobile-nav__sub {
  display: flex;
}

.mobile-nav__sub-link {
  display: block;
  padding: var(--sp-3) 0;
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--clr-text-light);
  border-bottom: 1px solid var(--clr-border-light);
  transition: color var(--ease-fast);
}

.mobile-nav__sub-link:last-child {
  border-bottom: none;
}

.mobile-nav__sub-link:hover {
  color: var(--clr-navy);
}

.mobile-menu__cta {
  margin-top: var(--sp-7);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.mobile-menu__cta .btn {
  width: 100%;
  justify-content: center;
}


/* ============================================================
   11. FOOTER
   ============================================================ */

.site-footer {
  background-color: var(--clr-footer-bg);
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__main {
  padding: var(--sp-10) 0 var(--sp-8);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-8);
}

.footer-col__logo {
  height: 44px;
  width: auto;
  margin-bottom: var(--sp-5);
  filter: brightness(0) invert(1);
}

.footer-col__tagline {
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--sp-5);
  max-width: 280px;
}

.footer-col__contact {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-contact-item {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--clr-green);
  stroke: var(--clr-green);
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span,
.footer-contact-item a {
  font-size: var(--fs-body-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  transition: color var(--ease-fast);
}

.footer-contact-item a:hover {
  color: var(--clr-white);
}

.footer-col__title {
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-col__link {
  font-size: var(--fs-body-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--ease-fast), padding-left var(--ease-fast);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.footer-col__link:hover {
  color: var(--clr-white);
  padding-left: 4px;
}

/* Footer bottom bar */
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--sp-5) 0;
}

.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: var(--fs-body-sm);
  color: rgba(255, 255, 255, 0.35);
}

.footer-closing-line {
  font-size: var(--fs-body-sm);
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}


/* ============================================================
   12. UTILITY CLASSES
   ============================================================ */

/* Text alignment */
.text-left    { text-align: left; }
.text-center  { text-align: center; }
.text-right   { text-align: right; }

/* Colors */
.text-navy     { color: var(--clr-navy); }
.text-green    { color: var(--clr-green); }
.text-light    { color: var(--clr-text-light); }
.text-muted    { color: rgba(255,255,255,0.6); }

/* Max widths for paragraphs */
.max-w-sm   { max-width: 480px; }
.max-w-md   { max-width: 640px; }
.max-w-lg   { max-width: 800px; }
.max-w-full { max-width: 100%; }

/* Dividers */
.divider {
  height: 1px;
  background-color: var(--clr-border);
  border: none;
  margin: var(--sp-8) 0;
}

/* Visually hidden */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Aspect ratios */
.aspect-16-10 { aspect-ratio: 16 / 10; }
.aspect-16-9  { aspect-ratio: 16 / 9;  }
.aspect-4-3   { aspect-ratio: 4 / 3;   }
.aspect-4-5   { aspect-ratio: 4 / 5;   }
.aspect-1-1   { aspect-ratio: 1 / 1;   }
.aspect-3-4   { aspect-ratio: 3 / 4;   }

/* Image fit */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Border radius utility */
.rounded    { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }

/* Spacing helpers */
.mt-4  { margin-top: var(--sp-4); }
.mt-5  { margin-top: var(--sp-5); }
.mt-6  { margin-top: var(--sp-6); }
.mt-7  { margin-top: var(--sp-7); }
.mb-4  { margin-bottom: var(--sp-4); }
.mb-5  { margin-bottom: var(--sp-5); }
.mb-6  { margin-bottom: var(--sp-6); }
.mb-7  { margin-bottom: var(--sp-7); }

/* Highlight inline text */
.highlight-green {
  color: var(--clr-green);
}

/* List with checks */
.check-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--fs-body);
  color: var(--clr-text);
  line-height: var(--lh-normal);
}

.check-list li::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233A8B2F' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Section tag label */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background-color: rgba(58, 139, 47, 0.08);
  color: var(--clr-green);
  border: 1px solid rgba(58, 139, 47, 0.2);
  border-radius: var(--radius-full);
  padding: var(--sp-1) var(--sp-4);
  font-size: var(--fs-label);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}


/* ============================================================
   13. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ——— Tablet: 768px – 1024px ——— */
@media (max-width: 1024px) {

  :root {
    --header-h: 72px;
    --section-py: 60px;
    --section-px: 24px;
    --fs-h1: 42px;
    --fs-h2: 34px;
    --fs-h3: 24px;
  }

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

  .grid--col-text-img,
  .grid--col-img-text {
    grid-template-columns: 1fr;
    gap: var(--sp-7);
  }

  .grid--col-img-text .col-img { order: 0; }

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

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  /* Header — hide desktop nav, show hamburger */
  .primary-nav { display: none; }
  .hamburger   { display: flex; }
  .mobile-menu { display: block; }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
  }

  .page-banner__content h1 {
    font-size: clamp(24px, 4vw, 40px);
  }
}

/* ——— Mobile: 320px – 767px ——— */
@media (max-width: 767px) {

  :root {
    --header-h: var(--header-h-mob);
    --section-py: 50px;
    --section-px: 20px;
    --fs-h1: 34px;
    --fs-h2: 28px;
    --fs-h3: 22px;
  }

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

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

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .stat-item:last-child,
  .stat-item:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-7);
  }

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

  .page-banner {
    height: clamp(220px, 50vw, 320px);
  }

  .page-banner__overlay {
    background: rgba(27, 62, 114, 0.75);
  }

  .page-banner__content h1 {
    font-size: clamp(22px, 6vw, 32px);
  }

  .page-banner__content p {
    font-size: var(--fs-body);
  }

  .btn {
    padding: 12px 24px;
    font-size: 11px;
  }

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

  .cta-block .btn-group {
    align-items: center;
  }

  .section-header {
    margin-bottom: var(--sp-6);
  }

  .card-a,
  .card-b__content,
  .card-c {
    padding: var(--sp-5);
  }

  .awards-strip {
    gap: var(--sp-3);
  }

  .award-badge {
    min-width: 100px;
    padding: var(--sp-4);
  }

  .marquee-wrapper::before,
  .marquee-wrapper::after {
    width: 40px;
  }

  .pull-quote {
    padding-left: var(--sp-4);
  }

  .footer-closing-line {
    display: none;
  }
}

/* ——— Large desktop: 1440px+ ——— */
@media (min-width: 1440px) {
  :root {
    --section-py: 80px;
  }
}


/* ============================================================
   CRITICAL FIX — .section-py was missing (caused zero spacing)
   ============================================================ */

.section-py {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}


/* ============================================================
   HERO — white primary button (legible on dark overlay)
   ============================================================ */

.btn--hero-primary {
  background-color: var(--clr-white);
  color: var(--clr-navy);
  border-color: var(--clr-white);
  font-weight: var(--fw-bold);
}

.btn--hero-primary:hover {
  background-color: var(--clr-peach);
  border-color: var(--clr-peach);
  color: var(--clr-navy);
  box-shadow: 0 4px 16px rgba(255, 226, 199, 0.4);
}


/* ============================================================
   BRAND WALL — 5-col grid replacing marquee on homepage
   ============================================================ */

.brand-wall {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}

.brand-card {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  cursor: pointer;
  transition: box-shadow var(--ease-normal), transform var(--ease-normal), border-color var(--ease-normal);
}

.brand-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: rgba(27, 62, 114, 0.22);
}

.brand-card img {
  max-height: 70px;
  width: auto;
  max-width: 85%;
  object-fit: contain;
  transition: transform var(--ease-normal);
}

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

@media (max-width: 1024px) {
  .brand-wall {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .brand-wall {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .brand-card {
    min-height: 80px;
    padding: 16px 12px;
  }
  .brand-card img {
    max-height: 48px;
  }
}


/* ============================================================
   HERO — image-only mode (no text, full viewport fill)
   ============================================================ */

.hero-slider--image-only {
  max-height: 100vh;
}

.hero-slider--image-only .hero-slider__bg img {
  object-position: center center;
}

/* ============================================================
   TESTIMONIAL STARS
   ============================================================ */

.card-c__stars {
  display: flex;
  gap: 2px;
  color: #F59E0B;
  font-size: 16px;
  line-height: 1;
  margin-bottom: var(--sp-2);
}

/* Testimonial grid — 3 columns desktop */
.testimonial-slide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  align-items: stretch;
}

.testimonial-slide-grid--single {
  grid-template-columns: minmax(0, 480px);
  justify-content: center;
}

@media (max-width: 1024px) {
  .testimonial-slide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .testimonial-slide-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   VMV CARD MIN-HEIGHT (avoid compressed look)
   ============================================================ */

.card-a {
  min-height: 260px;
}


/* ============================================================
   CTA CONTACT META
   ============================================================ */

.cta-contact-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-7);
  margin-top: var(--sp-6);
  flex-wrap: wrap;
}

.cta-contact-meta a {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-medium);
  transition: color var(--ease-fast);
  text-decoration: none;
}

.cta-contact-meta a:hover {
  color: var(--clr-white);
}

.cta-contact-meta svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}


/* ============================================================
   14. HERO SLIDER
   ============================================================ */

.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 860px;
  overflow: hidden;
  background-color: var(--clr-navy);
}

.hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
}

.hero-slider__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Background image */
.hero-slider__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slider__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Gradient overlay — left-heavy for legibility */
.hero-slider__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(27, 62, 114, 0.90) 0%,
    rgba(27, 62, 114, 0.72) 45%,
    rgba(27, 62, 114, 0.28) 100%
  );
}

/* Content */
.hero-slider__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: calc(var(--header-h) + var(--sp-6));
}

.hero-slider__content .container {
  max-width: 760px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-peach);
  margin-bottom: var(--sp-4);
  /* Stagger-in animation */
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.hero-slider__slide.is-active .hero-eyebrow {
  opacity: 1;
  transform: translateY(0);
}

.hero-slider__content h1 {
  font-size: var(--fs-hero-d);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  line-height: var(--lh-tight);
  margin-bottom: var(--sp-5);
  max-width: 680px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease 0.35s, transform 0.7s ease 0.35s;
}

.hero-slider__slide.is-active h1 {
  opacity: 1;
  transform: translateY(0);
}

.hero-slider__content p {
  font-size: clamp(15px, 1.2vw, 18px);
  color: rgba(255, 255, 255, 0.82);
  line-height: var(--lh-relaxed);
  max-width: 560px;
  margin-bottom: var(--sp-7);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease 0.5s, transform 0.7s ease 0.5s;
}

.hero-slider__slide.is-active p {
  opacity: 1;
  transform: translateY(0);
}

.hero-slider__content .btn-group {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease 0.65s, transform 0.6s ease 0.65s;
}

.hero-slider__slide.is-active .btn-group {
  opacity: 1;
  transform: translateY(0);
}

/* Controls row */
.hero-slider__controls {
  position: absolute;
  bottom: var(--sp-7);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

.hero-slider__dots {
  display: flex;
  gap: var(--sp-2);
}

.hero-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: background-color var(--ease-fast), width var(--ease-normal);
  padding: 0;
}

.hero-slider__dot.is-active {
  background-color: var(--clr-white);
  width: 28px;
}

.hero-slider__prev,
.hero-slider__next {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background-color: rgba(255, 255, 255, 0.10);
  color: var(--clr-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--ease-fast), border-color var(--ease-fast);
  flex-shrink: 0;
}

.hero-slider__prev:hover,
.hero-slider__next:hover {
  background-color: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.55);
}

.hero-slider__prev svg,
.hero-slider__next svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* Progress bar at bottom */
.hero-slider__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background-color: var(--clr-green);
  z-index: 10;
  animation: hero-progress 8s linear infinite;
  transform-origin: left;
}

@keyframes hero-progress {
  from { width: 0%; }
  to   { width: 100%; }
}

/* Scroll indicator */
.hero-scroll-hint {
  position: absolute;
  bottom: var(--sp-7);
  right: var(--section-px);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
}

.hero-scroll-hint__line {
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-scroll-hint__line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%   { top: -100%; }
  100% { top: 100%;  }
}

/* Responsive — hero slider */
@media (max-width: 1024px) {
  .hero-slider {
    max-height: 680px;
    min-height: 520px;
  }
  .hero-slider__content .container {
    max-width: 100%;
  }
  .hero-scroll-hint { display: none; }
}

@media (max-width: 767px) {
  .hero-slider {
    height: 100svh;
    max-height: 700px;
    min-height: 520px;
  }
  .hero-slider__content h1 {
    font-size: var(--fs-hero-m);
  }
  .hero-slider__content p {
    font-size: var(--fs-body);
  }
  .hero-slider__controls {
    bottom: var(--sp-5);
    gap: var(--sp-4);
  }
  .hero-slider__prev,
  .hero-slider__next {
    width: 38px;
    height: 38px;
  }
}


/* ============================================================
   15. TESTIMONIAL SLIDER
   ============================================================ */

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-slider__track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slider__slide {
  min-width: 100%;
  box-sizing: border-box;
}

/* Desktop: 2 cards per slide in a grid */
.testimonial-slide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
  padding: var(--sp-2) var(--sp-2) var(--sp-4);
}

/* Slider controls */
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5);
  margin-top: var(--sp-7);
}

.testimonial-slider__dots {
  display: flex;
  gap: var(--sp-2);
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background-color: var(--clr-border);
  border: none;
  cursor: pointer;
  transition: background-color var(--ease-fast), width var(--ease-normal);
  padding: 0;
}

.testimonial-dot.is-active {
  background-color: var(--clr-navy);
  width: 24px;
}

.testimonial-slider__prev,
.testimonial-slider__next {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid var(--clr-border);
  background-color: var(--clr-white);
  color: var(--clr-navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--ease-fast), border-color var(--ease-fast), box-shadow var(--ease-fast);
  flex-shrink: 0;
}

.testimonial-slider__prev:hover,
.testimonial-slider__next:hover {
  background-color: var(--clr-navy);
  border-color: var(--clr-navy);
  color: var(--clr-white);
  box-shadow: var(--shadow-md);
}

.testimonial-slider__prev svg,
.testimonial-slider__next svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* Tablet / Mobile — 1 card per slide */
@media (max-width: 1024px) {
  .testimonial-slide-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   16. HOMEPAGE-SPECIFIC SECTIONS
   ============================================================ */

/* About strip — 2-col text + image */
.about-strip {
  background-color: var(--clr-white);
}

.about-strip__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-strip__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.about-strip__badge {
  position: absolute;
  bottom: var(--sp-5);
  left: var(--sp-5);
  background-color: var(--clr-navy);
  color: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-strip__badge-num {
  font-size: 26px;
  font-weight: var(--fw-bold);
  line-height: 1;
}

.about-strip__badge-label {
  font-size: 11px;
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,0.72);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

/* Industries grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  background-color: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6) var(--sp-5);
  text-align: center;
  transition: box-shadow var(--ease-normal), transform var(--ease-normal), border-color var(--ease-normal);
}

.industry-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(27, 62, 114, 0.2);
}

.industry-item__icon {
  width: 60px;
  height: 60px;
  background-color: rgba(27, 62, 114, 0.06);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.industry-item__icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--clr-navy);
  fill: none;
  stroke-width: 1.5;
}

.industry-item__name {
  font-size: 14px;
  font-weight: var(--fw-semibold);
  color: var(--clr-navy);
  line-height: var(--lh-snug);
}

/* Stats strip variant — navy band */
.stats-navy {
  background-color: var(--clr-navy);
  padding: var(--sp-9) 0;
}

.stats-navy__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stats-navy__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--sp-5) var(--sp-4);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-navy__item:last-child {
  border-right: none;
}

.stats-navy__number {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-2);
}

.stats-navy__suffix {
  color: var(--clr-peach);
}

.stats-navy__label {
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.60);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

/* CTA block — sitewide bottom */
.cta-block-home {
  background: #F8FAFC;
  padding: 80px 0;
  position: relative;
}

.cta-block-home .container {
  background: linear-gradient(135deg, #1B3E72 0%, #24518F 60%, #2D6B47 100%);
  border-radius: 24px;
  padding: 60px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-block-home .container::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

/* CTA content always visible — no scroll-reveal delay below the fold */
.cta-block-home .animate-fade-up {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.cta-block-home__eyebrow {
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-peach);
  margin-bottom: var(--sp-3);
}

.cta-block-home h2 {
  color: var(--clr-white);
  margin-bottom: 20px;
  font-size: clamp(26px, 2.8vw, 38px);
}

.cta-block-home p {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(15px, 1.1vw, 17px);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.75;
}

@media (max-width: 1024px) {
  .cta-block-home .container {
    padding: 50px 48px;
  }
}

@media (max-width: 767px) {
  .cta-block-home {
    padding: 50px 0;
  }
  .cta-block-home .container {
    border-radius: 16px;
    padding: 40px 24px;
  }
}

/* Responsive — homepage */
@media (max-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .stats-navy__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-navy__item:nth-child(2) {
    border-right: none;
  }
  .stats-navy__item:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 767px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .industry-item {
    padding: var(--sp-5) var(--sp-4);
  }
  .stats-navy__item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .stats-navy__item:last-child {
    border-bottom: none;
  }
  .stats-navy__number {
    font-size: clamp(28px, 8vw, 40px);
  }
}


/* ============================================================
   17. INTERACTIVE SOLUTIONS SHOWCASE
   ============================================================ */

.sol-showcase__body {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 50px;
}

.sol-nav {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  flex-shrink: 0;
}

.sol-nav__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--clr-white);
  border: none;
  border-bottom: 1px solid var(--clr-border);
  cursor: pointer;
  text-align: left;
  width: 100%;
  font-family: var(--font-primary);
  position: relative;
  transition: background var(--ease-fast), color var(--ease-fast);
}

.sol-nav__item:last-child { border-bottom: none; }

.sol-nav__item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--clr-green);
  opacity: 0;
  transition: opacity var(--ease-fast);
}

.sol-nav__item.is-active { background: var(--clr-navy); }
.sol-nav__item.is-active::before { opacity: 1; }
.sol-nav__item:not(.is-active):hover { background: var(--clr-bg); }

.sol-nav__num {
  font-size: 11px;
  font-weight: var(--fw-bold);
  color: var(--clr-text-light);
  letter-spacing: 0.08em;
  width: 22px;
  flex-shrink: 0;
  transition: color var(--ease-fast);
}

.sol-nav__label {
  flex: 1;
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: var(--clr-text);
  transition: color var(--ease-fast);
}

.sol-nav__arrow {
  width: 14px; height: 14px;
  stroke: var(--clr-text-light);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
  opacity: 0;
  transition: transform var(--ease-fast), stroke var(--ease-fast), opacity var(--ease-fast);
}

.sol-nav__item.is-active .sol-nav__num,
.sol-nav__item.is-active .sol-nav__label { color: var(--clr-white); }
.sol-nav__item.is-active .sol-nav__arrow { stroke: var(--clr-peach); opacity: 1; transform: translateX(3px); }
.sol-nav__item:not(.is-active):hover .sol-nav__arrow { opacity: 0.5; }
.sol-nav__item:not(.is-active):hover .sol-nav__label { color: var(--clr-navy); }

/* Right panel */
.sol-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sol-panel__img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 340px;
  max-height: 340px;
  background: var(--clr-bg);
  position: relative;
  flex-shrink: 0;
}

.sol-panel__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.35s ease, transform 0.4s ease;
}

.sol-panel__img-wrap.is-transitioning .sol-panel__img {
  opacity: 0;
  transform: scale(1.03);
}

.sol-panel__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-green);
}

.sol-panel__title {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: var(--fw-bold);
  color: var(--clr-navy);
  line-height: 1.25;
  margin: 4px 0 8px;
}

.sol-panel__desc {
  font-size: 15px;
  color: var(--clr-text-light);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 4px;
}

.sol-panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--clr-navy);
  text-decoration: none;
  transition: gap var(--ease-fast), color var(--ease-fast);
}

.sol-panel__cta svg {
  width: 16px; height: 16px;
  stroke: currentColor; fill: none; stroke-width: 2.5;
  flex-shrink: 0;
}

.sol-panel__cta:hover { color: var(--clr-green); gap: 14px; }

/* Tablet: stack vertically, nav becomes horizontal scroll tabs */
@media (max-width: 1024px) {
  .sol-showcase__body {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .sol-nav {
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: none;
    border-radius: 0;
    gap: 0;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .sol-nav::-webkit-scrollbar { display: none; }
  .sol-nav__item {
    flex: 0 0 auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 18px;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    gap: 4px;
    white-space: nowrap;
    min-width: 130px;
  }
  .sol-nav__item + .sol-nav__item { margin-left: 8px; }
  .sol-nav__item::before { display: none; }
  .sol-nav__arrow { display: none; }
  .sol-nav__num { font-size: 10px; }
  .sol-nav__label { font-size: 13px; }
  .sol-nav__item.is-active { border-color: var(--clr-navy); }
  .sol-panel__img-wrap { aspect-ratio: 16/9; }
}

@media (max-width: 767px) {
  .sol-panel__desc { font-size: 15px; }
}


/* ============================================================
   18. TESTIMONIAL CAROUSEL
   ============================================================ */

.t-carousel { position: relative; overflow: hidden; }

.t-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  align-items: stretch;
}

.t-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  background: var(--clr-white);
  border-radius: 18px;
  padding: 28px 26px 24px;
  box-shadow: 0 4px 24px rgba(27, 62, 114, 0.08);
  border: 1px solid var(--clr-border-light);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.t-card__stars {
  color: #F59E0B;
  font-size: 15px;
  letter-spacing: 2px;
  line-height: 1;
}

.t-card__text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--clr-text);
  font-style: italic;
  flex: 1;
  max-width: none;
}

.t-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--clr-border-light);
  margin-top: auto;
}

.t-card__co-tag {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--clr-navy);
  text-align: center;
  line-height: 1.2;
}

.t-card__name {
  display: block;
  font-size: 13px;
  font-weight: var(--fw-semibold);
  color: var(--clr-navy);
  line-height: 1.3;
}

.t-card__role {
  display: block;
  font-size: 12px;
  color: var(--clr-text-light);
  margin-top: 2px;
  line-height: 1.4;
}

/* Controls */
.t-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.t-dots { display: flex; gap: 8px; }

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-border);
  border: none;
  cursor: pointer;
  transition: background var(--ease-fast), width var(--ease-normal);
  padding: 0;
}

.t-dot.is-active {
  background: var(--clr-navy);
  width: 24px;
  border-radius: 4px;
}

.t-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  background: var(--clr-white);
  color: var(--clr-navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease-fast), border-color var(--ease-fast), box-shadow var(--ease-fast);
  flex-shrink: 0;
}

.t-btn svg {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none; stroke-width: 2;
}

.t-btn:hover:not(:disabled) {
  background: var(--clr-navy);
  border-color: var(--clr-navy);
  color: var(--clr-white);
  box-shadow: var(--shadow-md);
}

.t-btn:disabled { opacity: 0.3; cursor: not-allowed; }

@media (max-width: 1024px) {
  .t-card { flex: 0 0 calc((100% - 24px) / 2); }
}

@media (max-width: 767px) {
  .t-card { flex: 0 0 100%; padding: 22px 20px; }
  .t-track { gap: 20px; }
}


/* ============================================================
   MICRO-INTERACTIONS & ENHANCED HOVER STATES
   ============================================================ */

/* All buttons lift slightly on hover */
.btn:hover {
  transform: translateY(-2px);
}

/* Ghost button arrow nudge on hover */
.btn--ghost:hover .arrow,
.btn--ghost:hover svg {
  transform: translateX(4px);
}

/* Card A lift on hover */
.card-a {
  transition: transform var(--ease-normal), box-shadow var(--ease-normal);
}

.card-a:hover {
  transform: translateY(-4px);
}

/* Form inputs — focus glow micro-interaction */
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--clr-navy) !important;
  box-shadow: 0 0 0 3px rgba(27, 62, 114, 0.12);
  transition: border-color 0.2s, box-shadow 0.2s;
}

/* Animate scale in — for modal-like reveals */
.animate-scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animate-scale-in.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Section tag pill hover */
.section-tag {
  transition: background var(--ease-fast), color var(--ease-fast);
}

/* Footer links micro-interaction */
.footer-col__link {
  position: relative;
  padding-left: 0;
  transition: color var(--ease-fast), padding-left var(--ease-fast);
}

.footer-col__link:hover {
  padding-left: 6px;
  color: var(--clr-white);
}


/* ============================================================
   CTA TRUST BAR
   ============================================================ */

.cta-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin: 24px auto 32px;
  max-width: 700px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  overflow: hidden;
}

.cta-trust-bar__item {
  flex: 1;
  min-width: 100px;
  padding: 16px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.cta-trust-bar__item strong {
  display: block;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  line-height: 1;
}

.cta-trust-bar__item span {
  font-size: 11px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
}

.cta-trust-bar__divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .cta-trust-bar {
    border-radius: 10px;
  }
  .cta-trust-bar__item {
    min-width: 80px;
    padding: 12px 8px;
  }
  .cta-trust-bar__divider {
    height: 28px;
  }
}


/* ============================================================
   PERFORMANCE — GPU COMPOSITING HINTS
   ============================================================ */

/* Promote animated elements to GPU composite layer */
.animate-fade-up,
.animate-fade-in,
.animate-scale-in {
  will-change: opacity, transform;
}

/* Once visible, release the will-change hint */
.animate-fade-up.is-visible,
.animate-fade-in.is-visible,
.animate-scale-in.is-visible {
  will-change: auto;
}

/* Prevent layout shift on images without explicit dimensions */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Contain paint to avoid repaints outside sections */
.site-header,
.site-footer,
.hero-slider {
  contain: layout style;
}

/* Smooth scroll for anchor links */
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}
