/* ==========================================================================
   Section-specific layout + responsive rules
   Built section by section, top to bottom.
   ========================================================================== */

/* ============================ MENU BAR ==================================== */
.menubar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-2);
  box-shadow: var(--nav-glow);
}
.menubar__inner {
  max-width: var(--page-max);
  margin-inline: auto;
  padding: 16px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.menubar__logo img { width: 117px; height: 16px; }   /* Figma: AiCon 2026 wordmark 116.8 x 16.08px */

.menubar__nav { display: flex; gap: 3rem; }
.menubar__nav a {
  position: relative;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--white-soft);          /* stays white — Figma nav items don't turn yellow */
  white-space: nowrap;
}
/* Yellow underscore that appears on hover / active section (text stays white) */
.menubar__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s ease;
}
.menubar__nav a:hover::after,
.menubar__nav a.is-active::after { transform: scaleX(1); }

/* Actions = equal-width grid columns, so "Waiting List" and "Partner info"
   render at identical dimensions regardless of text length. Gap 24px (Figma). */
.menubar__actions {
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

/* Hamburger (hidden on desktop) */
.menubar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.menubar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.menubar__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menubar__burger.is-open span:nth-child(2) { opacity: 0; }
.menubar__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1100px) {
  .menubar__nav { gap: 1.75rem; }
  .menubar__nav a { font-size: 0.75rem; }
}
@media (max-width: 960px) {
  .menubar__inner { flex-wrap: wrap; row-gap: 0; }
  .menubar__logo { order: 0; }
  .menubar__burger { display: flex; order: 1; }
  .menubar__nav { order: 2; }
  .menubar__actions { order: 3; display: flex; }   /* override desktop inline-grid */
  .menubar__actions .btn { width: auto; }          /* natural width inside the dropdown */

  .menubar__nav,
  .menubar__actions {
    flex-basis: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0;
    transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.3s ease, margin 0.3s ease;
  }
  .menubar.is-open .menubar__nav { max-height: 360px; opacity: 1; padding-top: 1.5rem; }
  .menubar.is-open .menubar__actions {
    max-height: 200px; opacity: 1; padding-bottom: 1.25rem; padding-top: 2rem;
    flex-direction: row; flex-wrap: wrap;
  }
}

/* ================================ HERO ==================================== */
.hero {
  position: relative;
  /* Fill the viewport below the sticky header (header + hero = 100vh) so the
     next section never peeks in on the first screen. --header-h is measured
     in main.js; 76px is the desktop fallback. */
  min-height: calc(100vh - var(--header-h, 76px));
  min-height: calc(100dvh - var(--header-h, 76px));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;      /* vertically center the hero content */
  overflow: hidden;
  background: var(--bg-1);
  padding-block: 64px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../assets/images/hero_image.2e16d0ba.fill-1920x1080.png");   /* >= 1024px */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Mobile / tablet portrait background */
@media (max-width: 1023px) {
  .hero__bg { background-image: url("../assets/images/hero_img_mobile.2e16d0ba.fill-768x1024.jpg"); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* dark at edges, slightly lighter in the centre (matches Tailwind
     from-black/70 via-black/50 to-black/80) */
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0.8) 100%);
}
/* Particle overlay canvas — sits above bg + overlay, below content */
#particles-js {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#particles-js .particles-js-canvas-el { width: 100%; height: 100%; display: block; }
.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
.hero__date { display: flex; flex-direction: column; gap: 0.4rem; font-size: 1.125rem; }
.hero__title { max-width: 1100px; margin-block: 0.25rem; }
.hero__subtitle {
  font-size: var(--h4);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.hero__tagline { font-size: 1.125rem; font-weight: 700; line-height: 1.4; }
.hero__body {
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--white-soft);
  max-width: 1000px;
}
.hero__cta { margin-top: 0.5rem; gap: 1.5rem; }

@media (max-width: 767px) {
  .hero { padding-block: 72px; }   /* min-height inherits the header-aware calc */
  .hero__body { font-size: 1rem; }
  .hero__tagline { font-size: 1rem; }
}

/* ============================ INTRO + KEYPOINTS ========================== */
/* Figma "Title + Keypoints" frame: intro content, then a 48px gap to the
   keypoints bar. Top padding stays responsive (Figma ~120px). */
.intro { padding-top: clamp(64px, 10vw, 120px); padding-bottom: 48px; }
.intro__title { margin-bottom: 1rem; }   /* Figma Double-Title gap: 16px */
.intro__sub {
  font-size: var(--h3);
  font-weight: 700;
  color: var(--white-soft);
}
@media (max-width: 767px) {
  .intro__sub { font-size: 1.35rem; }
}

/* ============================== SPEAKERS ================================= */
.speakers { padding-block: clamp(56px, 7vw, 96px); }
.speakers__title {
  font-size: var(--title-1);
  font-weight: 700;
  margin-bottom: 2.5rem;
}
.speakers__note {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--muted-2);
}

/* Carousel shell */
.carousel { --gap: 24px; position: relative; }
/* touch-action pan-y: horizontal swipe handled by JS, vertical scroll native */
.carousel__viewport { overflow: hidden; touch-action: pan-y; cursor: grab; user-select: none; }
.carousel__viewport:active { cursor: grabbing; }
.carousel__viewport img { -webkit-user-drag: none; user-drag: none; }
.carousel__track {
  display: flex;
  gap: var(--gap);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Speaker card */
.speaker {
  flex: 0 0 calc((100% - 3 * var(--gap)) / 4);
  display: flex;
  flex-direction: column;
  min-height: 477px;
}
.speaker__img {
  position: relative;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  background: var(--bg-3);
}
.speaker__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
/* Fehlner's headshot is square with the face low in the frame — shift the crop
   down so his chin isn't cut off. */
.speaker__img img[src*="fehlner"] { object-position: center 62%; }
.speaker__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.speaker__img--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #262626 0%, #1a1a1a 100%);
}
.speaker__img--ph span {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(216, 255, 0, 0.35);
}
.speaker__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 24px 24px 20px;
  background: rgba(219, 219, 219, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0 0 8px 8px;
}
.speaker__name {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fbfcfe;
}
.speaker__role {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.3;
}
.speaker__company {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted-2);
  line-height: 1.3;
}
.speaker__logo {
  margin-top: auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}
/* Real brand-logo image — sized by HEIGHT so every logo reads at the same
   optical scale. Compact/circular marks (Covestro) and descender wordmarks
   (Google) get taller boxes to balance against the plain wordmarks. */
.speaker__logo img {
  height: 38px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.speaker__logo img[src*="google"] { height: 46px; }
.speaker__logo img[src*="covestro"] { height: 54px; }
.speaker__logo img[src*="ernw"] { height: 44px; }
.speaker__logo img[src*="aws"] { height: 44px; }

/* Carousel controls */
.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  gap: 1rem;
}
/* Figma "Arrow Big": 40 x 40px nav arrows */
.carousel__arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  line-height: 1;
  color: var(--muted-2);
  transition: color 0.15s ease;
  letter-spacing: -0.18em;
}
.carousel__arrow:hover { color: var(--primary); }
.carousel__dots {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: background 0.15s ease, transform 0.15s ease;
}
.carousel__dot.is-active { background: var(--primary); transform: scale(1.2); }

@media (max-width: 1200px) {
  .speaker { flex-basis: calc((100% - 2 * var(--gap)) / 3); }
}
@media (max-width: 900px) {
  .speaker { flex-basis: calc((100% - var(--gap)) / 2); }
}
@media (max-width: 600px) {
  .speaker { flex-basis: 100%; min-height: 440px; }
}

/* ============================ UPDATES BAND ============================== */
.updates { padding-block: clamp(72px, 10vw, 130px); background: var(--bg-2); }   /* #1A1A1A */
.updates__title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 1250px;
  margin: 0 auto 2.5rem;
}

/* ============================ PARTNER LOGOS ============================= */
.partners { padding-block: var(--section-pad-y); }
.logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.75rem, 5vw, 4rem);
  margin-bottom: 3rem;
}
.wordmark {
  font-size: clamp(1.25rem, 2.2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  opacity: 0.9;
}
/* Real brand logos (Figma node 1313:75399) — sized by HEIGHT so each reads at
   the same optical scale. Per-logo heights follow the Figma's balanced ratios:
   most wordmarks ~40px, Meta shorter (no descenders), adidas taller (stacked). */
.logo-row img {
  height: 34px;
  width: auto;
  object-fit: contain;
}
.logo-row img[src*="google"] { height: 49px; }   /* taller box compensates for descenders */
.logo-row img[src*="adidas"] { height: 45px; }   /* stacked stripes + wordmark */
.partners__cap {
  font-size: var(--h4);
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.partners__sub { color: var(--muted-2); font-size: var(--title-2); }

/* Figma "Wrapper Network card" — shared by Why / Formats / Audience:
   translucent light fill, 1px light border, 12px radius, 32px padding. */
.why .card,
.formats .card,
.audience .card,
.become .card {
  background: rgba(219, 219, 219, 0.1);
  border: 1px solid rgba(251, 251, 251, 0.5);
  border-radius: 12px;
  padding: 32px;
}
.why .icon-card__title,
.formats .format-card__title,
.audience .icon-card__title,
.become .icon-card__title { color: var(--primary-lighter); }   /* #F9FFD9 */
.why .icon-card__body,
.formats .format-card__body,
.audience .icon-card__body,
.become .icon-card__body { color: var(--muted); font-size: var(--body-2); line-height: 1.5; }

/* =============================== WHY =================================== */
.why { background: var(--bg-2); }   /* #1A1A1A */
/* Icon (80x80 illustration, no badge) sits top-right on its own row; the
   title + body span the full width below it (Figma composition). */
.why .icon-card { display: flex; flex-direction: column; }
.why .icon-card__icon {
  align-self: flex-end;
  width: 80px; height: 80px;
  padding: 0; background: none; border-radius: 0;
  margin-bottom: 0.75rem;
}
.why .icon-card__icon img { width: 100%; height: 100%; object-fit: contain; }
.why__cta { margin-top: 4rem; }
/* Full-width, left-aligned row with generous spacing (Figma), rather than a
   narrow centred cluster. */
.coop {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(2.5rem, 12vw, 160px);   /* Figma: 160px between items */
  margin-top: 4rem;
  padding-top: 2.5rem;
}
.coop__label { color: var(--white-soft); font-weight: 700; font-size: var(--title-1); flex-shrink: 0; }
.coop__logo { flex-shrink: 0; }
.coop__logo img {
  height: 68px;
  width: auto;
  object-fit: contain;
}

/* ============================== PRACTICE =============================== */
.practice-banner {
  background: var(--primary-light-active);
  color: var(--black);
  text-align: center;
  padding-block: clamp(2.5rem, 6vw, 5rem);
}
.practice-banner .h2 { letter-spacing: -0.03em; }
.practice { background: var(--bg-3); }   /* #1F1F1F */
.practice__cards { gap: 1.75rem; }
.practice-card { padding: 2.5rem; position: relative; }
.practice-card__icon {
  display: block;
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  color: var(--primary);
}
.practice-card__title {
  font-size: var(--h4);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--primary-light);
  margin-bottom: 2rem;
  max-width: 70%;
}
.feature-list { display: flex; flex-direction: column; gap: 1.25rem; }
.feature-list li {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted-2);
}
.feature-list strong { color: var(--white); font-weight: 700; }
.practice__closing { margin: 3.5rem 0 4rem; }

/* ============================== FORMATS =============================== */
.formats .h2 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.03em; }   /* Figma Header 5: 64px */
.format-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.format-card { display: flex; flex-direction: column; }
/* Image: rounded 8px with a subtle dark overlay (Figma rgba(0,0,0,0.2)). */
.format-card__img {
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.format-card__img img { width: 100%; height: 100%; object-fit: cover; }
.format-card__img::after { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.2); }
.format-card__title { font-size: var(--title-1); font-weight: 700; margin-bottom: 1rem; }   /* Figma text gap 16px */

@media (max-width: 900px) { .format-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .format-grid { grid-template-columns: 1fr; } }

/* ============================== AUDIENCE ================================ */
.audience { background: var(--bg-2); }   /* #1A1A1A */
/* Icon box (56x56, tinted, rounded) sits LEFT of the title; body copy spans
   full width below (Figma composition, differs from the Why cards). */
.audience .icon-card { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 1rem 1.5rem; }
.audience .icon-card__icon {
  width: 56px; height: 56px;
  padding: 8px;
  border-radius: 12px;
  background: rgba(219, 219, 219, 0.2);
  margin-bottom: 0;
  flex-shrink: 0;
}
.audience .icon-card__icon img { width: 40px; height: 40px; }
.audience .icon-card__title { flex: 1; min-width: 0; margin-bottom: 0; font-size: var(--title-1); }
.audience .icon-card__body { flex-basis: 100%; }

/* =============================== REVIEW ============================== */
.review { padding-bottom: 0; }
.review .section-lead {
  font-size: clamp(1.375rem, 2.5vw, 2rem);   /* Figma Header 4: 32px bold */
  letter-spacing: -0.015em;
}
.review__wide { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
/* Photo strip — 7 portrait images, edge to edge (no gaps), 20% dark overlay */
.review-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  overflow: hidden;
}
.review-strip__img { position: relative; aspect-ratio: 183 / 295; overflow: hidden; }
.review-strip__img img { width: 100%; height: 100%; object-fit: cover; }
.review-strip__img::after { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.2); }

.review__stats { margin-bottom: clamp(3rem, 6vw, 5rem); }

/* Testimonial cards use the Figma "Wrapper" card style + real brand logos */
.review .card {
  background: rgba(219, 219, 219, 0.1);
  border: 1px solid rgba(251, 251, 251, 0.5);
  border-radius: 12px;
  padding: 32px;
}
.review__testimonials { margin-bottom: 4rem; }
.testimonial { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.testimonial__logo { height: 44px; display: flex; align-items: center; }
.testimonial__logo img { height: 44px; width: auto; object-fit: contain; }
.testimonial__body { font-size: 1rem; color: var(--muted); line-height: 1.5; flex: 1; }
.testimonial__link {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.testimonial__link:hover { color: var(--primary); }

/* "As featured in" — full-width #1A1A1A band, label + 4 press logos spread out */
.press { background: var(--bg-2); padding-block: 56px; }
.press__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.press__label { color: var(--white-soft); font-weight: 700; font-size: var(--title-1); flex-shrink: 0; }
.press__logo { flex-shrink: 0; display: flex; align-items: center; }
.press__logo img { width: auto; object-fit: contain; }
.press__logo img[src*="ard"] { height: 44px; }
.press__logo img[src*="swr"] { height: 34px; }
.press__logo img[src*="mannheimer"] { height: 50px; }
.press__logo img[src*="rhein"] { height: 28px; }

/* ============================ BECOME PARTNER ========================= */
.become .h3 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.03em; }   /* Figma Header 5: 64px */
.become .section-lead { font-size: clamp(1.375rem, 2.5vw, 2rem); }              /* Figma Header 4: 32px */

@media (max-width: 700px) {
  .review-strip { grid-template-columns: repeat(4, 1fr); }
  .review-strip__img:nth-child(n+5) { display: none; }
}

/* ============================== BECOME =================================== */
.become .section-lead { font-size: clamp(1.125rem, 2.4vw, 1.75rem); max-width: none; }
.become .h3 { font-size: clamp(1.75rem, 4.2vw, 3.25rem); }
/* Practice lead spans a single full-width line, matching Figma */
.practice .section-lead { max-width: none; }
.become .btn-row { margin-top: 3rem; }

/* =============================== CONTACT ============================== */
.contact { background: var(--bg-3); }   /* #1F1F1F */
.contact__grid { gap: 1.5rem; margin-bottom: 3rem; }
.contact .btn { padding: 0.875rem 1.75rem; }
/* Row card: large B&W photo (left) + tinted details panel (right), 1px border. */
.contact-card {
  display: flex;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 1px solid rgba(251, 251, 251, 0.5);
  border-radius: 8px;
}
/* Image is absolutely positioned so it fills (and crops) the card height set
   by the details panel, instead of forcing the card to the photo's tall aspect. */
.contact-card__img { flex: 0 0 46%; position: relative; overflow: hidden; align-self: stretch; }
.contact-card__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 25%; filter: grayscale(1); }
/* Per-photo crop so each face is framed like the Figma */
.contact-card__img img[src*="chantal"] { object-position: center 30%; }
.contact-card__img img[src*="matthias"] { object-position: center 12%; }
.contact-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  background: rgba(219, 219, 219, 0.2);
}
.contact-card__name { font-size: var(--title-1); font-weight: 700; color: #fbfbfb; line-height: 1.2; }
.contact-card__role { color: var(--muted); font-size: 1rem; margin-bottom: 1rem; }
.contact-card__link { color: var(--white-soft); font-size: 1rem; display: block; margin-bottom: 0.5rem; }
.contact-card__link:hover { color: var(--primary); }
.contact-card__phone { color: var(--white-soft); font-size: 1rem; }

@media (max-width: 480px) {
  .contact-card { flex-direction: column; }
  .contact-card__img { flex: none; width: 100%; aspect-ratio: 16/11; }
}

/* =============================== FOOTER ============================== */
.footer { background: var(--bg-3); padding-top: 8px; }   /* thin #1F1F1F strip on top */
.footer__bar { background: var(--bg-1); padding-block: 80px 60px; }   /* #111 */
.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 3rem;
}
.footer__left { display: flex; gap: clamp(2.5rem, 5vw, 80px); flex-wrap: wrap; }
.footer__links { display: flex; flex-direction: column; gap: 4px; }
.footer__links a {
  padding-block: 12px;
  font-size: 0.8125rem;              /* 13px Bold */
  font-weight: 700;
  letter-spacing: 0.09em;            /* 1.17px */
  text-transform: uppercase;
  color: var(--white-soft);
  white-space: nowrap;
  transition: color 0.15s ease;
}
.footer__links a:hover { color: var(--primary); }
.footer__details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 10px;
  font-size: 1rem;                   /* 16px Light */
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: var(--white-soft);
  font-style: normal;
}
.footer__details a { transition: color 0.15s ease; }
.footer__details a:hover { color: var(--primary); }
.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.5rem;
}
.footer__social { display: flex; gap: 32px; }
.footer__social a { display: block; }
.footer__social img { width: 44px; height: 44px; display: block; }
.footer__copy { font-size: 1rem; font-weight: 300; letter-spacing: 0.02em; color: var(--white-soft); text-align: right; }

@media (max-width: 900px) {
  .footer__content { flex-direction: column; gap: 2.5rem; }
  .footer__right { align-items: flex-start; }
  .footer__copy { text-align: left; }
}

/* ===================== shared section-head sizing ===================== */
.section-head .h2,
.section-head .h3 { margin-bottom: 1rem; }
@media (max-width: 899px) {
  .practice-card__title { max-width: 100%; }
  .practice-card__icon { position: static; margin-bottom: 1.25rem; }
  .why .icon-card { position: static; }
  .why .icon-card__icon { position: static; margin-bottom: 1.25rem; }
  .why .icon-card__title { padding-right: 0; }
}
@media (max-width: 600px) {
  .coop { flex-direction: column; gap: 1rem; text-align: center; }
  .updates__title { font-size: 1.85rem; }
}

@media (max-width: 767px) {
  .audience .icon-card { gap: 1rem; }
  .audience .icon-card__title { font-size: 1.25rem; }
}

