﻿/* ===== FAQ SEO/AEO SECTION ===== */
.faq-section {
  background: #f9f9fb;
  padding: 72px 0;
  border-top: 1px solid var(--border);
}

.faq-section__eyebrow { text-align: center; }

.faq-section__title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 48px;
}

.faq-section__title strong { color: var(--red); font-weight: 800; }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

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

.faq-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-item__question {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(192,57,43,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.2s;
}

.faq-item__icon svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-item__icon {
  background: var(--red);
  transform: none;
}

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

.faq-item.open .faq-item__icon svg path {
  stroke: white;
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-item__answer {
  max-height: 300px;
}

.faq-item__answer p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  padding: 0 4px 20px;
}

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

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

:root {
  --red: #FF3B2B;
  --red-hover: #e02d1e;
  --navy: #1B2A4A;
  --navy-dark: #152238;
  --navy-grad: linear-gradient(135deg, #1a2f52 0%, #1e3a68 40%, #2352a0 100%);
  --bg-light: #F9F5F2;
  --bg-pink: #F5EDE8;
  --white: #ffffff;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --font: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY UTILS ===== */
.text-red { color: var(--red); }

.section-eyebrow {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-eyebrow--light { color: var(--red); }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title--light { color: var(--white); }

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn--red {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 55%, #922b21 100%);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 16px rgba(192,57,43,0.3);
}
.btn--red:hover {
  background: linear-gradient(135deg, #ec6153 0%, #c0392b 55%, #7d2419 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(192,57,43,0.45);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 2px solid #d1d5db;
}
.btn--outline:hover {
  border-color: var(--text);
  background: var(--text);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo__icon { width: 36px; height: 36px; display: block; }
.logo__text {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.logo--light .logo__text { color: var(--white); }

.nav { flex: 1; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.nav__link:hover {
  background: var(--bg-light);
  color: var(--red);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-reclamation {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.15s;
}
.btn-reclamation:hover { color: var(--red); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: var(--bg-light);
  padding: 160px 0 180px;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

.hero__image-wrap {
  position: relative;
}

.hero__img {
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.hero__title {
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 8px;
  white-space: nowrap;
}

.hero__subtitle2 {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
}

.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== STATS ===== */
.stats {
  background: var(--navy-grad);
  padding: 36px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stats__item:last-child { border-right: none; }

.stats__number {
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.stats__label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

/* ===== PARTNERS ===== */
.partners {
  padding: 48px 0 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.partners__eyebrow {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 36px;
}

/* Ticker */
.partners__ticker-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0 40px;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.partners__ticker {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
}

.partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 10px 24px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  flex-shrink: 0;
  margin-right: 20px;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  cursor: default;
  background: var(--white);
}
.partner-logo:hover {
  border-color: #c8d0dc;
  background: var(--bg-light);
  box-shadow: 0 2px 10px rgba(15,23,42,0.07);
}
.partner-logo img {
  height: 32px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  display: block;
}

/* ===== RDV SECTION ===== */
.rdv {
  position: relative;
  background: var(--bg-pink);
  padding: 96px 0;
}

/* Flèche décorative */
.rdv__arrow {
  position: absolute;
  bottom: 4%;
  left: 33%;
  width: 30%;
  height: auto;
  pointer-events: none;
  opacity: 0.8;
  z-index: 0;
}
.rdv__inner { position: relative; z-index: 1; }
@media (max-width: 768px) { .rdv__arrow { display: none; } }

.rdv__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.rdv__features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rdv__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.check-icon { width: 20px; height: 20px; flex-shrink: 0; }

/* Calendar card */
.cal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  position: relative;
  max-width: 440px;
  margin-left: auto;
}

.cal-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.cal-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy-grad);
  color: white;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cal-card__name { font-size: 13px; color: var(--text-muted); }
.cal-card__event { font-size: 16px; font-weight: 700; color: var(--text); }

.cal-card__badge {
  margin-left: auto;
  background: var(--navy-grad);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  transform: rotate(4deg);
  letter-spacing: 0.05em;
}

.cal-card__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.cal-card__confirm {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cal-nav__month {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.cal-nav__btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  font-size: 16px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}
.cal-nav__btn:hover { background: var(--bg-light); }

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
  text-align: center;
}
.cal-days span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 4px 0;
}

.cal-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  color: var(--text-muted);
}
.cal-day.empty { cursor: default; }
.cal-day.available {
  color: var(--text);
  font-weight: 500;
}
.cal-day.available:hover { background: var(--bg-pink); }
.cal-day.selected {
  background: var(--navy-grad);
  color: white;
  font-weight: 700;
}
.cal-day.today {
  border: 2px solid var(--red);
  color: var(--red);
  font-weight: 700;
}

/* ===== SERVICES ===== */
.services {
  background: var(--navy-grad);
  padding: 96px 0;
}

.services .section-title { margin-bottom: 56px; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: background 0.2s, transform 0.2s;
}
.service-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 60px;
  height: 60px;
  background: rgba(255,59,43,0.18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card__icon svg { width: 30px; height: 30px; }

.service-card__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card__text {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ===== WHY CHOOSE ===== */
/* ===== WHY SECTION ===== */
.why {
  background: var(--white);
  padding: 96px 0;
}

.why__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.why__items {
  max-width: 900px;
  margin: 0 auto;
}

.why-item {
  display: grid;
  grid-template-columns: 72px 68px 1fr 32px;
  align-items: center;
  gap: 36px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateX(-44px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  cursor: default;
}
.why-item:first-child { border-top: 1px solid var(--border); }
.why-item.visible { opacity: 1; transform: none; }
.why-item:nth-child(1) { transition-delay: 0s; }
.why-item:nth-child(2) { transition-delay: 0.1s; }
.why-item:nth-child(3) { transition-delay: 0.2s; }
.why-item:nth-child(4) { transition-delay: 0.3s; }

.why-item--rev {
  grid-template-columns: 72px 1fr 68px 32px;
  transform: translateX(44px);
}
.why-item--rev.visible { transform: none; }

.why-item__num {
  font-size: 52px;
  font-weight: 800;
  color: rgba(192, 57, 43, 0.08);
  letter-spacing: -0.06em;
  line-height: 1;
  user-select: none;
}

.why-item__icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s, box-shadow 0.25s;
}
.why-item:hover .why-item__icon {
  transform: scale(1.07);
  box-shadow: var(--shadow);
}
.why-item__icon--dark {
  background: var(--navy-grad);
  border-color: transparent;
}
.why-item__icon svg { width: 28px; height: 28px; }

.why-item__body { min-width: 0; }

.why-item__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.why-item__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
}

.why-item__arrow {
  font-size: 20px;
  color: var(--red);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.22s, transform 0.22s;
  flex-shrink: 0;
  justify-self: center;
}
.why-item:hover .why-item__arrow {
  opacity: 1;
  transform: none;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--navy-grad);
  padding: 96px 0;
}

/* --- Note globale --- */
.testi-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 20px 0 48px;
}
.testi-rating__num {
  font-size: 28px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
}
.testi-rating__stars {
  font-size: 20px;
  color: #f59e0b;
  letter-spacing: 2px;
}
.testi-rating__label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.testi-rating__label strong {
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

.testimonials .section-title { text-align: center; margin-bottom: 16px; }
.testimonials .section-eyebrow { text-align: center; }

/* ===== 3 CARTES VISIBLES ===== */
.testi-outer {
  margin: 52px 0 40px;
}

.testi-slider {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Boutons nav */
.testi-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
}

.testi-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.testi-nav-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.08);
}

/* Dots */
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.testi-dot {
  width: 28px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: background 0.35s, width 0.35s;
  padding: 0;
}
.testi-dot.active {
  background: var(--red);
  width: 44px;
}

/* Cartes */
.testi-card {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  cursor: pointer;
  border: 2px solid transparent;
  transform: scale(0.93) translateY(14px);
  opacity: 0.65;
  transition:
    transform 0.55s cubic-bezier(0.34, 1.3, 0.64, 1),
    opacity   0.55s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  will-change: transform, opacity;
}

.testi-card.active {
  transform: scale(1) translateY(0);
  opacity: 1;
  border-color: var(--red);
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
  cursor: default;
}

.testi-card:not(.active):hover {
  opacity: 0.85;
  transform: scale(0.95) translateY(10px);
}

/* Contenu des cartes */
.testi-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.testi-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.testi-card__avatar--red  { background: var(--red); }
.testi-card__avatar--navy { background: var(--navy-grad); }
.testi-card__avatar--gray { background: #6b7280; }

.testi-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.testi-card__role {
  font-size: 13px;
  color: var(--text-muted);
}

.testi-card__stars {
  color: #f59e0b;
  font-size: 17px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testi-card__quote {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
}

.testi-card__dots {
  display: flex;
  gap: 6px;
  margin-top: 20px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
}
.dot--active { background: var(--red); }

/* ===== CONTACT ===== */
.contact {
  background: var(--white);
  padding: 96px 0;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact__info .section-subtitle { margin-bottom: 40px; }

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact__icon {
  width: 44px;
  height: 44px;
  background: rgba(192,57,43,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__icon svg { width: 20px; height: 20px; }

.contact__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.contact__value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

/* Form */
.contact__form-wrap {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}

.contact__form-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.contact__form-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #d1d5db;
}

.form-success {
  background: #dcfce7;
  border: 1px solid #86efac;
  color: #166534;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-grad);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding: 64px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand { max-width: 300px; }

.footer__tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin: 16px 0 24px;
}

.orias-logo {
  height: 56px;
  width: auto;
  display: block;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}

.footer__col ul li a {
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}
.footer__col ul li a:hover { color: var(--white); }

.footer__bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer__legal {
  display: flex;
  gap: 20px;
}
.footer__legal a {
  color: rgba(255,255,255,0.4);
  transition: color 0.15s;
}
.footer__legal a:hover { color: var(--white); }

.footer__credit a { color: var(--red); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why-item { grid-template-columns: 56px 60px 1fr 28px; gap: 24px; }
  .why-item--rev { grid-template-columns: 56px 1fr 60px 28px; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__brand { max-width: 100%; }
}

@media (max-width: 768px) {
  .hero__title, .hero__subtitle2 { white-space: normal; }
  .nav, .header__actions { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    padding: 16px 24px 24px;
    box-shadow: var(--shadow-lg);
  }
  .nav.open .nav__list { flex-direction: column; gap: 4px; }
  .burger { display: flex; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__image-wrap { order: -1; }
  .hero__img { max-width: 100%; }
  .hero__btns { flex-direction: column; }
  .hero__btns .btn { text-align: center; justify-content: center; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }

  .rdv__inner { grid-template-columns: 1fr; }
  .cal-card { margin: 0 auto; }

  .services__grid { grid-template-columns: 1fr; }

  .why-item { grid-template-columns: 44px 1fr 28px; gap: 20px; padding: 28px 0; }
  .why-item--rev { grid-template-columns: 44px 1fr 28px; }
  .why-item__icon { display: none; }
  .why-item__num { font-size: 38px; }

  .testimonials__grid { grid-template-columns: 1fr; gap: 16px; }

  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact__form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer__nav { grid-template-columns: 1fr 1fr; }

  .footer__bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 480px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .footer__nav { grid-template-columns: 1fr; }
}
