@font-face {
  font-family: "Fraunces";
  src: url(../fonts/Fraunces-VariableFont_SOFT\,WONK\,opsz\,wght.ttf);
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Fraunces";
  src: url(../fonts/Fraunces-Italic-VariableFont_SOFT\,WONK\,opsz\,wght.ttf);
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Manrope";
  src: url(../fonts/Manrope-VariableFont_wght.ttf);
  font-display: swap;
}

:root {
  --bg: #fbfaf5;
  --surface: #ffffff;
  --surface-2: #f0f3ee;
  --dark-section: #0f1e3d;
  --dark-surface: #152547;
  --text: #121a2b;
  --text-muted: #5a677a;
  --text-light: #e8ecf4;
  --accent: #0052cc;
  --accent-deep: #002e6e;
  --gold: #c9a961;
  --border: #e3e6df;
  --surface-3: #e9f1f8;
  --shadow-sm: 0 4px 14px rgba(15, 30, 61, 0.06);
  --shadow-md: 0 12px 32px rgba(15, 30, 61, 0.10);
  --shadow-lg: 0 24px 60px rgba(15, 30, 61, 0.18);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --gradient-primary: linear-gradient(135deg, #0052cc 0%, #00a3cc 50%, #c9a961 100%);
  --gradient-shine: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --fs-display: clamp(2.4rem, 5vw, 4.2rem);
  --fs-h1: clamp(2rem, 4.2vw, 3.6rem);
  --fs-h2: clamp(1.7rem, 3.4vw, 2.8rem);
  --fs-h3: clamp(1.3rem, 2.4vw, 1.8rem);
  --fs-body: 1rem;
  --fs-small: 0.88rem;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5.5rem;
}

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

html { scroll-behavior: smooth; width: 100%; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

main { flex: 1; }

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
}

h1 { font-size: var(--fs-h1); font-weight: 300; }
h2 { font-size: var(--fs-h2); font-weight: 300; margin-bottom: 1rem; }
h3 { font-size: var(--fs-h3); font-weight: 400; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.overline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
  padding: 0.45rem 1rem;
  background: rgba(0, 82, 204, 0.08);
  border-radius: 100px;
  border: 1px solid rgba(0, 82, 204, 0.15);
}

.overline.light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--gold);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.section-lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 1rem;
}

.accent-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 245, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.logo img {
  border-radius: 14px;
  padding: 2px;
  font-size: 5rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-line1 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
}

.logo-line2 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 2px;
}

.notice-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--surface-2);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  border: 1px solid var(--border);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.05rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-gradient {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-light {
  background: #fff;
  color: var(--accent-deep);
  box-shadow: var(--shadow-sm);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-shine);
  transition: left 0.7s ease;
}

.shine:hover::before { left: 100%; }

.hero {
  padding: 5rem 0 4rem;
  position: relative;
  background: var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 560px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2.5rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.chip i { color: var(--accent); }

.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.frame-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(0, 82, 204, 0.25) 100%);
  pointer-events: none;
}

.floating-tag {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.65rem 1.1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.floating-tag i { color: var(--gold); }

.tag-top { top: 2rem; right: 2rem; }
.tag-bottom { bottom: 2rem; left: 2rem; }

.wing-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--surface);
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 50% 80%, 0 0);
}

/* PHILOSOPHY */
.philosophy {
  padding: var(--space-xl) 0;
  background: var(--surface);
}

.philo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
  align-items: start;
}

.philo-main p {
  color: var(--text-muted);
  font-size: 1.08rem;
  margin-bottom: 1.3rem;
}

.philo-main p:first-of-type {
  font-size: 1.25rem;
  color: var(--text);
  font-weight: 300;
  line-height: 1.5;
}

.philo-side {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: transform 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
}

.stat-card:hover { transform: translateX(6px); }

.stat-number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--accent-deep);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.1em;
}

.stat-number .percent { font-size: 1.8rem; }
.stat-number .unit { font-size: 1.8rem; font-family: var(--font-body); font-weight: 600; }

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.expertises {
  padding: var(--space-xl) 0;
  background: var(--surface-2);
  position: relative;
}

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

.exp-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.exp-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-shine);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.exp-card:hover::after { transform: translateX(100%); }

.exp-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.exp-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.exp-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--gold);
  border-radius: 100px;
}

.exp-card h3 {
  font-size: 1.5rem;
}

.exp-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex-grow: 1;
}

.spec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border);
}

.spec-list li {
  font-size: 0.88rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.spec-list i {
  color: var(--accent);
  margin-top: 0.2rem;
  font-size: 0.8rem;
}

.price-tag {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--accent-deep);
  font-weight: 500;
  padding-top: 0.8rem;
}

.flagship-banner {
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.flagship-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.flagship-content { position: relative; z-index: 2; }

.flagship-content h3 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 0.6rem;
}

.flagship-content p {
  max-width: 520px;
  opacity: 0.92;
  margin-bottom: 1.2rem;
}

.flagship-price {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-family: var(--font-display);
}

.flagship-price .old {
  text-decoration: line-through;
  opacity: 0.6;
  font-size: 1.2rem;
}

.flagship-price .new {
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold);
}

.flagship-banner .btn {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.protocole {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.timeline {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--gold));
  opacity: 0.3;
}

.tl-step {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.tl-step:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.tl-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: var(--font-body);
  position: relative;
  z-index: 2;
}

.tl-content h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.tl-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.chiffres {
  background: var(--dark-section);
  color: var(--text-light);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.chiffres::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 163, 204, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(201, 169, 97, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.chiffres .container { position: relative; z-index: 2; }

.chiffres h2, .chiffres h3 { color: #fff; }

.chiffres .overline { 
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--gold);
}

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

.chiffre-card {
  background: var(--dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  border-radius: var(--radius-md);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.chiffre-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
}

.chiffre-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 97, 0.3);
}

.ch-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(201, 169, 97, 0.15);
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.ch-number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 300;
  color: #fff;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.ch-label {
  display: block;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.ch-desc {
  color: var(--text-light);
  opacity: 0.75;
  font-size: 0.9rem;
}

.cas-banner {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.cas-banner h3 {
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-size: 1.7rem;
}

.cas-banner p {
  color: var(--text-light);
  opacity: 0.9;
  max-width: 820px;
  font-size: 1.05rem;
}

.zones {
  padding: var(--space-xl) 0;
  background: var(--surface-2);
}

.zones-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.zones-info p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.zone-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.zone-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.zone-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-sm);
}

.zone-item i {
  width: 46px;
  height: 46px;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.zone-item h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.zone-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.frame-map {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.frame-map img { aspect-ratio: 1 / 1; }

.contact-faq {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.cf-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
}

.form-block, .faq-block {
  background: var(--surface);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.form-block p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.premium-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  font-family: inherit;
  font-size: 0.95rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 82, 204, 0.08);
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  margin-top: 0.5rem;
}

.checkbox-field input { margin-top: 0.2rem; flex-shrink: 0; }

.checkbox-field a {
  color: var(--accent);
  text-decoration: underline;
}

.premium-form .btn {
  margin-top: 1rem;
  justify-content: center;
}

.faq-block h3 {
  margin-bottom: 1.5rem;
}

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

.faq-item:last-of-type { border-bottom: none; }

.faq-item summary {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s ease;
}

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

.faq-item summary:hover { color: var(--accent); }

.faq-item summary i {
  transition: transform 0.3s ease;
  color: var(--accent);
  font-size: 0.85rem;
}

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

.faq-item p {
  margin-top: 0.8rem;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.6;
}

.site-footer {
  background: var(--dark-section);
  color: var(--text-light);
  padding: 4rem 0 1.5rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-line1 { color: #fff; }

.footer-desc {
  color: var(--text-light);
  opacity: 0.75;
  margin-top: 1.2rem;
  font-size: 0.92rem;
}

.site-footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-footer p {
  font-size: 0.92rem;
  opacity: 0.82;
  line-height: 1.8;
}

.site-footer i {
  color: var(--gold);
  margin-right: 0.4rem;
  font-size: 0.85rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.92rem;
  opacity: 0.82;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--gold);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.disclaimer {
  font-size: 0.82rem !important;
  opacity: 0.6 !important;
  line-height: 1.7 !important;
  max-width: 1000px;
}

.copyright {
  font-size: 0.88rem;
  opacity: 0.8;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.legal-content h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.legal-content .legal-date {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 2.5rem;
  display: block;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--accent-deep);
}

.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
}

.legal-content p {
  margin-bottom: 1rem;
  color: var(--text);
  line-height: 1.75;
}

.legal-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-content ul li {
  position: relative;
  list-style: none;
  margin-left: -1.5rem;
  padding-left: 1.8rem;
}

.legal-content ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.callout {
  background: rgba(0, 82, 204, 0.06);
  border-left: 4px solid var(--accent);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-sm);
  margin: 1.5rem 0;
}

.thanks-wrapper {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}

.thanks-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 82, 204, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.thanks-card {
  max-width: 640px;
  background: var(--surface);
  padding: 4rem 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  z-index: 2;
  border: 1px solid var(--border);
}

.thanks-icon {
  width: 90px;
  height: 90px;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
}

.thanks-card h1 {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}

.thanks-name {
  color: var(--accent);
  font-weight: 500;
}

.thanks-card .thanks-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.thanks-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2.5rem 0;
  text-align: left;
}

.thanks-step {
  background: var(--bg);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.thanks-step .step-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 0.4rem;
}

.thanks-step h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.thanks-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.thanks-contacts {
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.thanks-contacts strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text);
}

@media (max-width: 968px) {
  .hero-grid,
  .philo-grid,
  .zones-grid,
  .cf-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .expertise-grid,
  .chiffres-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .flagship-banner {
    flex-direction: column;
    text-align: center;
  }
  .thanks-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .container { padding: 0 1.2rem; }
  .expertise-grid,
  .chiffres-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-row { grid-template-columns: 1fr; }
  .form-block, .faq-block { padding: 2rem 1.5rem; }
  .flagship-banner { padding: 2rem 1.5rem; }
  .timeline::before { left: 30px; }
  .tl-step { gap: 1rem; padding: 1.5rem; }
  .tl-num { width: 50px; height: 50px; font-size: 1rem; }
  .header-inner { padding: 0.8rem 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
.matieres {
  padding: var(--space-xl) 0;
  background: var(--surface);
}

.matieres-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.matieres-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

.material-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.8rem 0;
}

.m-chip {
  padding: 0.5rem 1.1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-deep);
  transition: all 0.3s ease;
}

.m-chip:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.ritual-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.ritual-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.ritual-list i {
  width: 34px;
  height: 34px;
  background: rgba(0, 82, 204, 0.08);
  color: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.flotte {
  padding: var(--space-xl) 0;
  background: var(--surface-3);
  position: relative;
  overflow: hidden;
}

.flotte::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(0, 82, 204, 0.07) 0%, transparent 55%);
  pointer-events: none;
}

.flotte .container {
  position: relative;
  z-index: 2;
}

.flotte-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.flotte-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

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

.spec-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.spec-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
}

.spec-card:hover {
  transform: translateY(-5px);
}

.spec-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--accent-deep);
  line-height: 1;
}

.spec-unit {
  font-size: 1.2rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--gold);
}

.spec-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 968px) {
  .matieres-grid,
  .flotte-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .flotte-specs {
    grid-template-columns: 1fr;
  }
}