

:root {
  --ink: #2a2434;
  --ink-soft: #6e6479;
  --purple-950: #22162f;
  --purple-900: #34214a;
  --purple-800: #4b2d66;
  --purple-700: #6f3f86;
  --purple-600: #9159a1;
  --purple-400: #b78cbc;
  --lilac-100: #f7f0fa;
  --gold-700: #9a7636;
  --gold-500: #c9a45f;
  --gold-300: #e6d3aa;
  --cream: #fbf8fd;
  --cream-2: #fbf8fd;
  --white: #ffffff;
  --line: rgba(66, 39, 88, .13);
  --line-strong: rgba(66, 39, 88, .24);
  --shadow-sm: 0 14px 36px rgba(39, 20, 57, .08);
  --shadow: 0 28px 74px rgba(39, 20, 57, .14);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1200px;
}


* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; overflow-x: hidden; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.7; overflow-x: hidden; }
body.menu-open, body.chat-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; }
::selection { background: var(--purple-700); color: var(--white); }

.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 5000; background: var(--white); color: var(--purple-900); padding: .75rem 1rem; border-radius: 12px; box-shadow: var(--shadow-sm); }
.skip-link:focus { top: 1rem; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }
.section-alt { background: var(--cream-2); }
.section-dark { color: var(--white); background: radial-gradient(circle at 78% 14%, rgba(208,173,99,.18), transparent 25%), linear-gradient(135deg, var(--purple-950), var(--purple-800)); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--gold-700); font-size: .79rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; margin: 0 0 16px; }
.eyebrow::before { content: ""; width: 30px; height: 1px; background: currentColor; }
.section-dark .eyebrow { color: var(--gold-300); }
h1, h2, h3 { margin: 0; line-height: 1.08; text-wrap: balance; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; letter-spacing: -.035em; }
h1 { font-size: clamp(2.7rem, 6.3vw, 5.85rem); }
h2 { font-size: clamp(2.1rem, 4.5vw, 4.1rem); }
h3 { font-size: clamp(1.22rem, 2vw, 1.65rem); }
p { margin: 0; }
.lead { color: var(--ink-soft); font-size: clamp(1.03rem, 1.8vw, 1.22rem); max-width: 740px; }
.section-dark .lead, .section-dark .muted { color: rgba(255,255,255,.75); }
.muted { color: var(--ink-soft); }
.kicker { color: var(--purple-700); font-weight: 850; }
.text-link { color: var(--purple-700); font-weight: 800; text-decoration: underline; text-decoration-color: rgba(95,42,132,.25); text-underline-offset: 5px; }
.text-link:hover { text-decoration-color: var(--purple-700); }

.site-header { position: sticky; top: 0; z-index: 1200; border-bottom: 1px solid var(--line); background: rgba(251,248,253,.93); backdrop-filter: blur(18px); }
.navbar { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 14px; min-width: 190px; }
.brand img { width: 58px; height: 58px; object-fit: contain; border-radius: 50%; background: var(--white); box-shadow: 0 8px 24px rgba(76,45,102,.16); flex: 0 0 auto; }
.brand-name {
  display:inline-block;
  color: var(--purple-900);
  font-family: "Bodoni 72", Didot, Georgia, serif;
  font-size: 1.26rem;
  font-weight: 600;
  letter-spacing: .02em;
  white-space: nowrap;
  line-height: 1;
  text-transform: none;
}
.nav-toggle { display: none; width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); background: var(--white); color: var(--purple-700); cursor: pointer; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ""; display: block; width: 20px; height: 2px; margin: 4px auto; background: currentColor; transition: .2s ease; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links > a, .nav-drop > button { border: 0; background: none; color: var(--ink); font-weight: 760; font-size: .94rem; cursor: pointer; padding: 12px 0; }
.nav-links > a:hover, .nav-links > a[aria-current="page"], .nav-drop > button:hover { color: var(--purple-700); }
.nav-links > a.nav-cta { padding: 11px 17px !important; border-radius: 999px; color: var(--white) !important; background: linear-gradient(135deg, var(--purple-700), var(--purple-800)); box-shadow: 0 12px 30px rgba(76,45,102,.26); }
.nav-drop { position: relative; }
.nav-drop > button::after { content: none; display: none; }
.dropdown { position: absolute; top: calc(100% + 10px); left: 50%; transform: translate(-50%, 8px); width: 290px; padding: 12px; opacity: 0; visibility: hidden; transition: .18s ease; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: var(--shadow-sm); }
.nav-drop:hover .dropdown, .nav-drop:focus-within .dropdown, .nav-drop.is-open .dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dropdown a { display: block; padding: 11px 12px; border-radius: 12px; font-weight: 730; }
.dropdown a small { display: block; color: var(--ink-soft); font-weight: 500; line-height: 1.35; }
.dropdown a:hover { background: var(--lilac-100); color: var(--purple-700); }

.btn-row { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 12px 22px; border: 1px solid transparent; border-radius: 999px; font-weight: 850; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: linear-gradient(135deg, var(--purple-700), var(--purple-800)); box-shadow: 0 15px 34px rgba(76,45,102,.24); }
.btn-primary:hover { background: var(--purple-800); }
.btn-gold { color: var(--purple-950); background: var(--gold-500); box-shadow: 0 15px 34px rgba(214,179,106,.22); }
.btn-outline { color: var(--purple-700); border-color: var(--line-strong); background: rgba(255,255,255,.62); }
.btn-outline:hover { background: var(--white); }
.btn-white { color: var(--purple-900); background: var(--white); }
.btn-sm { min-height: 42px; padding: 9px 16px; font-size: .9rem; }

.hero { position: relative; min-height: calc(100vh - 82px); display: grid; align-items: center; background: radial-gradient(circle at 84% 28%, rgba(208,173,99,.23), transparent 18%), radial-gradient(circle at 77% 40%, rgba(141,85,168,.24), transparent 32%), linear-gradient(135deg, #fbf8fd 0%, #f6effd 55%, #faf4fb 100%); overflow: hidden; }
.hero::before, .hero::after { content: ""; position: absolute; border: 1px solid rgba(214,179,106,.34); transform: rotate(35deg); pointer-events: none; }
.hero::before { width: 360px; height: 360px; right: -180px; top: -190px; }
.hero::after { width: 220px; height: 220px; left: -125px; bottom: -130px; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 64px; padding: 86px 0 92px; }
.hero-copy { position: relative; z-index: 1; }
.hero h1 em { color: var(--purple-700); font-style: normal; }
.hero-copy .lead { margin-top: 24px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.hero-badges span { padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.68); color: var(--ink-soft); font-size: .88rem; font-weight: 700; }
.hero-visual { position: relative; min-height: 560px; display: grid; place-items: center; }
.gem-panel { width: min(500px, 100%); min-height: 500px; padding: 34px; border: 1px solid rgba(255,255,255,.8); border-radius: var(--radius-lg); background: rgba(255,255,255,.66); box-shadow: var(--shadow); backdrop-filter: blur(14px); display: grid; place-items: center; }
.gem-panel img { width: auto; height: auto; max-width: 88%; max-height: 430px; object-fit: contain; aspect-ratio: auto; filter: drop-shadow(0 28px 35px rgba(42,18,55,.18)); }
.floating-note { position: absolute; left: 0; bottom: 44px; max-width: 270px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.94); box-shadow: var(--shadow-sm); }
.floating-note strong { display: block; color: var(--purple-700); margin-bottom: 4px; }
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--cream-2); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { padding: 27px 24px; text-align: center; border-right: 1px solid var(--line); }
.trust-item:last-child { border: 0; }
.trust-item strong { display: block; font-family: Georgia, serif; color: var(--purple-700); font-size: 1.7rem; }
.trust-item span { color: var(--ink-soft); font-size: .92rem; }

.page-hero { padding: 94px 0 82px; background: radial-gradient(circle at 80% 20%, rgba(208,173,99,.20), transparent 19%), linear-gradient(135deg, #fbf8fd, #f3ebfb); border-bottom: 1px solid var(--line); }
.page-hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: 60px; }
.page-hero .lead { margin-top: 24px; }
.page-visual { min-height: 390px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.7); box-shadow: var(--shadow); padding: 34px; display: grid; align-content: center; gap: 18px; }
.page-visual .visual-icon { font-size: 3rem; }
.page-visual strong { font-size: clamp(1.5rem, 3vw, 2.4rem); font-family: Georgia, serif; line-height: 1.15; }
.page-visual p { color: var(--ink-soft); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; color: var(--ink-soft); font-size: .88rem; margin-bottom: 22px; }
.breadcrumb a { color: var(--purple-700); font-weight: 700; }

.section-heading { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: end; margin-bottom: 54px; }
.section-heading.stack { display: block; max-width: 830px; }
.section-heading.stack .lead { margin-top: 20px; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.card { position: relative; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 34px rgba(28,12,36,.06); }
.card:hover { border-color: var(--line-strong); }
.card .icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 16px; color: var(--purple-700); background: var(--lilac-100); font-size: 1.45rem; }
.card h3 { margin-bottom: 13px; }
.card p { color: var(--ink-soft); }
.card .text-link { display: inline-block; margin-top: 18px; }
.card.featured { color: var(--white); background: radial-gradient(circle at top right, rgba(214,179,106,.22), transparent 27%), linear-gradient(145deg, var(--purple-900), var(--purple-700)); border-color: transparent; }
.card.featured p { color: rgba(255,255,255,.75); }
.card.featured .icon { color: var(--purple-900); background: var(--gold-500); }
.card.featured .text-link { color: var(--gold-300); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.split-media { min-height: 480px; padding: 28px; border-radius: var(--radius-lg); background: radial-gradient(circle at 75% 20%, rgba(214,179,106,.3), transparent 24%), linear-gradient(145deg, var(--purple-900), var(--purple-700)); box-shadow: var(--shadow); display: grid; place-items: center; overflow: hidden; }
.split-media img { max-height: 430px; width: auto; filter: drop-shadow(0 22px 30px rgba(0,0,0,.22)); }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 15px; }
.check-list li { position: relative; padding-left: 32px; color: var(--ink-soft); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; background: var(--lilac-100); color: var(--purple-700); font-size: .82rem; font-weight: 900; }
.section-dark .check-list li { color: rgba(255,255,255,.76); }
.section-dark .check-list li::before { color: var(--purple-900); background: var(--gold-500); }

.offer-box { padding: 40px; border-radius: var(--radius-lg); background: radial-gradient(circle at 90% 15%, rgba(214,179,106,.23), transparent 22%), linear-gradient(140deg, var(--purple-950), var(--purple-700)); color: var(--white); box-shadow: var(--shadow); }
.offer-grid { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; }
.price-display { text-align: right; min-width: 240px; }
.price-display small { display: block; color: rgba(255,255,255,.7); }
.price-display strong { display: block; font-family: Georgia, serif; font-size: clamp(2.2rem, 4vw, 4rem); color: var(--gold-300); line-height: 1; }
.price-display span { display: block; margin-top: 7px; }
.offer-box .check-list { grid-template-columns: repeat(2, minmax(0,1fr)); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.price-card.popular { border: 2px solid var(--purple-700); transform: translateY(-8px); box-shadow: var(--shadow-sm); }
.price-tag { align-self: flex-start; margin-bottom: 18px; padding: 6px 11px; border-radius: 999px; background: var(--lilac-100); color: var(--purple-700); font-size: .76rem; font-weight: 850; text-transform: uppercase; letter-spacing: .07em; }
.price-card h3 { margin-bottom: 12px; }
.price-card > p { color: var(--ink-soft); min-height: 58px; }
.price { margin: 22px 0; color: var(--purple-700); }
.price strong { display: block; font-family: Georgia, serif; font-size: 2.35rem; line-height: 1; }
.price small { color: var(--ink-soft); }
.price-card .check-list { margin: 0 0 26px; }
.price-card .btn { margin-top: auto; }
.price-note { margin-top: 28px; padding: 18px 22px; border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--ink-soft); background: rgba(255,255,255,.52); }

.project-grid { display: grid; gap: 34px; }
.project { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.project:nth-child(even) .project-media { order: 2; }
.project-media { min-height: 420px; display: grid; place-items: center; padding: 28px; background: linear-gradient(145deg, #efe3f7, #fff7e8); }
.project-media img { border-radius: 20px; box-shadow: 0 18px 50px rgba(35,18,44,.16); }
.project-copy { padding: 42px; }
.demo-label { display: inline-flex; padding: 7px 11px; margin-bottom: 18px; border-radius: 999px; background: #fff3ce; color: #76531d; font-size: .78rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.project-copy h3 { font-size: clamp(1.65rem,3vw,2.5rem); font-family: Georgia, serif; }
.project-copy p { color: var(--ink-soft); margin-top: 15px; }
.project-meta { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.project-meta span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); font-size: .82rem; }

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.step { counter-increment: step; padding: 27px 24px; border-top: 1px solid var(--line-strong); }
.step::before { content: "0" counter(step); display: block; margin-bottom: 28px; color: var(--gold-700); font-weight: 900; letter-spacing: .12em; }
.step p { margin-top: 12px; color: var(--ink-soft); }

.faq-list { display: grid; gap: 13px; max-width: 920px; }
.faq-item { border: 1px solid var(--line); border-radius: 18px; background: var(--white); overflow: hidden; }
.faq-question { list-style: none; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 22px; color: var(--ink); text-align: left; font-weight: 820; cursor: pointer; }
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: "+"; flex: 0 0 auto; color: var(--purple-700); font-size: 1.5rem; line-height: 1; }
.faq-item[open] .faq-question::after { content: "−"; }
.faq-answer { display: block; }
.faq-answer > div { overflow: visible; }
.faq-answer p { padding: 0 22px 20px; color: var(--ink-soft); }

.cta-panel { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; padding: 48px; border-radius: var(--radius-lg); color: var(--white); background: radial-gradient(circle at 85% 20%, rgba(214,179,106,.24), transparent 26%), linear-gradient(135deg, var(--purple-950), var(--purple-700)); box-shadow: var(--shadow); }
.cta-panel p { color: rgba(255,255,255,.74); margin-top: 14px; max-width: 720px; }
.cta-panel .btn-row { margin-top: 0; justify-content: flex-end; }

.form-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 50px; align-items: start; }
.contact-panel { position: sticky; top: 110px; padding: 30px; border-radius: var(--radius); color: var(--white); background: linear-gradient(145deg, var(--purple-950), var(--purple-700)); }
.contact-panel h2 { font-size: 2.2rem; }
.contact-list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 15px; }
.contact-list a { color: var(--gold-300); font-weight: 800; }
.form-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 780; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 13px 14px; border: 1px solid var(--line-strong); border-radius: 13px; background: var(--cream-2); color: var(--ink); }
.form-field textarea { min-height: 150px; resize: vertical; }
.form-field small { color: var(--ink-soft); }
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 22px 0; color: var(--ink-soft); font-size: .9rem; }
.consent input { margin-top: 5px; }
.honeypot { position: absolute !important; left: -9999px !important; }

.legal-wrap { max-width: 880px; }
.legal-wrap h2 { font-family: inherit; font-size: 1.65rem; letter-spacing: 0; margin: 40px 0 12px; }
.legal-wrap h3 { margin: 26px 0 10px; }
.legal-wrap p, .legal-wrap li { color: var(--ink-soft); }
.legal-wrap ul { padding-left: 22px; }
.legal-alert { padding: 18px 20px; border: 1px solid #cfa649; border-radius: 15px; background: #fff8df; color: #624713; margin-bottom: 28px; }

.site-footer { padding: 70px 0 28px; color: rgba(255,255,255,.72); background: var(--purple-950); }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, .75fr); gap: 44px; }
.footer-brand img { width: 108px; height: 108px; object-fit: contain; padding: 5px; border-radius: 22px; background: var(--white); filter: none; opacity: 1; }
.footer-brand p { max-width: 390px; margin-top: 18px; }
.footer-title { color: var(--white); font-weight: 850; margin-bottom: 16px; }
.footer-links { display: grid; gap: 9px; }
.footer-links a:hover { color: var(--gold-300); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 28px; margin-top: 46px; border-top: 1px solid rgba(255,255,255,.12); font-size: .86rem; }

/* Ametrino — assistant guidé sans dépendance JavaScript */
.chat-toggle { position: fixed; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.chat-launcher { position: fixed; right: 22px; bottom: 22px; z-index: 1600; width: 76px; height: 76px; padding: 5px; border: 2px solid var(--gold-500); border-radius: 50%; background: var(--white); box-shadow: 0 15px 40px rgba(28,12,36,.25); cursor: pointer; transition: transform .2s ease; }
.chat-launcher:hover { transform: translateY(-4px) scale(1.02); }
.chat-launcher img { width: 100%; height: 100%; object-fit: contain; object-position: center; border-radius: 50%; background: var(--white); }
.chat-launcher::after { content: "Une question ?"; position: absolute; right: 65px; bottom: 8px; width: max-content; padding: 8px 12px; border-radius: 12px 12px 0 12px; color: var(--white); background: var(--purple-700); font-size: .82rem; font-weight: 800; box-shadow: var(--shadow-sm); }
.chat-panel { position: fixed; right: 22px; bottom: 112px; z-index: 1700; width: min(410px, calc(100vw - 32px)); max-height: min(650px, calc(100vh - 140px)); display: none; grid-template-rows: auto minmax(0,1fr) auto; overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: var(--white); box-shadow: 0 30px 90px rgba(22,11,28,.3); }
.chat-toggle:checked + .chat-launcher + .chat-panel { display: grid; animation: chatIn .2s ease; }
@keyframes chatIn { from { opacity: 0; transform: translateY(12px) scale(.98); } }
.chat-header { display: flex; align-items: center; gap: 12px; padding: 15px 16px; color: var(--white); background: linear-gradient(135deg, var(--purple-900), var(--purple-700)); }
.chat-avatar { width: 48px; height: 48px; padding: 2px; border-radius: 50%; border: 2px solid var(--gold-500); object-fit: contain; object-position: center; background: var(--white); }
.chat-header strong { display: block; }
.chat-header small { color: rgba(255,255,255,.72); }
.chat-close { margin-left: auto; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: rgba(255,255,255,.12); cursor: pointer; font-size: 1.3rem; }
.chat-body { overflow-y: auto; padding: 16px; background: #faf7fc; }
.chat-intro { margin-bottom: 13px; padding: 12px 13px; border-radius: 16px 16px 16px 4px; background: var(--white); box-shadow: 0 6px 20px rgba(40,18,52,.08); font-size: .91rem; line-height: 1.5; }
.chat-topic { margin-bottom: 9px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); overflow: hidden; }
.chat-topic summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 13px; color: var(--purple-700); font-size: .88rem; font-weight: 800; cursor: pointer; }
.chat-topic summary::-webkit-details-marker { display: none; }
.chat-topic summary::after { content: "+"; flex: 0 0 auto; font-size: 1.15rem; }
.chat-topic[open] summary::after { content: "−"; }
.chat-topic > div { padding: 0 13px 13px; }
.chat-topic p { color: var(--ink-soft); font-size: .86rem; line-height: 1.5; }
.chat-footer { padding: 11px 14px; border-top: 1px solid var(--line); color: var(--ink-soft); background: var(--white); font-size: .76rem; text-align: center; }
.chat-cta { display: inline-flex; margin-top: 9px; padding: 8px 11px; border-radius: 999px; color: var(--white); background: var(--purple-700); font-size: .82rem; font-weight: 800; }

.reveal { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .nav-toggle { display: block; }
  .nav-links { position: fixed; inset: 82px 0 auto 0; max-height: calc(100vh - 82px); overflow-y: auto; display: none; align-items: stretch; padding: 18px 20px 28px; border-bottom: 1px solid var(--line); background: var(--cream-2); box-shadow: var(--shadow-sm); }
  .nav-links.open { display: grid; }
  .nav-links > a, .nav-drop > button { width: 100%; text-align: left; padding: 13px 8px; }
  .nav-cta { text-align: center !important; margin-top: 6px; }
  .nav-drop { display: grid; }
  .dropdown { position: static; width: auto; padding: 0 0 0 10px; opacity: 1; visibility: visible; transform: none; border: 0; background: transparent; box-shadow: none; display: none; }
  .nav-drop.is-open .dropdown { display: block; }
  .hero-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 500px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .card-grid, .pricing-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 2 / -1; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 76px 0; }
  .section-sm { padding: 56px 0; }
  .brand img { width: 52px; height: 52px; }
  .brand-name { font-size: 1.02rem; }
  .navbar { min-height: 74px; }
  .nav-links { top: 74px; max-height: calc(100vh - 74px); }
  .hero { min-height: auto; }
  .hero-grid { padding: 65px 0 72px; gap: 42px; }
  .hero h1 { font-size: clamp(2.6rem, 13vw, 4.3rem); }
  .hero-visual { min-height: 390px; }
  .gem-panel { min-height: 350px; padding: 18px; }
  .gem-panel img { max-height: 320px; max-width: 92%; }
  .floating-note { left: 8px; bottom: 8px; max-width: 230px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .page-hero { padding: 66px 0 62px; }
  .page-visual { min-height: 290px; }
  .card-grid, .pricing-grid, .steps, .split, .offer-grid, .project, .form-layout { grid-template-columns: 1fr; }
  .offer-box { padding: 30px 22px; }
  .offer-box .check-list { grid-template-columns: 1fr; }
  .price-display { text-align: left; min-width: 0; }
  .price-card.popular { transform: none; }
  .project:nth-child(even) .project-media { order: 0; }
  .project-media { min-height: 260px; padding: 18px; }
  .project-copy { padding: 28px 22px; }
  .cta-panel { grid-template-columns: 1fr; padding: 32px 24px; }
  .cta-panel .btn-row { justify-content: flex-start; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .contact-panel { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > :last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .chat-launcher { width: 65px; height: 65px; right: 14px; bottom: 14px; }
  .chat-launcher::after { display: none; }
  .chat-panel { right: 8px; bottom: 86px; width: calc(100vw - 16px); height: min(620px, calc(100vh - 102px)); }
}

@media (max-width: 480px) {
  .card-grid, .pricing-grid, .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-grid > :last-child { grid-column: auto; }
  .btn-row .btn { width: 100%; }
  .card, .form-card { padding: 24px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}


/* =========================================================
   VERSION FINALE — corrections de cadrage, navigation et médias
   ========================================================= */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Le vrai logo est affiché intégralement, sans recadrage circulaire. */
.brand { min-width: 132px; }
.brand img {
  width: 112px;
  height: 70px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.footer-brand img {
  width: 148px;
  height: auto;
  max-height: 148px;
  padding: 0;
  border-radius: 18px;
  object-fit: contain;
  background: #fff;
}

/* Aucun caractère ou pseudo-icône parasite à côté de “Services”. */
.nav-drop > button::after { content: none !important; display: none !important; }
.nav-drop > button { display: inline-flex; align-items: center; }

/* Ametrino : image transparente, proportions natives et cadrage stable. */
.hero-visual {
  min-height: 570px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gem-panel {
  position: relative;
  width: min(470px, 100%);
  height: 535px;
  min-height: 0;
  padding: 26px 24px 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.98), rgba(255,255,255,.56) 56%, rgba(238,222,249,.55)),
    linear-gradient(145deg, rgba(255,255,255,.88), rgba(244,232,251,.74));
}
.gem-panel::before {
  content: "";
  position: absolute;
  inset: 42px 56px 24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169,120,201,.19), transparent 67%);
  filter: blur(4px);
}
.gem-panel img {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 505px;
  object-fit: contain;
  object-position: center bottom;
  aspect-ratio: auto;
  filter: drop-shadow(0 25px 28px rgba(42,18,55,.20));
}
.floating-note {
  z-index: 2;
  left: -18px;
  bottom: 22px;
  max-width: 255px;
}

/* Les cartes sont toujours visibles : aucun grand espace vide lié à une animation. */
.reveal { opacity: 1 !important; transform: none !important; visibility: visible !important; }
.card-grid { min-height: 0; }

/* FAQ native et fiable. */
.faq-question { list-style: none; }
.faq-question::-webkit-details-marker { display: none; }
.faq-item:not([open]) .faq-answer { display: none; }
.faq-item[open] .faq-answer { display: block; }
.faq-item[open] .faq-question::after { content: "−"; }

/* Visuels des réalisations : sources PNG haute définition, jamais étirées. */
.project-media {
  min-height: 0;
  padding: clamp(18px, 3vw, 34px);
  align-content: center;
}
.project-media img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 22px;
  image-rendering: auto;
  transform: translateZ(0);
}

/* Chatbot natif : s’ouvre même sans JavaScript. */
.chat-toggle { position: fixed; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.chat-launcher {
  display: grid;
  place-items: center;
  overflow: visible;
}
.chat-launcher img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  background: transparent;
}
.chat-toggle:checked + .chat-launcher + .chat-panel { display: grid; animation: chatIn .2s ease; }
.chat-avatar {
  width: 46px;
  height: 52px;
  padding: 0;
  border-radius: 12px;
  object-fit: contain;
  background: rgba(255,255,255,.96);
}
.chat-close { border: 0; }

@media (max-width: 1040px) {
  .brand img { width: 102px; height: 64px; }
  .nav-drop > button { width: 100%; }
  .hero-visual { min-height: 530px; }
  .gem-panel { height: 500px; }
  .gem-panel img { max-height: 470px; }
}

@media (max-width: 760px) {
  .brand { min-width: 104px; }
  .brand img { width: 96px; height: 60px; }
  .hero-visual { min-height: 430px; }
  .gem-panel {
    width: min(390px, 100%);
    height: 420px;
    min-height: 0;
    padding: 20px 18px 0;
  }
  .gem-panel img { max-width: 100%; max-height: 400px; }
  .floating-note {
    left: 8px;
    bottom: 8px;
    max-width: 225px;
    padding: 14px 16px;
  }
  .project-media { padding: 14px; }
  .project-media img { border-radius: 16px; }
}

@media (max-width: 480px) {
  .brand img { width: 88px; height: 56px; }
  .hero-visual { min-height: 390px; }
  .gem-panel { height: 380px; }
  .gem-panel img { max-height: 360px; }
  .floating-note {
    position: relative;
    left: auto;
    bottom: auto;
    margin: -22px auto 0;
    max-width: calc(100% - 24px);
  }
}


/* La légende reste distincte de la mascotte : aucun pied ni visage masqué. */
.hero-visual { flex-direction: column; min-height: 635px; }
.floating-note {
  position: relative;
  left: auto;
  bottom: auto;
  width: min(330px, calc(100% - 24px));
  max-width: 330px;
  margin: 16px auto 0;
  text-align: center;
}
@media (max-width: 1040px) {
  .hero-visual { min-height: 590px; }
}
@media (max-width: 760px) {
  .hero-visual { min-height: 500px; }
  .floating-note { left: auto; bottom: auto; margin-top: 14px; max-width: 300px; }
}
@media (max-width: 480px) {
  .hero-visual { min-height: 470px; }
  .floating-note { margin: 12px auto 0; }
}

/* Menu mobile : le sous-menu reste entièrement dans l’écran. */
@media (max-width: 1040px) {
  .nav-drop.is-open .dropdown,
  .nav-drop:hover .dropdown,
  .nav-drop:focus-within .dropdown {
    left: auto !important;
    transform: none !important;
  }
}


/* Repères tarifaires discrets : le détail reste centralisé sur tarifs.html */
.service-price-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.66);
}
.service-price-summary p { margin: 0; color: var(--ink-soft); }
.service-price-summary p strong { color: var(--purple-700); }
.service-price-summary .btn-row { margin-top: 0; flex: 0 0 auto; }
.offer-summary { max-width: 320px; padding: 20px 22px; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-sm); background: rgba(255,255,255,.08); }
.offer-summary strong, .offer-summary span { display: block; }
.offer-summary strong { color: var(--gold-300); font-family: Georgia, serif; font-size: 1.35rem; line-height: 1.2; }
.offer-summary span { margin-top: 9px; color: rgba(255,255,255,.75); }
@media (max-width: 760px) {
  .service-price-summary { align-items: flex-start; flex-direction: column; }
  .service-price-summary .btn-row { width: 100%; }
  .service-price-summary .btn { width: 100%; }
  .offer-summary { max-width: none; }
}

/* Repère discret et ludique : le + indique que « Services » ouvre un sous-menu. */
.nav-drop > button {
  gap: 8px;
}
.services-indicator {
  position: relative;
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  border: 1px solid rgba(95, 42, 132, .24);
  border-radius: 50%;
  background: rgba(243, 233, 251, .9);
  box-shadow: 0 3px 10px rgba(95, 42, 132, .10);
  transition: transform .22s ease, background-color .22s ease, border-color .22s ease, box-shadow .22s ease;
  animation: servicesHint 1.45s ease 1s 1;
}
.services-indicator::before,
.services-indicator::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--purple-700);
  transform: translate(-50%, -50%);
  transition: background-color .22s ease;
}
.services-indicator::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.nav-drop > button:hover .services-indicator,
.nav-drop > button:focus-visible .services-indicator {
  transform: translateY(-1px) scale(1.08);
  border-color: var(--purple-700);
  background: var(--purple-700);
  box-shadow: 0 7px 18px rgba(95, 42, 132, .20);
}
.nav-drop > button:hover .services-indicator::before,
.nav-drop > button:hover .services-indicator::after,
.nav-drop > button:focus-visible .services-indicator::before,
.nav-drop > button:focus-visible .services-indicator::after {
  background: var(--white);
}
.nav-drop.is-open > button .services-indicator {
  transform: rotate(45deg);
  border-color: var(--gold-500);
  background: var(--gold-500);
  box-shadow: 0 6px 16px rgba(214, 179, 106, .28);
}
.nav-drop.is-open > button .services-indicator::before,
.nav-drop.is-open > button .services-indicator::after {
  background: var(--purple-950);
}
@keyframes servicesHint {
  0%, 100% { box-shadow: 0 3px 10px rgba(95, 42, 132, .10); }
  45% { box-shadow: 0 0 0 5px rgba(214, 179, 106, .17), 0 5px 14px rgba(95, 42, 132, .13); }
}
@media (max-width: 1040px) {
  .nav-drop > button {
    justify-content: space-between;
  }
  .services-indicator {
    margin-left: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .services-indicator { animation: none; }
}



/* ===========================
   BOUTIQUE & PRODUITS NUMÉRIQUES
   =========================== */

.shop-hero { overflow: hidden; }
.shop-hero-card {
  align-self: center; display: flex; align-items: center; gap: 22px; padding: 24px 28px;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,.88), rgba(239,227,247,.75));
  box-shadow: var(--shadow-sm);
}
.shop-hero-card img { width: 118px; height: 118px; object-fit: contain; border-radius: 26px; background: var(--white); }
.shop-hero-card div { display: grid; gap: 6px; }
.shop-hero-card strong { font-family: Georgia, serif; font-size: 1.6rem; color: var(--purple-900); }
.shop-hero-card span { color: var(--ink-soft); }

.shop-product { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.shop-product-featured { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.shop-product-copy { padding: 16px 12px 16px 0; }
.shop-product-copy h3 { margin-top: 6px; font-family: Georgia, serif; font-size: clamp(2rem,4vw,3.2rem); color: var(--purple-950); }
.shop-product-copy > p { margin-top: 16px; color: var(--ink-soft); }
.shop-price { display: flex; align-items: baseline; gap: 12px; margin: 24px 0 8px; }
.shop-price strong, .product-main-price strong { font-family: Georgia, serif; font-size: 3.25rem; line-height: 1; color: var(--purple-700); }
.shop-price span, .product-main-price span { color: var(--ink-soft); }
.shop-checks { margin: 24px 0; }

.shop-preview-browser { overflow: hidden; min-width: 0; border: 1px solid var(--line-strong); border-radius: 22px; background: var(--white); box-shadow: 0 24px 70px rgba(35,18,44,.16); }
.browser-bar { min-height: 44px; display: flex; align-items: center; gap: 8px; padding: 0 14px; border-bottom: 1px solid var(--line); background: #f6f2f7; color: var(--ink-soft); font-size: .78rem; }
.browser-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); }
.browser-bar span { margin-left: 5px; font-weight: 750; }
.browser-bar a { margin-left: auto; color: var(--purple-700); font-weight: 800; }
.shop-preview-browser iframe { display: block; width: 100%; height: 560px; border: 0; background: var(--cream-2); pointer-events: none; }
.shop-preview-large iframe { height: min(820px, 78vh); pointer-events: auto; }
.shop-preview-large { border-radius: 26px; }

.product-hero { padding-bottom: 82px; }
.product-hero-grid { display: grid; grid-template-columns: 1fr 390px; gap: 60px; align-items: start; margin-top: 24px; }
.product-buy-card { position: sticky; top: 110px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); }
.product-main-price { display: grid; gap: 4px; margin: 22px 0; }
.product-buy-card small { display: block; margin-top: 14px; color: var(--ink-soft); line-height: 1.5; }
.btn-block { width: 100%; text-align: center; }
.checkout-note { margin-top: 15px; max-width: 650px; color: var(--ink-soft); font-size: .86rem; }

.license-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.license-box { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.license-box h3 { margin-bottom: 18px; }
.license-box ul { display: grid; gap: 10px; padding-left: 20px; color: var(--ink-soft); }
.license-box.allowed { border-top: 4px solid #4f8b61; }
.license-box.forbidden { border-top: 4px solid #a24d5f; }

.shop-home-panel { grid-template-columns: 1fr auto; }
.shop-home-price { min-width: 210px; display: grid; justify-items: end; gap: 7px; text-align: right; }
.shop-home-price strong { font-family: Georgia, serif; font-size: 3rem; line-height: 1; color: var(--gold-300); }
.shop-home-price span { color: rgba(255,255,255,.72); font-size: .85rem; }
.shop-home-price .btn { margin-top: 8px; }

@media (max-width: 1040px) {
  .shop-product { grid-template-columns: 1fr; }
  .shop-product-copy { padding: 0 8px 12px; }
  .product-hero-grid { grid-template-columns: 1fr; }
  .product-buy-card { position: static; }
  .shop-preview-browser iframe { height: 600px; }
}
@media (max-width: 760px) {
  .shop-hero-card { padding: 18px; }
  .shop-hero-card img { width: 82px; height: 82px; border-radius: 20px; }
  .shop-hero-card strong { font-size: 1.25rem; }
  .shop-product-featured { padding: 14px; }
  .shop-preview-browser iframe { height: 500px; }
  .shop-preview-large iframe { height: 620px; }
  .browser-bar span { max-width: 180px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
  .license-grid { grid-template-columns: 1fr; }
  .shop-home-panel { grid-template-columns: 1fr; }
  .shop-home-price { justify-items: start; text-align: left; }
}
@media (max-width: 520px) {
  .shop-preview-browser iframe { height: 430px; }
  .shop-preview-large iframe { height: 540px; }
  .shop-price strong, .product-main-price strong { font-size: 2.7rem; }
}


/* ===========================
   PANIER & CHECKOUT STRIPE
   =========================== */
button.btn { font: inherit; cursor: pointer; }
button.btn:disabled { cursor: not-allowed; opacity: .55; transform: none; }
.cart-count { display: inline-grid; place-items: center; min-width: 19px; height: 19px; margin-left: 4px; padding: 0 5px; border-radius: 999px; background: var(--purple-700); color: #fff; font-size: .68rem; font-weight: 850; vertical-align: middle; }
.cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: 42px; align-items: start; }
.cart-list { display: grid; gap: 16px; }
.cart-item { display: grid; grid-template-columns: minmax(0,1fr) auto auto; gap: 22px; align-items: center; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.cart-item > div { display: grid; gap: 6px; }
.cart-item-title { color: var(--purple-900); font-family: Georgia, serif; font-size: 1.18rem; font-weight: 800; }
.cart-item span { color: var(--ink-soft); font-size: .87rem; }
.cart-item > strong { color: var(--purple-700); font-size: 1.3rem; }
.cart-remove { border: 0; background: transparent; color: #8d3f52; font-weight: 800; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.cart-summary { position: sticky; top: 110px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); }
.cart-total { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; padding: 18px 0; margin: 8px 0 4px; border-bottom: 1px solid var(--line); }
.cart-total span { font-weight: 800; color: var(--purple-950); }
.cart-total strong { font-family: Georgia, serif; font-size: 2rem; color: var(--purple-700); }
.cart-tax-note { margin: 10px 0 22px; color: var(--ink-soft); font-size: .8rem; }
.consent-box { display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; padding: 15px; margin-bottom: 16px; border: 1px solid var(--line); border-radius: 14px; background: var(--cream-2); color: var(--ink-soft); font-size: .82rem; line-height: 1.48; cursor: pointer; }
.consent-box input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--purple-700); }
.payment-reassurance { display: grid; gap: 4px; margin-top: 16px; color: var(--ink-soft); font-size: .78rem; line-height: 1.45; }
.payment-reassurance strong { color: var(--purple-900); }
.checkout-alert { margin-bottom: 18px; padding: 14px 16px; border-radius: 14px; background: #fff5df; border: 1px solid #ead29b; color: #6a5321; font-weight: 750; }
.cart-empty, .status-card { padding: clamp(28px, 5vw, 52px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.cart-empty h2, .status-card h1 { margin-bottom: 14px; }
.cart-empty p { margin-bottom: 22px; color: var(--ink-soft); }
.status-card { max-width: 820px; margin: 30px auto; }
.status-card .lead { margin-top: 16px; }
.status-meta { margin: 18px 0; color: var(--ink-soft); }
.download-list { display: grid; gap: 12px; margin: 28px 0 18px; }
.download-help { margin-top: 18px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 14px; background: var(--cream-2); color: var(--ink-soft); }
.download-help code { color: var(--purple-900); font-weight: 800; }
@media (max-width: 960px) { .cart-layout { grid-template-columns: 1fr; } .cart-summary { position: static; } }
@media (max-width: 640px) { .cart-item { grid-template-columns: 1fr auto; } .cart-remove { grid-column: 1 / -1; justify-self: start; } }

/* Boutique B2B / informations juridiques */
.shop-legal-note, .b2b-checkout-note { display:grid; gap:6px; margin-top:18px; padding:15px 17px; border:1px solid var(--line); border-radius:14px; background:var(--cream-2); color:var(--ink-soft); font-size:.86rem; line-height:1.5; }
.shop-legal-note strong, .b2b-checkout-note strong { color:var(--purple-900); }
.shop-legal-note.compact { margin-top:16px; }
.b2b-checkout-note { margin:0 0 14px; }
.legal-callout { margin:24px 0; padding:18px 20px; border-left:4px solid var(--gold-400); background:var(--cream-2); border-radius:0 14px 14px 0; color:var(--ink-soft); }
.legal-wrap .legal-summary { display:grid; gap:10px; padding:20px; margin:22px 0 30px; border:1px solid var(--line); border-radius:16px; background:var(--cream-2); }
.legal-wrap .legal-summary strong { color:var(--purple-900); }


/* ===== Pack Google Business Artisan Premium ===== */
.shop-product-secondary { margin-top: 34px; }
.pack-shop-visual {
  min-height: 460px; display: grid; grid-template-columns: minmax(0, 1fr); align-content: center; justify-items: center;
  padding: 26px; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(145deg, #fbf7ef 0%, #fff 62%, #f5e8ef 100%); border: 1px solid var(--line);
}
.pack-shop-visual img { width: min(100%, 320px); max-height: 410px; object-fit: contain; border-radius: 8px; box-shadow: 0 18px 42px rgba(45,25,55,.15); }
.pack-shop-mini { display:flex; flex-wrap:wrap; justify-content:center; gap:8px; margin-top:16px; }
.pack-shop-mini span { padding:7px 10px; border-radius:999px; background:#fff; border:1px solid var(--line); color:var(--purple-800); font-size:.75rem; font-weight:800; }
.pack-preview-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; align-items:start; }
.pack-preview-sheet { margin:0; padding:14px; background:#fff; border:1px solid var(--line); border-radius:var(--radius); box-shadow:var(--shadow-sm); }
.pack-preview-sheet img { width:100%; aspect-ratio: 0.707 / 1; object-fit:contain; object-position:center top; border-radius:8px; border:1px solid #eee7eb; background:#fff; padding:10px; }
.pack-preview-sheet figcaption { padding:12px 4px 2px; color:var(--ink-soft); font-size:.86rem; font-weight:750; text-align:center; }
@media (max-width: 860px) { .pack-preview-grid { grid-template-columns:1fr; } .pack-preview-sheet { max-width:520px; margin-inline:auto; } .pack-shop-visual { min-height:auto; } }


/* ===== COLLECTION TEMPLATES METIERS — 2026-08-08 ===== */
.template-shop-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:28px}.template-shop-card{overflow:hidden;border:1px solid var(--line);border-radius:26px;background:var(--white);box-shadow:var(--shadow-sm);transition:transform .2s ease,box-shadow .2s ease}.template-shop-card:hover{transform:translateY(-3px);box-shadow:var(--shadow)}.template-card-media{position:relative;display:block;aspect-ratio:16/9;overflow:hidden;background:var(--cream-2)}.template-card-media iframe{display:block;width:222.223%;height:222.223%;border:0;transform:scale(.45);transform-origin:top left;pointer-events:none;background:var(--cream-2)}.template-card-cover-link{position:absolute;inset:0;z-index:2}.template-shop-card:hover .template-card-media iframe{filter:saturate(1.04)}.template-card-tone{position:absolute;left:16px;bottom:16px;padding:8px 11px;border-radius:999px;background:rgba(28,20,32,.88);color:#fff;font-size:.72rem;font-weight:850;letter-spacing:.02em;backdrop-filter:blur(8px)}.template-card-body{display:grid;gap:14px;padding:24px}.template-card-top{display:flex;align-items:center;justify-content:space-between;gap:14px;color:var(--ink-soft);font-size:.8rem;font-weight:800;text-transform:uppercase;letter-spacing:.06em}.template-card-top strong{font-family:Georgia,serif;font-size:1.55rem;line-height:1;color:var(--purple-700);letter-spacing:0}.template-card-body h3{font-family:Georgia,serif;font-size:clamp(1.65rem,3vw,2.2rem);line-height:1.05;color:var(--purple-950)}.template-card-body p{color:var(--ink-soft);line-height:1.65}.template-card-actions{display:flex;flex-wrap:wrap;gap:10px}.template-demo-link{color:var(--purple-700);font-size:.84rem;font-weight:800;text-decoration:underline;text-underline-offset:4px}.template-fit-chips{display:flex;flex-wrap:wrap;gap:8px;margin-top:18px}.template-fit-chips span{padding:8px 11px;border:1px solid var(--line);border-radius:999px;background:#fff;color:var(--purple-800);font-size:.76rem;font-weight:800}.collection-promise{display:grid;grid-template-columns:.7fr 1.3fr;gap:50px;align-items:start;padding:clamp(28px,5vw,54px);border-radius:30px;background:var(--purple-950);color:#fff}.collection-promise h2{color:#fff}.collection-promise-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}.collection-promise-grid article{padding:20px;border:1px solid rgba(255,255,255,.15);border-radius:18px;background:rgba(255,255,255,.06)}.collection-promise-grid strong{color:var(--gold-300);font-size:.78rem}.collection-promise-grid h3{margin:8px 0;color:#fff}.collection-promise-grid p{color:rgba(255,255,255,.72);font-size:.9rem;line-height:1.6}.product-hero .template-fit-chips{margin-bottom:2px}@media(max-width:960px){.template-shop-grid{grid-template-columns:1fr}.collection-promise{grid-template-columns:1fr}.collection-promise-grid{grid-template-columns:1fr}}@media(max-width:640px){.template-card-body{padding:19px}.template-card-actions .btn{width:100%}.template-card-tone{left:10px;bottom:10px}.collection-promise{padding:26px 20px;border-radius:22px}}

/* ===== Boutique - gamme packs 2026-08-08 ===== */
.digital-products-grid{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;
}
.digital-product-card{
  display:flex;flex-direction:column;background:#fff;border:1px solid rgba(75,41,87,.12);
  border-radius:24px;overflow:hidden;box-shadow:0 18px 46px rgba(58,35,63,.08);height:100%;
}
.digital-product-media{
  display:flex;align-items:center;justify-content:center;min-height:360px;padding:18px;
  background:linear-gradient(145deg,#fcf9ff,#f5edf8);
}
.digital-product-media img{
  width:100%;
  max-width:100%;
  height:100%;
  max-height:320px;
  object-fit:contain;
  object-position:center top;
  filter:drop-shadow(0 16px 24px rgba(46,30,49,.12));
}
.digital-product-body{display:flex;flex-direction:column;gap:14px;padding:24px;height:100%}
.digital-product-body h3{font-size:1.45rem;margin:0}
.digital-product-body p{margin:0;color:var(--ink-soft)}
.digital-product-body .template-card-actions{margin-top:auto}
.bundle-note{
  margin-top:24px;padding:18px 20px;border-radius:18px;background:rgba(199,164,77,.1);
  border:1px solid rgba(199,164,77,.35);display:flex;gap:12px;align-items:flex-start;
}
.bundle-note strong{white-space:nowrap;color:var(--purple-700)}
.pack-single-preview{display:grid;grid-template-columns:minmax(280px,.85fr) minmax(0,1.15fr);gap:42px;align-items:center}
.pack-single-preview .pack-preview-sheet{max-width:420px;margin:auto}
.pack-preview-copy h3{font-size:1.6rem;margin-bottom:18px}
@media(max-width:980px){.digital-products-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:720px){
  .digital-products-grid{grid-template-columns:1fr}
  .digital-product-media{min-height:290px;padding:16px}
  .digital-product-media img{max-height:250px}
  .pack-single-preview{grid-template-columns:1fr}
  .bundle-note{flex-direction:column}
}


/* ===== Avis Google ===== */
.google-review-section{padding-top:18px}
.google-review-card{display:grid;grid-template-columns:auto minmax(0,1fr) auto;gap:26px;align-items:center;padding:clamp(24px,4vw,38px);border:1px solid var(--line);border-radius:var(--radius-lg);background:linear-gradient(135deg,var(--white),var(--cream-2));box-shadow:var(--shadow-sm)}
.google-review-icon{display:grid;place-items:center;width:64px;height:64px;border-radius:20px;background:var(--purple-950);color:var(--gold-300);font-size:1.75rem;box-shadow:0 12px 28px rgba(45,25,55,.16)}
.google-review-copy h2{margin:4px 0 10px;font-size:clamp(1.55rem,3vw,2.2rem)}
.google-review-copy p:last-child{max-width:760px;color:var(--ink-soft);line-height:1.65}
.google-review-action{display:grid;gap:9px;justify-items:stretch;min-width:220px;text-align:center}
.google-review-action .btn{white-space:nowrap}
.google-review-action small{max-width:240px;color:var(--ink-soft);font-size:.74rem;line-height:1.4}
.footer-review-link{font-weight:800;color:var(--gold-300)!important}
@media(max-width:860px){.google-review-card{grid-template-columns:auto 1fr}.google-review-action{grid-column:1/-1;min-width:0;justify-items:start;text-align:left}.google-review-action small{max-width:none}}
@media(max-width:560px){.google-review-card{grid-template-columns:1fr;gap:18px}.google-review-icon{width:54px;height:54px;border-radius:17px}.google-review-action{grid-column:auto;width:100%}.google-review-action .btn{width:100%;white-space:normal}.google-review-action small{text-align:center}}


/* =========================================================
   AMÉTRINE WEB — DIRECTION LUXE / ÉDITORIALE — AOÛT 2026
   Ces règles surchargent volontairement l'ancien design sans
   casser les pages historiques et les fiches produits.
   ========================================================= */
body {
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  letter-spacing: -.006em;
}
h1, h2 {
  font-family: "Bodoni 72", Didot, "Iowan Old Style", "Times New Roman", Georgia, serif;
  font-weight: 500;
  letter-spacing: -.045em;
}
h3 { letter-spacing: -.025em; }
h1 { font-size: clamp(3.2rem, 6.8vw, 6.8rem); }
h2 { font-size: clamp(2.35rem, 4.6vw, 4.75rem); }
.lead { line-height: 1.7; }
.section { padding: clamp(78px, 9vw, 122px) 0; }
.section-sm { padding: 66px 0; }
.section-soft, .section-alt { background: var(--cream-2); }
.section-dark {
  background:
    radial-gradient(circle at 82% 18%, rgba(201,164,95,.12), transparent 26%),
    linear-gradient(145deg, #20142d, #4b2d66);
}
.eyebrow { letter-spacing: .16em; font-weight: 780; font-size: .73rem; }
.eyebrow::before { width: 38px; }
.text-link {
  color: var(--purple-700);
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(103,41,60,.32);
}
.btn {
  min-height: 50px;
  border-radius: 7px;
  padding: 12px 22px;
  font-weight: 760;
  letter-spacing: .005em;
  box-shadow: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--purple-900); box-shadow: 0 14px 32px rgba(53,21,32,.16); }
.btn-primary:hover { background: var(--purple-800); }
.btn-gold { color: #241017; background: var(--gold-500); }
.btn-outline { background: transparent; color: var(--purple-900); border-color: rgba(53,21,32,.3); }
.btn-white { color: var(--purple-900); }
.check-list li::before {
  width: 20px; height: 20px; border-radius: 50%;
  color: var(--purple-900); background: rgba(201,164,95,.25);
}

/* Header */
.site-header {
  border-bottom-color: rgba(53,21,32,.1);
  background: rgba(247,242,234,.94);
  backdrop-filter: blur(18px) saturate(130%);
}
.navbar { min-height: 88px; }
.brand { min-width: 176px; }
.brand img {
  width: 174px; height: auto; max-height: 66px;
  border-radius: 0; background: transparent; box-shadow: none; object-fit: contain;
}
.nav-links { gap: 20px; }
.nav-links > a, .nav-drop > button {
  position: relative;
  padding: 14px 0;
  color: #352a2e;
  font-size: .88rem;
  font-weight: 700;
}
.nav-links > a:not(.nav-cta)::after, .nav-drop > button::before {
  content:""; position:absolute; left:0; bottom:7px; width:0; height:1px; background:var(--gold-700); transition:width .18s ease;
}
.nav-links > a:hover::after, .nav-links > a[aria-current="page"]::after,
.nav-drop:hover > button::before, .nav-drop.nav-current > button::before { width:100%; }
.nav-links > a:hover, .nav-links > a[aria-current="page"], .nav-drop > button:hover, .nav-drop.nav-current > button { color: var(--purple-900); }
.nav-links > a.nav-cta {
  padding: 10px 15px !important;
  border-radius: 6px;
  background: var(--purple-900);
  box-shadow: none;
}
.nav-cart { display:flex; align-items:center; gap:7px; }
.nav-cart [data-cart-count] {
  min-width: 19px; height:19px; display:grid; place-items:center; padding:0 5px;
  border-radius:50%; background:var(--gold-500); color:#20142d; font-size:.68rem; line-height:1; font-weight:800;
}
.nav-cart [data-cart-count][hidden] { display:none; }
.nav-chevron { margin-left: 3px; font-size: .82rem; }
.dropdown {
  top: calc(100% + 4px);
  left: 0;
  transform: translateY(8px);
  width: 330px;
  padding: 8px;
  border-radius: 12px;
  background: #fbf7fd;
  box-shadow: 0 24px 70px rgba(41,20,27,.15);
}
.nav-drop:hover .dropdown, .nav-drop:focus-within .dropdown, .nav-drop.is-open .dropdown { transform:translateY(0); }
.dropdown a { padding: 12px 13px; border-radius: 7px; }
.dropdown a:hover { background: #f2eaf7; color:var(--purple-900); }
.dropdown a strong { font-size: .9rem; }
.dropdown a small { margin-top: 2px; font-size:.75rem; }

/* Generic historic page polish */
.page-hero {
  padding: 104px 0 90px;
  background:
    radial-gradient(circle at 82% 14%, rgba(201,164,95,.16), transparent 22%),
    linear-gradient(135deg, #fcfaf6, #eee4f4);
}
.page-hero-luxe .narrow-wide { max-width: 980px; margin-inline:auto; }
.page-hero .lead { max-width: 800px; }
.breadcrumb { margin-bottom: 28px; }
.breadcrumb a { color:var(--purple-700); }
.card, .offer-box, .license-box, .form-card, .product-buy-card, .contact-panel {
  border-radius: 14px;
}
.card { box-shadow: none; }
.card .icon { border-radius: 8px; background:#f2ebe8; color:var(--purple-900); }
.section-heading { align-items:start; }
.section-heading.editorial-heading { grid-template-columns: 1.05fr .95fr; }
.faq-item { border-radius: 9px; background:#fff; }
.product-buy-card { border-top: 3px solid var(--gold-500); }

/* Home premium */
.lux-hero {
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(201,164,95,.17), transparent 22%),
    linear-gradient(135deg, #f8f3fb 0%, #eee5f4 58%, #f7f1fa 100%);
  border-bottom:1px solid var(--line);
}
.lux-hero::before {
  content:""; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(110deg, transparent 0 48%, rgba(255,255,255,.35) 48% 49%, transparent 49%);
}
.lux-hero-grid {
  position:relative; z-index:1; min-height:680px;
  display:grid; grid-template-columns:1.02fr .98fr; gap:74px; align-items:center;
  padding:96px 0 104px;
}
.lux-hero-copy h1 { max-width: 800px; }
.lux-hero-copy .lead { margin-top:26px; max-width:720px; }
.micro-proof {
  display:flex; flex-wrap:wrap; gap:12px 22px; margin-top:30px;
  color:var(--ink-soft); font-size:.83rem; font-weight:650;
}
.micro-proof span { position:relative; padding-left:15px; }
.micro-proof span::before { content:""; position:absolute; left:0; top:.65em; width:5px; height:5px; border-radius:50%; background:var(--gold-700); }
.editorial-showcase { position:relative; min-height:520px; }
.editorial-card {
  position:absolute; overflow:hidden; margin:0; border:1px solid rgba(53,21,32,.12);
  border-radius:10px; background:#fff; box-shadow:0 30px 80px rgba(42,21,28,.18);
}
.editorial-card img { width:100%; height:100%; object-fit:cover; }
.editorial-main { width:78%; height:390px; right:0; top:32px; }
.editorial-main figcaption {
  position:absolute; left:0; right:0; bottom:0; padding:18px 20px;
  display:flex; align-items:end; justify-content:space-between; gap:20px;
  color:#fff; background:linear-gradient(transparent, rgba(24,13,16,.84));
}
.editorial-main figcaption span { font-size:.72rem; text-transform:uppercase; letter-spacing:.12em; }
.editorial-small { width:44%; height:190px; border:5px solid #f8f3fb; }
.editorial-a { left:0; bottom:12px; transform:rotate(-2deg); }
.editorial-b { right:5%; bottom:-18px; transform:rotate(2deg); }
.trust-ribbon { border-bottom:1px solid var(--line); background:#fff; }
.trust-ribbon-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.trust-ribbon-grid > div { padding:25px 22px; border-right:1px solid var(--line); }
.trust-ribbon-grid > div:first-child { padding-left:0; }
.trust-ribbon-grid > div:last-child { border-right:0; }
.trust-ribbon strong, .trust-ribbon span { display:block; }
.trust-ribbon strong { color:var(--purple-900); font-family:"Bodoni 72",Didot,Georgia,serif; font-size:1.17rem; font-weight:600; }
.trust-ribbon span { margin-top:4px; color:var(--ink-soft); font-size:.78rem; }
.route-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.route-card {
  position:relative; min-height:390px; display:flex; flex-direction:column;
  padding:34px; border:1px solid var(--line); border-radius:12px; background:#fff;
}
.route-card.route-featured { background:linear-gradient(145deg,#2b1b3d,#5a3473); color:#fff; border-color:transparent; }
.route-card.route-featured p:not(.eyebrow), .route-card.route-featured .route-price { color:rgba(255,255,255,.72); }
.route-card.route-featured .text-link, .route-card.route-featured .eyebrow { color:var(--gold-300); }
.route-number { position:absolute; right:26px; top:25px; color:rgba(103,41,60,.28); font-family:Georgia,serif; font-size:2rem; }
.route-featured .route-number { color:rgba(255,255,255,.22); }
.route-card h3 { margin-top:8px; font-family:"Bodoni 72",Didot,Georgia,serif; font-size:2rem; font-weight:500; }
.route-card > p:not(.eyebrow) { margin-top:18px; color:var(--ink-soft); }
.route-price { margin-top:auto; padding-top:28px; color:var(--ink-soft); font-size:.86rem; }
.route-price strong { color:inherit; font-size:1.55rem; font-family:Georgia,serif; }
.route-card .text-link { margin-top:14px; }
.service-editorial-grid { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid rgba(255,255,255,.13); border-left:1px solid rgba(255,255,255,.13); }
.service-editorial {
  min-height:230px; display:flex; flex-direction:column; padding:30px;
  border-right:1px solid rgba(255,255,255,.13); border-bottom:1px solid rgba(255,255,255,.13);
  color:#fff; transition:background .18s ease;
}
.service-editorial:hover { background:rgba(255,255,255,.05); }
.service-editorial span { color:var(--gold-300); font-size:.76rem; letter-spacing:.14em; }
.service-editorial h3 { margin-top:auto; font-family:"Bodoni 72",Didot,Georgia,serif; font-size:2rem; font-weight:500; }
.service-editorial p { margin-top:9px; color:rgba(255,255,255,.65); font-size:.9rem; }
.service-editorial-grid.light { border-color:var(--line); }
.service-editorial-grid.light .service-editorial { color:var(--ink); border-color:var(--line); }
.service-editorial-grid.light .service-editorial:hover { background:#fff; }
.service-editorial-grid.light .service-editorial p { color:var(--ink-soft); }
.service-editorial-grid.light .service-editorial span { color:var(--gold-700); }
.offer-comparison { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; align-items:stretch; }
.offer-tier {
  position:relative; display:flex; flex-direction:column; padding:34px;
  border:1px solid var(--line); border-radius:12px; background:#fff;
}
.offer-tier.recommended { border-color:rgba(201,164,95,.75); box-shadow:0 20px 60px rgba(44,23,29,.10); }
.recommend-badge {
  display:inline-flex; align-self:flex-start; margin:-47px 0 21px; padding:8px 12px;
  border-radius:4px; background:var(--gold-500); color:#241017; font-size:.7rem; font-weight:800; text-transform:uppercase; letter-spacing:.08em;
}
.tier-kicker { color:var(--ink-soft); font-size:.78rem; }
.offer-tier h3 { margin-top:8px; font-family:"Bodoni 72",Didot,Georgia,serif; font-size:2.4rem; font-weight:500; }
.tier-price { display:grid; gap:4px; margin:22px 0 6px; }
.tier-price strong { color:var(--purple-900); font-family:Georgia,serif; font-size:2.35rem; }
.tier-price span { color:var(--ink-soft); font-size:.78rem; }
.offer-tier .check-list { margin-bottom:28px; }
.offer-tier .btn { margin-top:auto; }
.serenity-inline {
  margin-top:22px; display:grid; grid-template-columns:1fr auto; gap:32px; align-items:center;
  padding:28px 32px; border-radius:10px; color:#fff; background:var(--purple-900);
}
.serenity-inline h3 { font-family:"Bodoni 72",Didot,Georgia,serif; font-size:2rem; }
.serenity-inline p:not(.eyebrow) { margin-top:6px; color:rgba(255,255,255,.7); }
.project-lux-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.project-lux-media { display:block; aspect-ratio:1.35; overflow:hidden; border-radius:9px; background:#ece5e0; }
.project-lux-media img { width:100%; height:100%; object-fit:cover; transition:transform .35s ease; }
.project-lux:hover .project-lux-media img { transform:scale(1.025); }
.project-lux > div { padding:20px 4px 0; }
.project-lux h3 { font-family:"Bodoni 72",Didot,Georgia,serif; font-size:2rem; font-weight:500; }
.project-lux > div > p:last-child { margin-top:8px; color:var(--ink-soft); }
.center-actions { display:flex; justify-content:center; margin-top:46px; }
.confidence-section { background:#fff; }
.confidence-grid { display:grid; grid-template-columns:.85fr 1.15fr; gap:72px; align-items:start; }
.confidence-list { border-top:1px solid var(--line); }
.confidence-list article { display:grid; grid-template-columns:54px 1fr; gap:20px; padding:25px 0; border-bottom:1px solid var(--line); }
.confidence-list article > strong { color:var(--gold-700); font-size:.75rem; letter-spacing:.12em; }
.confidence-list h3 { font-size:1.13rem; }
.confidence-list p { margin-top:6px; color:var(--ink-soft); font-size:.9rem; }
.curated-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.curated-card { overflow:hidden; border:1px solid var(--line); border-radius:12px; background:#fff; }
.curated-card > img { width:100%; aspect-ratio:1.28; object-fit:cover; background:#f0eae5; }
.curated-card > div { padding:26px; }
.curated-service { display:flex; align-items:end; min-height:100%; color:#fff; background:linear-gradient(145deg,#30121c,#53202f); }
.curated-service > div { padding:32px; }
.curated-service p { color:rgba(255,255,255,.7); }
.curated-service .curated-bottom a { color:var(--gold-300); }
.curated-tag { display:inline-block; margin-bottom:13px; color:var(--gold-700); font-size:.7rem; font-weight:800; text-transform:uppercase; letter-spacing:.12em; }
.curated-card h3 { font-family:"Bodoni 72",Didot,Georgia,serif; font-size:1.85rem; font-weight:500; }
.curated-card p { margin-top:10px; color:var(--ink-soft); }
.curated-bottom { display:flex; justify-content:space-between; gap:16px; align-items:end; margin-top:24px; padding-top:18px; border-top:1px solid var(--line); }
.curated-bottom strong { color:var(--purple-900); font-family:Georgia,serif; font-size:1.5rem; }
.curated-service .curated-bottom { border-color:rgba(255,255,255,.15); }
.curated-service .curated-bottom strong { color:#fff; }
.about-teaser .split { align-items:start; }
.about-principles { border-top:1px solid rgba(255,255,255,.18); }
.about-principles > div { display:grid; grid-template-columns:56px 1fr; gap:20px; padding:22px 0; border-bottom:1px solid rgba(255,255,255,.18); }
.about-principles span { color:var(--gold-300); font-size:.74rem; }
.about-principles strong { font-family:"Bodoni 72",Didot,Georgia,serif; font-size:1.5rem; font-weight:500; }
.process-lux { list-style:none; padding:0; margin:0; display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--line); }
.process-lux li { min-height:230px; padding:28px 28px 28px 0; border-right:1px solid var(--line); }
.process-lux li:not(:first-child) { padding-left:28px; }
.process-lux li:last-child { border-right:0; }
.process-lux span { color:var(--gold-700); font-size:.72rem; letter-spacing:.12em; }
.process-lux h3 { margin-top:58px; font-family:"Bodoni 72",Didot,Georgia,serif; font-size:1.75rem; font-weight:500; }
.process-lux p { margin-top:10px; color:var(--ink-soft); font-size:.88rem; }
.final-lux-cta { padding:92px 0; color:#fff; background:linear-gradient(130deg,#291018,#441925); }
.final-lux-inner { display:grid; grid-template-columns:1.25fr .75fr; gap:70px; align-items:end; }
.final-lux-cta .eyebrow { color:var(--gold-300); }
.final-lux-cta h2 { max-width:900px; }
.final-lux-cta p:not(.eyebrow) { margin-top:20px; max-width:760px; color:rgba(255,255,255,.7); }
.final-lux-cta .btn-row { justify-content:flex-end; }

/* Boutique */
.shop-hero-grid { grid-template-columns:1fr 430px; }
.shop-hero-feature {
  padding:24px; border:1px solid rgba(53,21,32,.13); border-radius:12px; background:rgba(255,255,255,.76); box-shadow:0 30px 80px rgba(42,21,28,.12);
}
.shop-hero-feature > img { width:100%; aspect-ratio:1.32; object-fit:cover; border-radius:7px; }
.shop-feature-copy { display:grid; grid-template-columns:1fr auto; gap:18px; align-items:end; margin-top:18px; }
.shop-feature-copy h2 { font-size:2rem; }
.shop-feature-copy p { margin-top:6px; color:var(--ink-soft); font-size:.86rem; }
.shop-feature-price { display:grid; text-align:right; }
.shop-feature-price del { color:var(--ink-soft); font-size:.8rem; }
.shop-feature-price strong { color:var(--purple-900); font-family:Georgia,serif; font-size:2rem; }
.shop-route-grid .route-card { min-height:330px; }
.bundle-premium-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.bundle-premium-card { overflow:hidden; display:grid; grid-template-columns:.85fr 1.15fr; border:1px solid rgba(255,255,255,.14); border-radius:12px; background:rgba(255,255,255,.04); }
.bundle-premium-card > img { width:100%; height:100%; object-fit:cover; min-height:390px; }
.bundle-premium-card > div { padding:32px; display:flex; flex-direction:column; }
.bundle-premium-card h3 { font-family:"Bodoni 72",Didot,Georgia,serif; font-size:2rem; font-weight:500; }
.bundle-premium-card p:not(.eyebrow) { margin-top:12px; color:rgba(255,255,255,.68); }
.bundle-price { display:flex; gap:14px; align-items:baseline; margin-top:auto; padding:28px 0 18px; }
.bundle-price del { color:rgba(255,255,255,.48); }
.bundle-price strong { color:var(--gold-300); font-family:Georgia,serif; font-size:2.25rem; }
.template-showcase-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:26px; }
.template-shop-card { overflow:hidden; border:1px solid var(--line); border-radius:12px; background:#fff; }
.template-browser { position:relative; height:380px; overflow:hidden; background:#e9def1; }
.template-browser iframe { width:1440px; height:900px; border:0; transform:scale(.39); transform-origin:top left; pointer-events:none; background:#fff; }
.template-browser > span {
  position:absolute; right:12px; top:12px; padding:7px 9px; border-radius:4px;
  color:#fff; background:rgba(35,17,23,.82); font-size:.67rem; text-transform:uppercase; letter-spacing:.08em;
}
.template-shop-copy { padding:25px 28px 28px; }
.template-shop-copy h3 { font-family:"Bodoni 72",Didot,Georgia,serif; font-size:2rem; font-weight:500; }
.template-shop-copy > p:last-of-type { margin-top:8px; color:var(--ink-soft); }
.card-price-row { display:flex; justify-content:space-between; align-items:center; gap:16px; margin-top:22px; padding-top:18px; border-top:1px solid var(--line); }
.card-price-row strong { color:var(--purple-900); font-family:Georgia,serif; font-size:1.6rem; }
.card-price-row a { color:var(--purple-700); font-weight:750; font-size:.86rem; }
.install-upsell { padding:70px 0; background:#eee4f4; }
.install-upsell-inner { display:grid; grid-template-columns:1fr auto; gap:70px; align-items:center; }
.install-price { min-width:230px; display:grid; text-align:right; }
.install-price strong { color:var(--purple-900); font-family:"Bodoni 72",Didot,Georgia,serif; font-size:3rem; font-weight:500; }
.install-price span { color:var(--ink-soft); font-size:.78rem; }
.install-price .btn { margin-top:18px; }
.pack-shop-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.pack-shop-card { overflow:hidden; border:1px solid var(--line); border-radius:12px; background:#fff; }
.pack-shop-card img { width:100%; aspect-ratio:1.15; object-fit:cover; }
.pack-shop-card > div { padding:22px; }
.pack-shop-card h3 { font-family:"Bodoni 72",Didot,Georgia,serif; font-size:1.6rem; font-weight:500; }
.pack-shop-card > div > p:last-of-type { margin-top:8px; color:var(--ink-soft); font-size:.88rem; }
.shop-confidence { align-items:center; }

/* About / content */
.about-story-grid { display:grid; grid-template-columns:.85fr 1.15fr; gap:90px; align-items:start; }
.prose-premium { display:grid; gap:22px; color:var(--ink-soft); font-size:1.05rem; line-height:1.8; }
.values-grid { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid rgba(255,255,255,.15); }
.values-grid article { min-height:260px; padding:30px; border-right:1px solid rgba(255,255,255,.15); }
.values-grid article:last-child { border-right:0; }
.values-grid span { color:var(--gold-300); font-size:.72rem; }
.values-grid h3 { margin-top:70px; color:#fff; font-family:"Bodoni 72",Didot,Georgia,serif; font-size:1.8rem; font-weight:500; }
.values-grid p { margin-top:10px; color:rgba(255,255,255,.65); font-size:.88rem; }
.founder-card { padding:40px; border:1px solid var(--line); border-radius:12px; background:#fff; }
.founder-monogram { width:78px; height:78px; display:grid; place-items:center; margin-bottom:28px; border:1px solid var(--gold-500); color:var(--purple-900); font-family:"Bodoni 72",Didot,Georgia,serif; font-size:1.85rem; }
.founder-card h3 { font-family:"Bodoni 72",Didot,Georgia,serif; font-size:2rem; font-weight:500; }
.commitment-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); }
.commitment-grid article { padding:34px; background:#fff; }
.commitment-grid h3 { font-family:"Bodoni 72",Didot,Georgia,serif; font-size:2rem; font-weight:500; }
.commitment-grid p { margin-top:12px; color:var(--ink-soft); }

/* Installation */
.install-hero-grid { margin-top:10px; }
.premium-price-card { background:linear-gradient(145deg,#fff,#f8f3ee); }
.premium-price-card .product-main-price strong { color:var(--purple-900); }
.comparison-split { display:grid; grid-template-columns:.75fr 1.25fr; gap:80px; align-items:start; }
.comparison-table-lite { border-top:1px solid rgba(255,255,255,.18); }
.comparison-table-lite > div { display:grid; grid-template-columns:1fr 1fr 1fr; gap:16px; padding:18px 0; border-bottom:1px solid rgba(255,255,255,.18); }
.comparison-table-lite span { color:rgba(255,255,255,.55); }
.comparison-table-lite strong { color:var(--gold-300); }
.comparison-table-lite b { color:#fff; font-weight:600; font-size:.88rem; }
.premium-offer-box { background:#fff; }

/* Conseils */
.article-grid { display:grid; grid-template-columns:1.2fr .9fr .9fr; gap:20px; }
.article-card { min-height:420px; display:flex; flex-direction:column; padding:32px; border:1px solid var(--line); border-radius:12px; background:#fff; }
.article-card.featured { color:#fff; background:linear-gradient(145deg,var(--purple-950),var(--purple-800)); border-color:transparent; }
.article-index { color:var(--gold-700); font-size:.72rem; letter-spacing:.12em; }
.article-card.featured .article-index, .article-card.featured .eyebrow, .article-card.featured .text-link { color:var(--gold-300); }
.article-card h2 { margin-top:46px; font-size:clamp(2rem,3.4vw,3.2rem); }
.article-card p:not(.eyebrow) { margin-top:18px; color:var(--ink-soft); }
.article-card.featured p:not(.eyebrow) { color:rgba(255,255,255,.68); }
.article-card .text-link { margin-top:auto; padding-top:30px; }
.vertical-actions { display:grid; align-content:start; }
.article-container { max-width:900px; }
.article-hero h1 { max-width:900px; }
.article-meta { display:flex; gap:20px; margin-top:30px; color:var(--ink-soft); font-size:.78rem; }
.article-layout { display:grid; grid-template-columns:minmax(0,780px) 340px; gap:80px; align-items:start; }
.article-prose { display:grid; gap:48px; }
.article-section { padding-bottom:44px; border-bottom:1px solid var(--line); }
.article-section h2 { font-size:clamp(2rem,3.3vw,3.1rem); }
.article-section p { margin-top:18px; color:var(--ink-soft); font-size:1.03rem; line-height:1.85; }
.article-conclusion { padding:34px; background:#f2ebf8; border-left:3px solid var(--gold-500); }
.article-conclusion h2 { font-size:2.3rem; }
.article-conclusion p:last-child { margin-top:14px; color:var(--ink-soft); }
.article-aside { position:sticky; top:118px; padding:28px; border:1px solid var(--line); border-radius:10px; background:#fff; }
.article-aside h3 { font-family:"Bodoni 72",Didot,Georgia,serif; font-size:1.8rem; font-weight:500; }
.article-aside p:not(.eyebrow) { margin:14px 0 22px; color:var(--ink-soft); font-size:.9rem; }
.article-aside .text-link { display:inline-block; margin-top:20px; }

/* Footer */
.site-footer { padding:72px 0 28px; background:linear-gradient(145deg, #241432 0%, #351f4a 100%); }
.footer-premium-top { display:grid; grid-template-columns:1.4fr repeat(3,.8fr); gap:46px; }
.footer-brand img { width:156px; height:auto; padding:0; border-radius:0; background:transparent; filter:none; opacity:1; object-fit:contain; }
.footer-brand p { max-width:390px; margin-top:18px; color:rgba(255,255,255,.78); }
.footer-proof { display:grid; gap:7px; margin-top:20px; color:rgba(255,255,255,.5); font-size:.78rem; }
.footer-title { font-size:.75rem; text-transform:uppercase; letter-spacing:.14em; color:var(--gold-300); }
.footer-links { gap:10px; font-size:.88rem; }
.footer-links span { color:rgba(255,255,255,.5); }
.footer-bottom { color:rgba(255,255,255,.42); }

/* Assistant: volontairement discret */
.chat-launcher {
  right:22px; bottom:20px; width:auto; height:58px; display:flex; align-items:center; gap:10px;
  padding:6px 12px 6px 6px; border:1px solid rgba(201,164,95,.72); border-radius:8px;
  background:#fff; box-shadow:0 15px 38px rgba(28,14,19,.18);
}
.chat-launcher img { width:44px; height:44px; border-radius:5px; background:#f5eff8; }
.chat-launcher::after { content:none; }
.chat-launcher-label { color:var(--purple-900); font-size:.78rem; font-weight:750; white-space:nowrap; }
.chat-panel { bottom:92px; border-radius:12px; }
.chat-header { background:linear-gradient(135deg,var(--purple-950),var(--purple-800)); }
.chat-avatar { border-radius:6px; border:1px solid var(--gold-500); }
.chat-topic { border-radius:7px; }

/* Consent */
.cookie-panel {
  position:fixed; z-index:5000; left:22px; bottom:22px; width:min(720px,calc(100vw - 44px));
  display:grid; grid-template-columns:1fr auto; gap:18px 24px; align-items:end;
  padding:22px; border:1px solid rgba(53,21,32,.18); border-radius:10px; background:#fbf8fd;
  box-shadow:0 24px 80px rgba(33,15,21,.22);
}
.cookie-copy strong { color:var(--purple-900); }
.cookie-copy p { margin-top:6px; color:var(--ink-soft); font-size:.86rem; }
.cookie-actions { display:flex; gap:8px; }
.cookie-more { grid-column:1/-1; color:var(--purple-700); font-size:.75rem; text-decoration:underline; }

/* Local preview helper inserted by script */
.local-preview-note {
  position:fixed; left:50%; bottom:18px; z-index:4500; transform:translateX(-50%);
  padding:10px 14px; border-radius:6px; color:#fff; background:rgba(38,20,55,.92); box-shadow:var(--shadow-sm);
  font-size:.76rem; text-align:center; pointer-events:none; opacity:.92;
}

/* Product pages */
.product-hero-grid { gap:52px; }
.product-buy-card { border-radius:12px; box-shadow:0 20px 55px rgba(39,18,25,.1); }
.shop-price strong, .product-main-price strong { color:var(--purple-900); }
.license-box { border-radius:10px; }
.shop-legal-note, .payment-reassurance, .b2b-checkout-note { border-radius:8px; }

/* Reduce visual overload on old card-based pages */
.card-grid .card, .pricing-card, .maintenance-card { box-shadow:none; }
.reveal { opacity:1; transform:none; }
@media (prefers-reduced-motion:no-preference) {
  .reveal.reveal-ready { opacity:0; transform:translateY(14px); transition:opacity .5s ease, transform .5s ease; }
  .reveal.reveal-ready.is-visible { opacity:1; transform:none; }
}

/* Responsive */
@media (max-width: 1120px) {
  .nav-links { gap:14px; }
  .nav-links > a, .nav-drop > button { font-size:.82rem; }
  .nav-cta { display:none !important; }
  .lux-hero-grid { gap:44px; }
  .pack-shop-grid { grid-template-columns:repeat(2,1fr); }
  .footer-premium-top { grid-template-columns:1.3fr 1fr 1fr; }
  .footer-premium-top > div:last-child { grid-column:2/4; }
}
@media (max-width: 900px) {
  .navbar { min-height:78px; }
  .brand img { width:154px; }
  .nav-toggle { display:block; width:44px; height:44px; border-radius:6px; background:transparent; }
  .nav-links {
    position:fixed; top:78px; left:0; right:0; bottom:0; display:none; align-content:start; align-items:stretch;
    padding:26px 24px 40px; overflow:auto; background:#f8f3fb; border-top:1px solid var(--line);
  }
  .nav-links.open { display:grid; }
  .nav-links > a, .nav-drop > button { width:100%; text-align:left; padding:13px 0; font-size:1rem; }
  .nav-links > a.nav-cta { display:inline-flex !important; width:auto; justify-self:start; padding:12px 18px !important; }
  .nav-drop { position:static; }
  .dropdown {
    position:static; width:100%; display:none; margin:6px 0 10px; opacity:1; visibility:visible; transform:none!important;
    border:0; box-shadow:none; background:#f1e8e2;
  }
  .nav-drop.is-open .dropdown { display:block; }
  .nav-drop:hover .dropdown:not(:focus-within) { display:none; }
  .nav-drop.is-open:hover .dropdown { display:block; }
  .lux-hero-grid, .shop-hero-grid { grid-template-columns:1fr; min-height:0; padding:76px 0; }
  .editorial-showcase { min-height:470px; max-width:650px; }
  .trust-ribbon-grid { grid-template-columns:repeat(2,1fr); }
  .trust-ribbon-grid > div { border-bottom:1px solid var(--line); }
  .trust-ribbon-grid > div:nth-child(2) { border-right:0; }
  .route-grid, .offer-comparison, .project-lux-grid, .curated-grid { grid-template-columns:1fr; }
  .route-card { min-height:310px; }
  .service-editorial-grid { grid-template-columns:repeat(2,1fr); }
  .serenity-inline, .install-upsell-inner, .final-lux-inner, .confidence-grid, .about-story-grid, .comparison-split { grid-template-columns:1fr; }
  .final-lux-cta .btn-row { justify-content:flex-start; }
  .process-lux { grid-template-columns:repeat(2,1fr); }
  .process-lux li:nth-child(2) { border-right:0; }
  .process-lux li:nth-child(3) { padding-left:0; }
  .bundle-premium-grid { grid-template-columns:1fr; }
  .template-showcase-grid { grid-template-columns:1fr; }
  .values-grid { grid-template-columns:repeat(2,1fr); }
  .values-grid article:nth-child(2) { border-right:0; }
  .commitment-grid { grid-template-columns:1fr; }
  .article-grid { grid-template-columns:1fr; }
  .article-card { min-height:330px; }
  .article-layout { grid-template-columns:1fr; gap:48px; }
  .article-aside { position:static; }
  .footer-premium-top { grid-template-columns:repeat(2,1fr); }
  .footer-premium-top > div:last-child { grid-column:auto; }
}
@media (max-width: 620px) {
  .container { width:min(var(--container),calc(100% - 28px)); }
  .section { padding:72px 0; }
  h1 { font-size:clamp(2.8rem,14vw,4.3rem); }
  h2 { font-size:clamp(2.15rem,10.5vw,3.25rem); }
  .lux-hero-grid { padding:62px 0 70px; }
  .lux-hero-copy .lead { font-size:1rem; }
  .editorial-showcase { min-height:360px; }
  .editorial-main { width:90%; height:280px; }
  .editorial-small { height:120px; }
  .trust-ribbon-grid { grid-template-columns:1fr; }
  .trust-ribbon-grid > div { padding:18px 0; border-right:0; }
  .service-editorial-grid { grid-template-columns:1fr; }
  .service-editorial { min-height:190px; }
  .section-heading, .section-heading.editorial-heading { grid-template-columns:1fr; gap:18px; margin-bottom:38px; }
  .offer-tier { padding:28px; }
  .recommend-badge { margin:-41px 0 18px; }
  .process-lux { grid-template-columns:1fr; }
  .process-lux li, .process-lux li:not(:first-child), .process-lux li:nth-child(3) { min-height:0; padding:24px 0; border-right:0; border-bottom:1px solid var(--line); }
  .process-lux h3 { margin-top:22px; }
  .template-browser { height:260px; }
  .template-browser iframe { transform:scale(.27); }
  .pack-shop-grid { grid-template-columns:1fr; }
  .bundle-premium-card { grid-template-columns:1fr; }
  .bundle-premium-card > img { min-height:0; aspect-ratio:1.35; }
  .shop-feature-copy { grid-template-columns:1fr; }
  .shop-feature-price { text-align:left; grid-auto-flow:column; justify-content:start; gap:10px; align-items:baseline; }
  .install-price { text-align:left; }
  .values-grid { grid-template-columns:1fr; }
  .values-grid article { min-height:210px; border-right:0; border-bottom:1px solid rgba(255,255,255,.15); }
  .values-grid h3 { margin-top:42px; }
  .comparison-table-lite > div { grid-template-columns:.8fr 1fr 1fr; font-size:.76rem; }
  .footer-premium-top { grid-template-columns:1fr; }
  .footer-bottom { display:grid; }
  .chat-launcher { right:12px; bottom:12px; height:52px; }
  .chat-launcher-label { display:none; }
  .chat-launcher img { width:38px; height:38px; }
  .chat-panel { right:12px; bottom:76px; width:calc(100vw - 24px); }
  .cookie-panel { left:12px; bottom:12px; width:calc(100vw - 24px); grid-template-columns:1fr; }
  .cookie-actions { width:100%; }
  .cookie-actions .btn { flex:1; }
  .local-preview-note { left:12px; right:12px; bottom:76px; transform:none; }
}

/* Cart / tarif additions */
.price-bridge {
  display:grid; grid-template-columns:1fr auto; gap:60px; align-items:center;
  padding:34px; border:1px solid var(--line); border-radius:12px; background:#fff;
}
.price-bridge h3 { margin-top:10px; font-family:"Bodoni 72",Didot,Georgia,serif; font-size:2rem; font-weight:500; }
.price-bridge p { margin-top:12px; max-width:720px; color:var(--ink-soft); }
.price-bridge-action { min-width:220px; text-align:right; }
.price-bridge-action .price { display:grid; margin-bottom:15px; }
.price-bridge-action .price strong { color:var(--purple-900); font-family:Georgia,serif; font-size:2.6rem; }
.price-bridge-action .price small { color:var(--ink-soft); }

.cart-recommendation {
  margin-top:22px; display:grid; grid-template-columns:1fr auto; gap:28px; align-items:center;
  padding:24px; border:1px solid rgba(201,164,95,.6); border-radius:10px; background:#fffaf1;
}
.cart-recommendation[hidden] { display:none; }
.cart-recommendation h3 { font-size:1.16rem; }
.cart-recommendation p:not(.eyebrow) { margin-top:7px; color:var(--ink-soft); font-size:.88rem; }
.cart-install-note {
  display:grid; gap:7px; margin-top:22px; padding-top:20px; border-top:1px solid var(--line);
  color:var(--ink-soft); font-size:.82rem;
}
.cart-install-note strong { color:var(--purple-900); font-size:.9rem; }
.mobile-buy-bar { display:none; }

@media (max-width:760px) {
  .price-bridge, .cart-recommendation { grid-template-columns:1fr; gap:22px; }
  .price-bridge-action { min-width:0; text-align:left; }
  .mobile-buy-bar {
    position:fixed; z-index:1450; left:10px; right:10px; bottom:10px;
    display:grid; grid-template-columns:1fr auto; gap:12px; align-items:center;
    padding:10px; border:1px solid rgba(53,21,32,.18); border-radius:9px;
    background:rgba(255,253,250,.96); backdrop-filter:blur(12px); box-shadow:0 20px 55px rgba(33,15,21,.2);
  }
  .mobile-buy-bar > div { min-width:0; display:grid; }
  .mobile-buy-bar strong { overflow:hidden; text-overflow:ellipsis; white-space:nowrap; color:var(--purple-900); font-size:.76rem; }
  .mobile-buy-bar span { color:var(--ink-soft); font-size:.7rem; }
  .mobile-buy-bar .btn { min-height:42px; padding:8px 14px; }
  body:has(.mobile-buy-bar) .chat-launcher { bottom:78px; }
  body:has(.mobile-buy-bar) .chat-panel { bottom:140px; }
}

/* Dé-enfantilisation des anciens pictogrammes : repères éditoriaux plus sobres */
.card .icon {
  width:34px; height:2px; min-height:2px; margin-bottom:24px;
  border-radius:0; background:var(--gold-500); color:transparent; font-size:0; overflow:hidden;
}
.page-visual .visual-icon { display:none; }
.visual-icon { color:var(--gold-700); }

.cross-sell-strip { background:#e9def1; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.cross-sell-inner { display:grid; grid-template-columns:1fr auto; gap:54px; align-items:center; }
.cross-sell-inner h2 { font-size:clamp(2rem,3.3vw,3.15rem); }
.cross-sell-inner p:not(.eyebrow) { margin-top:12px; max-width:760px; color:var(--ink-soft); }
.cross-sell-inner .btn-row { margin-top:0; justify-content:flex-end; }
@media(max-width:850px){.cross-sell-inner{grid-template-columns:1fr}.cross-sell-inner .btn-row{justify-content:flex-start;margin-top:0}}

.nav-toggle::before, .nav-toggle::after { display:none; content:none; }
.nav-toggle span { width:19px; height:1.5px; margin:5px auto; background:currentColor; }


/* ===== Correctifs finaux apercu local 2026-08-10 ===== */
.shop-hero-card{background:linear-gradient(145deg, rgba(111,63,134,.08), rgba(201,164,95,.10)); border:1px solid rgba(111,63,134,.14);}
.shop-hero-card strong{color:var(--purple-900);}
.hero-badges span{background:rgba(111,63,134,.08); color:var(--purple-800); border:1px solid rgba(111,63,134,.12);}
.section-soft{background:linear-gradient(180deg, #faf6fc 0%, #f6f0fa 100%);}
.digital-product-card:hover{transform:translateY(-4px); box-shadow:0 22px 48px rgba(58,35,63,.11);}
.footer-brand{display:grid; align-content:start; gap:8px;}


/* ===== Section Site Sérénité — palette Amétrine ===== */
.section-serenite {
  background:
    radial-gradient(circle at 82% 18%, rgba(201,164,95,.14), transparent 28%),
    radial-gradient(circle at 20% 85%, rgba(145,89,161,.12), transparent 34%),
    linear-gradient(145deg, #20142d 0%, #34214a 52%, #4b2d66 100%) !important;
}
.section-serenite .offer-box {
  background:
    radial-gradient(circle at 88% 14%, rgba(230,211,170,.18), transparent 24%),
    linear-gradient(140deg, #2b1b3d 0%, #4b2d66 58%, #6f3f86 100%);
  border: 1px solid rgba(230,211,170,.14);
  box-shadow: 0 26px 70px rgba(25,14,38,.28);
}
.section-serenite .check-list li::before {
  color: #24172f;
  background: var(--gold-500);
}
.section-serenite .btn-gold {
  background: linear-gradient(135deg, #d1ad68, #e5cc98);
  color: #24172f;
}

/* =========================================================
   HARMONISATION GLOBALE AMÉTRINE — VIOLET / PRUNE / DORÉ
   Objectif : supprimer l'effet blanc vide et les derniers tons bordeaux,
   tout en gardant une lisibilité premium sur toutes les pages.
   ========================================================= */
:root {
  --am-surface: #f8f3fb;
  --am-surface-2: #f2eaf7;
  --am-surface-3: #eadff1;
  --am-card: #fcf9fd;
  --am-card-strong: #f5eef8;
  --am-plum: #34214a;
  --am-plum-2: #4b2d66;
  --am-violet: #6f3f86;
  --am-gold-soft: #efe1bf;
}

body {
  background:
    radial-gradient(circle at 8% 12%, rgba(111,63,134,.08), transparent 24%),
    radial-gradient(circle at 92% 78%, rgba(201,164,95,.07), transparent 26%),
    linear-gradient(180deg, #f8f3fb 0%, #f2eaf7 100%);
  color: #2a2434;
}
main { background: transparent; }

/* En-tête et menus : ivoire-lilas plutôt que blanc/beige */
.site-header {
  background: rgba(248,243,251,.94) !important;
  border-bottom-color: rgba(75,45,102,.14);
}
.dropdown {
  background: #fbf7fd !important;
  border-color: rgba(75,45,102,.15);
}
.dropdown a:hover { background:#f0e6f5 !important; }

/* Grandes zones claires */
.lux-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(201,164,95,.15), transparent 23%),
    radial-gradient(circle at 14% 84%, rgba(111,63,134,.11), transparent 30%),
    linear-gradient(135deg, #f8f2fb 0%, #eee4f4 58%, #f7f1fa 100%) !important;
}
.lux-hero::before {
  background:linear-gradient(110deg, transparent 0 48%, rgba(255,255,255,.22) 48% 49%, transparent 49%);
}
.page-hero {
  background:
    radial-gradient(circle at 84% 15%, rgba(201,164,95,.15), transparent 23%),
    radial-gradient(circle at 12% 88%, rgba(111,63,134,.10), transparent 30%),
    linear-gradient(135deg, #f9f4fb, #ece2f3) !important;
  border-bottom-color: rgba(75,45,102,.13);
}
.section-soft,
.section-alt {
  background:
    radial-gradient(circle at 90% 10%, rgba(201,164,95,.055), transparent 24%),
    linear-gradient(180deg, #f3ebf7 0%, #ece2f3 100%) !important;
}
.trust-ribbon,
.confidence-section {
  background: linear-gradient(180deg, #f5eef8 0%, #eee5f4 100%) !important;
  border-color: rgba(75,45,102,.13);
}
.install-upsell,
.cross-sell-strip {
  background:
    linear-gradient(135deg, rgba(201,164,95,.09), transparent 42%),
    linear-gradient(180deg, #eee5f4 0%, #e8dcf0 100%) !important;
  border-color: rgba(75,45,102,.13);
}

/* Toutes les grandes sections sombres passent en amétrine, plus de bordeaux */
.section-dark {
  background:
    radial-gradient(circle at 82% 18%, rgba(201,164,95,.14), transparent 27%),
    radial-gradient(circle at 14% 85%, rgba(145,89,161,.15), transparent 34%),
    linear-gradient(145deg, #20142d 0%, #34214a 52%, #4b2d66 100%) !important;
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark strong { color:#fff; }
.section-dark p,
.section-dark li,
.section-dark .lead,
.section-dark .muted { color:rgba(255,255,255,.78); }
.section-dark .eyebrow,
.section-dark .text-link { color:var(--gold-300); }

/* Cartes : lisibles sans gros aplats blancs */
.card,
.price-card,
.project,
.faq-item,
.form-card,
.contact-panel,
.license-box,
.product-buy-card,
.shop-product-featured,
.cart-item,
.cart-summary,
.cart-empty,
.status-card,
.route-card,
.template-shop-card,
.pack-shop-card,
.digital-product-card,
.founder-card,
.commitment-grid article,
.premium-offer-box,
.article-card:not(.featured),
.article-aside,
.price-bridge,
.pack-preview-sheet {
  background: linear-gradient(145deg, #fcf9fd 0%, #f6eff9 100%) !important;
  border-color: rgba(75,45,102,.15) !important;
}

.card:hover,
.route-card:hover,
.template-shop-card:hover,
.pack-shop-card:hover,
.digital-product-card:hover,
.article-card:not(.featured):hover {
  background: linear-gradient(145deg, #fdfafd 0%, #f2e8f6 100%) !important;
}

/* Cartes mises en avant : violet amétrine */
.route-card.route-featured,
.article-card.featured,
.collection-promise {
  background:
    radial-gradient(circle at 86% 12%, rgba(201,164,95,.12), transparent 25%),
    linear-gradient(145deg, #241630 0%, #43285b 100%) !important;
  color:#fff;
  border-color:rgba(230,211,170,.13) !important;
}
.route-card.route-featured h3,
.article-card.featured h2,
.collection-promise h2,
.collection-promise h3 { color:#fff; }
.route-card.route-featured p,
.article-card.featured p:not(.eyebrow),
.collection-promise p { color:rgba(255,255,255,.76) !important; }
.route-card.route-featured .eyebrow,
.route-card.route-featured .text-link,
.article-card.featured .eyebrow,
.article-card.featured .text-link { color:var(--gold-300) !important; }

/* Boutique et aperçus produits */
.shop-hero-card {
  background:
    radial-gradient(circle at 85% 10%, rgba(201,164,95,.10), transparent 28%),
    linear-gradient(145deg, #f2e8f7, #e9ddf0) !important;
}
.digital-product-media,
.template-card-media,
.template-browser,
.pack-shop-visual {
  background: linear-gradient(145deg, #f1e8f6, #e7dbee) !important;
}
.template-browser iframe { background:#fbf8fd !important; }
.pack-shop-mini span,
.template-fit-chips span {
  background:#f7f0fa !important;
  border-color:rgba(75,45,102,.15) !important;
  color:var(--purple-800) !important;
}
.pack-preview-sheet img {
  background:#fbf8fd !important;
  border-color:rgba(75,45,102,.12) !important;
}

/* Formulaires : champs clairs mais pas blanc clinique */
input,
select,
textarea {
  color:#2a2434;
  background:#fdf9fe !important;
  border-color:rgba(75,45,102,.22) !important;
}
input::placeholder,
textarea::placeholder { color:#81758d; opacity:1; }
input:focus,
select:focus,
textarea:focus {
  border-color:var(--purple-600) !important;
  box-shadow:0 0 0 3px rgba(111,63,134,.12);
}
label { color:#342a3d; }

/* Tarifs / installation / panier */
.premium-price-card {
  background: linear-gradient(145deg, #fbf7fd, #eee5f4) !important;
}
.cart-recommendation,
.legal-alert,
.checkout-alert {
  background:linear-gradient(135deg, #f6edd8, #f1e2bd) !important;
  color:#55401b !important;
  border-color:rgba(154,118,54,.42) !important;
}
.mobile-buy-bar {
  background:rgba(247,240,250,.96) !important;
  border-color:rgba(75,45,102,.2) !important;
}

/* Assistant / consentement : mêmes surfaces */
.chat-launcher,
.chat-panel,
.chat-intro,
.chat-topic,
.chat-footer,
.cookie-panel {
  background:#f8f2fb !important;
  border-color:rgba(75,45,102,.18) !important;
}
.chat-panel,
.chat-topic,
.chat-intro { color:#2a2434; }
.chat-topic summary { color:#34214a; }
.chat-footer { color:#71657c; }

/* Garanties de contraste sur surfaces claires */
.card h1,.card h2,.card h3,
.price-card h1,.price-card h2,.price-card h3,
.project h1,.project h2,.project h3,
.form-card h1,.form-card h2,.form-card h3,
.contact-panel h1,.contact-panel h2,.contact-panel h3,
.route-card:not(.route-featured) h1,
.route-card:not(.route-featured) h2,
.route-card:not(.route-featured) h3,
.template-shop-card h1,.template-shop-card h2,.template-shop-card h3,
.pack-shop-card h1,.pack-shop-card h2,.pack-shop-card h3,
.digital-product-card h1,.digital-product-card h2,.digital-product-card h3,
.article-card:not(.featured) h1,.article-card:not(.featured) h2,.article-card:not(.featured) h3,
.article-aside h1,.article-aside h2,.article-aside h3,
.price-bridge h1,.price-bridge h2,.price-bridge h3 {
  color:#2e1e3e !important;
}
.card p,.price-card p,.project p,.form-card p,.contact-panel p,
.route-card:not(.route-featured) p,.template-shop-card p,.pack-shop-card p,
.digital-product-card p,.article-card:not(.featured) p,.article-aside p,.price-bridge p {
  color:#675b72;
}

/* Footer : lisibilité renforcée */
.site-footer {
  background:
    radial-gradient(circle at 80% 14%, rgba(201,164,95,.10), transparent 25%),
    linear-gradient(145deg, #1f132b 0%, #34214a 100%) !important;
}
.site-footer p,
.site-footer a,
.site-footer span { color:rgba(255,255,255,.78); }
.site-footer .footer-title,
.site-footer .footer-review-link { color:var(--gold-300) !important; }
.site-footer a:hover { color:#fff; }

/* Responsive : éviter les blocs trop sombres ou écrasés */
@media (max-width:760px) {
  .section-dark { background:linear-gradient(160deg,#20142d,#43285b) !important; }
  .page-hero,.lux-hero { background:linear-gradient(160deg,#f7f1fa,#e9ddf0) !important; }
}

@media (max-width: 420px) { .brand-name { display:none; } .brand { min-width:auto; } }


/* ===== RETOUCHE FINALE IDENTITE HEADER ACCUEIL ===== */
.home-page .brand {
  min-width: 255px;
  gap: 15px;
  align-items: center;
}
.home-page .brand img {
  width: 86px;
  height: 64px;
  max-height: 64px;
  object-fit: contain;
  flex: 0 0 auto;
}
.home-page .brand-name {
  display: inline-block !important;
  color: #4b2d66;
  font-family: "Bodoni 72", Didot, "Iowan Old Style", Georgia, serif;
  font-size: 1.34rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .025em;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .home-page .brand { min-width: 205px; gap: 11px; }
  .home-page .brand img { width: 70px; height: 54px; max-height: 54px; }
  .home-page .brand-name { font-size: 1.08rem; }
}
@media (max-width: 520px) {
  .home-page .brand { min-width: auto; gap: 8px; }
  .home-page .brand img { width: 58px; height: 48px; max-height: 48px; }
  .home-page .brand-name { display: inline-block !important; font-size: .94rem; letter-spacing: .01em; }
}

/* ===== Correctif contraste carte Site par abonnement — V7 ===== */
.home-page .card.featured {
  color: #2e1e3e !important;
  background: linear-gradient(145deg, #fcf9fd 0%, #f6eff9 100%) !important;
  border-color: rgba(75,45,102,.15) !important;
}
.home-page .card.featured h3 {
  color: #2e1e3e !important;
}
.home-page .card.featured p {
  color: #675b72 !important;
}
.home-page .card.featured .text-link {
  color: var(--purple-700) !important;
}
.home-page .card.featured .icon {
  color: var(--purple-900) !important;
  background: #f2ebe8 !important;
}
