/* ============================================================
   TAARA & Associates — Feuille de style principale
   taaraassociates.com
   Charte : Noir #0A0A0A · Blanc #FFFFFF · Accent #8B3A2A
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --noir:        #0A0A0A;
  --blanc:       #FFFFFF;
  --terracotta:  #8B3A2A;
  --gris-texte:  #4A4A4A;
  --gris-legende:#AAAAAA;
  --gris-bordure:#E0E0E0;
  --gris-fond:   #F5F5F5;

  --font-titre:  'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  --font-corps:  Georgia, 'Times New Roman', serif;

  --max-width:   1200px;
  --nav-height:  72px;

  --transition:  0.25s ease;
}

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

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

body {
  font-family: var(--font-corps);
  color: var(--gris-texte);
  background: var(--blanc);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

/* ── Typographie ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-titre);
  color: var(--noir);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }

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

.lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  color: var(--gris-texte);
}

/* ── Layout & Conteneur ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-corps);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gris-legende);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  margin-bottom: 1.25rem;
}

.section-intro .lead {
  font-size: 1rem;
  color: var(--gris-texte);
  max-width: 600px;
}

.section-intro {
  max-width: 640px;
  margin-bottom: 3.5rem;
}

/* ── Grilles ────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

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

/* ── Boutons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-corps);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 0.85rem 2rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--blanc);
  border-color: var(--terracotta);
}
.btn-primary:hover {
  background: var(--blanc);
  color: var(--terracotta);
  border-color: var(--terracotta);
}

.btn-outline {
  background: transparent;
  color: var(--noir);
  border-color: var(--noir);
}
.btn-outline:hover {
  background: var(--noir);
  color: var(--blanc);
}

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

/* Lien secondaire terracotta */
.link-secondary {
  color: var(--terracotta);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: opacity var(--transition);
  background: transparent;
  border: none;
  padding-left: 0;
}
.link-secondary:hover {
  opacity: 0.75;
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: var(--blanc);
  border-bottom: 1px solid var(--gris-bordure);
  z-index: 1000;
  transition: box-shadow var(--transition);
}

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

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

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-titre);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--noir);
  letter-spacing: 0.02em;
}

.nav__logo-mark {
  width: 36px;
  height: 36px;
  background: var(--noir);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanc);
  font-family: var(--font-titre);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

/* Liens */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__link {
  font-size: 0.875rem;
  color: var(--gris-texte);
  letter-spacing: 0.03em;
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--terracotta);
}

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

/* Sélecteur de langue */
.nav__lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__lang a {
  color: var(--gris-legende);
  transition: color var(--transition);
}

.nav__lang a.active,
.nav__lang a:hover {
  color: var(--terracotta);
}

.nav__lang span {
  color: var(--gris-bordure);
}

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

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--noir);
  transition: transform var(--transition), opacity var(--transition);
}

@media (max-width: 900px) {
  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: var(--blanc);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    border-top: 1px solid var(--gris-bordure);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    pointer-events: none;
  }

  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__link {
    font-size: 1rem;
  }

  .nav__lang {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gris-bordure);
    width: 100%;
  }
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  background: #FFFFFF;
  color: var(--noir);
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 3rem;
  min-height: auto;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #E8E8E8;
}

.hero__inner {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: #0A0A0A;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero__title em {
  font-style: normal;
  font-weight: 400;
}

.hero__lead {
  color: #444444;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Placeholder image hero */
.hero__visual {
  display: flex;
  align-items: stretch;
  min-height: auto;
}

.hero__image-placeholder {
  width: 100%;
  background: #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  font-family: var(--font-corps);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  min-height: auto;
}

.hero__image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero__visual {
    min-height: auto;
  }
  .hero__image-placeholder {
    min-height: auto;
  }
}

/* ── Hero variantes (surcharge globale pour pages secondaires) ── */
.hero-about,
.hero-services,
.hero-contact,
.hero-insights {
  background: #FFFFFF;
}

/* ── Barre d'accent verticale services ─────────────────────── */
.service-bloc__accent {
  background: #8B3A2A;
}

/* ── Barre d'accent (séparateur) ───────────────────────────── */
.divider {
  width: 40px;
  height: 2px;
  background: var(--terracotta);
  margin: 1.5rem 0;
}

.divider--white {
  background: var(--blanc);
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* ── Section Piliers ────────────────────────────────────────── */
.piliers {
  background: #F7F6F4;
}

.piliers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 0.5px solid #E0DDD8;
}

.pilier {
  padding: 3rem 2.5rem;
  background: #FFFFFF;
  border-right: 0.5px solid #E0DDD8;
  position: relative;
  transition: background var(--transition);
}

.pilier:last-child {
  border-right: none;
}

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

.pilier:hover::before {
  height: 100%;
}

.pilier:hover {
  background: var(--gris-fond);
}

.pilier__number {
  font-family: var(--font-titre);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
  display: block;
}

.pilier__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pilier__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gris-texte);
  margin-bottom: 1.5rem;
}

.pilier__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pilier__list li {
  font-size: 0.875rem;
  color: var(--gris-texte);
  padding-left: 1rem;
  position: relative;
}

.pilier__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gris-legende);
}

@media (max-width: 900px) {
  .piliers__grid {
    grid-template-columns: 1fr;
  }
  .pilier {
    border-right: none;
    border-bottom: 0.5px solid #E0DDD8;
  }
  .pilier:last-child {
    border-bottom: none;
  }
}

/* ── Section Services ───────────────────────────────────────── */
.services-overview {
  background: #F7F6F4;
}

.service-card {
  background: #FFFFFF;
  padding: 2.5rem;
  border: 0.5px solid #E0DDD8;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
  border-color: var(--terracotta);
}

.service-card__number {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gris-legende);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.service-card__title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  text-align: center;
}

.service-card__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gris-texte);
  flex: 1;
  margin-bottom: 1.5rem;
}

.service-card__link {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--transition), color var(--transition);
}

.service-card__link:hover {
  gap: 0.85rem;
  color: var(--noir);
}

.service-card__link::after {
  content: '→';
}

/* ── Section Pourquoi TAARA ─────────────────────────────────── */
.why-taara {
  background: var(--blanc);
}

.why-taara__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.why-taara__content {
  /* texte à gauche */
}

.why-taara__points {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-point {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.why-point__icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gris-bordure);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-titre);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--noir);
}

.why-point__title {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.why-point__text {
  font-size: 0.9rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .why-taara__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ── Bouton outline terracotta ──────────────────────────────── */
.btn-outline-terra {
  background: transparent;
  color: var(--terracotta);
  border-color: var(--terracotta);
  border: 1px solid var(--terracotta);
}
.btn-outline-terra:hover {
  background: var(--terracotta);
  color: var(--blanc);
  border-color: var(--terracotta);
}

/* ── Section Domaines ───────────────────────────────────────── */
.domaines {
  background: var(--noir);
  color: var(--blanc);
  padding: 3rem 0;
}

.domaines .section-label {
  color: var(--gris-legende);
}

.domaines .section-title {
  color: var(--blanc);
}

.domaines .section-intro p {
  color: var(--gris-legende);
}

.domaines__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
}

.domaine-item {
  background: var(--noir);
  padding: 1.2rem 1rem;
  text-align: center;
  transition: background var(--transition);
}

.domaine-item:hover {
  background: #141414;
}

.domaine-item__title {
  color: var(--blanc);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.domaine-item__sub {
  font-size: 0.75rem;
  color: var(--gris-legende);
  line-height: 1.45;
}

/* Grille fixe 4 colonnes */
.domaines__grid--fixed {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1px;
}

/* Carrousel */
.domaines__carousel {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.carousel-viewport {
  overflow: hidden;
  flex: 1;
}

.carousel-track {
  display: flex;
  transition: transform 0.35s ease;
}

.carousel-track .domaine-item {
  flex: 0 0 25%;
  border: 1px solid rgba(255,255,255,0.08);
}

.carousel-btn {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--terracotta);
  color: var(--blanc);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), opacity var(--transition);
}

.carousel-btn:hover {
  background: #6e2d20;
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

@media (max-width: 900px) {
  .domaines__grid--fixed { grid-template-columns: repeat(2, 1fr); }
  .carousel-track .domaine-item { flex: 0 0 50%; }
}

@media (max-width: 500px) {
  .domaines__grid--fixed { grid-template-columns: repeat(2, 1fr); }
  .carousel-track .domaine-item { flex: 0 0 100%; }
}

/* ── Section CTA ────────────────────────────────────────────── */
.cta-section {
  background: #F5EDE9;
  padding: 6rem 0;
  text-align: center;
}

.cta-section__title {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  color: #0A0A0A;
  margin-bottom: 2rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section__text {
  max-width: 480px;
  margin: 0 auto 2.5rem;
  color: var(--gris-texte);
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--noir);
  color: var(--blanc);
  padding: 1.5rem 0;
  border-top: 1px solid #333;
}

/* Ligne 1 : logo · nav · email */
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__logo {
  flex-shrink: 0;
}

.footer__nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__nav a {
  font-family: var(--font-corps);
  font-size: 0.75rem;
  color: var(--gris-legende);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

.footer__nav a:hover,
.footer__nav a.active {
  color: var(--blanc);
}

.footer__email {
  font-family: var(--font-corps);
  font-size: 0.75rem;
  color: var(--gris-legende);
  transition: color var(--transition);
  flex-shrink: 0;
}

.footer__email:hover {
  color: var(--blanc);
}

/* Ligne 2 : copyright · légal */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--gris-legende);
}

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

.footer__legal a {
  font-size: 0.75rem;
  color: var(--gris-legende);
  transition: color var(--transition);
}

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

@media (max-width: 768px) {
  .footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .footer__nav {
    justify-content: flex-start;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Utilitaires ────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-white  { color: var(--blanc); }
.text-grey   { color: var(--gris-legende); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ── Accessibilité ──────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--noir);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Animations légères ─────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeInUp 0.6s ease both;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ── Section Crédibilité ────────────────────────────────────── */
.credibilite { background: #FFFFFF; padding: 3.5rem 0; border-top: 0.5px solid #E8E8E8; border-bottom: 0.5px solid #E8E8E8; }
.cred-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: #8B3A2A; display: block; margin-bottom: 0.6rem; }
.cred-title { font-family: 'Palatino Linotype', Palatino, Georgia, serif; font-size: 1.25rem; font-weight: 700; color: #0A0A0A; margin-bottom: 0.5rem; }
.cred-sub { font-size: 0.85rem; color: #888; line-height: 1.7; margin-bottom: 2.5rem; max-width: 480px; }
.cred-chiffres { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 0.5px solid #E8E8E8; margin-bottom: 2rem; }
.cred-item { padding: 1.75rem 1.25rem; border-right: 0.5px solid #E8E8E8; text-align: center; }
.cred-item:last-child { border-right: none; }
.cred-number { font-family: 'Palatino Linotype', Palatino, Georgia, serif; font-size: 2rem; font-weight: 700; color: #0A0A0A; display: block; margin-bottom: 0.35rem; }
.cred-number span { font-size: 1rem; color: #8B3A2A; }
.cred-item-label { font-size: 0.72rem; color: #999; letter-spacing: 0.06em; line-height: 1.5; }
.cred-secteurs { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.secteur-tag { font-size: 0.7rem; color: #666; border: 0.5px solid #E0DDD8; padding: 0.3rem 0.8rem; letter-spacing: 0.06em; }

@media (max-width: 768px) {
  .cred-chiffres { grid-template-columns: repeat(2, 1fr); }
  .cred-item:nth-child(2) { border-right: none; }
  .cred-item:nth-child(3) { border-top: 0.5px solid #E8E8E8; }
  .cred-item:nth-child(4) { border-top: 0.5px solid #E8E8E8; border-right: none; }
}
.delay-4 { animation-delay: 0.4s; }

/* ── Service card CTA ───────────────────────────────────────── */
.service-card-cta { display: inline-block; margin-top: 0.75rem; font-size: 0.78rem; color: #8B3A2A; font-family: Georgia, serif; border-bottom: 1px solid #8B3A2A; text-decoration: none; }
.service-card-cta:hover { opacity: 0.75; }

/* ── Contact page additions ─────────────────────────────────── */
.reassurance-band { background: #F7F6F4; border-bottom: 0.5px solid #E0DDD8; padding: 1rem 0; }
.reassurance__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.reassurance__item { font-size: 0.78rem; color: #555; line-height: 1.5; }
.form-hint { font-size: 0.75rem; color: #999; margin-top: 0.4rem; font-style: italic; }
.contact-direct { background: #F7F6F4; padding: 1.5rem 0; border-top: 0.5px solid #E0DDD8; }
.contact-direct p { font-size: 0.85rem; color: #555; line-height: 1.7; text-align: center; }
.contact-direct a { color: #8B3A2A; border-bottom: 1px solid #8B3A2A; text-decoration: none; }

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