/* ============================================================
   Web Service Solution — site styles
   Built on Design/colors_and_type.css tokens. Single-page layout.
   ============================================================ */
@import url('Design/colors_and_type.css');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--fg-link); }
button { font-family: inherit; }

/* ===== Layout ===== */
.container { width: 100%; max-width: var(--container-xl); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section--tight { padding: 64px 0; }
.section--lg { padding: 128px 0; }
.section--subtle { background: var(--bg-subtle); }
.section--dark {
  background: radial-gradient(120% 80% at 70% 0%, var(--navy-800) 0%, var(--navy-900) 60%, var(--navy-950) 100%);
  color: var(--fg-inverse);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: white; }
.section--dark p, .section--dark .lead { color: rgba(255,255,255,0.78); }
.section--dark .eyebrow { color: var(--blue-300); }
@media (max-width: 720px) { .section { padding: 64px 0; } .section--lg { padding: 80px 0; } }

.s-head { max-width: 720px; margin: 0 0 48px; }
.s-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.s-head .eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.s-head h2 { margin: 0 0 14px; }
.s-head p { margin: 0; font-size: 18px; }

.hex-bullet { display: inline-block; width: 10px; height: 10px; background: currentColor; clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 600; font-size: 15px;
  padding: 12px 22px; border-radius: var(--r-md);
  border: 1px solid transparent;
  cursor: pointer; transition: all var(--dur-fast) var(--ease-out);
  text-decoration: none; line-height: 1; letter-spacing: -0.005em;
  white-space: nowrap;
}
.btn:disabled { opacity: 0.55; cursor: not-allowed; }
.btn--primary { background: var(--accent); color: white; box-shadow: var(--shadow-inner-sm), var(--shadow-sm); }
.btn--primary:hover { background: var(--accent-hover); color: white; transform: translateY(-1px); box-shadow: var(--shadow-inner-sm), var(--shadow-md); }
.btn--primary:active { background: var(--accent-press); transform: translateY(0); }
.btn--secondary { background: white; color: var(--navy-700); border-color: var(--border-strong); }
.btn--secondary:hover { background: var(--bg-subtle); border-color: var(--navy-300); color: var(--navy-700); }
.btn--ghost { background: transparent; color: var(--navy-700); }
.btn--ghost:hover { background: var(--bg-subtle); color: var(--navy-700); }
.btn--dark { background: var(--navy-800); color: white; }
.btn--dark:hover { background: var(--navy-900); color: white; transform: translateY(-1px); }
.btn--on-dark { background: white; color: var(--navy-800); }
.btn--on-dark:hover { background: var(--ink-50); color: var(--navy-900); }
.btn--on-dark-ghost { background: transparent; color: white; border-color: rgba(255,255,255,0.25); }
.btn--on-dark-ghost:hover { background: rgba(255,255,255,0.08); color: white; }
.btn--sm { padding: 8px 14px; font-size: 13px; border-radius: var(--r-sm); }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn .arrow { font-family: var(--font-display); font-weight: 400; transition: transform var(--dur-fast) var(--ease-out); }
.btn:hover .arrow { transform: translateX(3px); }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.nav.scrolled { border-bottom-color: var(--border-muted); box-shadow: var(--shadow-xs); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.brand-lockup { display: flex; align-items: center; text-decoration: none; }
.brand-lockup__logo { height: 44px; width: auto; display: block; }
@media (max-width: 560px) { .brand-lockup__logo { height: 36px; } }

.nav__links { display: flex; gap: 4px; align-items: center; }
.nav__link {
  padding: 8px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--ink-700);
  text-decoration: none; transition: all var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.nav__link:hover { background: var(--bg-subtle); color: var(--navy-900); }
.nav__cta { display: flex; gap: 8px; align-items: center; }

.region-pill { display: inline-flex; align-items: center; gap: 9px; padding: 6px 12px; border-radius: var(--r-pill); background: var(--blue-50); border: 1px solid var(--blue-200); color: var(--navy-800); cursor: default; font-family: var(--font-sans); text-align: left; }
.region-pill > i { width: 16px; height: 16px; color: var(--blue-600); flex-shrink: 0; }
.region-pill__text { display: flex; flex-direction: column; line-height: 1.1; }
.region-pill__label { font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; color: var(--blue-700); opacity: 0.8; }
.region-pill__value { font-size: 13px; font-weight: 600; color: var(--navy-900); }
@media (max-width: 1080px) { .region-pill { display: none; } }

.nav__burger { display: none; background: transparent; border: 0; padding: 8px; border-radius: var(--r-sm); cursor: pointer; color: var(--navy-900); }
.nav__burger i { width: 22px; height: 22px; }
@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__cta .btn--ghost { display: none; }
}
.nav__mobile { display: none; padding: 16px 24px 24px; border-top: 1px solid var(--border-muted); background: rgba(255,255,255,0.95); }
.nav__mobile.open { display: block; }
.nav__mobile a { display: block; padding: 12px 0; font-size: 16px; font-weight: 500; color: var(--navy-900); text-decoration: none; border-bottom: 1px solid var(--border-muted); }
.nav__mobile a:last-child { border-bottom: 0; }

/* ===== Hero ===== */
.hero { padding: 80px 0 96px; position: relative; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.geo-anchor { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px 6px 10px; margin-bottom: 18px; background: white; border: 1px solid var(--border); border-radius: var(--r-pill); box-shadow: var(--shadow-xs); }
.geo-anchor > i { width: 15px; height: 15px; color: var(--blue-600); }
.geo-anchor__label { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; color: var(--fg-subtle); white-space: nowrap; }
.geo-anchor__value { font-size: 13px; font-weight: 600; color: var(--navy-900); white-space: nowrap; }
.hero__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(40px, 5vw, 64px); line-height: 1.04; letter-spacing: -0.025em; margin: 0 0 22px; color: var(--navy-950); }
.hero__title .accent { color: var(--blue-600); }
.hero__lead { font-size: 19px; line-height: 1.6; color: var(--fg-muted); max-width: 520px; margin: 0 0 32px; }
.hero__cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.hero__trust { display: flex; gap: 22px; align-items: center; margin-top: 36px; font-size: 13px; color: var(--fg-muted); }
.hero__trust strong { color: var(--navy-900); font-weight: 700; font-family: var(--font-display); font-size: 22px; line-height: 1; display: block; margin-bottom: 2px; }
.hero__trust > div { padding-right: 22px; border-right: 1px solid var(--border); }
.hero__trust > div:last-child { border-right: 0; padding-right: 0; }

/* Hero mock */
.hero__mock { background: white; border: 1px solid var(--border); border-radius: var(--r-xl); padding: 18px; box-shadow: var(--shadow-xl); position: relative; }
.hero__mock::before { content: ''; position: absolute; inset: -20px; background: linear-gradient(135deg, var(--blue-100) 0%, transparent 60%); border-radius: var(--r-2xl); z-index: -1; opacity: 0.6; }
.mock__bar { display: flex; gap: 5px; padding: 4px 4px 14px; border-bottom: 1px solid var(--border-muted); margin-bottom: 16px; align-items: center; }
.mock__bar span { width: 9px; height: 9px; border-radius: 50%; background: var(--ink-200); }
.mock__bar span:nth-child(1) { background: #F76A6A; }
.mock__bar span:nth-child(2) { background: #F5C150; }
.mock__bar span:nth-child(3) { background: #5DC97D; }
.mock__bar .url { margin-left: 12px; font-family: var(--font-mono); font-size: 11px; color: var(--fg-subtle); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1; }
.mock__head { display: flex; align-items: center; justify-content: space-between; padding: 4px 6px 14px; }
.mock__head h6 { margin: 0; font-size: 14px; font-weight: 600; color: var(--navy-900); }
.mock__head .pill { font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 999px; background: var(--success-50); color: var(--success-700); }
.mock__kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 14px; }
.mock__kpi { padding: 12px; border: 1px solid var(--border-muted); border-radius: var(--r-md); }
.mock__kpi .l { font-size: 10px; color: var(--fg-subtle); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.mock__kpi .v { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--navy-900); margin-top: 2px; }
.mock__kpi .d { font-size: 11px; color: var(--success-700); font-weight: 600; margin-top: 2px; }
.mock__chart { height: 130px; border: 1px solid var(--border-muted); border-radius: var(--r-md); padding: 12px; position: relative; }
.mock__chart svg { width: 100%; height: 100%; }
.mock__rows { margin-top: 12px; display: grid; gap: 6px; }
.mock__row { display: grid; grid-template-columns: 1fr auto auto; gap: 10px; padding: 8px 10px; border-radius: 8px; background: var(--bg-subtle); font-size: 11.5px; align-items: center; }
.mock__row .id { font-family: var(--font-mono); color: var(--fg-subtle); }
.mock__row .a { font-weight: 600; color: var(--navy-900); }
.mock__row .s { font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 999px; }
.mock__row .s.ok { background: var(--success-50); color: var(--success-700); }
.mock__row .s.wait { background: var(--warning-50); color: var(--warning-700); }

@media (max-width: 960px) { .hero__grid { grid-template-columns: 1fr; gap: 40px; } }

/* ===== Services ===== */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service { background: white; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); transition: all var(--dur-base) var(--ease-out); position: relative; overflow: hidden; }
.service:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.service__icon { width: 44px; height: 44px; border-radius: 11px; background: var(--blue-50); color: var(--blue-700); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.service__icon i { width: 22px; height: 22px; }
.service h3 { font-size: 18px; margin: 0 0 8px; color: var(--navy-900); font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; }
.service p { font-size: 14.5px; margin: 0 0 16px; color: var(--fg-muted); line-height: 1.55; }
.service__meta { font-size: 12.5px; color: var(--fg-subtle); }
@media (max-width: 880px) { .services { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .services { grid-template-columns: 1fr; } }

/* ===== Region cluster ===== */
.city-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.city-card { background: white; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.city-card__head { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.city-card__head > i { width: 20px; height: 20px; color: var(--blue-600); flex-shrink: 0; margin-top: 1px; }
.city-card__city { font-family: var(--font-display); font-weight: 600; font-size: 15.5px; color: var(--navy-900); letter-spacing: -0.01em; line-height: 1.25; }
.city-card__dept { font-family: var(--font-mono); font-size: 11px; color: var(--fg-subtle); margin-top: 3px; }
.city-card p { font-size: 13px; color: var(--fg-muted); line-height: 1.55; margin: 0; flex: 1; }
.city-card--all { background: var(--navy-900); border-color: var(--navy-800); }
.city-card--all > i { width: 24px; height: 24px; color: var(--blue-300); margin-bottom: 12px; }
.city-card--all .city-card__city { color: white; margin-bottom: 8px; }
.city-card--all p { color: rgba(255,255,255,0.7); }
@media (max-width: 980px) { .city-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .city-grid { grid-template-columns: 1fr; } }

/* ===== Stats ===== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat__num { font-family: var(--font-display); font-size: 56px; font-weight: 700; color: var(--blue-600); line-height: 1; letter-spacing: -0.03em; }
.stat__label { font-size: 14px; color: var(--fg-muted); margin-top: 8px; line-height: 1.45; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2,1fr); gap: 28px; } .stat__num { font-size: 44px; } }

/* ===== Process ===== */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process::before { content: ''; position: absolute; top: 24px; left: 24px; right: 24px; border-top: 2px dashed var(--border-strong); z-index: 0; }
.step { position: relative; z-index: 1; }
.step__num { width: 48px; height: 48px; border-radius: 50%; background: var(--navy-700); color: white; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 18px; margin-bottom: 18px; box-shadow: 0 0 0 6px var(--bg); }
.step--accent .step__num { background: var(--blue-600); }
.step h4 { font-size: 17px; margin: 0 0 6px; color: var(--navy-900); }
.step p { font-size: 14px; margin: 0; color: var(--fg-muted); line-height: 1.55; }
@media (max-width: 880px) { .process { grid-template-columns: repeat(2,1fr); } .process::before { display: none; } }
@media (max-width: 480px) { .process { grid-template-columns: 1fr; } }

/* ===== Service paused banner ===== */
.service-banner {
  background: linear-gradient(90deg, var(--blue-600) 0%, var(--navy-700) 100%);
  color: white; padding: 14px 24px; font-size: 14px; text-align: center;
  display: none;
}
.service-banner.show { display: block; }
.service-banner strong { font-weight: 700; }
.service-banner__inner { max-width: var(--container-xl); margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.service-banner i { width: 18px; height: 18px; vertical-align: middle; }

/* ===== Pricing ===== */
.billing-toggle { display: inline-flex; gap: 4px; padding: 4px; background: var(--ink-100); border-radius: var(--r-pill); margin-top: 22px; }
.billing-toggle__opt { background: transparent; border: 0; padding: 8px 18px; border-radius: var(--r-pill); font-family: inherit; font-size: 13.5px; font-weight: 600; color: var(--ink-600); cursor: pointer; transition: all var(--dur-fast) var(--ease-out); display: inline-flex; align-items: center; gap: 8px; }
.billing-toggle__opt:hover { color: var(--navy-900); }
.billing-toggle__opt.active { background: white; color: var(--navy-900); box-shadow: var(--shadow-sm); }
.billing-toggle__save { display: inline-block; background: var(--success-50); color: var(--success-700); font-size: 10.5px; font-weight: 700; padding: 2px 7px; border-radius: 999px; letter-spacing: 0.04em; }

.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.plan { background: white; border: 1px solid var(--border); border-radius: var(--r-xl); padding: 32px 28px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: all var(--dur-base) var(--ease-out); position: relative; }
.plan:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.plan--featured { border-color: var(--navy-700); border-width: 2px; background: linear-gradient(180deg, white 0%, var(--blue-50) 100%); box-shadow: var(--shadow-lg); }
.plan--featured::before { content: 'Le plus choisi'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--navy-800); color: white; padding: 5px 12px; border-radius: 999px; font-size: 11px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.plan__name { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--navy-900); margin: 0 0 6px; }
.plan__tag { font-size: 13.5px; color: var(--fg-muted); margin: 0 0 20px; min-height: 38px; }
.plan__price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.plan__price .from { font-size: 13px; color: var(--fg-subtle); margin-right: 2px; }
.plan__price .amt { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: var(--navy-950); letter-spacing: -0.02em; line-height: 1; }
.plan__price .per { font-size: 13px; color: var(--fg-muted); }
.plan__sub { font-size: 12.5px; color: var(--fg-subtle); margin: 0 0 24px; min-height: 18px; }
.plan__total { font-size: 13px; color: var(--fg-muted); margin: 6px 0 4px; }
.plan__total b { color: var(--navy-900); font-weight: 700; }
.plan__savings { display: none; align-items: center; gap: 6px; background: var(--success-50); color: var(--success-700); padding: 4px 11px; border-radius: 999px; font-size: 12px; font-weight: 700; margin: 0 0 18px; align-self: flex-start; }
.plan__savings i { width: 14px; height: 14px; }
.plan--annual .plan__savings { display: inline-flex; }
.plan__bonus { background: linear-gradient(135deg, var(--blue-50), white); border: 1px solid var(--blue-200); border-radius: var(--r-md); padding: 10px 12px; font-size: 12.5px; color: var(--blue-800); margin: 0 0 14px; display: flex; align-items: flex-start; gap: 8px; line-height: 1.45; }
.plan__bonus i { width: 16px; height: 16px; color: var(--blue-600); flex-shrink: 0; margin-top: 1px; }
.plan__bonus b { color: var(--navy-900); }
.plan__discount-tag { position: absolute; top: 14px; right: 14px; background: var(--success-500); color: white; font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: 999px; letter-spacing: 0.04em; display: none; }
.plan--annual .plan__discount-tag { display: inline-block; }
.plan--featured .plan__discount-tag { top: 14px; right: 14px; }
.plan__feats { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 10px; flex: 1; }
.plan__feats li { display: flex; gap: 10px; font-size: 14px; color: var(--ink-700); line-height: 1.5; align-items: flex-start; }
.plan__feats i { color: var(--blue-600); flex-shrink: 0; margin-top: 2px; width: 16px; height: 16px; }
.plan .checkout-btn { width: 100%; }
@media (max-width: 880px) { .pricing { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* ===== Testimonial ===== */
.testimonial { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
.quote__mark { font-family: var(--font-display); font-size: 96px; line-height: 1; color: var(--blue-400); opacity: 0.4; margin-bottom: -32px; }
.quote__text { font-family: var(--font-display); font-weight: 500; font-size: 26px; line-height: 1.4; color: white; letter-spacing: -0.015em; margin: 0 0 24px; }
.quote__author { display: flex; align-items: center; gap: 14px; }
.quote__avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-400), var(--navy-700)); display: flex; align-items: center; justify-content: center; color: white; font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.quote__author .name { color: white; font-weight: 600; font-size: 14px; }
.quote__author .role { color: rgba(255,255,255,0.65); font-size: 13px; }
.logos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.logo-tile { height: 80px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 18px; color: rgba(255,255,255,0.5); letter-spacing: -0.02em; }
@media (max-width: 880px) { .testimonial { grid-template-columns: 1fr; gap: 48px; } }

/* ===== FAQ ===== */
.faq { max-width: 800px; margin: 0 auto; display: grid; gap: 8px; }
.faq__item { border: 1px solid var(--border); border-radius: var(--r-md); background: white; transition: all var(--dur-fast) var(--ease-out); }
.faq__item[open] { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.faq__q { list-style: none; cursor: pointer; padding: 18px 22px; font-size: 16px; font-weight: 600; color: var(--navy-900); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q .plus { font-family: var(--font-display); font-size: 22px; color: var(--blue-600); transition: transform var(--dur-fast) var(--ease-out); line-height: 1; }
.faq__item[open] .faq__q .plus { transform: rotate(45deg); }
.faq__a { padding: 0 22px 20px; font-size: 14.5px; line-height: 1.65; color: var(--fg-muted); }

/* ===== CTA band ===== */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(32px, 4vw, 48px); margin: 0 0 18px; }
.cta-band p { font-size: 18px; max-width: 560px; margin: 0 auto 32px; }
.cta-band__row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== Contact ===== */
.contact { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact__info h3 { font-size: 22px; margin: 0 0 8px; color: var(--navy-950); }
.contact__info p { font-size: 15px; color: var(--fg-muted); margin: 0 0 22px; line-height: 1.6; }
.contact__list { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.contact__list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--ink-700); }
.contact__list i { color: var(--blue-600); margin-top: 2px; width: 18px; height: 18px; flex-shrink: 0; }
.contact__list strong { display: block; color: var(--navy-900); font-weight: 600; font-size: 13.5px; }

.form-card { background: white; border: 1px solid var(--border); border-radius: var(--r-xl); padding: 32px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 13px; font-weight: 600; color: var(--fg-strong); }
.field input, .field select, .field textarea { font-family: var(--font-sans); font-size: 14.5px; padding: 11px 13px; border: 1px solid var(--border-strong); border-radius: var(--r-md); background: white; color: var(--navy-900); transition: all var(--dur-fast) var(--ease-out); width: 100%; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-600); box-shadow: 0 0 0 4px var(--focus-ring); }
.field textarea { resize: vertical; min-height: 130px; }
.form-feedback { display: none; padding: 12px 14px; border-radius: var(--r-md); font-size: 13.5px; margin-bottom: 14px; }
.form-feedback.show { display: block; }
.form-feedback.success { background: var(--success-50); color: var(--success-700); }
.form-feedback.error { background: var(--danger-50); color: var(--danger-700); }
@media (max-width: 960px) { .contact { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ===== Footer ===== */
.footer { background: var(--navy-950); color: rgba(255,255,255,0.7); padding: 64px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__lockup { display: inline-flex; align-items: center; margin-bottom: 18px; text-decoration: none; }
.footer__lockup-logo { height: 52px; width: auto; display: block; filter: brightness(0) invert(1); }
.footer__brand p { font-size: 13.5px; color: rgba(255,255,255,0.6); max-width: 280px; line-height: 1.6; margin: 0; }
.footer__col h6 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.4); font-weight: 600; margin: 6px 0 16px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer__col a { color: rgba(255,255,255,0.78); font-size: 14px; text-decoration: none; transition: color var(--dur-fast) var(--ease-out); }
.footer__col a:hover { color: white; }
.footer__legal { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: rgba(255,255,255,0.4); gap: 16px; flex-wrap: wrap; }
.footer__legal a { color: rgba(255,255,255,0.55); text-decoration: none; margin-left: 18px; }
.footer__legal a:hover { color: white; }
@media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  display: none; padding: 18px 24px;
  background: var(--navy-950); color: rgba(255,255,255,0.85);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -10px 30px rgba(11, 33, 56, 0.18);
}
.cookie-banner.open { display: block; }
.cookie-banner__inner { max-width: var(--container-xl); margin: 0 auto; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cookie-banner__text { flex: 1; min-width: 280px; font-size: 13.5px; line-height: 1.55; }
.cookie-banner__text a { color: var(--blue-300); }
.cookie-banner__actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-banner .btn { padding: 9px 16px; font-size: 13px; }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 520ms var(--ease-out), transform 520ms var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }

/* ===== Legal pages ===== */
.legal { display: grid; grid-template-columns: 240px 1fr; gap: 56px; padding: 64px 0 96px; }
.legal__toc { position: sticky; top: 100px; align-self: start; font-size: 13px; }
.legal__toc h6 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--fg-subtle); font-weight: 600; margin: 0 0 12px; }
.legal__toc a { display: block; padding: 6px 10px; border-radius: 6px; color: var(--ink-700); text-decoration: none; font-size: 13.5px; transition: all var(--dur-fast) var(--ease-out); }
.legal__toc a:hover { background: var(--bg-subtle); color: var(--navy-900); }
.legal__body { max-width: 720px; }
.legal__body h1 { font-family: var(--font-display); font-weight: 700; font-size: 36px; color: var(--navy-950); letter-spacing: -0.015em; margin: 0 0 8px; }
.legal__body .lead { margin-bottom: 32px; }
.legal__body h2 { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--navy-900); margin: 40px 0 12px; scroll-margin-top: 100px; }
.legal__body p { font-size: 15px; line-height: 1.7; color: var(--ink-700); margin: 0 0 14px; }
.legal__body ul, .legal__body ol { font-size: 15px; line-height: 1.7; color: var(--ink-700); padding-left: 22px; margin: 0 0 14px; }
.legal__body strong { color: var(--navy-900); }
@media (max-width: 880px) { .legal { grid-template-columns: 1fr; gap: 0; } .legal__toc { position: static; margin-bottom: 32px; } }

/* ===== Status pages (abonnement-confirme/annule) ===== */
.status-page { min-height: 100vh; display: grid; place-items: center; padding: 48px 24px; background: radial-gradient(120% 100% at 50% -10%, var(--blue-50) 0%, var(--ink-50) 55%); }
.status-card { background: white; border: 1px solid var(--border); border-radius: var(--r-xl); padding: 44px 36px; max-width: 520px; width: 100%; box-shadow: var(--shadow-lg); text-align: center; }
.status-icon { width: 64px; height: 64px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.status-icon i { width: 32px; height: 32px; }
.status-icon--ok { background: var(--success-50); color: var(--success-700); }
.status-icon--cancel { background: var(--warning-50); color: var(--warning-700); }
.status-card h1 { font-family: var(--font-display); font-weight: 700; font-size: 28px; color: var(--navy-950); letter-spacing: -0.015em; margin: 0 0 10px; }
.status-card p { font-size: 15px; color: var(--fg-muted); line-height: 1.6; margin: 0 0 24px; }
.status-meta { background: var(--bg-subtle); border-radius: var(--r-md); padding: 14px 18px; text-align: left; margin: 0 0 24px; }
.status-meta-row { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; font-size: 13.5px; color: var(--ink-700); }
.status-meta-row b { color: var(--navy-900); font-weight: 600; }
.status-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
