/* ============================================
   OLIVIER BÉGHAIN COACHING
   Modern Orange-Yellow Minimalist Design
   ============================================ */

/* --- Custom Properties --- */
:root {
  --primary: #ff7a00;
  --primary-hover: #e67e00;
  --secondary: #ffd700;
  --bg: #fafafa;
  --bg-white: #ffffff;
  --bg-warm: #fff9f0;
  --text: #1a1a1a;
  --text-medium: #333;
  --text-light: #555;
  --text-muted: #999;
  --border: #e8e8e8;
  --radius: 0.4rem;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(255, 122, 0, 0.1);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  text-decoration: underline;
}

/* --- Container --- */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(250, 250, 250, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.nav-brand:hover {
  text-decoration: none;
  opacity: 0.85;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.75rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
  text-decoration: none;
}

.nav-cta {
  background-color: var(--primary);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
}

.nav-cta:hover {
  background-color: var(--primary-hover);
  color: #fff !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 6rem 0 5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-warm) 100%);
}

.hero-tag {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: var(--bg-white);
}

.section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text);
  line-height: 1.2;
}

.section h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.section h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.section p {
  margin-bottom: 1rem;
  color: var(--text-medium);
  line-height: 1.8;
}

/* --- Lists --- */
.styled-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.styled-list li {
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  position: relative;
  color: var(--text-medium);
  line-height: 1.7;
}

.styled-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.styled-list.numbered {
  counter-reset: item;
}

.styled-list.numbered li {
  counter-increment: item;
}

.styled-list.numbered li::before {
  content: counter(item) ".";
  font-weight: 700;
  color: var(--primary);
}

/* ============================================
   ABOUT (Qui je suis)
   ============================================ */
.about-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

.about-image img {
  border-radius: 0.5rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}

.about-image img:hover {
  transform: scale(1.02);
}

.about-text p:first-child {
  font-size: 1.05rem;
}

/* ============================================
   TOPIC CARDS (Pourquoi, Coaching individuel)
   ============================================ */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.topic-card {
  padding: 2rem 1.5rem;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.section-alt .topic-card {
  background-color: var(--bg);
}

.section:not(.section-alt) .topic-card {
  background-color: var(--bg-white);
}

.topic-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.topic-card h3 {
  margin-top: 0.5rem;
  font-size: 1.15rem;
}

.topic-card p {
  margin-bottom: 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

.topic-icon {
  font-size: 1.75rem;
  line-height: 1;
}

/* ============================================
   PRINCIPLES (Ma posture)
   ============================================ */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.principle-card {
  padding: 1.75rem 1.5rem;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.principle-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.principle-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.principle-card h4 {
  margin-bottom: 0.4rem;
  color: var(--text);
}

.principle-card p {
  margin-bottom: 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ============================================
   COACHING HISTORY
   ============================================ */
.coaching-history {
  background-color: var(--bg-warm);
  border-left: 4px solid var(--secondary);
  padding: 1.5rem 2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 2rem;
}

.coaching-history p {
  margin-bottom: 0.75rem;
}

.coaching-history p:last-child {
  margin-bottom: 0;
}

/* ============================================
   SITUATIONS GRID (Ce que je peux vous aider)
   ============================================ */
.situations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.situation-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.situation-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.situation-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1.4;
}

.situation-card strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.situation-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

.accompagnement-closing {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  font-style: italic;
  margin-top: 0.5rem;
}

/* ============================================
   EXEMPLES D'ACCOMPAGNEMENT
   ============================================ */
.exemples-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2rem 0 0;
  align-items: start;
}

.exemple-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.exemple-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.exemple-card.open {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.exemple-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.exemple-header:disabled {
  cursor: default;
}

.exemple-summary {
  flex: 1;
  min-width: 0;
}

.exemple-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  color: var(--text);
}

.exemple-line {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.55;
}

.exemple-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.15rem 0.5rem;
  margin-right: 0.4rem;
  border-radius: 0.2rem;
  background-color: #fff3e0;
  color: var(--primary);
  vertical-align: 0.05em;
}

.exemple-label-aide {
  background-color: #fff9f0;
  color: #b56500;
}

.exemple-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  background-color: #fff3e0;
  border-radius: var(--radius);
  transition: background-color var(--transition);
}

.exemple-header:hover .exemple-cta {
  background-color: #ffe0b8;
}

.exemple-cta-text {
  line-height: 1;
}

.exemple-cta-hide {
  display: none;
}

.exemple-card.open .exemple-cta-show {
  display: none;
}

.exemple-card.open .exemple-cta-hide {
  display: inline;
}

.exemple-cta-icon {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  transition: transform var(--transition);
}

.exemple-card.open .exemple-cta-icon {
  transform: rotate(45deg);
}

.exemple-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
}

.exemple-card.open .exemple-details {
  max-height: 800px;
  padding: 0 1.5rem 1.5rem;
}

.exemple-block + .exemple-block {
  margin-top: 1rem;
}

.exemple-block h4 {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
}

.exemple-block p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.exemple-block ul {
  margin: 0;
  padding-left: 1.25rem;
  list-style: none;
}

.exemple-block li {
  position: relative;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.55;
  padding: 0.25rem 0;
}

.exemple-block li::before {
  content: "▸";
  position: absolute;
  left: -1.25rem;
  color: var(--primary);
  font-weight: 700;
}

/* ============================================
   CADRE (condensed)
   ============================================ */
.cadre-content {
  max-width: 700px;
}

.cadre-content p {
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

/* ============================================
   PROCESS STEPS (Comment ça marche)
   ============================================ */
.process-steps {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content {
  flex: 1;
  padding-top: 0.25rem;
}

.step-content h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  margin-bottom: 0.4rem;
}

/* Guarantee box */
.guarantee-box {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin-top: 2.5rem;
  padding: 1.75rem 2rem;
  background: linear-gradient(135deg, var(--bg-warm) 0%, #fff5e6 100%);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(255, 122, 0, 0.12);
}

.guarantee-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-box h4 {
  margin-bottom: 0.25rem;
}

.guarantee-box p {
  margin-bottom: 0;
  color: var(--text-medium);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.pricing-cols-1 {
  grid-template-columns: 1fr;
  max-width: 280px;
}

.pricing-cols-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 500px;
}

.pricing-card {
  padding: 2rem 1.5rem;
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition);
}

.pricing-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pricing-highlight {
  border-color: var(--primary);
  background-color: var(--bg-warm);
  position: relative;
}

.pricing-card h4 {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.pricing-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.pricing-note {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  margin: 0;
}

/* ============================================
   CONDITIONS
   ============================================ */
.conditions-container {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.conditions-block {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

.conditions-block:first-child {
  padding-top: 0;
}

.conditions-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.conditions-block h3 {
  margin-top: 0;
  color: var(--text);
  font-size: 1.2rem;
}

.conditions-block p {
  font-size: 0.95rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq-container {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item.open {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  background-color: var(--bg-white);
  cursor: pointer;
  transition: background-color var(--transition);
  user-select: none;
}

.faq-header:hover {
  background-color: #f5f5f5;
}

.faq-item.open .faq-header {
  background-color: var(--bg-warm);
}

.faq-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1;
}

.faq-header h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  flex: 1;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  transition: transform var(--transition);
  flex-shrink: 0;
  line-height: 1;
}

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

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-content {
  max-height: 400px;
  padding: 0 1.5rem 1.5rem;
}

.faq-content p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-intro {
  font-size: 1.05rem;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  color: var(--text-light);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 640px;
  margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background-color: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
  background-color: var(--bg-white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-reassurance {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.form-message {
  padding: 1rem;
  border-radius: var(--radius);
  text-align: center;
  display: none;
}

.form-message.success {
  display: block;
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.form-message.error {
  display: block;
  background-color: #fdecea;
  color: #b71c1c;
  border: 1px solid #f5c2c0;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-privacy {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.form-privacy a {
  color: var(--text-light);
  text-decoration: underline;
}

.form-privacy a:hover {
  color: var(--primary);
}

.contact-info-section h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-card {
  padding: 1.25rem 1.5rem;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.contact-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.contact-card h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-card p {
  margin: 0;
  font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--bg-white);
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  text-align: center;
}

.footer p {
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.footer-legal {
  font-size: 0.8rem !important;
  color: var(--text-muted) !important;
  margin-top: 0.5rem;
}

.footer-tagline {
  font-size: 0.8rem !important;
  color: var(--text-muted) !important;
  letter-spacing: 0.05em;
  margin-top: 0.75rem;
}

.footer-links {
  margin-top: 0.5rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--primary);
}

/* ============================================
   ACTIVE NAV LINK
   ============================================ */
.nav-links a.nav-active {
  color: var(--primary);
}

.nav-links a.nav-active:not(.nav-cta) {
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.15rem;
}

.nav-cta.nav-active {
  background-color: var(--primary-hover);
}

/* ============================================
   SECTION NAVIGATION (prev/next arrows)
   ============================================ */
.section-nav {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  gap: 0.5rem;
  z-index: 90;
}

.section-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.section-nav-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background-color: var(--bg-white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.cookie-visible {
  transform: translateY(0);
}

.cookie-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
}

.cookie-text p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.5;
}

.cookie-text p:first-child {
  margin-bottom: 0.25rem;
}

.cookie-text a {
  color: var(--primary);
  font-weight: 500;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

/* ============================================
   PRIVACY POLICY PAGE
   ============================================ */
.privacy-page {
  padding-top: 3rem;
}

.privacy-page h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.privacy-updated {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.privacy-section {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

.privacy-section:last-of-type {
  border-bottom: none;
}

.privacy-section h2 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.privacy-section h3 {
  font-size: 1.1rem;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.privacy-section p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-medium);
}

.privacy-back {
  margin-top: 3rem;
  text-align: center;
}

/* ============================================
   RESPONSIVE — Tablet (768px)
   ============================================ */
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  /* Nav */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(250, 250, 250, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.nav-open {
    max-height: 400px;
    padding: 0.5rem 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.75rem 2rem;
  }

  .nav-cta {
    margin: 0.5rem 2rem;
    text-align: center;
    border-radius: var(--radius);
  }

  /* Hero */
  .hero {
    padding: 4rem 0 3.5rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  /* Sections */
  .section {
    padding: 3.5rem 0;
  }

  .section h2 {
    font-size: 1.85rem;
  }

  /* About */
  .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image {
    max-width: 240px;
    margin: 0 auto;
  }

  /* Grids */
  .topics-grid,
  .principles-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  /* Contact */
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  /* Active nav on mobile */
  .nav-links a.nav-active:not(.nav-cta) {
    border-bottom: none;
    color: var(--primary);
    background-color: var(--bg-warm);
  }

  /* Section nav */
  .section-nav {
    bottom: 1rem;
    right: 1rem;
  }

  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    text-align: center;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   RESPONSIVE — Mobile (480px)
   ============================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero {
    padding: 3rem 0 2.5rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-tag {
    font-size: 0.65rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section h2 {
    font-size: 1.5rem;
  }

  .section h3 {
    font-size: 1.15rem;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .process-step {
    flex-direction: column;
    gap: 0.75rem;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .guarantee-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .faq-header {
    padding: 1rem 1.25rem;
  }

  .faq-header h3 {
    font-size: 0.9rem;
  }
}
