:root {
  --bg: #F1EFE9;
  --bg-soft: #F4DFC2;
  --surface: #ffffff;
  --card: #ffffff;
  --text: #0e3e20;
  --muted: rgba(50,52,58,0.65);
  --primary: #00867d;
  --primary-2: #33a399;
  --accent: #F48A7C;
  --highlight: #F48A7C;
  --danger: #F48A7C;
  --ring: rgba(0,134,125,0.30);
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1000px 500px at -10% -10%, rgba(244,138,124,0.08), transparent 55%),
    radial-gradient(900px 450px at 110% 0%, rgba(244,223,194,0.6), transparent 50%),
    linear-gradient(180deg, var(--bg), var(--bg));
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.center {
  text-align: center;
}

a {
  color: var(--text);
  text-decoration: none;
}

a:hover {
  color: var(--primary);
}

img {
  display: block;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: saturate(120%) blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 128px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 128px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.brand-name {
  font-size: 1.5rem;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: transparent;
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 10px;
  border-radius: 10px;
  color: var(--muted);
}

.nav-list a:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--primary);
}

.nav-list a.active {
  color: var(--highlight);
}

/* Buttons - CTA ULTRA-ÉVIDENTS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid var(--primary);
  border-radius: 12px;
  padding: 10px 14px;
  color: var(--text);
  background: var(--surface);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-weight: 600;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.btn-sm {
  padding: 8px 12px;
  border-radius: 10px;
}

.btn-lg {
  padding: 18px 32px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.1rem;
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 134, 125, 0.4);
  font-weight: 700;
}

.btn-primary:hover {
  background: #006b63;
  border-color: #006b63;
  box-shadow: 0 12px 32px rgba(0, 134, 125, 0.5);
  transform: translateY(-4px) scale(1.03);
}

.btn-primary:active {
  transform: translateY(-2px) scale(1);
}

.btn-ghost {
  background: transparent;
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.12);
}

.btn-ghost:hover {
  background: rgba(0, 134, 125, 0.08);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 134, 125, 0.15);
}

.btn .btn-icon {
  display: inline-flex;
}

/* Hero */
.hero {
  padding: 64px 0 24px;
  background: linear-gradient(180deg, rgba(244, 138, 124, 0.08), transparent 40%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.hero h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin: 0 0 12px;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
  color: var(--muted);
}

.hero-trust .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
}

.kpi strong {
  color: var(--text);
}

.hero-art {
  position: relative;
}

.card {
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.metric {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
}

.metric i {
  color: var(--accent);
}

.metric-title {
  font-size: 0.9rem;
  color: var(--muted);
}

.metric-value {
  font-weight: 600;
}

.process {
  margin-top: 14px;
  padding: 14px;
}

.step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.02);
}

.step + .step {
  margin-top: 6px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  font-weight: 700;
  color: #fff;
}

/* Sections */
.section {
  padding: 56px 0;
}

.section.alt {
  background: #F4DFC2;
}

.section.strip {
  padding: 28px 0;
  background: linear-gradient(90deg, rgba(244, 138, 124, 0.12), rgba(244, 223, 194, 0.85));
}

.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: 2rem;
}

.section-head p {
  color: var(--muted);
  margin: 0;
  font-size: 1.05rem;
}

/* Grids */
.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* MATRICE COMPARATIVE - VERSION DESKTOP */
.comparison-matrix {
  background: #ffffff;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  margin: 40px 0;
}

.matrix-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

/* Header de la matrice */
.matrix-table thead th {
  background: #f8f9fa;
  padding: 24px 16px;
  text-align: center;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  vertical-align: middle;
}

.matrix-table thead th:first-child {
  text-align: left;
  font-size: 1.1rem;
  background: #ffffff;
  width: 38%;
}

/* Bordure verticale entre Formateur Indépendant et Organisme Essentiel */
.matrix-table thead th:nth-child(3) {
  border-left: 2px solid #000000;
}

.matrix-table tbody td:nth-child(3) {
  border-left: 2px solid #000000;
}

.matrix-table tfoot td:nth-child(3) {
  border-left: 2px solid #000000;
}

/* Colonne recommandée */
.matrix-table thead th.recommended {
  background: var(--primary);
  color: #ffffff;
  position: relative;
  padding-top: 32px;
}

.matrix-table thead th.recommended::after {
  content: "⭐ RECOMMANDÉ";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0.95;
}

/* Personas */
.matrix-persona {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.matrix-persona-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 4px;
}

.recommended .matrix-persona-icon {
  background: rgba(255, 255, 255, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.matrix-persona-name {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  text-align: center;
}

.matrix-persona-subtitle {
  font-size: 0.85rem;
  opacity: 0.8;
  text-align: center;
  font-weight: 400;
}

/* Corps de la matrice */
.matrix-table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.matrix-table tbody tr:hover {
  background: rgba(0, 134, 125, 0.03);
}

.matrix-table tbody td {
  padding: 20px 16px;
  text-align: center;
  vertical-align: middle;
}

.matrix-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text);
  font-size: 0.95rem;
}

.matrix-table tbody td.recommended {
  background: rgba(0, 134, 125, 0.04);
}

.matrix-table tbody tr:hover td.recommended {
  background: rgba(0, 134, 125, 0.08);
}

.feature-with-icon {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-with-icon i {
  color: var(--primary);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

/* Indicateurs */
.matrix-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #d4edda;
  color: #28a745;
  font-weight: 700;
}

.matrix-cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e9ecef;
  color: #6c757d;
  font-weight: 700;
}

/* Footer avec prix - ALIGNEMENT NATUREL */
.matrix-table tfoot td {
  padding: 32px 16px;
  text-align: center;
  border-top: 3px solid rgba(0, 0, 0, 0.1);
  background: #f8f9fa;
  vertical-align: top;
}

.matrix-table tfoot td:first-child {
  text-align: left;
  font-weight: 400;
  font-size: 0.95rem;
  background: #ffffff;
  padding: 32px 24px;
  vertical-align: middle;
  line-height: 1.6;
}

.matrix-table tfoot td:first-child strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.matrix-table tfoot td:first-child p {
  margin: 0;
  color: var(--muted);
}

.matrix-table tfoot td.recommended {
  background: rgba(0, 134, 125, 0.06);
}

/* Container avec flexbox simple */
.matrix-price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-height: 200px;
}

.matrix-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.matrix-price-details {
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
  flex-grow: 1;
}

/* CTA avec flèche animée */
.matrix-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  background: var(--primary);
  color: #ffffff;
  border: 3px solid var(--primary);
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 134, 125, 0.35);
  cursor: pointer;
  white-space: nowrap;
}

.matrix-cta i {
  width: 20px;
  height: 20px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.matrix-cta:hover {
  background: #005e56;
  border-color: #005e56;
  color: #ffffff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 40px rgba(0, 134, 125, 0.5);
}

.matrix-cta:hover i {
  transform: translateX(4px);
}

.matrix-cta:active {
  transform: translateY(-2px) scale(1.02);
}

.matrix-cta:hover {
  background: #006b63;
  border-color: #006b63;
  color: #ffffff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 40px rgba(0, 134, 125, 0.5);
}

.matrix-cta:active {
  transform: translateY(-2px) scale(1.02);
}

/* VERSION MOBILE - SYSTÈME D'ONGLETS */
.mobile-tabs {
  display: none;
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav-list {
    position: absolute;
    top: 64px;
    right: 12px;
    left: 12px;
    flex-direction: column;
    gap: 8px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 10px;
    display: none;
  }
  .nav-list.open {
    display: flex;
  }
  
  /* Masquer la table sur mobile */
  .comparison-matrix .matrix-table {
    display: none;
  }
  
  /* Afficher le système d'onglets */
  .mobile-tabs {
    display: block;
  }
  
  .tabs-header {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    background: rgba(0, 0, 0, 0.06);
    padding: 4px;
    border-radius: 12px 12px 0 0;
  }
  
  .tab-button {
    background: transparent;
    border: none;
    padding: 12px 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s;
    text-align: center;
  }
  
  .tab-button.active {
    background: #ffffff;
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .tab-button.recommended.active {
    background: var(--primary);
    color: #ffffff;
  }
  
  .tabs-content {
    background: #ffffff;
    padding: 24px;
    border-radius: 0 0 12px 12px;
  }
  
  .tab-panel {
    display: none;
  }
  
  .tab-panel.active {
    display: block;
    animation: fadeIn 0.3s;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .tab-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
  }
  
  .tab-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--bg-soft);
    margin: 0 auto 12px;
  }
  
  .tab-header-icon i {
    color: var(--primary);
  }
  
  .recommended .tab-header-icon {
    background: var(--primary);
  }
  
  .recommended .tab-header-icon i {
    color: #ffffff;
  }
  
  .tab-header h3 {
    margin: 0 0 6px;
    font-size: 1.3rem;
  }
  
  .tab-header .subtitle {
    color: var(--muted);
    font-size: 0.9rem;
  }
  
  .recommended .tab-header::before {
    content: "⭐ RECOMMANDÉ";
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
  }
  
  .features-list-mobile {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
  }
  
  .features-list-mobile li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  
  .features-list-mobile li:last-child {
    border-bottom: none;
  }
  
  .feature-icon {
    color: var(--primary);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
  }
  
  .feature-text {
    flex-grow: 1;
    font-size: 0.95rem;
  }
  
  .feature-status {
    flex-shrink: 0;
  }
  
  .tab-footer {
    text-align: center;
    padding-top: 24px;
    border-top: 2px solid rgba(0, 0, 0, 0.06);
  }
  
  .tab-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
  }
  
  .tab-price-details {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 20px;
    line-height: 1.5;
  }
}

/* Feature cards */
.card-feature {
  padding: 18px;
}

.card-feature i {
  color: var(--primary-2);
}

.card-feature h3 {
  margin: 8px 0 6px;
}

.card-feature p {
  color: var(--muted);
  margin: 0;
}

/* Strip */
.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.strip-cta {
  display: flex;
  gap: 10px;
}

/* Testimonials */
.testimonial {
  padding: 18px;
}

.testimonial p {
  margin: 0 0 12px;
}

.author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.06);
  font-weight: 700;
  color: var(--text);
}

/* Footer */
.site-footer {
  margin-top: 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  padding: 48px 0 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-brand h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* CHANGEMENT CLÉ : 4 colonnes au lieu de 3 */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.f-title {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: var(--text);
}

.f-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.f-links li {
  margin: 6px 0;
}

.f-links a {
  color: var(--muted);
  font-size: 0.85rem;
  transition: color 0.2s ease;
  display: block;
  line-height: 1.4;
}

.f-links a:hover {
  color: var(--primary);
}

/* Responsive footer enrichi */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 0 24px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.footer-base {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.base-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.socials a:hover {
  background: rgba(0, 0, 0, 0.04);
}

/* Page hero */
.page-hero {
  padding: 46px 0 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.page-hero h1 {
  margin: 0 0 8px;
}

.page-hero .lead {
  margin: 0;
}

/* Product */
.product {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: start;
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 18px;
}

.product-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #F4DFC2;
  color: var(--primary);
}

.product-body h2 {
  margin: 0 0 6px;
}

.checklist {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  color: var(--muted);
}

.checklist li {
  position: relative;
  padding-left: 22px;
  margin: 8px 0;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--accent), var(--primary-2));
}

.product-cta {
  text-align: right;
}

.price {
  color: var(--text);
  font-weight: 700;
  margin-bottom: 10px;
}

/* Contact */
.contact-card {
  padding: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

label {
  color: var(--muted);
  font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
select,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #ffffff;
  color: var(--text);
  outline: none;
  transition: 0.15s border, 0.15s box-shadow;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary-2);
  box-shadow: 0 0 0 4px var(--ring);
}

textarea {
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0;
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
}

.form-actions {
  margin-top: 8px;
}

.form-status {
  min-height: 20px;
  margin: 8px 0;
  font-size: 0.95rem;
}

.form-status.ok {
  color: var(--accent);
}

.form-status.err {
  color: var(--danger);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  color: var(--muted);
}

.divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 14px 0;
}

/* Cards */
.card-accent {
  padding: 18px;
  border-left: 4px solid var(--primary);
  background: #F4DFC233;
}

/* Timeline */
.timeline {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.t-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 12px;
}

.t-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #F4DFC2;
  color: var(--primary);
}

/* CTA wide */
.cta-wide {
  background: linear-gradient(90deg, rgba(244, 138, 124, 0.10), rgba(244, 223, 194, 0.85));
}

.cta-wide-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Footer small screens */
@media (max-width: 960px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Focus */
a:focus,
button:focus {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring);
}

/* Selection */
::selection {
  background: rgba(244, 138, 124, 0.25);
}

/* Animations */
.nav-list a,
.btn,
.card,
.product,
input,
select,
textarea {
  transition: 0.2s ease;
}

/* Footer link subtle hover */
.f-links a {
  color: var(--muted);
}

.f-links a:hover {
  color: var(--primary);
}

/* Header active CTA */
.nav-list .btn.btn-primary {
  color: #fff;
}

/* Small helper for year */
#year {
  opacity: 0.9;
}