@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

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

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

body {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.7;
  color: #1a1040;
  background-color: #fdfcff;
  overflow-x: hidden;
}

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

ul, ol {
  list-style: none;
}

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

button, input, textarea, select {
  font: inherit;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: #1a1040;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.8vw, 3rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.05rem, 2vw, 1.3rem); }
h5 { font-size: 1rem; font-weight: 600; }

p {
  color: #3d3460;
  max-width: 68ch;
}

p.wide { max-width: 82ch; }
p.narrow { max-width: 50ch; }

strong { font-weight: 600; color: #1a1040; }

/* ============================================
   COLOUR TOKENS
   ============================================ */
:root {
  --coral:   #ff5c47;
  --yellow:  #ffd640;
  --indigo:  #1a1040;
  --mint:    #3ecf8e;
  --white:   #fdfcff;
  --ink:     #1a1040;
  --mist:    #f0eeff;
  --slate:   #3d3460;
  --border:  #e2dcf5;
  --shadow-sm: 0 2px 10px rgba(26,16,64,0.07);
  --shadow-md: 0 6px 28px rgba(26,16,64,0.11);
  --shadow-lg: 0 16px 56px rgba(26,16,64,0.14);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 48px;
}

/* ============================================
   CONTAINER
   ============================================ */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 5vw, 3rem);
  padding-right: clamp(1.25rem, 5vw, 3rem);
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 252, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 2rem;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.site-header__logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.site-header__wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--indigo);
  letter-spacing: -0.02em;
}

.site-header__wordmark span {
  color: var(--coral);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 2vw, 2rem);
}

.site-nav__link {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--slate);
  padding: 0.3rem 0.1rem;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s;
}

.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
  transition: width 0.25s ease;
}

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

.site-nav__cta {
  margin-left: 0.5rem;
  background: var(--coral);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-xl);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}

.site-nav__cta:hover {
  background: #e8402e;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,92,71,0.35);
}

.site-nav__cta::after { display: none; }

/* Hamburger */
.site-header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 200;
}

.site-header__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--indigo);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--indigo);
  color: #c5bde8;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: 2rem;
  margin-top: clamp(4rem, 8vw, 7rem);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.site-footer__brand-col {}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.site-footer__brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.site-footer__brand-name span { color: var(--coral); }

.site-footer__tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #9d94c5;
  max-width: 28ch;
  margin-bottom: 1.5rem;
}

.site-footer__social {
  display: flex;
  gap: 0.75rem;
}

.site-footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c5bde8;
  font-size: 0.8rem;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}

.site-footer__social-link:hover {
  background: var(--coral);
  color: #fff;
}

.site-footer__col-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.1rem;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.site-footer__link {
  font-size: 0.9rem;
  color: #9d94c5;
  transition: color 0.2s;
}

.site-footer__link:hover { color: var(--yellow); }

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
}

.site-footer__copy {
  font-size: 0.83rem;
  color: #6b5f99;
  max-width: none;
}

.site-footer__legal {
  display: flex;
  gap: 1.5rem;
}

.site-footer__legal a {
  font-size: 0.83rem;
  color: #6b5f99;
  transition: color 0.2s;
}

.site-footer__legal a:hover { color: #c5bde8; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-xl);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s, color 0.18s, border-color 0.18s;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
}

.btn--primary:hover {
  background: #e8402e;
  border-color: #e8402e;
  box-shadow: 0 8px 28px rgba(255,92,71,0.38);
}

.btn--secondary {
  background: transparent;
  color: var(--indigo);
  border-color: var(--indigo);
}

.btn--secondary:hover {
  background: var(--indigo);
  color: #fff;
  box-shadow: 0 8px 28px rgba(26,16,64,0.2);
}

.btn--mint {
  background: var(--mint);
  color: #fff;
  border-color: var(--mint);
}

.btn--mint:hover {
  background: #30b87a;
  border-color: #30b87a;
  box-shadow: 0 8px 28px rgba(62,207,142,0.38);
}

.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.5);
}

.btn--lg {
  font-size: 1.05rem;
  padding: 1rem 2.25rem;
}

.btn--sm {
  font-size: 0.82rem;
  padding: 0.55rem 1.15rem;
}

/* ============================================
   SECTIONS — SHARED
   ============================================ */
.section {
  padding-top: clamp(3.5rem, 7vw, 6rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
}

.section--mist { background: var(--mist); }
.section--indigo { background: var(--indigo); }
.section--yellow { background: var(--yellow); }
.section--coral { background: var(--coral); }
.section--mint { background: var(--mint); }

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  background: rgba(255,92,71,0.1);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1.1rem;
}

.section__eyebrow--mint {
  color: #1f9c65;
  background: rgba(62,207,142,0.13);
}

.section__eyebrow--indigo {
  color: var(--indigo);
  background: rgba(26,16,64,0.08);
}

.section__heading {
  margin-bottom: 1rem;
}

.section__lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--slate);
  max-width: 58ch;
  margin-bottom: 2rem;
}

.section__header {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section__header--center {
  text-align: center;
}

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

/* ============================================
   HERO
   ============================================ */
.hero {
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -160px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,214,64,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62,207,142,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__content {}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  background: rgba(255,92,71,0.1);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1.25rem;
}

.hero__title {
  margin-bottom: 1.25rem;
}

.hero__title em {
  font-style: normal;
  position: relative;
  color: var(--coral);
}

.hero__title em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 6px;
  background: var(--yellow);
  z-index: -1;
  border-radius: 3px;
  opacity: 0.6;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--slate);
  margin-bottom: 2.25rem;
  max-width: 52ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.hero__trust {
  margin-top: 2rem;
  font-size: 0.82rem;
  color: #9d94c5;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  display: inline-block;
}

.hero__image-slot {
  position: relative;
}

.hero__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--mist);
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  bottom: -18px;
  left: -24px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hero__badge-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.hero__badge-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--indigo);
  line-height: 1.3;
}

.hero__badge-sub {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--slate);
}

/* ============================================
   CARDS
   ============================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

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

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  position: relative;
  overflow: hidden;
}

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

.card__accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--coral);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.card__accent--mint { background: var(--mint); }
.card__accent--yellow { background: var(--yellow); }
.card__accent--indigo { background: var(--indigo); }

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(255,92,71,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 1.4rem;
}

.card__icon--mint { background: rgba(62,207,142,0.12); }
.card__icon--yellow { background: rgba(255,214,64,0.18); }
.card__icon--indigo { background: rgba(26,16,64,0.07); }

.card__title {
  margin-bottom: 0.6rem;
  color: var(--indigo);
}

.card__text {
  font-size: 0.93rem;
  color: var(--slate);
  max-width: none;
}

/* ============================================
   STATS ROW
   ============================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.stat-item {
  text-align: center;
  padding: clamp(1.25rem, 2.5vw, 2rem) 1rem;
}

.stat-item__number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1;
  color: var(--coral);
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
  display: block;
}

.stat-item__number--mint { color: var(--mint); }
.stat-item__number--yellow { color: #d4a800; }
.stat-item__number--indigo { color: var(--indigo); }

.stat-item__label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--slate);
  max-width: none;
}

/* On dark backgrounds */
.section--indigo .stat-item__label { color: #c5bde8; }
.section--indigo .stat-item__number--yellow { color: var(--yellow); }
.section--indigo h2, .section--indigo h3, .section--indigo h4 { color: #fff; }
.section--indigo p { color: #c5bde8; }
.section--indigo .section__eyebrow { color: var(--yellow); background: rgba(255,214,64,0.15); }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.cta-band__inner {
  background: var(--indigo);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.cta-band__inner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,92,71,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band__inner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 40%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,214,64,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band__content { position: relative; z-index: 1; }

.cta-band__eyebrow {
  display: inline-flex;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.75rem;
}

.cta-band__title {
  color: #fff;
  margin-bottom: 0.75rem;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}

.cta-band__text {
  color: #c5bde8;
  font-size: 1rem;
  max-width: 50ch;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

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

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: var(--indigo);
  transition: color 0.2s;
}

.faq-item__question:hover { color: var(--coral); }

.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--coral);
  transition: background 0.2s, transform 0.25s;
  font-style: normal;
}

.faq-item[open] .faq-item__icon,
.faq-item.is-open .faq-item__icon {
  background: var(--coral);
  color: #fff;
  transform: rotate(45deg);
}

.faq-item__answer {
  padding-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--slate);
  max-width: 74ch;
}

/* ============================================
   CONTENT SECTION
   ============================================ */
.content-block {}

.content-block__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.content-block__body--single { grid-template-columns: 1fr; }

.content-block__body p + p { margin-top: 1rem; }

/* ============================================
   LOGO STRIP
   ============================================ */
.logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.logo-strip__item {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: #c5bde8;
  letter-spacing: -0.01em;
  opacity: 0.55;
  transition: opacity 0.2s;
}

.logo-strip__item:hover { opacity: 1; }

/* ============================================
   FORMS
   ============================================ */
.form {}

.form__group {
  margin-bottom: 1.25rem;
}

.form__label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--indigo);
  margin-bottom: 0.4rem;
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--indigo);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255,92,71,0.12);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__image-slot {
    order: -1;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

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

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

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

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

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

  .content-block__body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.75rem;
    z-index: 150;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__link {
    font-size: 1.2rem;
  }

  .site-header__toggle {
    display: flex;
    position: relative;
    z-index: 200;
  }

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

  .card-grid--2 {
    grid-template-columns: 1fr;
  }

  .card-grid--4 {
    grid-template-columns: 1fr;
  }

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

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

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

  .hero__badge {
    left: 0;
  }
}*{box-sizing:border-box}img,svg,video{max-width:100%;height:auto}