/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: 1.5px solid transparent;
  width: 100%;
  transition: all 0.2s ease;
}

@media (min-width: 768px) {
  .btn { width: auto; }
}

.btn--primary {
  background-color: var(--color-blue);
  color: var(--color-white);
}
.btn--primary:hover, .btn--primary:focus {
  background-color: var(--color-navy);
  color: var(--color-white);
  box-shadow: var(--shadow-hover);
}

.btn--secondary {
  background-color: var(--color-white);
  color: var(--color-blue);
  border-color: var(--color-blue);
}
.btn--secondary:hover, .btn--secondary:focus {
  background-color: var(--color-bg);
}

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

.btn--gold {
  background-color: var(--color-gold);
  color: var(--color-navy);
  border-color: var(--color-gold);
  font-weight: 700;
}
.btn--gold:hover, .btn--gold:focus {
  background-color: #E09600; /* slightly darker gold */
}

/* ── PILLS/BADGES ── */
.pill {
  display: inline-flex;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: var(--space-sm);
}
.pill--blue {
  background-color: rgba(26, 86, 255, 0.12);
  color: var(--color-blue);
}
.pill--gold {
  background-color: rgba(240, 165, 0, 0.15);
  color: #92600A;
}
.pill--green {
  background-color: rgba(5, 150, 105, 0.12);
  color: var(--color-green);
}

/* ================================================================
   NAVBAR
   Replace the entire existing navbar block in components.css
   ================================================================ */

/* ── Shell ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 72px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  z-index: 100;
  transition: height 0.3s ease;
}
.navbar.is-scrolled { height: 56px; }

/* ── Container
   Uses your existing .container class for max-width/padding.
   We only need flex alignment here.
── */
.navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  height: 100%;                /* fills the 72px shell */
}

/* ── Logo ── */
.navbar__logo {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--color-navy);
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}
.navbar__logo span { color: var(--color-blue); }

/* ── Desktop nav — hidden until 1200px ── */
.navbar__links {
  display: none;
  align-items: center;
  gap: 2px;
  height: 100%;                /* children can stretch to full bar height */
}
@media (min-width: 1200px) {
  .navbar__links { display: flex; }
}

/* ── Shared link / button style ── */
.navbar__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 100%;
  padding: 0 var(--space-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-muted);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;  /* reserve space — avoids layout shift */
  transition: color 0.2s ease, border-color 0.2s ease;
}
.navbar__link:hover,
.navbar__link:focus {
  color: var(--color-navy);
  border-bottom-color: var(--color-blue);
  outline: none;
}
.navbar__link--active {
  color: var(--color-navy);
  border-bottom-color: var(--color-blue);
}

/* ── Dropdown chevron ── */
.navbar__chevron {
  font-size: 9px;
  line-height: 1;
  pointer-events: none;
  transition: transform 0.2s ease;
}
.navbar__dropdown-wrapper:hover .navbar__chevron,
.navbar__dropdown-wrapper:focus-within .navbar__chevron {
  transform: rotate(180deg);
}

/* ── Desktop CTA ── */
.navbar__cta-btn {
  flex-shrink: 0;
  padding: 8px 18px;
  font-size: 14px;
  white-space: nowrap;
}
@media (max-width: 1199px) {
  .navbar__cta-btn { display: none; }
}

/* ── Hamburger — mobile only ── */
.navbar__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--color-navy);
  background: none;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.navbar__hamburger:hover,
.navbar__hamburger:focus {
  background: var(--color-bg);
  outline: none;
}
@media (min-width: 1200px) {
  .navbar__hamburger { display: none; }
}

/* ── Spacer pushes <main> below fixed bar ── */
.navbar__spacer { height: 72px; }

/* ================================================================
   DESKTOP DROPDOWN
   ================================================================ */

.navbar__dropdown-wrapper {
  position: relative;
  display: flex;
  align-items: stretch;        /* trigger fills full navbar height */
  height: 100%;
}

/* blue underline on the trigger while dropdown is visible */
.navbar__dropdown-wrapper:hover .navbar__link,
.navbar__dropdown-wrapper:focus-within .navbar__link {
  color: var(--color-navy);
  border-bottom-color: var(--color-blue);
}

.navbar__dropdown {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 460px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-blue);
  border-radius: 0 0 var(--radius-card) var(--radius-card);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
  padding: var(--space-lg) var(--space-xl);
  /* closed state */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 200;
}
.navbar__dropdown-wrapper:hover .navbar__dropdown,
.navbar__dropdown-wrapper:focus-within .navbar__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.navbar__dropdown-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  margin: 0 0 var(--space-md);
}

/* 2 × 4 grid for Services */
.navbar__dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 8px;
}

/* single-column for Resources */
.navbar__dropdown-grid--single {
  grid-template-columns: 1fr;
}

.navbar__dropdown-link {
  display: flex;
  align-items: center;
  padding: 9px var(--space-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--color-navy);
  text-decoration: none;
  border-radius: var(--radius-btn);
  transition: background 0.15s ease, color 0.15s ease;
}
.navbar__dropdown-link:hover,
.navbar__dropdown-link:focus {
  background: var(--color-bg);
  color: var(--color-blue);
  outline: none;
}

/* ================================================================
   MOBILE OVERLAY
   Sits as a sibling of <header> in the DOM so position:fixed
   covers the full viewport without being clipped by the header.
   ================================================================ */

.navbar__mobile {
  position: fixed;
  inset: 0;
  background: var(--color-navy);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: var(--space-lg);
  overflow-y: auto;
  /* closed by default */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}
.navbar__mobile.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ── Mobile header row ── */
.navbar__mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-2xl);
  flex-shrink: 0;
}
.navbar__mobile-logo {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--color-white);
  text-decoration: none;
}
.navbar__mobile-logo span { color: var(--color-gold); }

.navbar__mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.navbar__mobile-close:hover,
.navbar__mobile-close:focus {
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}

/* ── Mobile links
   Explicit colour on every state — nothing can bleed into the
   navy background and become invisible.
── */
.navbar__mobile-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--space-lg) 0;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);           /* always white */
  text-decoration: none;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}
.navbar__mobile-link:hover,
.navbar__mobile-link:focus {
  color: var(--color-gold);            /* visible gold on hover */
  outline: none;
}

/* ── Accordion wrapper ── */
.navbar__mobile-accordion {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
/* Button inside accordion shares .navbar__mobile-link but
   removes its own bottom border (wrapper provides it) */
.navbar__mobile-link--accordion {
  border-bottom: none;
}
.navbar__mobile-accordion.is-open .navbar__mobile-link--accordion {
  color: var(--color-gold);
}

/* ── Chevron icon ── */
.navbar__mobile-chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.navbar__mobile-accordion.is-open .navbar__mobile-chevron {
  transform: rotate(180deg);
}

/* ── Sub-menu panel ── */
.navbar__mobile-sub {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
  padding-left: var(--space-md);
}
/* JS removes [hidden] and adds .is-open on the wrapper */
.navbar__mobile-accordion.is-open .navbar__mobile-sub {
  max-height: 600px;
}

.navbar__mobile-sub-link {
  display: block;
  padding: 10px var(--space-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  border-radius: var(--radius-btn);
  transition: color 0.2s ease, background 0.2s ease;
}
.navbar__mobile-sub-link:hover,
.navbar__mobile-sub-link:focus {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

/* ── Mobile CTA ── */
.navbar__mobile-cta {
  display: block;
  text-align: center;
  margin-top: var(--space-xl);
  padding: var(--space-md) var(--space-lg);
  font-size: 16px;
  flex-shrink: 0;
}

/* ── COMPONENT GRIDS ── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1200px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ================================================================
   HERO COMPONENT
   Add this block to /assets/css/components.css
   ================================================================ */

/* ── Keyframe animations ── */
@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Section shell ── */
.hero {
  position: relative;
  background-color: var(--color-white);
  overflow: hidden;
  /* Mobile: auto height, generous vertical padding */
  padding: var(--space-4xl) 0 0;
}

@media (min-width: 768px) {
  .hero {
    padding: var(--space-4xl) 0 0;
  }
}

@media (min-width: 1200px) {
  .hero {
    /* 90vh minimum on desktop, grows with content */
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-4xl) 0 0;
  }
}

/* ── Dark variant ── */
.hero--dark {
  background-color: var(--color-navy);
}

/* ── Dot-grid background texture ── */
.hero__bg-texture {
  position: absolute;
  inset: 0;
  /* subtle dot grid using radial-gradient */
  background-image: radial-gradient(circle, rgba(26, 86, 255, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.hero--dark .hero__bg-texture {
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
}

/* ── Container: two-column grid on desktop ── */
.hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;    /* single column mobile-first */
  gap: var(--space-2xl);
  align-items: center;
  /* bottom padding leaves room for the wave */
  padding-bottom: var(--space-4xl);
}

@media (min-width: 1200px) {
  .hero__container {
    grid-template-columns: 55fr 45fr;  /* text 55% | visual 45% */
    gap: var(--space-3xl);
  }

  /* When there's no image, centre the single text column */
  .hero--no-image .hero__container {
    grid-template-columns: 1fr;
    max-width: 780px;
    text-align: center;
  }

  .hero--no-image .hero__subheadline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero--no-image .hero__ctas {
    justify-content: center;
  }
}

/* ── Text column ── */
.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

/* ── Badge pill ── */
.hero__badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 6px 14px;
  background-color: rgba(26, 86, 255, 0.10);
  color: var(--color-blue);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  border-radius: 20px;
  letter-spacing: 0.01em;
  /* animation: slot 1 */
  opacity: 0;
  animation: hero-fade-up 0.5s ease forwards;
  animation-delay: 0.1s;
}

.hero--dark .hero__badge {
  background-color: rgba(255, 255, 255, 0.10);
  color: var(--color-gold);
}

/* ── Headline ── */
.hero__headline {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  /* fluid: 2.5rem at mobile → 4rem at wide desktop */
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-navy);
  margin: 0;
  /* animation: slot 2 */
  opacity: 0;
  animation: hero-fade-up 0.6s ease forwards;
  animation-delay: 0.25s;
}

.hero--dark .hero__headline {
  color: var(--color-white);
}

/* ── Subheadline ── */
.hero__subheadline {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-muted);
  max-width: 500px;
  margin: 0;
  /* animation: slot 3 */
  opacity: 0;
  animation: hero-fade-up 0.6s ease forwards;
  animation-delay: 0.45s;
}

.hero--dark .hero__subheadline {
  color: rgba(255, 255, 255, 0.70);
}

/* ── CTA row ── */
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  /* animation: slot 4 */
  opacity: 0;
  animation: hero-fade-up 0.6s ease forwards;
  animation-delay: 0.65s;
}

/* Ghost button style for dark hero */
.hero--dark .hero__cta-ghost {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.35);
}
.hero--dark .hero__cta-ghost:hover,
.hero--dark .hero__cta-ghost:focus {
  border-color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.08);
}

/* ── Visual column ── */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  /* animation: same timing as CTAs so everything lands together */
  opacity: 0;
  animation: hero-fade-up 0.7s ease forwards;
  animation-delay: 0.45s;
}

/* ── Image frame with decorative accent ── */
.hero__image-frame {
  position: relative;
  width: 100%;
  max-width: 560px;
}

/* Decorative ring/blob behind the image */
.hero__image-accent {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 80%;
  height: 80%;
  background: linear-gradient(135deg, rgba(26, 86, 255, 0.12), rgba(240, 165, 0, 0.08));
  border-radius: 50% 40% 60% 40%;
  z-index: 0;
  filter: blur(2px);
}

.hero--dark .hero__image-accent {
  background: linear-gradient(135deg, rgba(26, 86, 255, 0.25), rgba(240, 165, 0, 0.15));
}

.hero__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  object-fit: cover;
}

/* ── SVG Wave ── */
.hero__wave {
  position: relative;          /* normal flow — sits at the bottom of the section */
  z-index: 2;
  line-height: 0;              /* kills any gap caused by inline SVG baseline */
  margin-top: auto;
}

.hero__wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* On dark hero, the wave fill is the next section's background.
   If the section below alternates to --color-white, swap the fill via a modifier.
   Default fill (var(--color-bg)) is set inline in the PHP SVG path. */
.hero--wave-white .hero__wave svg path {
  fill: var(--color-white);
}

/* ================================================================
   SERVICE CARD COMPONENT
   Add this block to /assets/css/components.css
   ================================================================ */

/* ── Card shell (the <a> tag) ── */
.service-card {
  /* Layout */
  display: flex;
  flex-direction: column;
  gap: var(--space-md);

  /* Spacing — mobile first: 24px */
  padding: var(--space-lg);          /* --space-lg = 24px */

  /* Appearance */
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: 2px solid transparent; /* reserve space — prevents layout shift on featured */
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);

  /* Reset anchor styles */
  text-decoration: none;
  color: inherit;

  /* Lift transition */
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;

  /* Ensure footer is always pushed to the bottom */
  height: 100%;
}

/* Desktop padding: 32px */
@media (min-width: 768px) {
  .service-card {
    padding: var(--space-xl);        /* --space-xl = 32px */
  }
}

/* ── Hover / focus state ── */
.service-card:hover,
.service-card:focus {
  transform: translateY(-4px);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.06),
    0 12px 32px rgba(0, 0, 0, 0.10);
  outline: none;
}

/* Visible focus ring for keyboard users (doesn't break layout) */
.service-card:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 3px;
}

/* ── Featured modifier — 2px blue top border ── */
.service-card--featured {
  border-top-color: var(--color-blue);
}

/* ── Icon container ── */
.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: rgba(26, 86, 255, 0.10);  /* --color-blue at 10% */
  border-radius: 12px;
  color: var(--color-blue);
  /* SVG children inherit this color via currentColor */
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
  flex-shrink: 0;
}

/* Emoji fallback — sized to feel balanced inside the 48px box */
.service-card__icon-emoji {
  font-size: 22px;
  line-height: 1;
}

/* ── Body ── */
.service-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);              /* --space-xs = 4px — tight coupling of title/desc */
  flex: 1;                           /* pushes footer to bottom */
}

/* ── Title ── */
.service-card__title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: var(--color-navy);
  margin: 0;
  transition: color 0.2s ease;
}

.service-card:hover .service-card__title,
.service-card:focus .service-card__title {
  color: var(--color-blue);
}

/* ── Description ── */
.service-card__description {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-muted);
  margin: 0;
  margin-top: var(--space-xs);       /* 8px (2 × --space-xs = 8px) */
}

/* ── Footer "Learn more →" ── */
.service-card__footer {
  margin-top: var(--space-sm);       /* --space-sm = 8px */
  flex-shrink: 0;
}

.service-card__learn-more {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-blue);
  text-decoration: none;
  /* No underline at rest */
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.service-card:hover .service-card__learn-more,
.service-card:focus .service-card__learn-more {
  border-bottom-color: var(--color-blue);  /* underline reveals on hover */
}

/* CASE STUDY CARD */
.case-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.2s ease;
}
.case-card:hover, .case-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.case-card__img-ph {
  height: 200px;
  background-color: var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-size: 14px;
}
.case-card__body {
  padding: var(--space-lg);
}
.case-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-xs);
}
.case-card__tags {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}
.case-card__stat {
  font-size: 14px;
  color: var(--color-text);
  font-weight: 500;
}

/* STATS BAR */
.stats {
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1200px) {
  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stats__item {
  padding: var(--space-lg);
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.stats__item:nth-child(odd) {
  border-right: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 1200px) {
  .stats__item {
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,0.1);
  }
  .stats__item:last-child {
    border-right: none;
  }
}
.stats__num {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: var(--space-xs);
  font-family: 'Inter', sans-serif;
}
.stats__num span {
  color: var(--color-gold);
}
.stats__label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

/* PROCESS STEPS */
.stepper {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
@media (min-width: 768px) {
  .stepper--horizontal {
    flex-direction: row;
  }
}
.stepper__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 1;
}
@media (min-width: 768px) {
  .stepper--horizontal .stepper__item {
    align-items: center;
    text-align: center;
  }
}
.stepper__circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-blue);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  z-index: 2;
  position: relative;
}
.stepper__connector {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 2px;
  height: calc(100% + var(--space-lg));
  background-image: linear-gradient(to bottom, var(--color-border) 40%, rgba(255,255,255,0) 20%);
  background-position: left;
  background-size: 2px 10px;
  background-repeat: repeat-y;
  z-index: 1;
}
@media (min-width: 768px) {
  .stepper--horizontal .stepper__connector {
    top: 20px;
    left: 50%;
    width: calc(100% + var(--space-lg));
    height: 2px;
    background-image: linear-gradient(to right, var(--color-border) 40%, rgba(255,255,255,0) 20%);
    background-position: top;
    background-size: 10px 2px;
    background-repeat: repeat-x;
  }
}
.stepper__item:last-child .stepper__connector {
  display: none;
}
.stepper__content {
  padding-left: 56px;
  margin-top: -36px;
}
@media (min-width: 768px) {
  .stepper--horizontal .stepper__content {
    padding-left: 0;
    margin-top: 0;
  }
}
.stepper__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: var(--space-xs);
}
.stepper__desc {
  font-size: 13px;
  color: var(--color-muted);
}

/* TESTIMONIAL */
.testimonial {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: var(--space-lg);
}
.testimonial__stars {
  color: var(--color-gold);
  font-size: 14px;
  margin-bottom: var(--space-sm);
}
.testimonial__quote {
  font-size: 15px;
  font-style: italic;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}
.testimonial__author {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-navy);
}
.testimonial__company {
  font-size: 13px;
  color: var(--color-muted);
}

/* CTA BAND */
.cta-band {
  background-color: var(--color-blue);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band__inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-band__title {
  margin-bottom: var(--space-sm);
  color: var(--color-white);
}
.cta-band__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-lg);
}
.cta-band__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  justify-content: center;
}
@media (min-width: 768px) {
  .cta-band__actions {
    flex-direction: row;
  }
}

/* FOOTER */
.footer {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: var(--space-2xl) 0 var(--space-xl);
}
.footer__grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}
@media (min-width: 768px) {
  .footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer__logo-area {
  margin-bottom: var(--space-sm);
}
.footer__logo {
  font-size: 16px;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  margin-bottom: var(--space-xs);
}
.footer__logo span {
  color: var(--color-gold);
}
.footer__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-md);
}
.footer__heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-bottom: var(--space-sm);
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.footer__link {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.footer__link:hover {
  color: var(--color-white);
}
.footer__bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__bottom-links {
  display: flex;
  gap: var(--space-md);
}
.footer__bottom-links a {
  color: inherit;
}
.footer__bottom-links a:hover {
  color: var(--color-white);
}
