/* bloob.fr — feuille de style principale */

:root {
  --blue: #1341be;
  --blue-dark: #0f37a0;
  --blue-pale: #edf1fb;
  --blue-mid: #e1e8f8;
  --orange: #f26b0f;
  --orange-light: #ff8a3d;
  --orange-pale: #fff1e6;
  --ink: #10182b;
  --ink-70: #35406b;
  --ink-60: #4a5677;
  --grey: #7a85a3;
  --grey-line: #d5dcec;
  --bg-soft: #f6f7fb;
  --radius: 24px;
  --radius-sm: 18px;
  --border: 3px solid var(--ink);
  --maxw: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Figtree, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--orange); }

img { max-width: 100%; }

h1, h2, h3, .display { font-family: Outfit, Figtree, sans-serif; letter-spacing: -0.02em; margin: 0; }

p { margin: 0; text-wrap: pretty; }

input, textarea, button, select { font-family: Figtree, sans-serif; }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.sec { padding: 60px 0; }
.sec--tight { padding: 44px 0; }
.sec--blue { background: var(--blue); color: #fff; }
.sec--dark { background: var(--ink); color: #fff; }
.sec--orange { background: var(--orange); color: #fff; }
.sec--soft { background: var(--bg-soft); border-top: var(--border); border-bottom: var(--border); }
.sec--rule-top { border-top: var(--border); }

.grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid--fill { grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); gap: 18px; }
.grid--narrow { grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 16px; }
.grid--plans { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
.row { display: flex; flex-wrap: wrap; gap: 14px; }
.row--between { justify-content: space-between; align-items: flex-end; }
.row--center { align-items: center; }
.stack { display: flex; flex-direction: column; gap: 16px; }

/* ---------- header ---------- */
:root { --hdr-h: 76px; }
.hdr { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: var(--border); }
.hdr__inner { display: flex; align-items: center; gap: 28px; padding: 10px 24px; max-width: var(--maxw); margin: 0 auto; }
.hdr__logo { height: 52px; width: auto; display: block; margin-left: -2px; }
.hdr__toggle { display: none; }
.hdr__menu { display: flex; align-items: center; gap: 28px; margin-left: auto; flex: 1; min-width: 0; }
.hdr__nav { display: flex; gap: 22px; margin-left: auto; font-size: 15px; font-weight: 600; }
.hdr__nav a { color: var(--ink); }
.hdr__nav a.is-active, .hdr__nav a:hover { color: var(--blue); }
.hdr__nav a.is-active { color: var(--blue); }
.hdr__side { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.hdr__login { color: var(--ink); font-size: 15px; font-weight: 600; }

/* ---------- boutons ---------- */
.btn {
  display: inline-block; font-family: Outfit, sans-serif; font-weight: 800;
  border-radius: 999px; border: none; cursor: pointer; text-align: center;
  font-size: 16px; padding: 15px 24px; transition: background .15s, color .15s;
}
.btn--sm { font-size: 15px; padding: 12px 20px; }
.btn--lg { font-size: 19px; padding: 18px 32px; }
.btn--orange { background: var(--orange); color: #fff; box-shadow: 0 3px 0 var(--ink); }
.btn--orange:hover { background: var(--ink); color: #fff; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--orange); color: #fff; }
.card--orange .btn--dark:hover,
.sec--orange .btn--dark:hover { background: #fff; color: var(--ink); }
.btn--light { background: var(--ink); color: #fff; box-shadow: 0 5px 0 rgba(0,0,0,.35); }
.btn--light:hover { background: #fff; color: var(--orange); }
.btn--ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn--ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; color: #fff; }
.btn--outline { background: transparent; color: var(--ink); border: var(--border); }
.btn--outline:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn--block { display: block; width: 100%; }

.link-underline { color: #fff; font-family: Outfit, sans-serif; font-weight: 800; font-size: 16px; border-bottom: 3px solid var(--orange-light); padding-bottom: 2px; }
.link-underline:hover { color: var(--orange-light); }
.link-more { font-family: Outfit, sans-serif; font-weight: 800; font-size: 16px; }

/* ---------- typo ---------- */
.h-hero { font-weight: 900; font-size: clamp(28px, 2.2vh + 3.2vw, 70px); line-height: .96; letter-spacing: -0.03em; }
.h-1 { font-weight: 900; font-size: clamp(32px, 4.4vw, 56px); line-height: 1.02; letter-spacing: -0.03em; }
.h-2 { font-weight: 900; font-size: clamp(28px, 3.6vw, 44px); line-height: 1.02; }
.h-3 { font-weight: 800; font-size: 22px; line-height: 1.2; }
.h-4 { font-weight: 800; font-size: 18px; line-height: 1.24; }
.lead { font-size: 19px; line-height: 1.55; color: var(--ink-70); }
.lead--invert { color: #d6e0fa; }
.body-text { font-size: 16px; line-height: 1.6; color: var(--ink-60); }
.eyebrow { font-family: Outfit, sans-serif; font-weight: 800; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--grey); }
.eyebrow--orange { color: var(--orange-light); }
.eyebrow--blue { color: var(--blue); }
.meta { font-size: 13px; font-weight: 600; color: var(--grey); }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 12px; color: #5b6b8c; }

/* ---------- cartes ---------- */
.card { background: #fff; color: var(--ink); border: var(--border); border-radius: var(--radius); padding: 26px; }
.card--flat { border-radius: var(--radius-sm); padding: 20px; }
.card--pale { background: var(--blue-pale); color: var(--ink); }
.card--orange-pale { background: var(--orange-pale); color: var(--ink); }
.card--dark { background: var(--ink); color: #fff; }
.card--soft { background: var(--bg-soft); color: var(--ink); }
.card--orange { background: var(--orange); color: #fff; }
.sh-ink { box-shadow: 8px 8px 0 var(--ink); }
.sh-blue { box-shadow: 6px 6px 0 var(--blue); }
.sh-orange { box-shadow: 6px 6px 0 var(--orange); }
.card-link { color: inherit; display: flex; flex-direction: column; gap: 8px; }
.card-link:hover { color: inherit; box-shadow: 6px 6px 0 var(--orange); }
.card--dark.card-link,
.card--dark.card-link:hover { color: #fff; }
.card--orange.card-link,
.card--orange.card-link:hover { color: #fff; }

/* ---------- chips & badges ---------- */
.chip { font-weight: 700; font-size: 14px; padding: 9px 15px; border-radius: 999px; border: 2px solid var(--grey-line); color: var(--ink-70); cursor: pointer; }
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip--soft { border: none; background: #f1f4fc; font-weight: 600; font-size: 13px; padding: 8px 14px; color: var(--ink-60); }
.chip--soft:hover { background: var(--blue-mid); }
.chip--solid { background: var(--blue); color: #fff; border-color: var(--blue); font-family: Outfit, sans-serif; font-weight: 800; }
.chip--solid:hover { color: #fff; }
.chip--dark-outline { font-family: Outfit, sans-serif; font-weight: 800; font-size: 15px; padding: 8px 16px; border-radius: 999px; border: 2px solid rgba(255,255,255,.25); white-space: nowrap; color: #fff; }
.badge { display: inline-block; background: var(--orange); color: #fff; font-family: Outfit, sans-serif; font-weight: 800; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; }
.badge--lg { font-size: 12px; padding: 7px 12px; }
.pill-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: #fff; font-family: Outfit, sans-serif; font-weight: 800; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; padding: 8px 14px; border-radius: 999px; }

/* ---------- placeholders visuels ---------- */
.ph { background: repeating-linear-gradient(135deg, #edf1fb 0 12px, #e1e8f8 12px 24px); display: flex; align-items: center; justify-content: center; text-align: center; padding: 16px; }
.ph--dash { border: 2px dashed #a9bef2; border-radius: 14px; background: repeating-linear-gradient(135deg, #f4f7fe 0 12px, #eaf0fc 12px 24px); }
.ph--16x9 { aspect-ratio: 16 / 9; }
.ph--16x10 { aspect-ratio: 16 / 10; }
.ph--4x3 { aspect-ratio: 4 / 3; border-radius: var(--radius-sm); }
.ph--banner { aspect-ratio: 21 / 7; }

/* ---------- hero ---------- */
.hero {
  background: var(--blue);
  color: #fff;
  min-height: calc(100svh - var(--hdr-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(16px, 3.2vh, 48px) 0 0;
}
.hero > .marquee {
  margin-top: auto;
  flex-shrink: 0;
  width: 100%;
}
.hero__grid {
  display: grid;
  flex: 1 1 auto;
  gap: clamp(16px, 3.5vh, 48px);
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  align-items: center;
  width: 100%;
  padding-bottom: clamp(12px, 2vh, 28px);
}
.hero__cta { margin-top: clamp(16px, 3vh, 34px); }
.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(16px, 3vh, 40px); margin: clamp(14px, 2.8vh, 36px) 0 0; }
.stat__num { font-family: Outfit, sans-serif; font-weight: 900; font-size: clamp(24px, 3.2vh, 34px); line-height: 1; }
.stat__label { font-size: 13px; font-weight: 600; color: #a9bef2; text-transform: uppercase; letter-spacing: .08em; margin-top: 6px; }
.hero__panel { border: var(--border); border-radius: 28px; background: #fff; color: var(--ink); padding: clamp(12px, 1.6vh, 18px); box-shadow: 10px 10px 0 var(--ink); }
.hero__panel .cover-wrap--4x3,
.hero__panel .ph--4x3 { max-height: min(34vh, 320px); }
.dot { width: 12px; height: 12px; border-radius: 999px; background: var(--orange); display: block; }

/* ---------- marquee ---------- */
.marquee { background: var(--ink); color: #fff; padding: 18px 0; overflow: hidden; border-bottom: var(--border); }
.marquee__track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee__group { display: flex; gap: 14px; padding-right: 14px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---------- numéros & étapes ---------- */
.num { font-family: Outfit, sans-serif; font-weight: 900; font-size: 52px; line-height: 1; color: var(--blue); }
.num--orange { color: var(--orange); }
.num--light { color: var(--orange-light); }
.num--sm { font-size: 38px; }
.step { display: flex; align-items: center; gap: 8px; font-family: Outfit, sans-serif; font-weight: 800; font-size: 14px; padding: 10px 16px; border-radius: 999px; border: 2px solid rgba(255,255,255,.25); }
.step__n { width: 22px; height: 22px; border-radius: 999px; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; }

/* ---------- tarifs ---------- */
.plan__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; min-height: 28px; }
.plan__name { font-family: Outfit, sans-serif; font-weight: 800; font-size: 19px; }
.plan__price { display: flex; align-items: baseline; gap: 8px; margin: 18px 0 4px; }
.plan__amount { font-family: Outfit, sans-serif; font-weight: 900; font-size: 46px; line-height: 1; letter-spacing: -0.02em; }
.plan__unit { font-size: 14px; font-weight: 600; color: #6b7796; }
.plan__note { font-size: 14px; font-weight: 600; color: var(--grey); }
.rule { height: 2px; background: #e6eaf4; margin: 22px 0; border: 0; }
.card--plan { display: flex; flex-direction: column; height: 100%; }
.card--plan .feats { flex: 1 1 auto; padding-bottom: 26px; }
.card--plan .btn { margin-top: auto; }
.feats { display: flex; flex-direction: column; gap: 12px; }
.feat { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; line-height: 1.45; color: #2a3453; }
.feat__dot { width: 8px; height: 8px; border-radius: 999px; background: var(--orange); flex: 0 0 auto; margin-top: 7px; }

/* ---------- tableau comparatif ---------- */
.cmp { border: var(--border); border-radius: var(--radius); overflow: hidden; }
.cmp__row { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; align-items: center; border-top: 1px solid #e6eaf4; font-size: 15px; }
.cmp__row--head { background: var(--ink); color: #fff; font-family: Outfit, sans-serif; font-weight: 800; font-size: 14px; border: 0; }
.cmp__row--head > div { padding: 16px 12px; }
.cmp__row--head > div:not(:first-child) { text-align: center; }
.cmp__row--head > div:first-child { padding-left: 18px; }
.cmp__label { padding: 14px 18px; font-weight: 600; color: #28314f; }
.cmp__cell { padding: 14px 12px; text-align: center; color: var(--ink-60); }
.cmp__cell--hl { background: #fff7f1; color: #c2530a; font-weight: 700; }
.cmp__cell--head-hl { color: var(--orange-light); text-align: center; }

/* ---------- article ---------- */
.article__body { display: flex; flex-direction: column; gap: 20px; font-size: 17px; line-height: 1.7; color: #28314f; margin-top: 28px; }
.crumbs { font-size: 13.5px; font-weight: 600; color: var(--grey); }
.aside { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 96px; }
.kv { display: flex; justify-content: space-between; align-items: baseline; padding: 8px 0; border-bottom: 1px solid #ebeff8; }
.kv:last-of-type { border-bottom: 0; }
.kv__k { font-size: 15px; color: var(--ink-60); }
.kv__v { font-family: Outfit, sans-serif; font-weight: 900; font-size: 22px; }
.kv__v--orange { color: var(--orange); }
.share { display: flex; gap: 8px; flex-wrap: wrap; }
.share span, .share a { font-family: Outfit, sans-serif; font-weight: 800; font-size: 14px; padding: 10px 16px; border-radius: 999px; background: #f1f4fc; color: var(--ink); cursor: pointer; }
.share span:hover, .share a:hover { background: var(--blue); color: #fff; }
.avatar { width: 56px; height: 56px; border-radius: 16px; background: var(--blue); color: #fff; font-family: Outfit, sans-serif; font-weight: 900; font-size: 24px; display: flex; align-items: center; justify-content: center; }
.layout-article { display: grid; grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr); gap: 32px; align-items: start; }

/* ---------- formulaires ---------- */
.field { width: 100%; font-size: 16px; padding: 14px 16px; border: 2px solid var(--grey-line); border-radius: 14px; color: #28314f; outline: none; }
.field:focus { border-color: var(--blue); }
.field--title { font-family: Outfit, sans-serif; font-weight: 800; font-size: 22px; line-height: 1.25; color: var(--ink); }
.field--pill { border-radius: 999px; }
.field--sm { font-size: 15px; padding: 13px 15px; border-radius: 12px; }
.field-label { display: block; font-family: Outfit, sans-serif; font-weight: 800; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--grey); margin-bottom: 10px; }
.field-hint { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; color: var(--grey); margin-top: 8px; }
.field-hint .ok { font-weight: 700; color: #1f8a4c; }
.field-hint .warn { font-weight: 700; color: #c2530a; }
.searchbar { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.searchbar .field { flex: 1 1 280px; min-width: 0; border: var(--border); border-radius: 999px; background: #fff; }
.toolbar { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.toolbar span { font-family: Outfit, sans-serif; font-weight: 800; font-size: 13px; padding: 8px 13px; border-radius: 10px; background: #f1f4fc; color: var(--ink-70); cursor: pointer; }
.toolbar span:hover { background: var(--blue); color: #fff; }
.meter { height: 14px; border-radius: 999px; background: #fff; border: 2px solid var(--ink); overflow: hidden; }
.meter__fill { height: 100%; background: var(--orange); }
.serp__url { font-size: 13px; color: #1f8a4c; }
.serp__title { font-size: 18px; color: #1a0dab; line-height: 1.3; margin: 4px 0; }
.serp__desc { font-size: 13.5px; color: var(--ink-60); line-height: 1.5; }

/* ---------- pagination ---------- */
.pager { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 44px; flex-wrap: wrap; }
.pager span, .pager a { font-family: Outfit, sans-serif; font-weight: 800; font-size: 15px; padding: 11px 18px; border-radius: 999px; border: 2px solid var(--grey-line); color: var(--ink-70); }
.pager .is-current { background: var(--blue); color: #fff; border-color: var(--blue); }
.pager .is-disabled { color: #9aa5bf; }
.pager .is-next { border-color: var(--ink); color: var(--ink); }

/* ---------- footer ---------- */
.ftr { background: var(--ink); color: #fff; padding: 52px 0 28px; }
.ftr__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
.ftr__logo { height: 42px; width: auto; display: block; }
.ftr__head { font-family: Outfit, sans-serif; font-weight: 800; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--orange-light); margin-bottom: 14px; }
.ftr__col { display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.ftr__col a { color: #dce3f2; }
.ftr__col a:hover { color: var(--orange-light); }
.ftr__note { max-width: var(--maxw); margin: 44px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); font-size: 14px; color: #7c8aab; }
.ftr--slim { padding: 44px 0 28px; }
.ftr--slim .ftr__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.ftr--slim .ftr__links { display: flex; flex-wrap: wrap; gap: 18px; font-size: 14px; color: #a9b6d2; }
.ftr--slim .ftr__links a { color: #dce3f2; }
.ftr--slim .ftr__logo { height: 40px; }

.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.split-address { display: grid; grid-template-columns: 120px minmax(0, 1fr) 90px; gap: 12px; }
.row--scroll { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 2px; }
.row--scroll > .chip,
.row--scroll > .chip--soft { flex: 0 0 auto; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .wrap { padding: 0 18px; }
  .hdr__inner { gap: 12px; padding: 10px 18px; }
  .hdr__logo { height: 42px; }
  .hdr__toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    margin-left: auto;
    padding: 0;
    border: var(--border);
    border-radius: 999px;
    background: var(--orange);
    box-shadow: 0 4px 0 var(--ink);
    cursor: pointer;
    transition: background .16s ease, box-shadow .16s ease, transform .16s ease;
  }
  .hdr__toggle span {
    display: block;
    width: 20px;
    height: 3px;
    background: #fff;
    border-radius: 999px;
    transition: background .16s ease, transform .16s ease, opacity .16s ease;
  }
  .hdr__toggle:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--ink); }
  .hdr__toggle:focus-visible { outline: 3px solid rgba(19, 65, 190, .3); outline-offset: 4px; }
  .hdr.is-open .hdr__toggle { background: var(--ink); box-shadow: 0 4px 0 var(--orange); }
  .hdr.is-open .hdr__toggle span { background: var(--orange-light); }
  .hdr.is-open .hdr__toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .hdr.is-open .hdr__toggle span:nth-child(2) { opacity: 0; }
  .hdr.is-open .hdr__toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .hdr__menu {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--hdr-h);
    z-index: 51;
    flex: none;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 8px 18px 22px;
    background: #fff;
    border-bottom: var(--border);
    max-height: calc(100svh - var(--hdr-h));
    overflow-y: auto;
  }
  .hdr.is-open .hdr__menu { display: flex; }
  .hdr.is-open::after {
    content: "";
    position: fixed;
    inset: var(--hdr-h) 0 0;
    background: rgba(16, 24, 43, .38);
    z-index: 40;
  }
  .hdr__nav {
    flex-direction: column;
    width: 100%;
    margin: 0;
    gap: 0;
  }
  .hdr__nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid #e6eaf4;
    font-size: 17px;
  }
  .hdr__side {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-top: 8px;
  }
  .hdr__side .btn { width: 100%; text-align: center; }
  .layout-article { grid-template-columns: minmax(0, 1fr); }
  .aside { position: static; }
  .cmp__row { grid-template-columns: 1.4fr 1fr 1fr 1fr; font-size: 14px; }
  .hero { min-height: 0; padding-top: 28px; }
  .hero__grid { grid-template-columns: 1fr; padding-bottom: 40px; }
  .hero__panel { box-shadow: 6px 6px 0 var(--ink); }
  .ftr__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
  .plan__amount { font-size: 40px; }
  .num { font-size: 42px; }
  .sh-ink { box-shadow: 6px 6px 0 var(--ink); }
  .sh-blue { box-shadow: 5px 5px 0 var(--blue); }
  .sh-orange { box-shadow: 5px 5px 0 var(--orange); }
}
@media (hover: hover) and (max-width: 900px) {
  .hdr__toggle:hover { background: var(--blue); }
  .hdr.is-open .hdr__toggle:hover { background: var(--ink); }
}
@media (max-height: 760px) {
  .hero .lead { font-size: 16px; line-height: 1.45; }
  .hero .btn--lg { font-size: 16px; padding: 12px 22px; }
  .hero__panel .cover-wrap--4x3,
  .hero__panel .ph--4x3 { max-height: min(26vh, 220px); }
}
@media (max-width: 720px) {
  .wrap { padding-inline: 16px; }
  .hdr__inner { padding: 8px 16px; }
  .hdr__menu { padding-left: 16px; padding-right: 16px; }
  .sec { padding: 44px 0; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero .row { flex-direction: column; align-items: stretch; }
  .hero .row .btn { text-align: center; }
  .hero__stats { gap: 16px; }
  .cmp { overflow-x: auto; }
  .cmp__row { grid-template-columns: 1.4fr repeat(3, minmax(72px, 1fr)); min-width: 560px; }
  .ftr__grid { grid-template-columns: 1fr; gap: 28px; }
  .ftr__note { margin-top: 32px; }
  .ftr--slim .ftr__inner { flex-direction: column; align-items: flex-start; }
  .card { padding: 20px; }
  .lead { font-size: 17px; }
  .searchbar { flex-direction: column; align-items: stretch; width: 100%; min-width: 0; }
  .searchbar .field { flex: none; width: 100%; min-height: 52px; }
  .searchbar .btn { width: 100%; }
  .sec--blue .row .btn--lg { width: 100%; text-align: center; }
  .split-2,
  .split-address { grid-template-columns: 1fr; }
  .auth__roles { grid-template-columns: 1fr; }
  .emitter-list a { align-items: flex-start; }
  .emitter-thumb { width: 100%; height: auto; aspect-ratio: 16 / 9; }
}
@media (max-width: 520px) {
  .hdr__logo { height: 36px; }
  .btn--lg { width: 100%; }
  .row--between { align-items: flex-start; }
}

/* ---------- extensions app ---------- */
.logo-word {
  font-family: Outfit, sans-serif;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}
.logo-word span { color: var(--orange); }
.hdr__logo-link { display: flex; align-items: center; text-decoration: none; color: inherit; }
.hdr__logo-link:hover { color: inherit; }
.ftr .logo-word { color: #fff; }
.ftr .hdr__logo-link:hover .logo-word { color: #fff; }
.chip.is-active, a.chip.is-active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.chip.is-active:hover { color: #fff; }
.cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cover-wrap { overflow: hidden; background: var(--blue-pale); }
.cover-wrap--16x9 { aspect-ratio: 16 / 9; }
.cover-wrap--16x10 { aspect-ratio: 16 / 10; }
.cover-wrap--4x3 { aspect-ratio: 4 / 3; }
.cover-wrap--banner { aspect-ratio: 21 / 7; }
.page-main { min-height: 50vh; }
select.field { appearance: none; background: #fff; }
.btn:disabled { opacity: .55; cursor: not-allowed; }
.hdr__login:hover { color: var(--blue); }

.auth {
  display: flex;
  align-items: center;
  min-height: calc(100svh - var(--hdr-h) - 88px);
  padding: clamp(36px, 6vh, 72px) 0;
}
.auth__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  align-items: center;
  width: 100%;
}
.auth--wide .auth__grid { grid-template-columns: minmax(0, 1fr) minmax(300px, 500px); align-items: start; }
.auth__roles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.auth__role {
  display: block;
  padding: 14px 16px;
  border: var(--border);
  border-radius: 16px;
  color: var(--ink);
  background: #fff;
}
.auth__role strong { display: block; font-family: Outfit, sans-serif; font-weight: 800; font-size: 16px; }
.auth__role span { display: block; font-size: 13px; color: var(--grey); margin-top: 4px; }
.auth__role.is-on { box-shadow: 4px 4px 0 var(--blue); color: var(--blue); }
.auth__role:hover { color: var(--ink); }
.auth__role.is-on:hover { color: var(--blue); }
.auth__names { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.auth__card { color: var(--ink); padding: 28px; }
.auth__card .field { border: var(--border); border-radius: 16px; }
.auth__switch {
  display: flex;
  border: var(--border);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 22px;
}
.auth__switch a,
.auth__switch span {
  flex: 1;
  text-align: center;
  font-family: Outfit, sans-serif;
  font-weight: 800;
  font-size: 14px;
  padding: 11px 14px;
}
.auth__switch .is-on { background: var(--ink); color: #fff; }
.auth__switch a { color: var(--ink); background: #fff; }
.auth__switch a:hover { color: var(--orange); }
.auth__forgot { font-size: 13px; font-weight: 800; font-family: Outfit, sans-serif; }
.auth__points { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.auth__points p { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; line-height: 1.45; color: #d6e0fa; }
@media (max-width: 800px) {
  .auth { min-height: 0; }
  .auth__grid,
  .auth--wide .auth__grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .auth__names { grid-template-columns: 1fr; }
}

/* ---------- pages utilitaires ---------- */
.legal-layout { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 40px; align-items: start; }
.legal-nav { display: flex; flex-direction: column; gap: 6px; position: sticky; top: 96px; }
.legal-nav a {
  font-weight: 600; font-size: 15px; padding: 11px 14px; border-radius: 14px;
  color: var(--ink-70); border: 2px solid transparent;
}
.legal-nav a:hover { color: var(--ink); background: var(--blue-pale); }
.legal-nav a.is-on { background: var(--ink); color: #fff; }
.legal-prose { max-width: 760px; font-size: 16px; line-height: 1.7; color: #28314f; }
.legal-prose h2 { font-family: Outfit, sans-serif; font-weight: 800; font-size: 28px; line-height: 1.15; margin: 0 0 16px; color: var(--ink); }
.legal-prose h3 { font-family: Outfit, sans-serif; font-weight: 800; font-size: 18px; line-height: 1.25; margin: 0 0 10px; color: var(--ink); }
.legal-prose p { margin: 0 0 14px; }
.legal-prose ul { margin: 0 0 14px; padding-left: 22px; }
.legal-prose li { margin-bottom: 8px; }
.legal-section { margin-bottom: 44px; padding-top: 8px; }
.legal-section + .legal-section { border-top: 1px solid #e6eaf4; }

.pay-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr); gap: 32px; align-items: start; }
.pay-aside { position: sticky; top: 96px; }
.pay-line { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; color: var(--ink-60); }
.pay-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 8px; }
.pay-total strong { font-family: Outfit, sans-serif; font-weight: 900; font-size: 30px; letter-spacing: -0.02em; }
.lp-upsell {
  display: flex; gap: 12px; align-items: flex-start;
  border: var(--border); border-radius: 16px; padding: 14px 14px 14px 12px;
  cursor: pointer; background: #fff; color: var(--ink);
}
.lp-upsell.is-on { box-shadow: 4px 4px 0 var(--blue); }
.lp-upsell input { margin-top: 3px; accent-color: var(--blue); flex-shrink: 0; }

.status-page { text-align: center; max-width: 560px; margin: 0 auto; padding: 48px 0 80px; }
.status-icon {
  width: 72px; height: 72px; border-radius: 22px; display: inline-flex;
  align-items: center; justify-content: center; font-family: Outfit, sans-serif;
  font-weight: 900; font-size: 32px; margin-bottom: 22px; border: var(--border);
}
.status-icon--ok { background: #e7f5ec; color: #1f8a4c; }
.status-icon--wait { background: var(--blue-pale); color: var(--blue); }
.status-icon--err { background: var(--orange-pale); color: var(--orange); }

.emitter-head { display: flex; gap: 26px; align-items: center; }
.emitter-list { display: flex; flex-direction: column; }
.emitter-list a {
  display: flex; gap: 18px; padding: 20px 0; align-items: center;
  color: inherit; border-bottom: 1px solid #e6eaf4;
}
.emitter-list a:last-child { border-bottom: 0; }
.emitter-list a:hover { color: inherit; }
.emitter-thumb { width: 88px; height: 60px; border-radius: 12px; flex-shrink: 0; object-fit: cover; background: var(--blue-pale); }

.contact-kv { display: flex; flex-direction: column; gap: 22px; margin-top: 32px; }
.contact-kv strong { display: block; font-family: Outfit, sans-serif; font-weight: 800; font-size: 18px; color: #fff; }
.contact-kv a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.contact-kv a:hover { color: var(--orange-light); }

.publish-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr); gap: 28px; align-items: start; }
.offer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.lp-offer-card {
  display: flex; flex-direction: column; color: inherit;
  border: var(--border); border-radius: var(--radius); background: #fff; padding: 28px;
}
.lp-offer-card:hover { color: inherit; box-shadow: 6px 6px 0 var(--orange); }
.lp-offer-card.is-featured { box-shadow: 8px 8px 0 var(--ink); }
.lp-cat { font-size: 14px; font-weight: 600; color: var(--ink-70); border: 2px solid var(--grey-line); border-radius: 999px; padding: 8px 16px; background: #fff; cursor: pointer; font-family: inherit; }
.lp-cat.is-active { color: #fff; background: var(--blue); border-color: var(--blue); }
.lp-offer-switch { display: flex; gap: 10px; flex-wrap: wrap; }
.lp-offer-switch button {
  border: var(--border); border-radius: 16px; padding: 12px 16px; font-size: 14px; font-weight: 700;
  color: var(--ink); background: #fff; cursor: pointer; font-family: inherit; text-align: left;
}
.lp-offer-switch button.is-active { box-shadow: 4px 4px 0 var(--blue); color: var(--blue); }
.lp-offer-switch button .lp-offer-switch-meta { display: block; font-size: 12px; font-weight: 500; color: var(--grey); margin-top: 4px; }
.lp-editor-wrap { position: relative; border: var(--border); border-radius: 16px; background: #fff; overflow: visible; }
.lp-editor-wrap:focus-within { box-shadow: 4px 4px 0 var(--blue); }
.lp-editor-toolbar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 2px;
  padding: 8px 10px; border-bottom: 2px solid var(--grey-line);
  background: var(--bg-soft); border-radius: 14px 14px 0 0;
}
.lp-editor-group { display: inline-flex; align-items: center; gap: 2px; }
.lp-editor-sep { width: 1px; height: 22px; background: var(--grey-line); margin: 0 6px; flex-shrink: 0; }
.lp-editor-toolbar button {
  display: inline-flex; align-items: center; justify-content: center; gap: 5px;
  min-width: 34px; height: 34px; padding: 0 8px;
  border: 1px solid transparent; background: transparent; border-radius: 10px;
  font-size: 13px; font-weight: 700; color: var(--ink-70); cursor: pointer; font-family: inherit;
}
.lp-editor-toolbar button svg { width: 16px; height: 16px; display: block; flex-shrink: 0; }
.lp-editor-toolbar button .lp-tb-label { font-size: 12px; font-weight: 800; }
.lp-editor-toolbar button:hover { background: #fff; color: var(--blue); }
.lp-editor-toolbar button.is-active { background: var(--ink); color: #fff; }
.lp-editor-surface { border-radius: 0 0 14px 14px; overflow: hidden; }
.lp-editor {
  position: relative; min-height: 320px; max-height: 560px; overflow: auto;
  padding: 22px 24px; font-size: 16px; line-height: 1.75; color: #28314f; outline: none; background: #fff;
}
.lp-editor.is-empty:before {
  content: attr(data-placeholder); position: absolute; left: 24px; right: 24px; top: 22px;
  color: var(--grey); pointer-events: none; line-height: 1.75;
}
.lp-editor p { margin: 0 0 14px; }
.lp-editor h2 { font-family: Outfit, sans-serif; font-weight: 800; font-size: 24px; line-height: 1.25; color: var(--ink); margin: 8px 0 12px; }
.lp-editor h3 { font-family: Outfit, sans-serif; font-weight: 800; font-size: 19px; line-height: 1.3; color: var(--ink); margin: 6px 0 10px; }
.lp-editor a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.lp-editor ul, .lp-editor ol { margin: 0 0 14px; padding-left: 24px; }
.lp-editor li { margin: 0 0 6px; }
.lp-editor-meta {
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 8px 12px; border-top: 1px solid #e6eaf4; background: var(--bg-soft);
  font-size: 12px; color: var(--grey); border-radius: 0 0 14px 14px;
}
.lp-editor-meta kbd {
  display: inline-block; padding: 1px 5px; border: 1px solid var(--grey-line); border-radius: 4px;
  background: #fff; font-size: 11px; font-family: inherit; color: var(--ink-60);
}
.lp-link-popover {
  position: absolute; left: 12px; right: 12px; top: 54px; z-index: 30;
  background: #fff; border: var(--border); border-radius: 16px;
  box-shadow: 8px 8px 0 var(--ink); padding: 16px 18px;
}
.lp-link-popover-title { font-family: Outfit, sans-serif; font-weight: 800; font-size: 13px; letter-spacing: .03em; color: var(--ink); margin: 0 0 10px; }
.lp-link-popover-label { display: block; font-size: 12px; font-weight: 600; color: var(--grey); margin-bottom: 6px; }
.lp-link-popover-input {
  width: 100%; border: 2px solid var(--grey-line); border-radius: 12px; padding: 11px 12px;
  font-size: 14px; font-family: inherit; color: var(--ink); background: #fff;
}
.lp-link-popover-input:focus { outline: none; border-color: var(--blue); }
.lp-link-popover-error { margin: 8px 0 0; font-size: 12px; color: #9b1c1c; }
.lp-link-popover-actions { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.lp-link-popover-actions-right { display: flex; gap: 8px; }
.lp-link-popover-cancel, .lp-link-popover-remove {
  border: none; background: none; padding: 0; font: inherit; font-size: 13px; font-weight: 700;
  color: var(--grey); cursor: pointer;
}
.lp-link-popover-apply {
  background: var(--orange); color: #fff; border: none; border-radius: 999px; padding: 10px 16px;
  font-size: 13px; font-weight: 800; cursor: pointer; font-family: Outfit, sans-serif;
}
.lp-cover-drop { border: 2px dashed var(--grey-line); border-radius: 16px; background: #fff; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.lp-cover-drop.is-dragover { border-color: var(--blue); background: var(--blue-pale); }
.lp-cover-drop.is-invalid { border-color: #c2530a; background: #fff8f8; }
.lp-cover-preview { width: 100%; max-height: 180px; object-fit: cover; border-radius: 12px; display: none; }
.lp-cover-preview.is-visible { display: block; }
.lp-cover-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.lp-cover-name { font-size: 13px; color: var(--ink-60); flex: 1; min-width: 140px; }
.lp-cover-clear { background: none; border: none; font-size: 13px; font-weight: 700; color: var(--grey); cursor: pointer; font-family: inherit; padding: 0; }
.lp-cover-error { font-size: 12px; color: #9b1c1c; display: none; }
.lp-cover-error.is-visible { display: block; }
.lp-city-wrap { position: relative; }
.lp-city-suggest {
  position: absolute; left: 0; right: 0; top: calc(100% + 4px); z-index: 40;
  margin: 0; padding: 6px 0; list-style: none;
  background: #fff; border: var(--border); border-radius: 14px;
  box-shadow: 6px 6px 0 var(--ink); max-height: 260px; overflow: auto; display: none;
}
.lp-city-suggest.is-open { display: block; }
.lp-city-suggest li { margin: 0; }
.lp-city-suggest button {
  width: 100%; display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  border: 0; background: transparent; padding: 10px 14px; text-align: left; cursor: pointer;
  font: inherit; color: var(--ink);
}
.lp-city-suggest button:hover, .lp-city-suggest button.is-active { background: var(--blue-pale); color: var(--blue); }
.lp-city-suggest .lp-city-name { font-weight: 700; }
.lp-city-suggest .lp-city-meta { font-size: 12px; color: var(--grey); white-space: nowrap; }
.lp-moderation { margin-top: 8px; font-size: 12px; line-height: 1.45; }
.lp-btn-ghost { background: none; border: none; font-size: 14px; font-weight: 800; color: var(--grey); cursor: pointer; font-family: Outfit, sans-serif; padding: 0; }
.lp-btn-ghost:hover { color: var(--ink); }
.seo-bar { height: 14px; border-radius: 999px; background: #fff; border: 2px solid var(--ink); overflow: hidden; }
.seo-bar > span { display: block; height: 100%; background: var(--orange); transition: width .2s; }

@media (max-width: 900px) {
  .legal-layout, .pay-grid, .publish-grid { grid-template-columns: 1fr; }
  .pay-aside { position: static; }
  .offer-grid, .grid--plans { grid-template-columns: 1fr; }
  .emitter-head { flex-direction: column; align-items: flex-start; }
  .legal-nav {
    flex-direction: row;
    overflow-x: auto;
    position: sticky;
    top: var(--hdr-h);
    z-index: 30;
    gap: 8px;
    background: #fff;
    margin: 0 -18px 12px;
    padding: 10px 18px;
    border-bottom: 1px solid #e6eaf4;
    -webkit-overflow-scrolling: touch;
  }
  .legal-nav a { white-space: nowrap; flex: 0 0 auto; }
  .legal-prose h2 { font-size: 24px; }
}
@media (max-width: 720px) {
  .legal-nav { margin-left: -16px; margin-right: -16px; padding-left: 16px; padding-right: 16px; }
}
