/* ============================================================
   Fée Sourire - Tourisme Dentaire Hongrie
   Palette : turquoise & rose, esprit nature / fleurs
   Couleurs clés : #4EA686 #72C2A4 #F8E5DD #F9A788
   ============================================================ */

:root {
  /* ---- Nouvelle palette (turquoise + rose, nature) ---- */
  --teal-900: #205c47;   /* turquoise foncé (texte/footer) */
  --teal-700: #3a8569;   /* turquoise profond */
  --teal-600: #4EA686;   /* PRIMAIRE turquoise */
  --teal-500: #72C2A4;   /* turquoise clair */
  --mint-200: #b7e0cf;   /* menthe douce */
  --mint-100: #dcefe6;   /* menthe très claire */
  --mint-bg:  #eef8f2;   /* fond menthe léger */
  --blush:    #F8E5DD;   /* rose poudré (fond) */
  --pink:     #F9A788;   /* PRIMAIRE rose / pêche (accent) */
  --pink-700: #e07e5c;   /* rose pêche soutenu */
  --pink-soft:#fcebe2;   /* rose très clair */

  /* ---- Alias : conservent les anciens noms utilisés partout ---- */
  --purple-900: var(--teal-900);
  --purple-700: var(--teal-700);
  --purple-600: var(--teal-600);
  --purple-500: var(--teal-500);
  --purple-200: var(--mint-200);
  --purple-100: var(--mint-100);
  --lavender:   var(--mint-bg);
  --gold:       var(--pink-700);
  --gold-soft:  var(--blush);
  --white:      #ffffff;
  --ink:        #243b33;
  --ink-soft:   #5b6f67;
  --line:       #dcebE3;
  --green:      #3a8569;

  /* Typo */
  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Divers */
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 40px -18px rgba(32, 92, 71, 0.30);
  --shadow-sm: 0 8px 24px -12px rgba(32, 92, 71, 0.22);
  --maxw: 1140px;
  --header-h: 72px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; margin: 0 0 .5em; font-weight: 600; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ===== Boutons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 600; font-size: .98rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-700));
  color: #fff; box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost {
  background: #fff; color: var(--purple-700); border-color: var(--purple-200);
}
.btn-ghost:hover { background: var(--lavender); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.logo { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--purple-700); }
.logo-icon { font-size: 1.25rem; }

.nav ul { display: flex; align-items: center; gap: 1.6rem; }
.nav a { font-weight: 500; color: var(--ink-soft); font-size: .97rem; transition: color .15s ease; }
.nav a:hover { color: var(--purple-700); }
.nav-cta {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-700));
  color: #fff !important; padding: .55rem 1.1rem; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.nav-cta:hover { transform: translateY(-1px); }

/* Actions à droite du header (langue + burger) */
.header-actions { display: flex; align-items: center; gap: .6rem; }

.lang-switch {
  display: inline-flex; background: var(--lavender); border: 1px solid var(--purple-200);
  border-radius: 999px; padding: 3px; gap: 2px;
}
.lang-btn {
  border: 0; background: transparent; cursor: pointer; font-family: var(--font-body);
  font-weight: 700; font-size: .82rem; color: var(--ink-soft);
  padding: .35rem .7rem; border-radius: 999px; line-height: 1; transition: background .15s ease, color .15s ease;
}
.lang-btn:hover { color: var(--purple-700); }
.lang-btn.is-active { background: #fff; color: var(--purple-700); box-shadow: var(--shadow-sm); }

/* Bouton « Appelez-moi » dans le header */
.btn-call {
  display: inline-flex; align-items: center; gap: .4rem;
  background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
  color: #fff; font-weight: 600; font-size: .9rem;
  padding: .5rem 1rem; border-radius: 999px; box-shadow: var(--shadow-sm);
  white-space: nowrap; transition: transform .15s ease, box-shadow .2s ease;
}
.btn-call:hover { transform: translateY(-1px); box-shadow: var(--shadow); color: #fff; }
.btn-call svg.lucide { width: 17px; height: 17px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--purple-700); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  background:
    radial-gradient(1200px 500px at 80% -10%, var(--purple-100), transparent 60%),
    radial-gradient(900px 400px at 0% 0%, var(--gold-soft), transparent 55%),
    var(--lavender);
  padding: clamp(2.5rem, 6vw, 5rem) 0 2.5rem;
}
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; }
.badge {
  display: inline-block; background: #fff; color: var(--purple-700);
  border: 1px solid var(--purple-200); padding: .4rem .9rem; border-radius: 999px;
  font-size: .85rem; font-weight: 600; margin-bottom: 1.25rem; box-shadow: var(--shadow-sm);
}
.hero h1 { color: var(--purple-900); }
.grad { background: linear-gradient(135deg, var(--purple-600), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { color: var(--ink-soft); font-size: 1.1rem; max-width: 38ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.5rem 0 2rem; }

.trust-row { display: flex; gap: 2rem; flex-wrap: wrap; }
.trust-row li { display: flex; flex-direction: column; }
.trust-row strong { font-family: var(--font-head); font-size: 1.7rem; color: var(--purple-700); }
.trust-row span { font-size: .85rem; color: var(--ink-soft); }

/* Hero card */
.hero-card { position: relative; display: flex; flex-direction: column; align-items: center; }
.hero-photo { position: relative; width: 100%; max-width: 420px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 5; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-rating {
  position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.95);
  backdrop-filter: blur(4px); border-radius: 14px; padding: .5rem .8rem; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; line-height: 1.1;
}
.hero-rating .hr-stars { color: var(--gold); letter-spacing: 1px; font-size: .85rem; }
.hero-rating strong { font-family: var(--font-head); color: var(--purple-700); font-size: 1.05rem; }
.hero-rating small { color: var(--ink-soft); font-size: .72rem; }

.quote-card {
  background: #fff; border-radius: var(--radius); padding: 1.4rem; width: 92%; max-width: 340px;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  margin-top: -2.8rem; position: relative; z-index: 2;
}
.quote-head { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.1rem; }
.avatar { width: 46px; height: 46px; display: grid; place-items: center; font-size: 1.4rem;
  background: var(--lavender); border-radius: 50%; }
.quote-head strong { display: block; }
.quote-head span { font-size: .82rem; color: var(--ink-soft); }

.mini-compare { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 1.1rem; }
.mini-row { display: grid; grid-template-columns: 1.1fr .9fr .9fr; padding: .55rem .8rem; font-size: .88rem; }
.mini-row + .mini-row { border-top: 1px solid var(--line); }
.mini-head { background: var(--lavender); font-weight: 600; color: var(--purple-700); }
.mini-row .old { color: var(--ink-soft); text-decoration: line-through; }
.mini-row .new { color: var(--green); font-weight: 700; }
.card-note { text-align: center; font-size: .78rem; color: var(--ink-soft); margin: .7rem 0 0; }

/* Bandeau réassurance */
.reassurance {
  margin-top: 2.5rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2rem;
  padding: 1rem 1.5rem; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm); font-weight: 500; color: var(--ink-soft);
}

/* ===== Sections ===== */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-alt { background: var(--lavender); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.8rem; }
.eyebrow { display: inline-block; color: var(--gold); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .8rem; margin-bottom: .6rem; }
.lead { color: var(--ink-soft); font-size: 1.08rem; }

/* ===== À propos ===== */
.about-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 2.5rem; align-items: start; }
.check-list { margin-top: 1.2rem; display: grid; gap: .6rem; }
.check-list li { position: relative; padding-left: 1.8rem; color: var(--ink-soft); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #fff;
  background: var(--purple-600); width: 1.3rem; height: 1.3rem; border-radius: 50%;
  display: grid; place-items: center; font-size: .75rem; font-weight: 700; }

.doctor-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow-sm); text-align: center;
}
.doctor-photo {
  width: 132px; height: 132px; margin: 0 auto 1rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-100), var(--gold-soft));
  overflow: hidden; border: 4px solid #fff; box-shadow: var(--shadow-sm);
}
.doctor-photo img { width: 100%; height: 100%; object-fit: cover; }
.doctor-role { color: var(--gold); font-weight: 600; margin-top: -.4rem; }
.doctor-tags { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-top: 1rem; }
.doctor-tags li { background: var(--lavender); color: var(--purple-700); font-size: .82rem; font-weight: 600;
  padding: .35rem .8rem; border-radius: 999px; }

/* ===== Tableau de prix ===== */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); background: #fff; border: 1px solid var(--line); }
.price-table { width: 100%; border-collapse: collapse; min-width: 540px; }
.price-table th, .price-table td { padding: 1rem 1.1rem; text-align: left; }
.price-table thead th { background: linear-gradient(135deg, var(--purple-600), var(--purple-700)); color: #fff; font-family: var(--font-body); font-weight: 600; font-size: .92rem; }
.price-table tbody tr { border-top: 1px solid var(--line); }
.price-table tbody tr:nth-child(even) { background: var(--lavender); }
.price-table th[scope="row"] { font-family: var(--font-body); font-weight: 600; }
.price-table .old { color: var(--ink-soft); text-decoration: line-through; }
.price-table .new { color: var(--green); font-weight: 700; }
.save { background: var(--blush); color: var(--pink-700); font-weight: 700; padding: .2rem .6rem; border-radius: 999px; font-size: .85rem; }
.table-note { font-size: .82rem; color: var(--ink-soft); margin-top: .8rem; }

/* Indice de défilement (tableau) - visible seulement sur petit écran */
.scroll-hint { display: none; text-align: center; color: var(--purple-700); font-size: .85rem; font-weight: 600; margin: 0 0 .6rem; }

/* Cartes services */
.services-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; margin-top: 2.5rem; }
.service-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card > h3, .service-card > p { padding: 0 1.4rem; }
.service-card > h3 { margin-top: 1.6rem; }
.service-card > p { padding-bottom: 1.5rem; }
.service-img { aspect-ratio: 3 / 2; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .service-img img { transform: scale(1.06); }
.service-ico { font-size: 1.7rem; display: grid; place-items: center; width: 48px; height: 48px;
  background: #fff; border-radius: 14px; box-shadow: var(--shadow-sm);
  margin: -28px 0 0 1.4rem; position: relative; z-index: 2; }

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.6rem; counter-reset: step; list-style: none; margin: 0; padding: 0; }
.steps > li::marker { content: ""; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem 1.6rem 1.6rem; box-shadow: var(--shadow-sm); }
.step-num {
  position: absolute; top: -18px; left: 1.6rem; width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-700)); color: #fff;
  display: grid; place-items: center; border-radius: 50%; font-family: var(--font-head); font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.step-ico { font-size: 1.8rem; display: block; margin: .4rem 0 .6rem; }

/* CTA band */
.cta-band {
  margin-top: 2.6rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-900)); color: #fff;
  border-radius: var(--radius); padding: 2rem 2.2rem; box-shadow: var(--shadow);
}
.cta-band h3 { color: #fff; margin-bottom: .2rem; }
.cta-band p { color: var(--purple-200); margin: 0; }
.cta-band .btn-primary { background: var(--gold); color: var(--purple-900); }
.cta-band .btn-primary:hover { background: #e6b455; }

/* ===== Avis Google ===== */
.reviews-summary {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1.2rem 2rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem 1.8rem; box-shadow: var(--shadow-sm); margin-bottom: 1.8rem;
}
.rs-google { display: flex; align-items: center; gap: .5rem; font-weight: 700; }
.g-logo { font-family: var(--font-body); font-weight: 700; font-size: 1.4rem; }
.rs-label { color: var(--ink-soft); font-weight: 600; }
.rs-score { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.rs-score strong { font-family: var(--font-head); font-size: 2rem; color: var(--purple-700); line-height: 1; }
.rs-stars { color: var(--gold); letter-spacing: 2px; font-size: 1.1rem; }
.rs-count { color: var(--ink-soft); font-size: .9rem; }
.rs-cta { margin-left: auto; }

.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; }
.testi-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); margin: 0; }
.tc-head { display: flex; align-items: center; gap: .7rem; margin-bottom: .7rem; }
.tc-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex: 0 0 auto; }
.tc-meta { display: flex; flex-direction: column; line-height: 1.25; }
.tc-meta strong { font-size: .98rem; }
.tc-sub { font-size: .78rem; color: var(--ink-soft); }
.tc-g { margin-left: auto; font-weight: 700; font-size: 1.1rem; color: #4285F4; align-self: flex-start; }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: .5rem; }
.testi-card blockquote { margin: 0; font-style: italic; color: var(--ink); }

/* Carte Google Maps */
.map-wrap { margin-top: 1.8rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); line-height: 0; }
.map-wrap iframe { display: block; width: 100%; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 3rem; align-items: start; }
.contact-list { display: grid; gap: .7rem; margin: 1.4rem 0; }
.contact-list li { display: flex; align-items: center; gap: .7rem; font-weight: 500; }
.contact-list a:hover { color: var(--purple-700); }
.contact-reassure { display: flex; gap: 1.2rem; flex-wrap: wrap; color: var(--ink-soft); font-size: .9rem; }

.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; }
input, textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: .8rem .9rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--lavender); transition: border .15s ease, box-shadow .15s ease;
}
input:focus, textarea:focus { outline: none; border-color: var(--purple-500); box-shadow: 0 0 0 3px var(--purple-100); background: #fff; }
textarea { resize: vertical; }
.field.invalid input, .field.invalid textarea { border-color: #d9534f; box-shadow: 0 0 0 3px #f8d7d5; }
.form-status { margin: .8rem 0 0; font-weight: 600; min-height: 1.2em; }
.form-status.ok { color: var(--green); }
.form-status.err { color: #c0392b; }
.form-note { font-size: .78rem; color: var(--ink-soft); margin: .6rem 0 0; }

/* ===== Footer ===== */
.site-footer { background: var(--purple-900); color: #d7cdf0; padding: 3rem 0 1.5rem; margin-top: 0; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand strong { font-family: var(--font-head); font-size: 1.2rem; color: #fff; margin-left: .4rem; }
.footer-brand p { margin-top: .8rem; max-width: 36ch; font-size: .92rem; }
.footer-nav h4, .footer-contact h4 { color: #fff; font-family: var(--font-body); font-size: .95rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 1rem; }
.footer-nav li, .footer-contact li { margin-bottom: .55rem; font-size: .92rem; }
.footer-nav a:hover, .footer-contact a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; padding-top: 1.2rem; font-size: .82rem; color: #9d8fc4; }
.footer-bottom p { margin: 0; }

/* ===== Image cabinet (À propos) ===== */
.about-figure { margin: 0 0 1.4rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 16 / 9; }
.about-figure img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Budapest ===== */
.budapest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.budapest-photo { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 3 / 2; }
.budapest-photo img { width: 100%; height: 100%; object-fit: cover; }
.budapest-list { display: grid; gap: .8rem; margin-top: 1.2rem; }
.budapest-list li { display: flex; align-items: flex-start; gap: .7rem; color: var(--ink-soft); }
.budapest-list li span[aria-hidden] { font-size: 1.2rem; line-height: 1.4; }

/* ===== Galerie ===== */
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 1rem;
}
.g-item { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.g-item:hover img { transform: scale(1.07); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ===== Header ombré au défilement ===== */
.site-header.scrolled { box-shadow: 0 6px 24px -16px rgba(32,92,71,.45); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== Responsive ===== */

/* Tablette paysage / petit desktop */
@media (max-width: 1024px) {
  .hero-inner { gap: 2rem; }
  .about-grid { grid-template-columns: 1.2fr .8fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; gap: 1.5rem; }
}

/* Tablette portrait - passage au menu burger */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: #fff; border-bottom: 1px solid var(--line);
    transform: translateY(-130%); transition: transform .3s ease; box-shadow: var(--shadow);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav.open { transform: translateY(0); }
  .nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: .5rem 0; }
  .nav li { border-top: 1px solid var(--line); }
  .nav a { display: block; padding: .95rem 22px; }
  .nav-cta { margin: .6rem 22px; text-align: center; }

  .hero-inner { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero-card { order: -1; }
  .hero-sub { max-width: 60ch; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .budapest-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .budapest-photo { order: -1; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .g-wide { grid-column: span 2; }
  .g-tall { grid-row: span 1; }
  .rs-cta { margin-left: 0; }
  .reviews-summary { justify-content: space-between; }
}

/* Mobile large */
@media (max-width: 700px) {
  :root { --header-h: 64px; }
  .logo { font-size: 1.15rem; }
  .scroll-hint { display: block; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.6rem; }
  .footer-bottom { flex-direction: column; }
  .step { padding-top: 2.4rem; }
  .cta-band { flex-direction: column; align-items: flex-start; text-align: left; }
  .cta-band .btn { width: 100%; }
  .reviews-summary { flex-direction: column; text-align: center; gap: .9rem; }
  .rs-cta { width: 100%; }
  .gallery { gap: .7rem; grid-auto-rows: 170px; }
}

/* Mobile compact */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .trust-row { gap: 1.1rem 1.6rem; }
  .trust-row strong { font-size: 1.45rem; }
  .hero-actions .btn { width: 100%; }
  .reassurance { gap: .6rem 1.2rem; font-size: .9rem; padding: .9rem 1rem; }
  .cta-band { padding: 1.5rem; }
  .contact-form { padding: 1.3rem; }
  .lang-btn { padding: .3rem .55rem; font-size: .8rem; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }
  .g-wide, .g-tall { grid-column: span 2; grid-row: span 1; }
}

/* Accessibilité : focus visible */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--purple-500); outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; transition: none !important; }
}

/* ============================================================
   AJOUTS - rebrand turquoise/rose, nature & nouveaux modules
   ============================================================ */

/* ----- Logo image ----- */
.logo-img {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--mint-100); object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.logo-text { color: var(--teal-700); }
.footer-logo { width: 56px; height: 56px; border-radius: 50%; background: #fff; padding: 4px; box-shadow: var(--shadow-sm); display: inline-block; vertical-align: middle; }
.footer-brand strong { vertical-align: middle; }

/* ----- Sélecteur de devise ----- */
.cur-switch {
  display: inline-flex; background: var(--blush); border: 1px solid var(--pink);
  border-radius: 999px; padding: 3px; gap: 2px;
}
.cur-btn {
  border: 0; background: transparent; cursor: pointer; font-family: var(--font-body);
  font-weight: 700; font-size: .9rem; color: var(--pink-700);
  padding: .35rem .65rem; border-radius: 999px; line-height: 1; min-width: 32px;
  transition: background .15s ease, color .15s ease;
}
.cur-btn:hover { color: var(--teal-700); }
.cur-btn.is-active { background: #fff; color: var(--pink-700); box-shadow: var(--shadow-sm); }

/* Note de taux de change */
.rate-note { margin: .9rem 0 0; font-size: .9rem; color: var(--ink-soft); }
.rate-note strong { color: var(--teal-700); }

/* ----- Pourquoi nous choisir (Georgina) ----- */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.3rem; margin-bottom: 2.6rem;
}
.why-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .2s ease; position: relative; overflow: hidden;
}
.why-card::after {
  content: ""; position: absolute; right: -28px; top: -28px; width: 90px; height: 90px;
  background: radial-gradient(circle at 30% 30%, var(--mint-100), transparent 70%);
  border-radius: 50%; opacity: .8; pointer-events: none;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-ico {
  font-size: 1.7rem; display: grid; place-items: center; width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--mint-100), var(--blush));
  border-radius: 16px; margin-bottom: .9rem;
}
.why-card h3 { color: var(--teal-700); }
.why-card p { color: var(--ink-soft); margin: 0; }
.why-card .partner-link { margin-top: .9rem; }

/* ----- Lien clinique partenaire ----- */
.partner-link {
  display: inline-block; margin-top: 1rem; font-weight: 700; font-size: .92rem;
  color: var(--pink-700); border-bottom: 2px solid var(--blush); padding-bottom: 2px;
  transition: border-color .15s ease, color .15s ease;
}
.partner-link:hover { color: var(--teal-700); border-color: var(--teal-500); }

/* ----- Avant / Après ----- */
.ba-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem;
}
.ba-item {
  margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease;
}
.ba-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ba-item img { width: 100%; height: 280px; object-fit: cover; display: block; }
.ba-item figcaption {
  padding: .85rem 1rem; font-size: .9rem; font-weight: 600; color: var(--teal-700);
  background: linear-gradient(135deg, var(--mint-bg), var(--pink-soft));
}

/* ----- CTA centrés (services / sourires) ----- */
.services-cta { text-align: center; margin-top: 2.2rem; }

/* ----- Accent floral discret sur les sections alternées ----- */
.section-alt { position: relative; }
.eyebrow { color: var(--pink-700); }

/* ----- Boutons : dégradé turquoise ----- */
.btn-primary {
  background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
}
.nav-cta { background: linear-gradient(135deg, var(--teal-600), var(--teal-700)); }

/* La barre CTA garde un bouton rose chaleureux */
.cta-band .btn-primary { background: var(--pink); color: var(--teal-900); }
.cta-band .btn-primary:hover { background: var(--pink-700); color: #fff; }
.cta-band { background: linear-gradient(135deg, var(--teal-700), var(--teal-900)); }
.cta-band p { color: var(--mint-200); }

/* Dégradé titre : turquoise → rose (les deux couleurs primaires) */
.grad { background: linear-gradient(135deg, var(--teal-600), var(--pink)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Responsive avant/après */
@media (max-width: 700px) {
  .ba-item img { height: 230px; }
}

/* ----- Georgina : photo + mots ----- */
.georgina-intro {
  display: grid; grid-template-columns: 280px 1fr; gap: 2rem; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm); margin-bottom: 2.4rem;
}
.georgina-photo {
  margin: 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-sm); background: var(--mint-100);
}
.georgina-photo img { width: 100%; height: 100%; object-fit: cover; }
.georgina-words h3 { color: var(--teal-700); margin-bottom: .4rem; }
.georgina-words p { color: var(--ink-soft); }
.georgina-flag {
  display: inline-flex; border-radius: 4px; overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,.18); margin-bottom: .7rem;
}
.georgina-flag svg, .why-ico-flag svg { display: block; border-radius: 3px; }

/* Drapeau dans la carte "Une Hongroise à vos côtés" */
.why-ico-flag { background: linear-gradient(135deg, var(--mint-100), var(--blush)); }

@media (max-width: 640px) {
  .georgina-intro { grid-template-columns: 1fr; text-align: center; }
  .georgina-photo { max-width: 240px; margin: 0 auto; }
  .georgina-flag { margin-left: auto; margin-right: auto; }
}

/* ----- Galerie : marquee défilant ----- */
.marquee {
  position: relative; overflow: hidden; width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track {
  display: flex; gap: 1rem; width: max-content;
  animation: marquee-scroll 48s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.m-item {
  margin: 0; flex: 0 0 auto; width: 340px; height: 230px;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
}
.m-item img { width: 100%; height: 100%; object-fit: cover; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 700px) {
  .m-item { width: 260px; height: 180px; }
  .marquee-track { animation-duration: 36s; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: nowrap; overflow-x: auto; }
}

/* ----- Encart « prix indicatif » (transparence tarifaire) ----- */
.price-notice {
  display: flex; align-items: flex-start; gap: .9rem;
  background: linear-gradient(135deg, var(--mint-bg), var(--pink-soft));
  border: 1px solid var(--mint-200); border-left: 4px solid var(--teal-600);
  border-radius: var(--radius-sm); padding: 1rem 1.2rem; margin: 0 0 1.6rem;
  box-shadow: var(--shadow-sm);
}
.price-notice-ico { font-size: 1.3rem; line-height: 1.4; flex: 0 0 auto; }
.price-notice p { margin: 0; color: var(--ink); font-size: .95rem; }
.price-notice strong { color: var(--teal-700); }

/* ----- FAQ ----- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: .8rem; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.05rem 1.3rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--teal-700);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--font-body); font-weight: 700; font-size: 1.3rem;
  color: var(--pink-700); flex: 0 0 auto; transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); line-height: 1.65; }
.faq-answer p { margin: 0 0 .7rem; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer h4 {
  margin: 1.05rem 0 .45rem; font-family: var(--font-head);
  font-size: 1rem; font-weight: 600; color: var(--teal-700);
}
.faq-answer ul {
  margin: .3rem 0 .8rem; padding-left: 1.15rem; list-style: none;
}
.faq-answer li { position: relative; margin: 0 0 .35rem; padding-left: .35rem; }
.faq-answer li::before {
  content: ""; position: absolute; left: -.7rem; top: .62em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--pink-700);
}
.faq-answer a { color: var(--teal-700); font-weight: 600; text-decoration: underline; }
.faq-answer strong { color: var(--ink); }
.faq-soon {
  text-align: center; color: var(--ink-soft); background: #fff;
  border: 1px dashed var(--mint-200); border-radius: var(--radius);
  padding: 1.6rem 1.4rem; margin: 0; box-shadow: var(--shadow-sm);
}

/* ============================================================
   Icônes Lucide (remplacent les emojis)
   ============================================================ */
/* Empêche tout saut de mise en page avant le rendu des SVG */
i[data-lucide] { display: inline-block; width: 1em; height: 1em; }

/* Réglage par défaut : icône alignée au texte, couleur héritée */
svg.lucide {
  width: 1.1em; height: 1.1em; stroke-width: 2;
  vertical-align: -0.18em; flex: 0 0 auto;
}

/* Icônes dans les pastilles / boîtes rondes ou carrées */
.why-ico svg.lucide   { width: 30px; height: 30px; vertical-align: middle; color: var(--teal-700); }
.service-ico svg.lucide { width: 26px; height: 26px; vertical-align: middle; color: var(--teal-700); }
.step-ico svg.lucide  { width: 30px; height: 30px; vertical-align: middle; color: var(--teal-700); }
.avatar svg.lucide    { width: 24px; height: 24px; vertical-align: middle; color: var(--teal-700); }
.price-notice-ico svg.lucide { width: 22px; height: 22px; color: var(--teal-600); }

/* Icônes en ligne dans le texte */
.badge svg.lucide        { color: var(--teal-600); vertical-align: -0.15em; }
.reassurance svg.lucide  { color: var(--teal-600); margin-right: .15rem; }
.faq-soon svg.lucide     { color: var(--teal-600); }
.contact-list svg.lucide,
.footer-contact svg.lucide { color: var(--teal-600); margin-right: .15rem; }

/* Puces de la liste Budapest */
.budapest-list .li-ico { display: inline-flex; align-items: center; flex: 0 0 auto; }
.budapest-list .li-ico svg.lucide { width: 20px; height: 20px; color: var(--teal-600); vertical-align: middle; }

/* ============================================================
   Bouton flottant WhatsApp
   ============================================================ */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: #25D366; color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45), 0 2px 6px rgba(0, 0, 0, .2);
  transition: transform .18s ease, box-shadow .2s ease;
}
.wa-float:hover { transform: scale(1.08); color: #fff; box-shadow: 0 12px 30px rgba(37, 211, 102, .55), 0 3px 8px rgba(0, 0, 0, .25); }
.wa-float:active { transform: scale(.96); }
.wa-float-ico { width: 32px; height: 32px; position: relative; z-index: 2; }

/* Anneau pulsant animé autour du bouton */
.wa-float-ring {
  position: absolute; inset: 0; border-radius: 50%;
  background: #25D366; z-index: 1;
  animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .55; }
  70%  { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}

@media (max-width: 480px) {
  .wa-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .wa-float-ico { width: 28px; height: 28px; }
  /* Sur petits écrans, garder le bouton d'appel compact (icône seule) */
  .btn-call { padding: .5rem .7rem; }
  .btn-call span, .btn-call { font-size: 0; }
  .btn-call svg.lucide { width: 20px; height: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float-ring { animation: none; opacity: 0; }
}
