/* ============================================================
   BUILD ME APP — Design Tokens
   tokens.css — import this first in every page
   ============================================================ */

/* ----------------------------------------------------------
   FONTS
   Self-hosted Axiforma with font-display: swap
   ---------------------------------------------------------- */
@font-face {
  font-family: 'Axiforma';
  src: url('/fonts/Axiforma-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Axiforma';
  src: url('/fonts/Axiforma-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Axiforma';
  src: url('/fonts/Axiforma-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Axiforma';
  src: url('/fonts/Axiforma-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Axiforma';
  src: url('/fonts/Axiforma-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ----------------------------------------------------------
   COLOUR TOKENS
   ---------------------------------------------------------- */
:root {
  /* Brand */
  --blue:         #3461FF;
  --blue-light:   #F1F4FF;
  --blue-mid:     #DCE4FF;
  --blue-dark:    #1A35CC;
  --blue-hover:   #2550EE;

  /* Neutrals */
  --black:        #1D1D1F;
  --gray-900:     #2C2C2E;
  --gray-700:     #48484A;
  --gray-500:     #8E8E93;
  --gray-300:     #D1D1D6;
  --gray-100:     #F5F5F7;
  --white:        #FFFFFF;

  /* Semantic */
  --success:      #16A34A;
  --warning:      #F59E0B;
  --error:        #EF4444;

  /* ----------------------------------------------------------
     TYPOGRAPHY
     ---------------------------------------------------------- */
  --font:         'Axiforma', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Scale */
  --text-xs:      0.75rem;    /* 12px */
  --text-sm:      0.875rem;   /* 14px */
  --text-base:    1rem;       /* 16px */
  --text-lg:      1.125rem;   /* 18px */
  --text-xl:      1.25rem;    /* 20px */
  --text-2xl:     1.5rem;     /* 24px */
  --text-3xl:     1.875rem;   /* 30px */
  --text-4xl:     2.25rem;    /* 36px */
  --text-5xl:     3rem;       /* 48px */
  --text-6xl:     3.75rem;    /* 60px */
  --text-7xl:     4.5rem;     /* 72px */

  /* Line heights */
  --leading-tight:  1.15;
  --leading-snug:   1.3;
  --leading-normal: 1.6;
  --leading-relaxed:1.75;

  /* ----------------------------------------------------------
     SPACING
     ---------------------------------------------------------- */
  --space-1:   0.25rem;   /* 4px  */
  --space-2:   0.5rem;    /* 8px  */
  --space-3:   0.75rem;   /* 12px */
  --space-4:   1rem;      /* 16px */
  --space-5:   1.25rem;   /* 20px */
  --space-6:   1.5rem;    /* 24px */
  --space-7:   1.75rem;   /* 28px */
  --space-8:   2rem;      /* 32px */
  --space-10:  2.5rem;    /* 40px */
  --space-12:  3rem;      /* 48px */
  --space-16:  4rem;      /* 64px */
  --space-20:  5rem;      /* 80px */
  --space-24:  6rem;      /* 96px */
  --space-32:  8rem;      /* 128px */

  /* ----------------------------------------------------------
     LAYOUT
     ---------------------------------------------------------- */
  --container:     1280px;
  --container-sm:  720px;
  --container-md:  960px;

  /* ----------------------------------------------------------
     BORDERS & RADIUS
     ---------------------------------------------------------- */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-2xl:  24px;
  --radius-full: 9999px;

  /* ----------------------------------------------------------
     SHADOWS
     ---------------------------------------------------------- */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.04);

  /* ----------------------------------------------------------
     TRANSITIONS
     ---------------------------------------------------------- */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --duration:   200ms;

  /* ----------------------------------------------------------
     NAV
     ---------------------------------------------------------- */
  --nav-height: 68px;
}
/* ============================================================
   BUILD ME APP — Reset & Base
   base.css
   ============================================================ */

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  font-weight: 400;
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: var(--leading-tight);
  color: var(--black);
}

mark {
  background: none !important;
  color: var(--blue);
}

/* ----------------------------------------------------------
   TYPOGRAPHY SCALE
   ---------------------------------------------------------- */
.text-xs   { font-size: var(--text-xs);   }
.text-sm   { font-size: var(--text-sm);   }
.text-base { font-size: var(--text-base); }
.text-lg   { font-size: var(--text-lg);   }
.text-xl   { font-size: var(--text-xl);   }
.text-2xl  { font-size: var(--text-2xl);  }
.text-3xl  { font-size: var(--text-3xl);  }
.text-4xl  { font-size: var(--text-4xl);  }
.text-5xl  { font-size: var(--text-5xl);  }
.text-6xl  { font-size: var(--text-6xl);  }
.text-7xl  { font-size: var(--text-7xl);  }

/* ----------------------------------------------------------
   LAYOUT UTILITIES
   ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

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

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

/* ----------------------------------------------------------
   SECTION SPACING
   ---------------------------------------------------------- */
.section {
  padding-block: var(--space-24);
}

.section--sm {
  padding-block: var(--space-16);
}

.section--lg {
  padding-block: var(--space-32);
}

/* ----------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background var(--duration) var(--ease),
              transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
  white-space: nowrap;
  text-align: center;
}

.btn:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--gray-300);
}

.btn-secondary:hover {
  border-color: var(--black);
  transform: translateY(-1px);
}

.btn-ghost {
  background: var(--blue-light);
  color: var(--blue);
}

.btn-ghost:hover {
  background: var(--blue-mid);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: var(--text-base);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: var(--text-xs);
}

/* ----------------------------------------------------------
   TAGS / PILLS
   ---------------------------------------------------------- */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 500;
  background: var(--blue-light);
  color: var(--blue-dark);
}

/* ----------------------------------------------------------
   SECTION EYEBROW
   ---------------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--space-3);
}

/* ----------------------------------------------------------
   SECTION HEADINGS
   ---------------------------------------------------------- */
.section-title {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  font-weight: 600;
  line-height: var(--leading-tight);
  color: var(--black);
}

.section-subtitle {
  font-size: var(--text-base);
  color: var(--gray-700);
  line-height: var(--leading-relaxed);
}

/* ----------------------------------------------------------
   CARDS
   ---------------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* ----------------------------------------------------------
   DIVIDER
   ---------------------------------------------------------- */
.divider {
  height: 1px;
  background: var(--gray-300);
  border: none;
}

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

/* Skip to content */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  padding: var(--space-2) var(--space-4);
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-md);
  font-weight: 600;
  z-index: 9999;
  transition: top 0.1s;
}

.skip-link:focus {
  top: var(--space-4);
}

/* ----------------------------------------------------------
   REDUCED MOTION
   ---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ----------------------------------------------------------
   RESPONSIVE BREAKPOINTS
   ---------------------------------------------------------- */
/* Mobile:  < 640px   — default  */
/* Tablet:  >= 768px  — @media (min-width: 768px)  */
/* Desktop: >= 1024px — @media (min-width: 1024px) */
/* Wide:    >= 1280px — @media (min-width: 1280px) */

@media (min-width: 768px) {
  .container {
    padding-inline: var(--space-8);
  }
}

@media (max-width: 767px) {
  .eyebrow {
    display: block;
    width: 100%;
    text-align: center;
  }
  .section-title,
  .section-subtitle {
    text-align: center;
  }
}
/* ============================================================
   BUILD ME APP — Navigation
   nav.css
   ============================================================ */

/* ----------------------------------------------------------
   TOP BAR (email / phone / locations)
   ---------------------------------------------------------- */
.topbar {
  background: var(--blue);
  color: var(--white);
  font-size: var(--text-xs);
  padding-block: var(--space-2);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.topbar__left a {
  color: var(--white);
  transition: color var(--duration) var(--ease);
}

.topbar__left a:hover {
  color: var(--white);
}

.topbar__social {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.topbar__social a {
  display: flex;
  align-items: center;
  color: var(--white);
  transition: color var(--duration) var(--ease);
}

.topbar__social a:hover {
  color: var(--white);
}

@media (max-width: 767px) {
  .topbar {
    display: none;
  }
}

/* ----------------------------------------------------------
   MAIN NAV
   ---------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: box-shadow var(--duration) var(--ease);
}

.nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  width: 100%;
}

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

.nav__logo img {
  height: 32px;
  width: auto;
}

/* Desktop links */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav__link {
  position: relative;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-md);
  transition: color var(--duration) var(--ease),
              background var(--duration) var(--ease);
}

.nav__link:hover {
  color: var(--black);
  background: var(--gray-100);
}

.nav__link.active {
  color: var(--blue);
}

/* Services dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + var(--space-2));
  left: 50%;
  transform: translateX(-50%);
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--space-2);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}

.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: var(--space-2);
}

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

.nav__dropdown-item {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-lg);
  transition: background var(--duration) var(--ease),
              color var(--duration) var(--ease);
}

.nav__dropdown-item:hover {
  background: var(--blue-light);
  color: var(--blue);
}

/* CTA button */
.nav__cta {
  flex-shrink: 0;
}

/* Hamburger (mobile) */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: var(--radius-full);
  transition: transform var(--duration) var(--ease),
              opacity var(--duration) var(--ease);
}

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

/* ----------------------------------------------------------
   MOBILE DRAWER
   ---------------------------------------------------------- */
.nav__mobile {
  position: fixed;
  inset: 0;
  top: var(--nav-height);
  background: var(--white);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transform: translateX(100%);
  transition: transform 300ms var(--ease);
  z-index: 99;
  overflow-y: auto;
}

.nav__mobile.open {
  transform: translateX(0);
}

.nav__mobile-link {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--black);
  border-radius: var(--radius-lg);
  transition: background var(--duration) var(--ease);
}

.nav__mobile-link:hover {
  background: var(--gray-100);
}

.nav__mobile-divider {
  height: 1px;
  background: var(--gray-100);
  margin-block: var(--space-2);
}

.nav__mobile-sub {
  padding-left: var(--space-4);
}

.nav__mobile-sub .nav__mobile-link {
  font-size: var(--text-base);
  color: var(--gray-700);
}

.nav__mobile-cta {
  margin-top: var(--space-4);
}

.nav__mobile-cta .btn {
  width: 100%;
  justify-content: center;
}

/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 1023px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }
}
/* ============================================================
   BUILD ME APP — Footer
   footer.css
   ============================================================ */

.footer {
  background: var(--black);
  color: var(--gray-300);
  padding-top: var(--space-20);
  padding-bottom: var(--space-10);
}

/* ----------------------------------------------------------
   TOP SECTION — Logo + tagline + social
   ---------------------------------------------------------- */
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid var(--gray-900);
}

.footer__brand {}

.footer__logo {
  height: 30px;
  width: auto;
  margin-bottom: var(--space-4);
}

.footer__tagline {
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: var(--leading-relaxed);
  max-width: 28ch;
  margin-bottom: var(--space-6);
}

.footer__social {
  display: flex;
  gap: var(--space-3);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--gray-900);
  color: var(--gray-300);
  font-size: var(--text-sm);
  transition: background var(--duration) var(--ease),
              color var(--duration) var(--ease);
}

.footer__social-link:hover {
  background: var(--blue);
  color: var(--white);
}

/* ----------------------------------------------------------
   NAV COLUMNS
   ---------------------------------------------------------- */
.footer__col-title {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-4);
}

.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__col-link {
  font-size: var(--text-sm);
  color: var(--gray-500);
  transition: color var(--duration) var(--ease);
}

.footer__col-link:hover {
  color: var(--white);
}

/* ----------------------------------------------------------
   BOTTOM SECTION — Addresses + legal
   ---------------------------------------------------------- */
.footer__bottom {
  padding-top: var(--space-10);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.footer__locations {
  display: flex;
  gap: var(--space-12);
  flex-wrap: wrap;
}

.footer__location {}

.footer__location-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: var(--space-1);
}

.footer__location-address {
  font-size: var(--text-sm);
  color: var(--gray-300);
  line-height: var(--leading-relaxed);
}

.footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  padding-top: var(--space-6);
  border-top: 1px solid var(--gray-900);
}

.footer__copyright {
  font-size: var(--text-xs);
  color: var(--gray-500);
}

.footer__legal-links {
  display: flex;
  gap: var(--space-6);
}

.footer__legal-link {
  font-size: var(--text-xs);
  color: var(--gray-500);
  transition: color var(--duration) var(--ease);
}

.footer__legal-link:hover {
  color: var(--white);
}

/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 1023px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 639px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer__locations {
    flex-direction: column;
    gap: var(--space-6);
  }

  .footer__legal {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ============================================================
   BUILD ME APP — Shared Component Styles
   components.css — import on any page that uses these
   ============================================================ */

/* ----------------------------------------------------------
   SCROLL REVEAL
   Add data-reveal to any element to fade it in on scroll.
   Optional: data-reveal-delay="100" (ms, applied as inline style)
   ---------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------------------------
   FAQ ACCORDION
   ---------------------------------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--gray-300);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-6);
  text-align: left;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--black);
  background: var(--white);
  cursor: pointer;
  transition: background var(--duration) var(--ease);
}

.faq-question:hover {
  background: var(--gray-100);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--duration) var(--ease),
              background var(--duration) var(--ease);
}

.faq-icon svg {
  width: 10px;
  height: 10px;
  color: var(--blue);
  transition: transform var(--duration) var(--ease);
}

.faq-item.open .faq-icon {
  background: var(--blue);
}

.faq-item.open .faq-icon svg {
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 var(--space-6) var(--space-6);
  font-size: var(--text-base);
  color: var(--gray-700);
  line-height: var(--leading-relaxed);
}

/* ----------------------------------------------------------
   CTA BANNER — Used across multiple pages
   ---------------------------------------------------------- */
.cta-banner {
  background: var(--blue);
  border-radius: var(--radius-2xl);
  padding: var(--space-16) var(--space-12);
  text-align: center;
  color: var(--white);
}

.cta-banner__title {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--white);
}

.cta-banner__sub {
  font-size: var(--text-lg);
  color: #CDD6FF;
  margin-bottom: var(--space-8);
  max-width: 48ch;
  margin-inline: auto;
}

.cta-banner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.cta-banner .btn-primary {
  background: var(--white);
  color: var(--blue);
}

.cta-banner .btn-primary:hover {
  background: var(--blue-light);
}

.cta-banner .btn-secondary {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

.cta-banner .btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* ----------------------------------------------------------
   REVIEW BADGE ROW — Clutch / Google / GoodFirms / DesignRush
   ---------------------------------------------------------- */
.review-bar {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.review-bar__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
  white-space: nowrap;
}

.review-bar__logos {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.review-bar__logo {
  height: 28px;
  width: auto;
  opacity: 0.7;
  transition: opacity var(--duration) var(--ease);
  filter: grayscale(1);
}

.review-bar__logo:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* ----------------------------------------------------------
   STAT STRIP — "20+ Products | All 5-Star | ..."
   ---------------------------------------------------------- */
.stat-strip {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.stat-strip__item {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.stat-strip__number {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.stat-strip__label {
  font-size: var(--text-sm);
  color: var(--gray-500);
}

.stat-strip__divider {
  width: 1px;
  height: 40px;
  background: var(--gray-300);
}

@media (max-width: 639px) {
  .cta-banner {
    padding: var(--space-10) var(--space-6);
  }

  .stat-strip__divider {
    display: none;
  }
}
