/* Feuille partagée, extraite de 2 pages le 2026-07-25.
   Refonte visuelle 2026-08-23 : palette claire + or, Hanken Grotesk.
   Tokens dans assets/tokens.css. */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
body { font-family: var(--f-body); background: var(--paper); color: var(--white); line-height: 1.75; overflow-x: hidden; }

.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 14px 0; background: color-mix(in srgb, var(--paper) 88%, transparent); backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px); border-bottom: 1px solid var(--hair-soft); }
.nav-inner { max-width: 900px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-logo { font-family: var(--f-head); font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em; text-decoration: none; color: var(--white); }
.nav-logo .logo-accent { color: var(--gold); }
.nav-links { display: flex; gap: 16px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--white-dim); font-family: var(--f-head); font-size: 0.9rem; font-weight: 500; transition: var(--transition); }
.nav-links a:hover { color: var(--gold); }
.lang-switch { display: inline-flex; align-items: center; gap: 0; border: 1px solid var(--hair); border-radius: 60px; padding: 2px; }
.lang-switch .lang-current { padding: 4px 10px; font-family: var(--f-head); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px; border-radius: 60px; line-height: 1; background: rgba(168,124,44,0.14); color: var(--gold); }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 100px; font-family: var(--f-head); font-size: 0.92rem; font-weight: 600; cursor: pointer; border: 1px solid transparent; transition: var(--transition); color: var(--gold); text-decoration: none; }
.btn-primary { background: var(--gradient-gold); color: #241905; box-shadow: 0 1px 2px rgba(15,26,46,.06); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(168,124,44,.5); }
.btn-large { padding: 16px 32px; font-size: 1rem; }

.container { max-width: 820px; margin: 0 auto; padding: 0 24px; }

.hero { padding: 120px 0 40px; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 55% at 15% -5%, rgba(168,124,44,.10), transparent 60%); pointer-events: none; z-index: 0; }
.hero > * { position: relative; z-index: 1; }
.breadcrumb { font-size: 0.82rem; color: var(--white-muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--navy-card); border: 1px solid var(--hair); border-radius: 100px; padding: 7px 15px; font-family: var(--f-head); font-size: 0.82rem; color: var(--white-dim); font-weight: 500; margin-bottom: 20px; }
.hero h1 { font-family: var(--f-head); font-size: clamp(1.8rem, 4vw, 2.7rem); font-weight: 600; letter-spacing: -0.028em; line-height: 1.1; margin-bottom: 20px; text-wrap: balance; }
.hero h1 .hl { color: var(--gold); }
.hero-desc { font-size: 1.1rem; color: var(--white-dim); max-width: 680px; line-height: 1.7; margin-bottom: 0; }

.cta-block { background: var(--navy-card); border: 1px solid rgba(168,124,44,.4); border-radius: var(--radius); padding: 36px; margin: 40px 0; text-align: center; box-shadow: var(--shadow-card); }
.cta-block h3 { font-family: var(--f-head); font-size: 1.45rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 12px; }
.cta-block .price { font-family: var(--f-head); font-size: 2.3rem; font-weight: 700; color: var(--gold); line-height: 1.1; margin-bottom: 4px; letter-spacing: -0.02em; }
.cta-block .price span { font-size: 1rem; font-weight: 500; color: var(--white-muted); }
.cta-block p { color: var(--white-dim); margin-bottom: 24px; }
.cta-block .btn-row { display: flex; gap: 24px; justify-content: center; align-items: center; flex-wrap: wrap; }
.pay-methods { font-size: 0.8rem; color: var(--white-muted); margin-top: 16px; }

.article { padding-bottom: 60px; }
.article h2 { font-family: var(--f-head); font-size: 1.7rem; font-weight: 600; letter-spacing: -0.02em; margin: 48px 0 16px; padding-top: 20px; border-top: 1px solid var(--hair); }
.article p { color: var(--white-dim); margin-bottom: 16px; font-size: 0.98rem; }
.article ul { color: var(--white-dim); padding-left: 24px; margin-bottom: 16px; list-style: none; }
.article ul li { margin-bottom: 10px; font-size: 0.98rem; position: relative; padding-left: 26px; }
.article ul li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.article strong { color: var(--white); font-weight: 600; }
.article a:not(.btn) { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.article a.btn { text-decoration: none; }
.article a.btn-primary { color: #241905; }
.article a.btn-secondary { color: var(--white); }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin: 24px 0; }
.feature-item { background: var(--navy-card); border: 1px solid var(--hair); border-radius: var(--radius-sm); padding: 20px; transition: var(--transition); }
.feature-item:hover { border-color: rgba(168,124,44,.35); box-shadow: var(--shadow-card); transform: translateY(-2px); }
.feature-item .icon { font-size: 1.4rem; margin-bottom: 8px; color: var(--gold); }
.feature-item h4 { font-family: var(--f-head); font-size: 0.98rem; font-weight: 600; margin-bottom: 6px; color: var(--white); }
.feature-item p { font-size: 0.85rem; color: var(--white-muted); margin: 0; }

.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.compare-col { border-radius: var(--radius-sm); padding: 22px 24px; }
.compare-col h4 { font-family: var(--f-head); font-size: 0.98rem; font-weight: 600; margin-bottom: 14px; }
.compare-col ul { list-style: none; padding: 0; margin: 0; }
.compare-col li { font-size: 0.9rem; margin-bottom: 9px; padding-left: 26px; position: relative; color: var(--white-dim); }
.compare-them { background: var(--navy-card); border: 1px solid var(--hair); }
.compare-them h4 { color: var(--white-muted); }
.compare-them li::before { content: "✕"; position: absolute; left: 0; color: #b0453f; font-weight: 700; }
.compare-us { background: rgba(168,124,44,0.06); border: 1px solid rgba(168,124,44,0.32); }
.compare-us h4 { color: var(--gold); }
.compare-us li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }

.faq-item { border-top: 1px solid var(--hair); padding: 20px 0; }
.faq-item h3 { font-family: var(--f-head); font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; color: var(--white); }
.faq-item p { color: var(--white-dim); font-size: 0.95rem; margin: 0; }

.footer { border-top: 1px solid var(--hair); padding: 32px 0; text-align: center; background: var(--paper-2); }
.footer p { font-size: 0.82rem; color: var(--white-muted); }
.footer a { color: var(--gold); text-decoration: none; }

@media (max-width: 600px) {
    .cta-block { padding: 24px; }
    .compare { grid-template-columns: 1fr; }
    .nav-links a:not(.btn) { display: none; }
    .lang-switch { display: inline-flex !important; }
}
