/* ─── EFFI MAIT — Global Stylesheet ─── */
/* Extracted from homepage design system. DO NOT deviate. */

/* ─── GOOGLE FONTS & ICONS ─── */
/* @import in HTML: Google Fonts Playfair Display + DM Sans + DM Mono + Material Icons Round */

/* ─── DESIGN TOKENS ─── */
:root {
  --ardoise: #1C2B2B;
  --ardoise-mid: #243333;
  --ardoise-light: #2E4040;
  --creme: #F5F0E8;
  --creme-dark: #EDE7D9;
  --vert: #5C7A5C;
  --vert-light: #7A9E7A;
  --vert-accent: #A8C5A0;
  --blanc: #FFFFFF;
  --texte: #1C2B2B;
  --texte-light: #4A5E5E;
  --or: #C8A96E;
  --border: rgba(28,43,43,0.12);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--creme);
  color: var(--texte);
  overflow-x: hidden;
}

/* ─── MATERIAL ICONS ─── */
.material-icons-round {
  font-size: inherit;
  vertical-align: middle;
  line-height: 1;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(28,43,43,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(168,197,160,0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--vert);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  color: white;
  letter-spacing: -0.5px;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--creme);
  letter-spacing: 0.3px;
}

.nav-logo-text span { color: var(--vert-accent); }

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

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  color: rgba(245,240,232,0.75);
  letter-spacing: 0.2px;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--creme); }

.nav-cta {
  background: var(--vert) !important;
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 6px !important;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--vert-light) !important; }

/* Mobile nav toggle */
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--creme);
  font-size: 26px;
}

/* ─── PAGE HERO (sub-pages) ─── */
.page-hero {
  background: var(--ardoise);
  padding: 140px 64px 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(168,197,160,1) 60px, rgba(168,197,160,1) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(168,197,160,1) 60px, rgba(168,197,160,1) 61px);
}

.page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-breadcrumb {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: rgba(245,240,232,0.45);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-breadcrumb a {
  color: rgba(245,240,232,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.page-breadcrumb a:hover { color: var(--vert-accent); }

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(92,122,92,0.25);
  border: 1px solid rgba(168,197,160,0.3);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 28px;
  width: fit-content;
}

.page-hero-badge span {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--vert-accent);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.page-hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--vert-accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--creme);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--vert-accent);
}

.page-hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(245,240,232,0.65);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 40px;
}

.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(168,197,160,0.15);
}

.page-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: rgba(245,240,232,0.5);
  letter-spacing: 0.5px;
}

.page-hero-meta-item strong {
  color: var(--vert-accent);
  font-weight: 500;
}

/* ─── CERTIFICATIONS BAR ─── */
.certs-bar {
  background: var(--ardoise-light);
  padding: 20px 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  border-bottom: 1px solid rgba(168,197,160,0.1);
  flex-wrap: wrap;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(245,240,232,0.6);
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
}

.cert-icon {
  width: 28px;
  height: 28px;
  background: rgba(92,122,92,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.cert-separator {
  width: 1px;
  height: 24px;
  background: rgba(168,197,160,0.15);
}

/* ─── SECTION UTILITIES ─── */
.section-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--vert);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ardoise);
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}

.section-title em {
  font-style: italic;
  color: var(--vert);
}

.section-body {
  font-size: 16px;
  color: var(--texte-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--vert);
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
}

.btn-primary:hover {
  background: var(--vert-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(92,122,92,0.35);
}

.btn-secondary {
  color: var(--ardoise);
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.btn-secondary:hover {
  border-color: var(--vert);
  color: var(--vert);
}

.btn-ghost {
  color: var(--creme);
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.btn-ghost:hover { opacity: 1; }

.btn-arrow { display: inline-block; transition: transform 0.2s; }
.btn-primary:hover .btn-arrow,
.btn-secondary:hover .btn-arrow,
.btn-ghost:hover .btn-arrow { transform: translateX(3px); }

/* ─── CHECK LIST ITEM ─── */
.check {
  width: 22px;
  height: 22px;
  background: rgba(92,122,92,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--vert);
  flex-shrink: 0;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--texte-light);
  line-height: 1.6;
}

/* ─── PROCESS STEPS ─── */
.process-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--vert);
  background: rgba(92,122,92,0.1);
  border: 1px solid rgba(92,122,92,0.2);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-content {}
.step-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--ardoise);
  margin-bottom: 4px;
}
.step-desc {
  font-size: 14px;
  color: var(--texte-light);
  line-height: 1.6;
}

/* ─── INFO NOTE / BLOCKQUOTE ─── */
.info-note {
  background: rgba(92,122,92,0.08);
  border-left: 3px solid var(--vert);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  color: var(--texte-light);
  line-height: 1.6;
}

.info-note strong { color: var(--ardoise); }

/* ─── CARDS ─── */
.card {
  background: white;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.card:hover {
  border-color: var(--vert-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(92,122,92,0.12);
}

.card-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  color: var(--vert);
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--ardoise);
  margin-bottom: 8px;
  line-height: 1.3;
}

.card-text {
  font-size: 14px;
  color: var(--texte-light);
  line-height: 1.65;
}

/* Dark card */
.card-dark {
  background: var(--ardoise-mid);
  border: 1px solid rgba(168,197,160,0.15);
  color: var(--creme);
}

.card-dark .card-title { color: var(--creme); }
.card-dark .card-text { color: rgba(245,240,232,0.6); }

/* Price card */
.price-card {
  background: var(--ardoise);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(92,122,92,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--creme);
  line-height: 1;
}

.price-currency {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--vert-accent);
}

.price-label {
  font-size: 13px;
  color: rgba(245,240,232,0.5);
  margin-top: 6px;
}

/* ─── FAQ ─── */
.faq-section {
  padding: 80px 64px;
  background: var(--creme-dark);
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 48px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: white;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--border);
}

.faq-item:first-child { border-radius: 12px 12px 0 0; }
.faq-item:last-child { border-radius: 0 0 12px 12px; }
.faq-item:only-child { border-radius: 12px; }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ardoise);
  transition: background 0.2s;
}

.faq-question:hover { background: rgba(92,122,92,0.04); }
.faq-question[aria-expanded="true"] { color: var(--vert); }

.faq-icon {
  font-size: 20px;
  color: var(--vert);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--texte-light);
  line-height: 1.75;
}

.faq-answer.open { display: block; }

/* ─── CTA SECTION ─── */
.cta-section {
  background: var(--ardoise);
  padding: 100px 64px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(92,122,92,0.15) 0%, transparent 65%);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,169,110,0.08) 0%, transparent 65%);
  border-radius: 50%;
}

.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--creme);
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-title em { font-style: italic; color: var(--vert-accent); }

.cta-sub {
  font-size: 16px;
  color: rgba(245,240,232,0.6);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(245,240,232,0.7);
  font-size: 15px;
  margin-top: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-tel a {
  color: var(--vert-accent);
  text-decoration: none;
  font-weight: 500;
  font-family: 'DM Mono', monospace;
  font-size: 16px;
  letter-spacing: 0.5px;
}

/* ─── FOOTER ─── */
footer {
  background: #111D1D;
  padding: 64px;
  color: rgba(245,240,232,0.5);
}

.footer-inner { max-width: 1280px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245,240,232,0.08);
}

.footer-brand-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245,240,232,0.45);
  margin-top: 16px;
  max-width: 280px;
}

.footer-col-title {
  font-size: 11px;
  font-family: 'DM Mono', monospace;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(245,240,232,0.55);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.4;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(245,240,232,0.35); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--creme); }

/* ─── SIGNATURE ─── */
.signature-block {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--border);
}

.signature-avatar {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--vert), var(--vert-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: white;
  font-weight: 600;
  flex-shrink: 0;
}

.signature-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ardoise);
}

.signature-role { font-size: 13px; color: var(--texte-light); margin-top: 2px; }

/* ─── TRUST BADGES ─── */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(92,122,92,0.1);
  border: 1px solid rgba(92,122,92,0.2);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--vert);
  font-weight: 500;
}

/* ─── NAV DROPDOWN ─── */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  font-size: 14px; font-weight: 400;
  color: rgba(245,240,232,0.75);
  cursor: pointer; user-select: none;
  transition: color 0.2s;
  letter-spacing: 0.2px;
  padding: 28px 0; /* extends hover zone vertically to bridge gap */
  margin: -28px 0;
}
.nav-dropdown:hover .nav-dropdown-trigger { color: var(--creme); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px); left: 50%;
  transform: translateX(-50%);
  background: var(--ardoise-mid);
  border: 1px solid rgba(168,197,160,0.15);
  border-radius: 10px;
  padding: 8px;
  padding-top: 12px;
  list-style: none;
  min-width: 230px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
  z-index: 9999;
  /* invisible top area to bridge gap between trigger and menu */
  margin-top: 0;
}
/* invisible bridge so mouse can travel between trigger and menu */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px; left: 0; right: 0;
  height: 12px;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li a {
  display: block; padding: 10px 14px;
  border-radius: 6px; font-size: 14px;
  color: rgba(245,240,232,0.8);
  text-decoration: none; white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu li a:hover,
.nav-dropdown-menu li a[aria-current="page"] {
  background: rgba(168,197,160,0.1);
  color: var(--creme);
}
@media (max-width: 768px) {
  .nav-dropdown-menu {
    position: static; transform: none;
    box-shadow: none;
    background: rgba(255,255,255,0.05);
    margin-top: 8px;
  }
}

/* ─── ANIMATIONS ─── */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-hero > * { animation: fadeInUp 0.6s ease both; }
.animate-hero > *:nth-child(1) { animation-delay: 0s; }
.animate-hero > *:nth-child(2) { animation-delay: 0.1s; }
.animate-hero > *:nth-child(3) { animation-delay: 0.2s; }
.animate-hero > *:nth-child(4) { animation-delay: 0.3s; }
.animate-hero > *:nth-child(5) { animation-delay: 0.4s; }

/* ─── LAYOUT UTILITIES ─── */
.container { max-width: 1280px; margin: 0 auto; }
.section-pad { padding: 100px 64px; }
.section-pad-sm { padding: 64px 64px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(28,43,43,0.98);
    padding: 24px 20px;
    gap: 16px;
    border-bottom: 1px solid rgba(168,197,160,0.15);
  }

  .page-hero { padding: 120px 20px 60px; }
  .certs-bar { padding: 16px 20px; gap: 16px; }
  .cert-separator { display: none; }

  .section-pad { padding: 60px 20px; }
  .section-pad-sm { padding: 40px 20px; }

  .faq-section { padding: 60px 20px; }
  .cta-section { padding: 70px 20px; }
  footer { padding: 48px 20px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .trust-bar { gap: 8px; }
  .cta-actions { flex-direction: column; align-items: center; }
}
