/* ===== Rendly — inner pages (v1 "Swiss Clinical Calm") =====
   Shared page-specific components for Comment ça marche + Tarifs.
   Loaded after styles.css; reuses its tokens, header, footer, buttons,
   .wa-* chat, .feat-* cards, .prof-* chips. */

.mono { font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, "Liberation Mono", monospace; }

/* active nav item */
.nav-links a.current { background: var(--gray-100); color: var(--dark); }

/* ---------- Page hero ---------- */
.page-hero { position: relative; overflow: clip; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(54% 46% at 84% 0%, rgba(22,163,74,.09), transparent 70%),
    radial-gradient(46% 40% at 4% 4%, rgba(22,163,74,.05), transparent 72%);
}
.page-hero .wrap { padding-block: clamp(48px, 7vw, 92px); }
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { max-width: 16ch; }
.page-hero h1 .accent { color: var(--accent); }
.page-hero .lead { margin-top: 20px; max-width: 60ch; }
.page-hero .lead strong { color: var(--dark); font-weight: 700; }

/* ---------- Standalone chat card (no phone bezel) ---------- */
.chat-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--r-2xl);
  box-shadow: var(--shadow-raised); overflow: hidden; max-width: 460px;
}
.chat-card .wa-body { min-height: auto; padding-block: 16px; }
.chat-card .ts { display: flex; align-items: center; gap: 6px; }
.chat-note { text-align: center; font-size: .8rem; color: var(--gray-400); padding: 12px; border-top: 1px solid var(--gray-100); }

/* ---------- Pipeline ---------- */
.pipeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.pipe-step {
  position: relative; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--r-lg);
  padding: 24px 22px; display: flex; flex-direction: column;
}
.pipe-step .etape { font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--gray-400); }
.pipe-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--green-50); color: var(--green-dark); display: grid; place-items: center; margin: 16px 0 14px; }
.pipe-ico svg { width: 23px; height: 23px; }
.pipe-step h3 { font-size: 1.05rem; }
.pipe-step p { margin: 9px 0 0; font-size: .9rem; color: var(--gray-500); line-height: 1.55; }
.pipe-meta { margin-top: auto; padding-top: 16px; display: flex; flex-direction: column; gap: 5px; }
.lat-badge {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 7px;
  font-size: .76rem; font-weight: 700; color: var(--green-dark);
  background: var(--green-50); border: 1px solid var(--green-100); border-radius: var(--r-full); padding: 5px 11px;
}
.lat-badge.amber { color: var(--warn-text); background: var(--warn-bg); border-color: #FDE9C8; }
.lat-sub { font-size: .76rem; color: var(--gray-400); }
.pipe-code {
  margin-top: 8px; background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: 8px;
  padding: 11px 13px; font-size: .76rem; line-height: 1.6; color: var(--gray-700); white-space: pre;
}
.pipe-code .k { color: var(--green-dark); font-weight: 600; }
@media (max-width: 980px){ .pipeline { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .pipeline { grid-template-columns: 1fr; } }

/* bot response card */
.bot-reply {
  margin-top: 24px; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--r-2xl);
  padding: 24px 26px; box-shadow: var(--shadow); max-width: 620px;
}
.bot-reply .head { display: flex; align-items: center; gap: 10px; font-size: .8rem; color: var(--gray-500); margin-bottom: 14px; }
.bot-reply .head .who { font-weight: 700; color: var(--green-dark); }
.bot-reply .slots { display: flex; flex-direction: column; gap: 8px; margin: 14px 0 0; }
.bot-reply .slot-opt { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--gray-200); border-radius: 10px; font-weight: 600; font-size: .92rem; transition: border-color .15s, background .15s; }
.bot-reply .slot-opt:hover { border-color: var(--green-100); background: var(--green-50); }
.bot-reply .slot-opt .n { width: 24px; height: 24px; border-radius: 50%; background: var(--green-50); color: var(--green-dark); font-size: .8rem; font-weight: 800; display: grid; place-items: center; }

/* ---------- Stat / claim cards ---------- */
.claim-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.claim-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--r-2xl); padding: 30px; transition: box-shadow .2s, border-color .2s, transform .2s; }
.claim-card:hover { box-shadow: var(--shadow-raised); border-color: var(--green-100); transform: translateY(-2px); }
.claim-ico { width: 48px; height: 48px; border-radius: 13px; background: var(--green-50); color: var(--green-dark); display: grid; place-items: center; }
.claim-ico svg { width: 24px; height: 24px; }
.claim-stat { font-size: 2.1rem; font-weight: 800; letter-spacing: -0.02em; color: var(--dark); margin: 20px 0 0; line-height: 1; }
.claim-cap { font-size: .82rem; color: var(--gray-400); margin-top: 6px; font-weight: 500; }
.claim-card h3 { margin-top: 16px; }
.claim-card p { margin: 9px 0 0; color: var(--gray-500); font-size: .92rem; line-height: 1.55; }
@media (max-width: 880px){ .claim-grid { grid-template-columns: 1fr; } }

/* ---------- Comparison table ---------- */
.table-card { margin-top: 40px; border: 1px solid var(--gray-200); border-radius: var(--r-2xl); overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.ctable { width: 100%; border-collapse: collapse; }
.ctable th, .ctable td { padding: 15px 18px; border-bottom: 1px solid var(--gray-100); font-size: .93rem; text-align: left; vertical-align: middle; }
.ctable thead th { font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-500); font-weight: 700; background: var(--gray-50); }
.ctable thead th.is-rendly { color: var(--green-dark); }
.ctable tbody tr:last-child td { border-bottom: 0; }
.ctable td.c, .ctable th.c { text-align: center; width: 130px; }
.ctable .col-rendly { background: var(--green-50); }
.ctable td.feat { color: var(--gray-700); font-weight: 500; }
.ctable .yes { color: var(--green); }
.ctable .no { color: var(--gray-300); }
.ctable .yes svg, .ctable .no svg { width: 20px; height: 20px; }
.ctable td .val { font-weight: 700; color: var(--dark); }
.ctable td .sub { font-size: .82rem; color: var(--gray-400); }
@media (max-width: 720px){
  .table-card { overflow-x: auto; }
  .ctable { min-width: 560px; }
}

/* ---------- Metier (catalogue + memory) ---------- */
.metier-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; margin-top: 40px; }
.cat-card, .mem-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--r-2xl); padding: 26px; }
.cat-card h3, .mem-card h3 { font-size: 1.02rem; display: flex; align-items: center; gap: 10px; }
.cat-ico { width: 34px; height: 34px; border-radius: 9px; background: var(--green-50); color: var(--green-dark); display: grid; place-items: center; }
.cat-ico svg { width: 19px; height: 19px; }
.cat-list { list-style: none; padding: 0; margin: 18px 0 0; }
.cat-list li { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px dashed var(--gray-200); }
.cat-list li:last-child { border-bottom: 0; }
.cat-list .name { font-weight: 600; }
.cat-list .name span { font-weight: 500; color: var(--gray-400); font-size: .86rem; margin-left: 8px; }
.cat-list .price { font-weight: 700; color: var(--green-dark); white-space: nowrap; }
.cat-foot { margin-top: 18px; font-size: .86rem; color: var(--gray-500); }
.mem-card p { color: var(--gray-500); font-size: .93rem; line-height: 1.6; margin: 14px 0 0; }
.mem-card p b { color: var(--dark); }
.mem-hi { background: var(--green-50); border: 1px solid var(--green-100); border-radius: 10px; padding: 12px 14px; font-size: .88rem; color: var(--green-dark); margin-top: 16px; }
@media (max-width: 880px){ .metier-grid { grid-template-columns: 1fr; } }

/* ---------- Agenda comparison ---------- */
.agenda-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.agenda-col { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--r-2xl); padding: 24px; }
.agenda-col.smart { border-color: var(--green-100); box-shadow: 0 0 0 3px rgba(22,163,74,.06); }
.agenda-tag { display: inline-flex; align-items: center; gap: 8px; font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--r-full); }
.agenda-tag.bad { background: var(--gray-100); color: var(--gray-500); }
.agenda-tag.good { background: var(--green-50); color: var(--green-dark); border: 1px solid var(--green-100); }
.agenda-col h3 { margin: 14px 0 4px; font-size: 1.05rem; }
.slots-list { margin-top: 16px; display: flex; flex-direction: column; gap: 7px; }
.srow { display: flex; align-items: center; gap: 12px; padding: 10px 13px; border-radius: 9px; font-size: .9rem; }
.srow .time { font-variant-numeric: tabular-nums; color: var(--gray-400); width: 52px; flex: none; font-weight: 600; }
.srow.busy { background: var(--green-50); color: var(--green-dark); font-weight: 600; }
.srow.gap { background: repeating-linear-gradient(45deg, var(--gray-50), var(--gray-50) 8px, #fff 8px, #fff 16px); color: var(--gray-400); }
.srow.free { background: var(--gray-50); color: var(--gray-400); }
.agenda-foot { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--gray-100); font-weight: 700; font-size: .92rem; }
.agenda-col.bad .agenda-foot { color: var(--danger-text); }
.agenda-col.smart .agenda-foot { color: var(--green-dark); }
.score-note { margin-top: 24px; background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--r-2xl); padding: 24px 26px; }
.score-note h3 { font-size: 1.02rem; display: flex; align-items: center; gap: 10px; }
.score-note p { margin: 12px 0 0; color: var(--gray-500); font-size: .93rem; line-height: 1.6; }
.score-note p b { color: var(--dark); }
@media (max-width: 760px){ .agenda-grid { grid-template-columns: 1fr; } }

/* ---------- Phrases ---------- */
.phrases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 40px; }
.phrase { position: relative; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--r-lg); padding: 22px 22px 20px; font-size: 1rem; color: var(--gray-700); line-height: 1.5; }
.phrase::before { content: "\201C"; font-size: 2.4rem; line-height: 0; color: var(--green-100); position: absolute; top: 22px; left: 14px; }
.phrase span { display: block; padding-left: 16px; }
@media (max-width: 880px){ .phrases { grid-template-columns: 1fr; } }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 48px; align-items: start; }
.price-card { position: relative; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--r-2xl); padding: 32px; }
.price-card.featured { border-color: var(--green); box-shadow: 0 0 0 4px rgba(22,163,74,.08), var(--shadow-raised); }
.price-card.soon { background: var(--gray-50); }
.price-flag { position: absolute; top: 22px; right: 22px; }
.price-name { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.01em; }
.price-aud { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--green-dark); margin-top: 4px; }
.price-desc { color: var(--gray-500); font-size: .94rem; margin: 12px 0 0; }
.price-amt { display: flex; align-items: baseline; gap: 8px; margin: 22px 0 0; }
.price-amt .n { font-size: 3rem; font-weight: 800; letter-spacing: -0.03em; color: var(--dark); line-height: 1; }
.price-amt .per { color: var(--gray-500); font-weight: 600; }
.price-setup { display: flex; gap: 10px; align-items: flex-start; margin-top: 16px; padding: 12px 14px; background: var(--green-50); border: 1px solid var(--green-100); border-radius: 10px; font-size: .86rem; color: var(--green-dark); }
.price-setup svg { flex: none; width: 17px; height: 17px; margin-top: 1px; }
.price-setup s { color: var(--gray-400); }
.price-list { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 12px; }
.price-list li { display: flex; align-items: flex-start; gap: 11px; font-size: .93rem; color: var(--gray-700); }
.price-list li svg { flex: none; width: 18px; height: 18px; color: var(--green); margin-top: 1px; }
.price-list li.head { font-weight: 700; color: var(--dark); }
.price-card .btn { margin-top: 26px; }
.price-foot { margin-top: 16px; font-size: .8rem; color: var(--gray-400); line-height: 1.5; }
@media (max-width: 880px){ .price-grid { grid-template-columns: 1fr; } }

/* never billed */
.never { margin-top: 28px; background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--r-2xl); padding: 30px clamp(22px,3vw,34px); }
.never h3 { font-size: 1.1rem; }
.never-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px; margin-top: 20px; }
.never-item { display: flex; align-items: center; gap: 11px; font-size: .93rem; color: var(--gray-700); }
.never-item svg { flex: none; width: 18px; height: 18px; color: var(--gray-400); }
@media (max-width: 720px){ .never-grid { grid-template-columns: 1fr; } }

/* payback closing line */
.kicker-line { margin-top: 30px; padding: 22px 26px; border-left: 3px solid var(--green); background: var(--green-50); border-radius: 0 var(--r-lg) var(--r-lg) 0; font-size: 1.05rem; color: var(--dark); font-weight: 600; }

/* contact band */
.contact-band { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.contact-band .btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- FAQ accordion ---------- */
.faq-cat + .faq-cat { margin-top: 56px; }
.faq-list { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; max-width: 840px; }
.faq-item { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--r-lg); overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.faq-item[open] { border-color: var(--green-100); box-shadow: var(--shadow); }
.faq-q { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 19px 22px; font-weight: 600; font-size: 1.04rem; color: var(--dark); }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { content: ""; }
.faq-q .chev { flex: none; width: 22px; height: 22px; color: var(--green-dark); transition: transform .25s ease; }
.faq-item[open] .faq-q .chev { transform: rotate(180deg); }
.faq-a { padding: 0 22px 22px; color: var(--gray-500); font-size: .96rem; line-height: 1.65; }
.faq-a p { margin: 0; }
.faq-a p + p { margin-top: 10px; }
.faq-a a { color: var(--accent); font-weight: 600; }
.faq-a ul { margin: 10px 0 0; padding-left: 18px; }
.faq-a li { margin-top: 6px; }
.faq-a code { font-family: ui-monospace, "SFMono-Regular", Menlo, monospace; font-size: .86em; background: var(--gray-100); padding: 2px 6px; border-radius: 5px; color: var(--gray-700); }

/* ---------- Video / Découvrir ---------- */
.video-feature { margin-top: 40px; border: 1px solid var(--gray-200); border-radius: var(--r-2xl); overflow: hidden; box-shadow: var(--shadow-raised); background: #fff; }
.video-frame { position: relative; aspect-ratio: 16 / 9; display: grid; place-items: center; overflow: hidden;
  background: radial-gradient(120% 120% at 50% 0%, #16A34A 0%, #0E3D24 60%, #0B141A 100%); }
.video-frame > video, .video-frame > iframe { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 0; }
.video-frame::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 50% 50%, transparent, rgba(0,0,0,.25)); pointer-events: none; }
.play-btn { position: relative; z-index: 2; width: 78px; height: 78px; border-radius: 50%; background: rgba(255,255,255,.96); display: grid; place-items: center; box-shadow: 0 14px 36px rgba(0,0,0,.30); cursor: pointer; transition: transform .2s ease; border: 0; }
.play-btn:hover { transform: scale(1.07); }
.play-btn svg { width: 30px; height: 30px; color: var(--green-dark); margin-left: 4px; }
.video-tag { position: absolute; top: 16px; left: 16px; z-index: 2; }
.video-cap { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; }
.video-cap h3 { font-size: 1.1rem; }
.video-cap p { margin: 5px 0 0; font-size: .9rem; color: var(--gray-500); }
.video-cap .dur { flex: none; font-size: .82rem; font-weight: 700; color: var(--gray-400); font-variant-numeric: tabular-nums; }

.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 22px; }
.video-card { border: 1px solid var(--gray-200); border-radius: var(--r-lg); overflow: hidden; background: #fff; transition: box-shadow .2s, transform .2s, border-color .2s; }
.video-card:hover { box-shadow: var(--shadow-raised); border-color: var(--green-100); transform: translateY(-2px); }
.video-card .video-frame { aspect-ratio: 16 / 10; }
.video-card .play-btn { width: 56px; height: 56px; }
.video-card .play-btn svg { width: 21px; height: 21px; }
.video-card .vc-body { padding: 16px 18px 18px; }
.video-card h3 { font-size: 1rem; }
.video-card p { margin: 7px 0 0; font-size: .88rem; color: var(--gray-500); line-height: 1.55; }
@media (max-width: 880px){ .video-grid { grid-template-columns: 1fr; } }

/* ---------- Waitlist form ---------- */
.wl-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(32px, 5vw, 60px); align-items: center; }
.wl-points { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-direction: column; gap: 14px; }
.wl-points li { display: flex; align-items: flex-start; gap: 12px; font-size: .98rem; color: var(--gray-700); }
.wl-points li svg { flex: none; width: 22px; height: 22px; color: var(--green); margin-top: 1px; }
.wl-points li b { color: var(--dark); }

.wl-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--r-2xl); box-shadow: var(--shadow-raised); padding: clamp(26px, 3vw, 38px); }
.wl-card h3 { font-size: 1.2rem; }
.wl-card > p { margin: 8px 0 22px; color: var(--gray-500); font-size: .94rem; }
.field { margin-bottom: 18px; }
.field:last-of-type { margin-bottom: 0; }
.field label { display: block; font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--gray-500); margin-bottom: 8px; }
.field label .req { color: var(--green-dark); }
.field input, .field select {
  width: 100%; padding: 13px 15px; border: 1px solid var(--gray-200); border-radius: var(--r-lg);
  font-size: 1rem; font-family: inherit; color: var(--dark); background: #fff;
  transition: border-color .15s, box-shadow .15s; min-height: 50px;
}
.field input::placeholder { color: var(--gray-400); }
.field input:focus, .field select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(22,163,74,.18); }
.field select {
  appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.wl-card .btn { margin-top: 22px; width: 100%; }
.wl-note { margin-top: 16px; font-size: .83rem; color: var(--gray-400); line-height: 1.5; display: flex; gap: 8px; align-items: flex-start; }
.wl-note svg { flex: none; width: 16px; height: 16px; color: var(--green); margin-top: 1px; }

.wl-success { display: none; text-align: center; padding: 18px 8px; }
.wl-success.show { display: block; animation: fadeUp .4s ease both; }
.wl-form.hidden { display: none; }
.wl-success .ok-ico { width: 60px; height: 60px; border-radius: 50%; background: var(--green-50); color: var(--green-dark); display: grid; place-items: center; margin: 0 auto 16px; }
.wl-success .ok-ico svg { width: 30px; height: 30px; }
.wl-success h3 { font-size: 1.2rem; }
.wl-success p { margin: 10px 0 0; color: var(--gray-500); font-size: .95rem; }
@media (max-width: 880px){ .wl-grid { grid-template-columns: 1fr; } .field-row { grid-template-columns: 1fr; } }

/* ---------- Login (Mon espace) ---------- */
.login-grid { min-height: 100vh; display: grid; grid-template-columns: 1.05fr .95fr; }
.login-brand { position: relative; overflow: hidden; background: var(--grad-hero); color: #fff; padding: clamp(34px, 4.5vw, 58px); display: flex; flex-direction: column; }
.login-brand::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(50% 40% at 90% 0%, rgba(255,255,255,.16), transparent 70%), radial-gradient(40% 40% at 0% 100%, rgba(255,255,255,.08), transparent 72%); }
.login-brand > * { position: relative; z-index: 1; }
.login-brand .brand { color: #fff; }
.login-brand .lb-mid { margin: auto 0; }
.login-brand .lb-mid h2 { color: #fff; font-size: clamp(1.7rem, 2.6vw, 2.3rem); line-height: 1.15; max-width: 15ch; }
.login-brand .lb-mid p { color: rgba(255,255,255,.82); margin-top: 16px; max-width: 38ch; font-size: 1.02rem; line-height: 1.6; }
.login-brand .lb-trust { display: flex; flex-wrap: wrap; gap: 10px 20px; font-size: .85rem; color: rgba(255,255,255,.85); }
.login-brand .lb-trust span { display: inline-flex; align-items: center; gap: 8px; }
.login-brand .lb-trust svg { width: 16px; height: 16px; }

.login-pane { display: grid; place-items: center; padding: clamp(28px, 5vw, 56px); background: #fff; position: relative; }
.back-link { position: absolute; top: 22px; left: 24px; white-space: nowrap; display: inline-flex; align-items: center; gap: 7px; font-size: .88rem; font-weight: 600; color: var(--gray-500); }
.back-link:hover { color: var(--accent); }
.back-link svg { width: 16px; height: 16px; }
/* Mobile : pousser le contenu sous le « Retour au site » (absolu) pour qu'il ne
   chevauche pas la rangée de langues. */
@media (max-width: 720px) {
  .login-pane { align-items: start; padding-top: 60px; }
  /* Remonter le bouton Google : divider « ou » plus compact en mobile */
  .login-divider { margin: 14px 0; }
}
.login-card { width: 100%; max-width: 392px; }
.login-card .lc-logo { display: none; }
.login-card h1 { font-size: 1.7rem; }
.login-card .sub { color: var(--gray-500); margin: 8px 0 28px; font-size: .96rem; }
.login-opts { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 16px; font-size: .88rem; }
.check { display: inline-flex; align-items: center; gap: 8px; color: var(--gray-700); cursor: pointer; user-select: none; }
.check input { width: 17px; height: 17px; accent-color: var(--green); }
.login-opts a { color: var(--accent); font-weight: 600; }
.login-card .btn { margin-top: 22px; width: 100%; }
.login-divider { display: flex; align-items: center; gap: 14px; margin: 24px 0; color: var(--gray-400); font-size: .8rem; }
.login-divider::before, .login-divider::after { content: ""; flex: 1; height: 1px; background: var(--gray-200); }
.login-foot { text-align: center; font-size: .92rem; color: var(--gray-500); }
.login-foot a { color: var(--accent); font-weight: 700; }
@media (max-width: 820px) {
  .login-grid { grid-template-columns: 1fr; }
  .login-brand { display: none; }
  .login-card .lc-logo { display: flex; margin-bottom: 24px; }
}
