/* ============================================================
   Qsingula — Global Stylesheet  (Editorial / Static feel)
   Color System:
     --cream:     #F8F7F4  (primary light bg)
     --cream-mid: #F0EFEC  (section alternation)
     --silver:    #CAC9C9  (borders, dividers)
     --red:       #C20E1A  (primary accent, CTAs)
     --green:     #39FF14  (neon, sparingly — indicators only)
     --dark:      #1C1920  (text, headings)
     --charcoal:  #2C2838  (single dark section bg)
     --white:     #FFFFFF
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #F8F7F4;
  --cream-mid: #F0EFEC;
  --cream-dark: #E8E7E3;
  --silver: #CAC9C9;
  --red: #C20E1A;
  --red-dark: #9A0B15;
  --green: #39FF14;
  --dark: #1C1920;
  --charcoal: #2C2838;
  --ink: #3A3840;
  --muted: #6B6878;
  --white: #FFFFFF;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-ui: 'Inter', system-ui, -apple-system, sans-serif;

  --max-w: 1240px;
  --radius-sm: 5px;
  --radius-md: 8px;
  --transition: 0.22s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
}

/* ── Typography ───────────────────────────────────────────── */
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--dark);
}

h4,
h5,
h6 {
  font-family: var(--font-ui);
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
}

h4 {
  font-size: 1rem;
}

p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.85rem;
}

/* ── Layout ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.section {
  padding-block: clamp(40px, 5vw, 60px);
}

.section--cream {
  background: var(--cream);
}

.section--cream-mid {
  background: var(--cream-mid);
}

.section--white {
  background: var(--white);
}

.section--dark {
  background: var(--charcoal);
  color: var(--white);
}

.section--dark p {
  color: var(--silver);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.85rem;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

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

.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 4px 20px rgba(194, 14, 26, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--dark);
  border-color: rgba(28, 25, 32, 0.3);
}

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

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

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

.btn--ghost {
  background: transparent;
  color: var(--red);
  border-color: transparent;
  padding-inline: 0;
  border-radius: 0;
  gap: 0.4rem;
}

.btn--ghost:hover {
  gap: 0.65rem;
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(28, 25, 32, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

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

.nav__logo-text {
  font-family: var(--font-ui);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
}

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

.nav__links a {
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--red);
  transition: width var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--dark);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

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

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  transition: all var(--transition);
  border-radius: 2px;
}

.nav__toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.nav__mobile.open {
  max-height: 420px;
}

.nav__mobile a {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid var(--cream-dark);
  transition: all var(--transition);
}

.nav__mobile a:hover {
  color: var(--dark);
  background: var(--cream);
  padding-left: 1.85rem;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  padding-top: 72px;
  background: var(--white);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 40px;
}

.hero__content-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 4vw, 4rem) clamp(3rem, 6vw, 6rem) clamp(1.25rem, 4vw, 2.5rem);
  padding-left: max(calc((100vw - var(--max-w)) / 2 + 2.5rem), 1.5rem);
}

.hero__visual-side {
  background: transparent;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 2rem;
  padding-top: 4rem;

}

/* Subtle geometric pattern for hero visual */
.hero__pattern {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(28, 25, 32, 0.07);
}

.hero__circle--1 {
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero__circle--2 {
  width: 360px;
  height: 360px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero__circle--3 {
  width: 220px;
  height: 220px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(194, 14, 26, 0.12);
}

.hero__scan-dot {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--red);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 16px rgba(194, 14, 26, 0.07), 0 0 0 32px rgba(194, 14, 26, 0.04);
}

.hero__scan-line {
  position: absolute;
  width: 110px;
  height: 5px;
  background: linear-gradient(90deg, rgba(57, 255, 20, 0.6), transparent);
  border-radius: 3px;
  top: calc(50% + 40px);
  left: calc(50% + 10px);
  transform: rotate(-44deg);
  transform-origin: left center;
}

.hero__stat-strip {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 2rem;
  box-shadow: 0 4px 24px rgba(28, 25, 32, 0.07);
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero__stat-num em {
  font-style: normal;
  color: var(--red);
}

.hero__stat-label {
  font-size: 0.7rem;
  font-family: var(--font-ui);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  margin-bottom: 1.75rem;
}

.hero__tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  flex-shrink: 0;
}

.hero__tag span {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero h1 {
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--red);
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 2.25rem;
  /* max-width: 440px; */
  line-height: 1.75;
}

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

.hero__tagline-bar {
  border-top: 1px solid var(--cream-dark);
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
}

.hero__tagline-headline {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
}

.hero__tagline-sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* ── Section Headers ──────────────────────────────────────── */
.section-header {
  max-width: 560px;
  margin-bottom: 0.75rem;
}

.section-header--center {
  text-align: center;
  margin-inline: auto;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1.05rem;
}

/* ── Feature Cards ────────────────────────────────────────── */
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 3.5rem;
}

.feature-card {
  background: var(--white);
  padding: 2.25rem;
  transition: background var(--transition);
}

.feature-card:hover {
  background: var(--cream);
}

.feature-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-card__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--dark);
}

.feature-card p {
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ── Split Panel Section (GRAIL style) ────────────────────── */
.split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.split-panel--reverse {
  direction: rtl;
}

.split-panel--reverse>* {
  direction: ltr;
}

.split-panel__visual {
  position: relative;
  overflow: hidden;
  background: var(--cream-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.split-panel__visual--dark {
  background: var(--charcoal);
}

.split-panel__visual--cream {
  background: var(--cream);
}

.split-panel__visual--silver {
  background: var(--cream-dark);
}

.split-panel__visual-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
}

/* Minimal diagram inside split visual */
.diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

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

.diagram__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.diagram__dot--green {
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.diagram__label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(28, 25, 32, 0.5);
}

.diagram__label--light {
  color: rgba(255, 255, 255, 0.45);
}

.diagram__line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(28, 25, 32, 0.15), rgba(28, 25, 32, 0.05));
}

.diagram__line--light {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.03));
}

.diagram__center {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid rgba(28, 25, 32, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.diagram__center-inner {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 24px rgba(194, 14, 26, 0.35);
}

.diagram__center--light {
  border-color: rgba(255, 255, 255, 0.15);
}

.split-panel__text {
  background: var(--cream);
  padding: clamp(3rem, 6vw, 6rem) clamp(2.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-panel__text--white {
  background: var(--white);
}

.split-panel__text h2 {
  margin-bottom: 1rem;
}

.split-panel__text p {
  margin-bottom: 1.1rem;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.check-list__mark {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(194, 14, 26, 0.08);
  border: 1px solid rgba(194, 14, 26, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}

.check-list__mark svg {
  width: 8px;
  height: 8px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── At a Glance ──────────────────────────────────────────── */
.at-a-glance {
  padding: 3rem 0 0;
}

.at-a-glance .eyebrow {
  display: block;
  margin-bottom: 0;
  padding: 0 2rem 1.5rem;
}

/* ── Stats Row ────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.stat-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--cream-dark);
  transition: background var(--transition);
}

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

.stat-item:hover {
  background: var(--cream);
}

.stat-item__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-item__num em {
  font-style: normal;
  color: var(--red);
}

.stat-item__num--text {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.stat-item__label {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

.stat-item__sub {
  font-size: 0.82rem;
  color: var(--red);
  font-weight: 600;
  opacity: 1;
}

/* ── About Section ───────────────────────────────────────── */
.about-section {
  background: var(--cream);
  padding: 3rem 0 3.5rem;
}

.about-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-section__text {
  width: 100%;
  max-width: 680px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.about-section__text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--dark);
}

.about-section__text p {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.75;
}

.about-section__scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.about-section__scroll-cue svg {
  animation: bounceDown 1.6s ease-in-out infinite;
  flex-shrink: 0;
  color: var(--red);
}

@keyframes bounceDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

.about-section__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--charcoal);
  width: 100%;
  max-width: 760px;
  height: 420px;
}

.about-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
  transition: opacity 0.4s ease;
}

.about-section__image:hover img {
  opacity: 1;
}

.about-section__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28, 25, 32, 0.35) 0%, transparent 60%);
  pointer-events: none;
}

.about-section__image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(28, 25, 32, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
}

.about-section__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .about-section__image {
    height: 280px;
  }
}

/* ── Challenge Section ───────────────────────────────────── */
.challenge-section {
  background: var(--dark);
  padding: 3.5rem 0 1rem;
}

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

.challenge-section__eyebrow {
  color: rgba(202, 201, 201, 0.4);
}

.challenge-section__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-top: 0.75rem;
}

.challenge-section__header h2 em {
  font-style: italic;
  color: var(--red);
}

.challenge-section__each-year {
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.5rem;
}

.challenge-section__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 3rem;
}

.challenge-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background var(--transition);
}

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

.challenge-item:hover {
  background: transparent;
}

.challenge-item__num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--red);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.05em;
}

.challenge-item p {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  max-width: 36ch;
}

.challenge-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 3rem auto;
  max-width: 680px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.challenge-stat {
  flex: 1;
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

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

.challenge-stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.challenge-stat__num em {
  font-style: normal;
  color: var(--red);
}

.challenge-stat__label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.challenge-section__close {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: -0.02em;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

@media (max-width: 680px) {
  .challenge-section__list {
    max-width: 100%;
  }
}

/* ── QSD Intro Section ───────────────────────────────────── */
.qsd-intro {
  background: var(--cream);
  padding: 3.5rem 0;
}

.qsd-intro__inner {
  display: block;
  text-align: center;
}

.qsd-how-it-works {
  margin-left: auto;
  margin-right: auto;
}

.solution-section__eyebrow {
  color: var(--muted);
}

.qsd-intro__text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-top: 0.6rem;
  margin-bottom: 1.25rem;
}

.solution-section__sub {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.solution-section__body {
  font-family: var(--font-ui);
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.qsd-how-it-works {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  background: var(--cream-mid);
  border-radius: 6px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
  display: inline-block;
}

.qsd-how-it-works__label {
  color: var(--red);
  margin-right: 0.4rem;
}

.solution-section__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 100px;
  padding: 0.45rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.solution-section__tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 5px var(--green);
  flex-shrink: 0;
}

/* Right: attribute cards */
.qsd-intro__attrs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.qsd-attr {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.75rem;
  background: var(--white);
  transition: background var(--transition);
}

.qsd-attr:hover {
  background: var(--cream);
}

.qsd-attr__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  background: var(--cream);
}

.qsd-attr__icon svg {
  width: 18px;
  height: 18px;
}

.qsd-attr__label {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
}

.qsd-attr__sub {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.45;
}

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

@media (max-width: 480px) {
  .qsd-intro__attrs {
    grid-template-columns: 1fr;
  }
}

/* ── Steps to Result Section ─────────────────────────────── */
.steps-section {
  background: var(--white);
  padding: 3.5rem 0 3rem;
  border-top: 1px solid var(--cream-dark);
}

.steps-section__header {
  margin-bottom: 3.5rem;
}

.steps-section__heading {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.04em;
  margin-top: 0.5rem;
}

.steps-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 2rem;
}

.steps-grid__item {
  padding: 2.25rem 2rem;
  border-right: 1px solid var(--cream-dark);
  position: relative;
  transition: background var(--transition);
}

.steps-grid__item:hover {
  background: var(--cream);
}

.steps-grid__item--last {
  border-right: none;
}

.steps-grid__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--red);
  opacity: 0.18;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.steps-grid__label {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.steps-grid__desc {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Clinical Output ── */
.solution-output {
  padding: 1.25rem 1.75rem;
  background: var(--dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

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

.solution-output__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 7px var(--green);
  flex-shrink: 0;
}

.solution-output__tag {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

.solution-output__text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

/* ── Note ── */
.solution-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--silver);
  font-style: italic;
  line-height: 1.55;
}

.solution-note svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--silver);
}

@media (max-width: 860px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid__item:nth-child(2) {
    border-right: none;
  }

  .steps-grid__item:nth-child(3) {
    border-right: 1px solid var(--cream-dark);
    border-top: 1px solid var(--cream-dark);
  }

  .steps-grid__item--last {
    border-top: 1px solid var(--cream-dark);
  }
}

@media (max-width: 520px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid__item {
    border-right: none;
    border-bottom: 1px solid var(--cream-dark);
  }

  .steps-grid__item--last {
    border-bottom: none;
  }

  .solution-output {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* ── Technology Domains ──────────────────────────────────── */
.tech-domains {
  background: var(--white);
  padding: 4rem 0;
  border-top: 1px solid var(--cream-dark);
}

.tech-domains__table {
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  overflow: hidden;
}

.tech-domains__row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--cream-dark);
}

.tech-domains__num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  min-width: 1.2rem;
}

.tech-domains__item {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
}

.tech-domains__footer {
  padding: 1.1rem 1.5rem;
}

.tech-domains__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.tech-domains__eyebrow {
  color: var(--muted);
}

.tech-domains__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin-top: 0.6rem;
  margin-bottom: 1rem;
}

.tech-domains__header h2 em {
  font-style: italic;
  color: var(--muted);
}

.tech-domains__intro {
  font-family: var(--font-ui);
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

.tech-domains__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.tech-domain-card {
  padding: 2.75rem 2.5rem;
  border-right: 1px solid var(--cream-dark);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background var(--transition);
}

.tech-domain-card:last-child {
  border-right: none;
}

.tech-domain-card:hover {
  background: var(--cream);
}

.tech-domain-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.tech-domain-card__num {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--red);
  opacity: 0.7;
}

.tech-domain-card__icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.tech-domain-card__icon svg {
  width: 18px;
  height: 18px;
}

.tech-domain-card:hover .tech-domain-card__icon {
  border-color: rgba(194, 14, 26, 0.3);
  color: var(--red);
  background: rgba(194, 14, 26, 0.04);
}

.tech-domain-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.tech-domain-card__desc {
  font-family: var(--font-ui);
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

/* Contact card variant */
.tech-domain-card--contact {
  border-top: 2px solid rgba(194, 14, 26, 0.3);
}

.tech-domain-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: gap var(--transition), opacity var(--transition);
}

.tech-domain-card__cta:hover {
  gap: 0.7rem;
  opacity: 0.8;
}

@media (max-width: 860px) {
  .tech-domains__grid {
    grid-template-columns: 1fr;
  }

  .tech-domain-card {
    border-right: none;
    border-bottom: 1px solid var(--cream-dark);
  }

  .tech-domain-card:last-child {
    border-bottom: none;
  }

  .tech-domain-card--contact {
    border-top: none;
    border-left: 2px solid rgba(194, 14, 26, 0.3);
  }
}

/* ── Differentiators ─────────────────────────────────────── */
.differentiators {
  background: var(--cream);
  padding: 4rem 0;
  border-top: 1px solid var(--cream-dark);
}

.differentiators__header {
  margin-bottom: 3.5rem;
}

.differentiators__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.differentiators__sub {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

.differentiators__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.diff-card {
  background: var(--white);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: background var(--transition);
}

.diff-card:hover {
  background: var(--cream);
}

.diff-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--cream-dark);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  flex-shrink: 0;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.diff-card__icon svg {
  width: 18px;
  height: 18px;
}

.diff-card:hover .diff-card__icon {
  border-color: rgba(194, 14, 26, 0.25);
  color: var(--red);
  background: rgba(194, 14, 26, 0.04);
}

.diff-card__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.diff-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.diff-card__list li {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  padding-left: 1rem;
  position: relative;
}

/*
.diff-card__list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--red);
  opacity: 0.5;
}
*/
/* Accent card (Patented) */
.diff-card--accent {
  background: var(--dark);
}

.diff-card--accent:hover {
  background: var(--charcoal);
}

.diff-card--accent .diff-card__icon {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.4);
}

.diff-card--accent:hover .diff-card__icon {
  border-color: rgba(194, 14, 26, 0.4);
  color: rgba(194, 14, 26, 0.7);
  background: rgba(194, 14, 26, 0.06);
}

.diff-card--accent .diff-card__name {
  color: var(--white);
}

.diff-card--accent .diff-card__list li {
  color: rgba(255, 255, 255, 0.5);
}

.diff-card--accent .diff-card__list li::before {
  color: var(--red);
  opacity: 0.6;
}

@media (max-width: 860px) {
  .differentiators__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .differentiators__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Mission & Vision ────────────────────────────────────── */
.mv-section {
  background: var(--dark);
  padding: 3.5rem 0;
}

.mv-eyebrow {
  color: rgba(202, 201, 201, 0.35);
  display: block;
  margin-bottom: 2.5rem;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 4rem;
  align-items: start;
}

.mv-divider {
  background: rgba(255, 255, 255, 0.08);
  align-self: stretch;
}

.mv-block__tag {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
  margin-bottom: 1.1rem;
}

.mv-block__text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.35;
  margin-bottom: 1.25rem;
}

.mv-block__statement {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
  border-radius: 6px;
  padding: 1.25rem 2rem;
  margin-top: 3rem;
  text-align: center;
}

@media (max-width: 720px) {
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .mv-divider {
    height: 1px;
    width: 100%;
  }
}

/* ── Values ──────────────────────────────────────────────── */
.values-section {
  background: var(--cream);
  padding: 3.5rem 0;
  border-top: 1px solid var(--cream-dark);
}

.values-section__header {
  margin-bottom: 3rem;
}

.values-section__header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.04em;
  margin-top: 0.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.value-card {
  background: var(--white);
  padding: 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: background var(--transition);
}

.value-card:hover {
  background: var(--cream);
}

.value-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--cream-dark);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.value-card__icon svg {
  width: 18px;
  height: 18px;
}

.value-card:hover .value-card__icon {
  border-color: rgba(194, 14, 26, 0.25);
  color: var(--red);
  background: rgba(194, 14, 26, 0.04);
}

h3.value-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.025em;
}

.value-card__desc {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

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

/* ── Pipeline / R&D / Hubs / Status ──────────────────────── */
.pipeline-section {
  background: var(--white);
  padding: 1rem 0;
  border-top: 1px solid var(--cream-dark);
}

.pipeline-grid {
  display: block;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.pipeline-block {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pipeline-block:last-child {
  border-bottom: none;
}

.pipeline-block__note--bold {
  font-weight: 600;
  color: var(--dark);
}

.pipeline-block--mid {
  background: var(--cream);
}

.pipeline-block__eyebrow {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
  opacity: 0.8;
}

.pipeline-block__heading {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.pipeline-block__lead {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--ink);
  line-height: 1.65;
}

.pipeline-block__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
}

.pipeline-block__list li {
  font-family: var(--font-ui);
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.55;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.pipeline-block__list-num {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
  min-width: 1rem;
}

/*
.pipeline-block__list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--red);
  opacity: 0.5;
  font-weight: 700;
}
*/
.pipeline-block__note {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.6;
}

.pipeline-block__status {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 0.5rem;
  padding: 1rem 1.1rem;
  background: rgba(57, 255, 20, 0.05);
  border: 1px solid rgba(57, 255, 20, 0.18);
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: #2a6e18;
  font-weight: 500;
  line-height: 1.5;
}

.pipeline-block__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  flex-shrink: 0;
  margin-top: 3px;
}

@media (max-width: 900px) {
  .pipeline-grid {
    grid-template-columns: 1fr;
  }

  .pipeline-block {
    border-right: none;
    border-bottom: 1px solid var(--cream-dark);
  }

  .pipeline-block:last-child {
    border-bottom: none;
  }
}

/* ── The Team ─────────────────────────────────────────────── */
.team-section {
  background: var(--charcoal);
  padding: 4rem 0 3.5rem;
}

.team-section__intro {
  max-width: 780px;
  margin: 0 auto 4.5rem;
  text-align: center;
}

.team-section__intro .eyebrow {
  color: var(--green);
}

.team-section__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin: 0.6rem 0 1.2rem;
}

.team-section__sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
}

.team-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.team-pillar {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 2.5rem 2.75rem;
}

.team-pillar--accent {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
}

.team-pillar__label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2rem;
}

.team-pillar--accent .team-pillar__label {
  color: rgba(255, 255, 255, 0.45);
}

.team-pillar__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.team-pillar__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
}

.team-pillar__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: rgba(255, 255, 255, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-pillar__icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.team-pillar--accent .team-pillar__icon {
  color: rgba(255, 255, 255, 0.38);
}

@media (max-width: 640px) {
  .team-section__grid {
    grid-template-columns: 1fr;
  }

  .team-pillar {
    padding: 2rem 1.75rem;
  }
}

/* ── Where We Are / Journey ───────────────────────────────── */
.journey-section {
  background: var(--white);
  padding: 4rem 0 3.5rem;
}

.journey-section__intro {
  margin-bottom: 4rem;
}

.journey-section__intro .eyebrow {
  color: var(--red);
}

.journey-section__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  margin-top: 0.5rem;
  line-height: 1.15;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 4.5rem;
}

.journey-block {
  background: var(--white);
  padding: 2.5rem 2.25rem 2.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.journey-block__title {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.journey-block__lead {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
}

.journey-block__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.journey-block__list li {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.45;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.journey-block__num {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
  min-width: 1rem;
}


.journey-block__note {
  font-size: 0.82rem;
  color: var(--silver);
  font-style: italic;
  margin-top: auto;
}

.journey-block__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  margin-top: auto;
  transition: gap var(--transition);
}

.journey-block__cta:hover {
  gap: 0.7rem;
}

.journey-block__cta svg {
  width: 14px;
  height: 14px;
}

.journey-close {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
}

.journey-close p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
}

.journey-highlight {
  background: none;
  color: var(--dark);
  font-weight: 600;
  /* border-bottom: 2px solid var(--red); */
  padding-bottom: 1px;
}

.journey-close__line {
  font-size: 1.15rem !important;
  color: var(--dark) !important;
  text-align: center;
  background: var(--cream);
  padding: 2rem;
  border-radius: 6px;
  margin-top: 2rem;
}

.journey-close__line strong {
  color: var(--dark);
  font-weight: 600;
}

@media (max-width: 860px) {
  .journey-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Get Involved ────────────────────────────────────────── */
.get-involved-section {
  background: var(--white);
  padding: 3.5rem 0;
  border-top: 1px solid var(--cream-dark);
}

.get-involved__header {
  margin-bottom: 3.5rem;
}

.get-involved__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.get-involved__header .eyebrow {
  color: var(--muted);
}

.get-involved__contact {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.get-involved__contact a {
  color: var(--red);
  text-decoration: none;
}

.get-involved__contact a:hover {
  text-decoration: underline;
}

.get-involved__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  overflow: hidden;
}

.get-involved__card {
  background: var(--white);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background var(--transition);
}

.get-involved__card:hover {
  background: var(--cream);
}

.get-involved__card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.get-involved__card-desc {
  font-family: var(--font-ui);
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Closing Statement ───────────────────────────────────── */
.closing-statement {
  background: var(--white);
  padding: 3rem 0;
  border-top: 1px solid var(--cream-dark);
  text-align: center;
}

.closing-statement__heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.closing-statement__sub {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  white-space: normal;
}

/* ── Story Cards ──────────────────────────────────────────── */
.stories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.story-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  transition: all var(--transition);
}

.story-card:hover {
  box-shadow: 0 8px 40px rgba(28, 25, 32, 0.08);
  transform: translateY(-3px);
}

.story-card__visual {
  height: 200px;
  background: var(--cream-mid);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-card__visual--1 {
  background: linear-gradient(135deg, #ede8e3 0%, #e0d9d3 100%);
}

.story-card__visual--2 {
  background: linear-gradient(135deg, #e3e8ed 0%, #d3dce0 100%);
}

.story-card__visual--3 {
  background: linear-gradient(135deg, #e8e3ed 0%, #d9d3e0 100%);
}

.story-card__visual-mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(28, 25, 32, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-card__visual-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.85;
}

.story-card__body {
  padding: 1.75rem;
}

.story-card__tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}

.story-card__body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
  line-height: 1.35;
  color: var(--dark);
}

.story-card__body p {
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.story-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--red);
  transition: gap var(--transition);
}

.story-card__link:hover {
  gap: 0.6rem;
}

.story-card__link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── News List ────────────────────────────────────────────── */
.news-list {
  display: flex;
  flex-direction: column;
}

.news-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.85rem 0;
  border-bottom: 1px solid var(--cream-dark);
  transition: background var(--transition);
}

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

.news-item:hover .news-item__title {
  color: var(--red);
}

.news-item__date {
  flex-shrink: 0;
  min-width: 88px;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--silver);
  padding-top: 4px;
}

.news-item__cat {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(194, 14, 26, 0.2);
  border-radius: 3px;
  padding: 2px 6px;
  margin-bottom: 0.4rem;
}

.news-item__title {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 0.35rem;
  transition: color var(--transition);
}

.news-item__excerpt {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ── Mission ──────────────────────────────────────────────── */
.mission {
  text-align: center;
}

.mission__quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  max-width: 820px;
  margin-inline: auto;
  letter-spacing: -0.01em;
}

.mission__quote em {
  font-style: italic;
  color: rgba(202, 201, 201, 0.7);
}

.mission__attr {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(202, 201, 201, 0.4);
  margin-top: 1.75rem;
}

/* ── CTA Section ──────────────────────────────────────────── */
.cta-section {
  text-align: center;
}

.cta-section h2 {
  color: var(--dark);
  margin-bottom: 0.85rem;
}

.cta-section p {
  font-size: 1.05rem;
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 2.25rem;
}

.cta-section--dark h2 {
  color: var(--white);
}

.cta-section--dark p {
  color: var(--silver);
}

.cta-section__actions {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* ── Divider ──────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--cream-dark);
}

/* ── Page Hero ────────────────────────────────────────────── */
.page-hero {
  background: var(--cream);
  padding-top: 130px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--cream-dark);
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.05rem;
  max-width: 520px;
}

/* ── About ────────────────────────────────────────────────── */
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 3rem;
}

.value-card {
  padding: 2rem;
  background: var(--white);
  transition: background var(--transition);
}

.value-card:hover {
  background: var(--cream);
}

.value-card__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(194, 14, 26, 0.1);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.value-card h3 {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.value-card p {
  font-size: 0.875rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.team-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--cream-dark);
  transition: all var(--transition);
}

.team-card:hover {
  border-color: rgba(194, 14, 26, 0.2);
  box-shadow: 0 8px 30px rgba(28, 25, 32, 0.06);
}

.team-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream-mid);
  border: 1px solid var(--cream-dark);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}

.team-card h3 {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.team-card__role {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.team-card p {
  font-size: 0.825rem;
}

/* ── Product ──────────────────────────────────────────────── */
.product-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 3rem;
}

.spec-card {
  padding: 2.25rem;
  background: var(--white);
  transition: background var(--transition);
}

.spec-card:hover {
  background: var(--cream);
}

.spec-card__num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.spec-card__unit {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  color: var(--dark);
  font-weight: 500;
}

.spec-card h3 {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.spec-card p {
  font-size: 0.875rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
}

.process-step {
  display: flex;
  gap: 1.75rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.process-step:last-child {
  border-bottom: none;
}

.process-step__num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--cream-dark);
  background: var(--cream);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
}

.process-step h3 {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--dark);
}

.process-step p {
  font-size: 0.875rem;
}

/* ── Filter Buttons ───────────────────────────────────────── */
.stories-filter {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--cream-dark);
  background: transparent;
  color: var(--muted);
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

/* ── Contact ──────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  /* TODO grid-template-columns: 1fr 1.6fr;
  gap: 5rem; */
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.contact-info__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--cream-dark);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info h3 {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.contact-info p {
  font-size: 0.875rem;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--cream-dark);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(194, 14, 26, 0.06);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 0.75rem;
  color: rgba(107, 104, 120, 0.7);
}

/* ── Brand Closing Strip (contact page) ───────────────────── */
.brand-strip {
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
  padding: 6rem 0 6rem;
}

.brand-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.brand-strip__eyebrow {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}

.brand-strip__headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1.75rem;
}

.brand-strip__headline em {
  font-style: italic;
  color: var(--red);
}

.brand-strip__desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 520px;
}

/* ── Footer Slim (contact page) ───────────────────────────── */
.footer-slim {
  background: var(--dark);
  padding: 3.5rem 0 2.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-slim__inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-slim__name {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-slim__desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  max-width: 560px;
}

.footer-slim__contact {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 0.25rem;
}

.footer-slim__contact a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--transition);
}

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

.footer-slim__legal {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.22);
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── Footer New ──────────────────────────────────────────── */
.footer-new {
  background: var(--dark);
  padding: 3.5rem 0 2rem;
  text-align: center;
}

.footer-new__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.footer-new__tagline {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

.footer-new__links {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2rem;
}

.footer-new__links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

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

.footer-new__legal {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 1.5rem;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: var(--silver);
  padding-block: 4rem 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(202, 201, 201, 0.5);
  max-width: 260px;
  margin-top: 1rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer__logo img {
  height: 30px;
  width: auto;
}

.footer__logo-text {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.footer__col h4 {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(202, 201, 201, 0.35);
  margin-bottom: 1.25rem;
}

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

.footer__col ul a {
  font-size: 0.875rem;
  color: rgba(202, 201, 201, 0.55);
  transition: color var(--transition);
}

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

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(202, 201, 201, 0.07);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(202, 201, 201, 0.3);
}

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

.footer__legal a {
  font-size: 0.78rem;
  color: rgba(202, 201, 201, 0.3);
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: var(--silver);
}

.footer__indicator {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: rgba(202, 201, 201, 0.3);
}

.footer__indicator-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 5px var(--green);
}

/* ── Animations ───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* Stagger for grid children */
.features__grid .feature-card:nth-child(1),
.stories__grid .story-card:nth-child(1),
.about-values .value-card:nth-child(1) {
  transition-delay: 0s;
}

.features__grid .feature-card:nth-child(2),
.stories__grid .story-card:nth-child(2),
.about-values .value-card:nth-child(2) {
  transition-delay: 0.08s;
}

.features__grid .feature-card:nth-child(3),
.stories__grid .story-card:nth-child(3),
.about-values .value-card:nth-child(3) {
  transition-delay: 0.16s;
}

.features__grid .feature-card:nth-child(4),
.about-values .value-card:nth-child(4) {
  transition-delay: 0.24s;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__visual-side {
    min-height: 300px;
  }

  .hero__stat-strip {
    position: static;
    margin: 2rem;
    border-radius: var(--radius-md);
  }

  .split-panel {
    grid-template-columns: 1fr;
  }

  .split-panel--reverse {
    direction: ltr;
  }

  .split-panel__visual {
    min-height: 280px;
  }

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

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

  .stat-item:nth-child(3) {
    grid-column: 1 / -1;
    border-right: none;
    border-top: 1px solid var(--cream-dark);
  }

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

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

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__mobile {
    display: flex;
  }
}

@media (max-width: 600px) {
  .stats-row {
    grid-template-columns: 1fr;
  }

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

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

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

  .footer__legal {
    justify-content: center;
  }

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

  .news-item {
    flex-direction: column;
    gap: 0.4rem;
  }

  .hero__actions {
    flex-direction: column;
  }

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


.solution-section__body span {
  font-weight: bold;
}




.text-make-bold {
  font-weight: 600;
  font-size: 20px;
}