/* ===========================
   OXILIA — CSS Principal
   Design : chaleureux, humain, accessible
   =========================== */

:root {
  /* Palette — corail chaud + marine profond */
  --c-coral:       #E8634A;
  --c-coral-light: #F5896D;
  --c-coral-pale:  #FDF0ED;
  --c-navy:        #1B4332;
  --c-navy-mid:    #2A6348;
  --c-cream:       #FBF8F4;
  --c-warm-gray:   #6B7280;
  --c-light-gray:  #F3F4F6;
  --c-border:      #E5E0DA;
  --c-white:       #FFFFFF;
  --c-text:        #1C1917;
  --c-text-light:  #57534E;
  --c-gold:        #C9A84C;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Borders */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);
  --shadow-coral: 0 8px 32px rgba(232, 99, 74, 0.25);

  /* Transitions */
  --t-fast: 160ms ease;
  --t-mid:  280ms ease;
  --t-slow: 480ms cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Layout */
  --container: 1180px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--c-text);
  background-color: var(--c-cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  background: var(--c-navy);
  color: var(--c-white);
  padding: .5rem 1rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 1rem; }

/* Links */
a { color: var(--c-coral); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-coral-light); }

/* Focus */
:focus-visible {
  outline: 3px solid var(--c-coral);
  outline-offset: 3px;
  border-radius: 3px;
}

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

/* Lists */
ul { list-style: none; }

/* ===== CONTAINERS ===== */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--t-mid);
  white-space: nowrap;
}

.btn-primary {
  background: var(--c-coral);
  color: var(--c-white);
  box-shadow: var(--shadow-coral);
}
.btn-primary:hover {
  background: var(--c-coral-light);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232, 99, 74, 0.35);
}

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

.btn-white {
  background: var(--c-white);
  color: var(--c-coral);
  border-color: var(--c-white);
}
.btn-white:hover {
  background: var(--c-coral-pale);
  color: var(--c-coral);
}

.btn-white-outline {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,.6);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,.15);
  color: var(--c-white);
}

.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

.section-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-coral);
  margin-bottom: .75rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--c-navy);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--c-text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-header--light h2 { color: var(--c-white); }
.section-header--light p  { color: rgba(255,255,255,.8); }
.section-header--light .section-eyebrow { color: var(--c-coral-light); }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--c-navy);
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  padding: .5rem 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.topbar a {
  color: rgba(255,255,255,.9);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.topbar a:hover { color: var(--c-white); }

.topbar-cta {
  background: var(--c-coral);
  color: var(--c-white) !important;
  text-decoration: none !important;
  padding: .25rem .85rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: background var(--t-fast);
}
.topbar-cta:hover { background: var(--c-coral-light); }

/* ===== HEADER / NAV ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding-block: .85rem;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.1;
  flex-shrink: 0;
}
.logo-ox {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--c-navy);
  letter-spacing: -.01em;
}
.logo-tag {
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-coral);
  font-weight: 600;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: block;
  padding: .5rem .85rem;
  color: var(--c-text);
  font-size: .93rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background var(--t-fast), color var(--t-fast);
}
.nav-links > li > a:hover {
  background: var(--c-coral-pale);
  color: var(--c-coral);
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  padding: .5rem;
  z-index: 200;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: .6rem 1rem;
  color: var(--c-text);
  font-size: .9rem;
  border-radius: var(--radius-sm);
  transition: background var(--t-fast);
}
.dropdown li a:hover {
  background: var(--c-coral-pale);
  color: var(--c-coral);
}

.nav-cta { margin-left: .5rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-navy);
  border-radius: 2px;
  transition: all var(--t-mid);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--c-navy);
  min-height: 600px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(232, 99, 74, .18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 90%, rgba(201, 168, 76, .12) 0%, transparent 60%),
    linear-gradient(135deg, #1B4332 0%, #2A6348 100%);
}

/* Subtle pattern */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-xl);
  align-items: center;
  padding-block: var(--space-3xl) var(--space-2xl);
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  padding: .4rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.25rem;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--c-white);
  margin-bottom: 1.25rem;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--c-coral-light);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-reassurance {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-reassurance span {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
}

/* Hero Card */
.hero-card {
  background: var(--c-white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--c-navy);
  margin-bottom: 1.25rem;
  text-align: center;
}

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

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

.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--c-text);
}

.form-group input,
.form-group select {
  padding: .7rem .9rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--c-text);
  background: var(--c-cream);
  transition: border-color var(--t-fast);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--c-coral);
  outline: none;
  background: var(--c-white);
}

.form-legal {
  text-align: center;
  font-size: .78rem;
  color: var(--c-text-light);
}

/* ===== STATS ===== */
.stats {
  background: var(--c-coral);
  padding: var(--space-lg) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-sm);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  text-align: center;
  padding: .5rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--c-white);
  line-height: 1;
  white-space: nowrap;
  display: block;
}

.stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.8);
  font-weight: 500;
  white-space: nowrap;
  display: block;
}

/* Separators */
.stat-item + .stat-item {
  border-left: 1px solid rgba(255,255,255,.25);
}

/* ===== SERVICES ===== */
.services {
  padding: var(--space-3xl) 0;
  background: var(--c-cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--t-mid);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--c-coral);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card--featured {
  grid-column: span 1;
  border-color: var(--c-coral);
  background: linear-gradient(to bottom right, var(--c-white) 0%, var(--c-coral-pale) 100%);
}

/* First two featured cards take up full first row */
.services-grid .service-card--featured:nth-child(1),
.services-grid .service-card--featured:nth-child(2) {
  /* stays single col in 3-col grid */
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: .85rem;
  display: block;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--c-navy);
  margin-bottom: .6rem;
  line-height: 1.3;
}

.service-card h3 a {
  color: inherit;
  text-decoration: none;
}
.service-card h3 a:hover { color: var(--c-coral); }

.service-card p {
  color: var(--c-text-light);
  font-size: .92rem;
  line-height: 1.65;
  margin-bottom: .85rem;
}

.service-list {
  list-style: none;
  margin-bottom: 1rem;
  flex: 1;
}
.service-list li {
  font-size: .88rem;
  color: var(--c-text-light);
  padding: .25rem 0;
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.service-list li::before {
  content: '✓';
  color: var(--c-coral);
  font-weight: 700;
  flex-shrink: 0;
}

.service-link {
  color: var(--c-coral);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap var(--t-fast);
}
.service-link:hover { gap: .6rem; color: var(--c-coral-light); }

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--c-navy);
  padding: var(--space-3xl) 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 1rem;
  margin-bottom: var(--space-xl);
}

.step {
  text-align: center;
  padding: 1.5rem;
}

.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--c-coral);
  opacity: .7;
  line-height: 1;
  margin-bottom: .75rem;
  display: block;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: .75rem;
}

.step p {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--c-coral);
  opacity: .5;
  align-self: center;
  margin-top: -1.5rem;
}

.how-cta { text-align: center; }

/* ===== PATHOLOGIES ===== */
.pathologies {
  padding: var(--space-3xl) 0;
  background: var(--c-white);
}

.patho-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.patho-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  padding: 1.25rem 1rem;
  background: var(--c-cream);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--t-mid);
}

.patho-card:hover {
  border-color: var(--c-coral);
  background: var(--c-coral-pale);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.patho-icon { font-size: 2rem; }

.patho-name {
  font-size: .82rem;
  font-weight: 600;
  color: var(--c-navy);
  text-align: center;
}

/* ===== FINANCEMENT ===== */
.financement {
  background: var(--c-cream);
  padding: var(--space-3xl) 0;
}

.financement-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-xl);
  align-items: center;
}

.financement-content .section-eyebrow {
  margin-bottom: .75rem;
}

.financement-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--c-navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.financement-content > p {
  color: var(--c-text-light);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.financement-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  list-style: none;
}

.financement-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .5rem;
  align-items: baseline;
  padding-left: 1.2rem;
  position: relative;
}

.financement-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .6rem;
  width: .5rem;
  height: .5rem;
  background: var(--c-coral);
  border-radius: 50%;
}

.financement-list strong {
  color: var(--c-navy);
  font-weight: 600;
  font-size: .95rem;
  display: block;
  grid-column: 1 / -1;
}

.financement-list span {
  color: var(--c-text-light);
  font-size: .88rem;
  grid-column: 1 / -1;
  margin-top: .15rem;
}

/* Financement card */
.financement-card {
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.fc-header {
  background: var(--c-navy);
  color: var(--c-white);
  font-weight: 600;
  font-size: .9rem;
  padding: 1rem 1.5rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.fc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .85rem 1.5rem;
  border-bottom: 1px solid var(--c-border);
  font-size: .93rem;
}

.fc-row span { color: var(--c-text-light); }
.fc-row strong { color: var(--c-text); }

.fc-credit strong { color: var(--c-coral); }
.fc-apa strong { color: var(--c-gold); }

.fc-total {
  background: var(--c-coral-pale);
  border-bottom: none;
  font-weight: 700;
}
.fc-total span { color: var(--c-navy); font-weight: 700; }
.fc-total strong { color: var(--c-coral); font-size: 1.05rem; }

.fc-note {
  font-size: .75rem;
  color: var(--c-text-light);
  padding: .75rem 1.5rem;
  text-align: center;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--c-white);
  padding: var(--space-3xl) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: var(--c-cream);
  border: 1.5px solid var(--c-border);
  border-left: 4px solid var(--c-coral);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.testimonial-stars {
  color: var(--c-gold);
  font-size: 1rem;
  letter-spacing: .1em;
  margin-bottom: .75rem;
}

.testimonial p {
  color: var(--c-text);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: var(--c-navy);
  font-size: .92rem;
}

.testimonial span {
  font-size: .82rem;
  color: var(--c-text-light);
}

.testimonials-cta { text-align: center; margin-top: var(--space-lg); }

/* ===== WHY US ===== */
.why-us {
  background: var(--c-navy);
  padding: var(--space-3xl) 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--t-mid);
}

.why-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(232,99,74,.4);
  transform: translateY(-4px);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: .85rem;
  display: block;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: .7rem;
}

.why-card p {
  font-size: .9rem;
  color: rgba(255,255,255,.68);
  line-height: 1.65;
}

/* ===== FAQ ===== */
.faq {
  background: var(--c-cream);
  padding: var(--space-3xl) 0;
}

.faq-list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq-item {
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--t-fast);
}

.faq-item[open] {
  border-color: var(--c-coral);
}

.faq-item summary {
  padding: 1.1rem 1.5rem;
  font-weight: 600;
  font-size: .97rem;
  color: var(--c-navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--t-fast);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--c-coral);
  flex-shrink: 0;
  transition: transform var(--t-fast);
  line-height: 1;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover { background: var(--c-coral-pale); }

.faq-answer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--c-border);
  background: var(--c-cream);
}

.faq-answer p {
  color: var(--c-text-light);
  font-size: .93rem;
  line-height: 1.7;
  margin-bottom: .75rem;
}
.faq-answer p:last-child { margin-bottom: 0; }

.faq-answer ul {
  list-style: none;
  margin: .5rem 0;
  padding-left: .5rem;
}
.faq-answer ul li {
  font-size: .9rem;
  color: var(--c-text-light);
  padding: .25rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.faq-answer ul li::before {
  content: '→';
  color: var(--c-coral);
  position: absolute;
  left: 0;
}

/* ===== BLOG PREVIEW ===== */
.blog-preview {
  background: var(--c-white);
  padding: var(--space-3xl) 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: all var(--t-mid);
}

.blog-card:hover {
  border-color: var(--c-coral);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.blog-cat {
  display: inline-block;
  background: var(--c-coral-pale);
  color: var(--c-coral);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: var(--radius-sm);
}

.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-navy);
  line-height: 1.35;
}

.blog-card h3 a {
  color: inherit;
  text-decoration: none;
}
.blog-card h3 a:hover { color: var(--c-coral); }

.blog-card p {
  color: var(--c-text-light);
  font-size: .88rem;
  line-height: 1.6;
  flex: 1;
}

.blog-link {
  font-weight: 600;
  font-size: .88rem;
  color: var(--c-coral);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap var(--t-fast);
}
.blog-link:hover { gap: .6rem; }

.blog-cta { text-align: center; margin-top: var(--space-lg); }

/* ===== CTA FINAL ===== */
.cta-section {
  background: linear-gradient(135deg, var(--c-coral) 0%, #D44F35 100%);
  padding: var(--space-2xl) 0;
}

.cta-inner {
  text-align: center;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: .75rem;
}

.cta-content p {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--c-navy);
  color: rgba(255,255,255,.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  padding: var(--space-2xl) 0 var(--space-xl);
}

.footer-brand .footer-logo .logo-ox { color: var(--c-white); }
.footer-brand .footer-logo .logo-tag { color: var(--c-coral-light); }

.footer-brand p {
  font-size: .88rem;
  line-height: 1.65;
  color: rgba(255,255,255,.65);
  margin-top: .85rem;
  margin-bottom: 1rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1rem;
}
.footer-contact a {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  transition: color var(--t-fast);
}
.footer-contact a:hover { color: var(--c-white); }

.footer-certifs {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.footer-certifs span {
  font-size: .78rem;
  color: var(--c-gold);
  letter-spacing: .03em;
}

.footer-nav h4 {
  color: var(--c-white);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-nav ul li a {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  transition: color var(--t-fast);
}
.footer-nav ul li a:hover { color: var(--c-white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: var(--space-sm) 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}

.footer-bottom nav {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom nav a {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  transition: color var(--t-fast);
}
.footer-bottom nav a:hover { color: var(--c-white); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content > * {
  animation: fadeInUp .6s ease both;
}
.hero-badge    { animation-delay: .1s; }
.hero-content h1 { animation-delay: .2s; }
.hero-subtitle { animation-delay: .3s; }
.hero-actions  { animation-delay: .4s; }
.hero-reassurance { animation-delay: .5s; }
.hero-card     { animation: fadeInUp .7s .3s ease both; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .patho-grid { grid-template-columns: repeat(3, 1fr); }
  .financement-inner { grid-template-columns: 1fr; }
  .financement-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
}

@media (max-width: 768px) {
  html { font-size: 15px; }

  /* Topbar */
  .topbar-inner { flex-direction: column; gap: .25rem; text-align: center; }

  /* Nav */
  .nav-inner { position: relative; padding-block: .7rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + .5rem);
    left: 0; right: 0;
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: .75rem;
    flex-direction: column;
    gap: 0;
    z-index: 200;
  }
  .nav-links.is-open { display: flex; }
  .nav-links > li > a { padding: .75rem 1rem; }
  .nav-cta { display: none; }
  .dropdown { position: static; box-shadow: none; border: none; background: var(--c-coral-pale); margin: .25rem 0; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-reassurance { flex-direction: column; gap: .4rem; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(4),
  .stat-item:nth-child(5) { border-left: none; }

  /* Grids */
  .services-grid  { grid-template-columns: 1fr; }
  .steps-grid     { grid-template-columns: 1fr; }
  .step-arrow     { transform: rotate(90deg); text-align: center; }
  .patho-grid     { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid       { grid-template-columns: 1fr; }
  .blog-grid      { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }

  /* Footer */
  .footer-bottom-inner { flex-direction: column; gap: .75rem; text-align: center; }
  .footer-bottom nav { flex-wrap: wrap; justify-content: center; }

  /* CTA */
  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .patho-grid { grid-template-columns: repeat(2, 1fr); }
}
