/* ============================================
   INFUERO MEDICAL — Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --red: #BA1A1A;
  --red-dark: #8A0F0F;
  --red-soft: #F5E8E8;
  --black: #0A0A0A;
  --ink: #1A1A1A;
  --slate: #4A4A4A;
  --grey: #6B6B6B;
  --grey-light: #B8B8B8;
  --line: #E5E1DC;
  --line-soft: #EFEAE3;
  --cream: #FBF8F3;
  --paper: #F7F3EC;
  --white: #FFFFFF;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

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

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

/* ============================================
   TYPOGRAPHY
   ============================================ */

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--red);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--black);
  font-variation-settings: "opsz" 144;
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.1;
}

h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.2;
}

h4 {
  font-size: 1.15rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: -0.01em;
}

p {
  margin-bottom: 1.25rem;
  color: var(--slate);
}

p:last-child {
  margin-bottom: 0;
}

.lede {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.01em;
}

strong {
  font-weight: 600;
  color: var(--black);
}

em {
  font-style: italic;
  font-family: var(--font-display);
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: clamp(4rem, 9vw, 7rem) 0;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--black);
}

.nav-brand img {
  height: 28px;
  width: auto;
}

.nav-brand-tag {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  border-left: 1px solid var(--line);
  padding-left: 0.85rem;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--slate);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-links a.active {
  color: var(--black);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
}

.nav-lang {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  border: 1px solid var(--line);
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav-lang:hover {
  border-color: var(--red);
  color: var(--red);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem var(--gutter) 1.5rem;
    gap: 0;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-links li:last-child {
    border-bottom: none;
  }
  .nav-links a {
    display: block;
    padding: 0.85rem 0;
    font-size: 1rem;
  }
  .nav-toggle {
    display: inline-block;
  }
  .nav-brand-tag {
    display: none;
  }
}

/* ============================================
   HERO
   ============================================ */

.hero {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(4rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(186, 26, 26, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

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

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

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

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--slate);
  max-width: 720px;
  letter-spacing: -0.01em;
}

.hero-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* ============================================
   BUTTONS / CTAs
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--white);
}

.btn-arrow::after {
  content: '→';
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.btn-arrow:hover::after {
  transform: translateX(3px);
}

/* ============================================
   GENERIC PROSE BLOCKS
   ============================================ */

.prose-block {
  max-width: 760px;
}

.prose-block p + p {
  margin-top: 1rem;
}

.section-head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 760px;
}

.section-head h2 {
  margin-bottom: 1rem;
}

.section-head .lede {
  margin-top: 1.25rem;
}

/* ============================================
   CARDS / PRACTICE AREAS
   ============================================ */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2.25rem 2rem 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--red);
  transition: width 0.4s ease;
}

.card:hover::before {
  width: 100%;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px -20px rgba(0, 0, 0, 0.18);
  border-color: var(--line-soft);
}

.card-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
}

.card h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 500;
}

.card p {
  font-size: 0.95rem;
  color: var(--slate);
  flex: 1;
  margin-bottom: 1.5rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.card-link::after {
  content: '→';
  transition: transform 0.25s ease;
}

.card:hover .card-link::after {
  transform: translateX(4px);
}

/* ============================================
   VALUES BLOCKS
   ============================================ */

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.value-item {
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.value-item .num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--red);
  font-weight: 400;
  margin-bottom: 1rem;
  display: block;
}

.value-item h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
  color: var(--black);
  letter-spacing: -0.01em;
}

.value-item p {
  font-size: 0.94rem;
  color: var(--slate);
}

/* ============================================
   PROCESS / STEPS
   ============================================ */

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

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

.step-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.02em;
}

.step-body h3 {
  margin-bottom: 0.85rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.step-body p {
  font-size: 1rem;
}

.step-outcome {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
  font-size: 0.92rem;
  color: var(--ink);
}

.step-outcome strong {
  color: var(--red);
  font-weight: 600;
}

@media (max-width: 640px) {
  .step {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .step-number {
    font-size: 2rem;
  }
}

/* ============================================
   FAQ
   ============================================ */

.faq {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

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

.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 1.6rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.faq-q:hover {
  color: var(--red);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.1rem;
  font-weight: 300;
  margin-top: 4px;
  transition: transform 0.25s ease;
}

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

.faq-a {
  display: none;
  padding: 0 0 1.8rem;
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 800px;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-a p + p {
  margin-top: 0.85rem;
}

.faq-divider {
  padding: 2rem 0 1rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  font-style: italic;
  color: var(--red);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--red);
  margin-bottom: 0;
}

/* ============================================
   PRICING / TARIFICATION
   ============================================ */

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

.price-block {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2rem 1.75rem;
  border-radius: 4px;
}

.price-block h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
  color: var(--black);
}

.price-block p {
  font-size: 0.94rem;
  color: var(--slate);
  margin-bottom: 0;
}

.pricing-note {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--red);
  background: var(--paper);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--ink);
}

/* ============================================
   SITUATIONS / LISTS WITH BLOCKS
   ============================================ */

.situations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.situation {
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border-left: 2px solid var(--red);
  border-top: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.situation h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.65rem;
  color: var(--black);
}

.situation p {
  font-size: 0.94rem;
  color: var(--slate);
  margin: 0;
}

.situation-tag {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
  display: block;
}

/* ============================================
   PROFILE BLOCK (Chiara)
   ============================================ */

.profile {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

@media (max-width: 880px) {
  .profile {
    grid-template-columns: 1fr;
  }
  .profile-photo {
    max-width: 380px;
  }
}

.profile-photo {
  position: relative;
}

.profile-photo img {
  width: 100%;
  border-radius: 4px;
  filter: grayscale(15%);
}

.profile-photo::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 18px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--red);
  border-radius: 4px;
  z-index: -1;
}

.profile-content h2 {
  margin-bottom: 0.5rem;
}

.profile-role {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--red);
  margin-bottom: 1.75rem;
  display: block;
  letter-spacing: 0.01em;
}

.profile-content p {
  margin-bottom: 1.1rem;
}

.profile-meta {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 540px) {
  .profile-meta {
    grid-template-columns: 1fr;
  }
}

.profile-meta-block h5 {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.85rem;
}

.profile-meta-block ul {
  list-style: none;
  padding: 0;
}

.profile-meta-block li {
  font-size: 0.92rem;
  color: var(--slate);
  margin-bottom: 0.45rem;
  line-height: 1.5;
}

.profile-meta-block .lang {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}

/* ============================================
   FEATURE / IMAGE BLOCK
   ============================================ */

.feature-image {
  width: 100%;
  height: clamp(300px, 45vw, 480px);
  object-fit: cover;
  border-radius: 4px;
  margin: 3rem 0;
  filter: grayscale(20%);
}

/* ============================================
   QUOTE / PULLOUT
   ============================================ */

.pullquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  line-height: 1.35;
  color: var(--black);
  letter-spacing: -0.015em;
  border-left: 3px solid var(--red);
  padding: 0.5rem 0 0.5rem 2rem;
  margin: 3rem 0;
  max-width: 760px;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.final-cta {
  background: var(--black);
  color: var(--white);
  padding: clamp(4rem, 9vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(186, 26, 26, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.final-cta .lede {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 640px;
}

.final-cta .btn-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.final-cta .btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.cta-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

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

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

.footer-brand img {
  height: 32px;
  margin-bottom: 1rem;
  filter: brightness(1.1);
}

.footer-brand p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
}

.footer h5 {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 0.65rem;
}

.footer ul a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.footer ul a:hover {
  color: var(--red);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   AUDIENCE SPLIT (for donnees-sante)
   ============================================ */

.audience-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.audience-tab {
  padding: 1rem 1.5rem 1rem 0;
  margin-right: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--grey);
  letter-spacing: -0.01em;
  position: relative;
  transition: color 0.2s ease;
}

.audience-tab.active {
  color: var(--black);
}

.audience-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 1.5rem;
  height: 2px;
  background: var(--red);
}

.audience-content {
  display: none;
}

.audience-content.active {
  display: block;
}

/* ============================================
   BACKGROUND VARIANTS
   ============================================ */

.bg-paper {
  background: var(--paper);
}

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

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

/* ============================================
   DIVIDER
   ============================================ */

.divider {
  height: 1px;
  background: var(--line);
  margin: clamp(3rem, 6vw, 5rem) 0;
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: clamp(2.5rem, 5vw, 4rem) 0 2rem;
}

.section-divider span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--red);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.8s ease-out backwards;
}

.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.25s; }
.fade-up-3 { animation-delay: 0.4s; }
.fade-up-4 { animation-delay: 0.55s; }

/* ============================================
   TWO-COLUMN INTRO
   ============================================ */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

@media (max-width: 880px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.two-col-aside h2 {
  position: sticky;
  top: 100px;
}

@media (max-width: 880px) {
  .two-col-aside h2 {
    position: static;
  }
}

/* ============================================
   ICON CIRCLE
   ============================================ */

.icon-circle {
  width: 56px;
  height: 56px;
  border: 1px solid var(--red);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 1.5rem;
}

.icon-circle svg {
  width: 24px;
  height: 24px;
}

/* ============================================
   TARGETED LINKS LIST
   ============================================ */

.crosslinks {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--paper);
  border-radius: 4px;
}

.crosslinks h5 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.crosslinks ul {
  list-style: none;
  padding: 0;
}

.crosslinks ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
}

.crosslinks ul li:last-child {
  border-bottom: none;
}

.crosslinks ul a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--black);
}

.crosslinks ul a:hover {
  color: var(--red);
}

.crosslinks ul a::after {
  content: '→';
  color: var(--red);
}
