/* LeadWhale — Legal pages stylesheet (matches site design tokens) */
:root{
  --bg:#f4f4f4;
  --surface:#ffffff;
  --ink:#1e1e1e;
  --ink-strong:#242424;
  --muted:#5b5f66;
  --blue:#1e48ac;
  --blue-soft:#a6b5d8;
  --blue-tint:#eef2fb;      /* ледь блакитний фон */
  --blue-tint-2:#e6ecf8;
  --line:#e4e7ee;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:"Inter Tight",system-ui,sans-serif;
  font-weight:500;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
.container{width:100%;max-width:96rem;margin:0 auto;padding:0 2rem}

/* ---------- Header (pill card) ---------- */
.header{position:sticky;top:0;z-index:10;padding:1.6rem 0;backdrop-filter:blur(6px)}
.header__inner{
  display:flex;align-items:center;justify-content:space-between;gap:2rem;
  background:#f4f4f4;border:1px solid #ffffff;border-radius:6.3rem;
  box-shadow:0 3px 22px rgba(0,0,0,.08);
  height:7.4rem;padding:0 1.4rem 0 2.6rem;
}
.header__logo{display:block;width:15rem}
.header__logo svg{display:block;width:100%;height:auto}

/* ---------- Button (pill, blue radial) ---------- */
.button{
  display:inline-flex;align-items:center;justify-content:center;gap:.8rem;
  height:5.4rem;padding:0 2.6rem;border-radius:12rem;border:none;cursor:pointer;
  font-family:inherit;font-size:1.6rem;font-weight:600;line-height:1;letter-spacing:-.01em;
  transition:transform .18s ease,box-shadow .18s ease,opacity .18s ease;
}
.button--blue{
  background:radial-gradient(259% 134% at 50% 50%,#1e48ac 0,#a6b5d8);
  color:#e6e6e6;box-shadow:0 8px 22px rgba(30,72,172,.28);
}
.button--blue:hover{transform:translateY(-1px);box-shadow:0 12px 26px rgba(30,72,172,.34)}
.button--ghost{background:#ececec;color:#151515}
.button--ghost:hover{background:#e3e3e3}
.button svg{width:1.8rem;height:1.8rem}

/* ---------- Hero / page head ---------- */
.page-hero{padding:5rem 0 3rem}
.page-hero__eyebrow{
  display:inline-flex;align-items:center;gap:.8rem;
  font-size:1.3rem;font-weight:600;letter-spacing:.02em;text-transform:uppercase;
  color:var(--blue);background:var(--blue-tint);border:1px solid var(--blue-tint-2);
  padding:.7rem 1.4rem;border-radius:12rem;margin-bottom:2rem;
}
.page-hero__title{
  margin:0;color:var(--ink-strong);
  font-size:clamp(3.6rem,6vw,6rem);font-weight:600;line-height:1;letter-spacing:-.03em;
}
.page-hero__meta{margin:1.6rem 0 0;color:var(--muted);font-size:1.6rem}

/* ---------- Legal content card ---------- */
.legal{padding:0 0 6rem}
.legal__card{
  background:var(--surface);border:1px solid var(--line);border-radius:2.4rem;
  box-shadow:0 2px 24px rgba(20,30,60,.05);
  padding:clamp(2.6rem,4vw,5rem);
}
.legal__intro{font-size:1.8rem;color:var(--ink);margin:0 0 2.4rem}
.legal section{padding:2.4rem 0;border-top:1px solid var(--line)}
.legal section:first-of-type{border-top:none;padding-top:0}
.legal h2{
  margin:0 0 1.2rem;color:var(--ink-strong);
  font-size:2.2rem;font-weight:600;letter-spacing:-.02em;line-height:1.15;
  display:flex;align-items:baseline;gap:1rem;
}
.legal h2 .num{
  color:var(--blue);font-size:1.5rem;font-weight:600;
  min-width:2.6rem;
}
.legal p{margin:0 0 1.2rem;font-size:1.7rem;color:#33373d}
.legal p:last-child{margin-bottom:0}
.legal ul{margin:0;padding:0;list-style:none;display:grid;gap:1.1rem}
.legal ul li{
  position:relative;padding-left:2.6rem;font-size:1.7rem;color:#33373d;
}
.legal ul li::before{
  content:"";position:absolute;left:0;top:.75em;width:1rem;height:1rem;
  border-radius:50%;background:radial-gradient(135% 135% at 50% 50%,#1e48ac 0,#a6b5d8);
}
.legal a[href^="mailto"]{color:var(--blue);font-weight:600}

.legal__foot{
  margin-top:3rem;display:flex;flex-wrap:wrap;gap:1.2rem;align-items:center;justify-content:space-between;
}
.legal__updated{color:var(--muted);font-size:1.5rem}

/* ---------- Footer ---------- */
.footer{padding:5rem 0 3rem}
.footer__logo{display:block;width:22rem;margin-bottom:3rem}
.footer__logo svg{display:block;width:100%;height:auto}
.footer__row{display:grid;grid-template-columns:1fr;gap:3rem;margin-bottom:4rem}
.footer__title{font-size:1.4rem;font-weight:600;letter-spacing:-.01em;color:#000;margin-bottom:1.6rem}
.footer__nav,.footer__contacts{list-style:none;margin:0;padding:0;display:grid;gap:1.4rem}
.footer__nav a{font-size:1.8rem;color:#33373d}
.footer__nav a:hover{color:var(--blue)}
.footer__contacts li{display:flex;gap:1rem;align-items:flex-start;font-size:1.7rem;color:#33373d}
.footer__contacts a{display:flex;gap:1rem;align-items:flex-start;color:#33373d}
.footer__contacts a:hover{color:var(--blue)}
.footer__contacts svg{flex:none;margin-top:.2rem}
.footer__copyright{color:var(--muted);font-size:1.5rem;border-top:1px solid var(--line);padding-top:2.4rem}

/* ---------- Policy links band (below footer, ледь блакитний фон) ---------- */
.policy-band{background:var(--blue-tint);border-top:1px solid var(--blue-tint-2)}
.policy-band__inner{
  display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:1.2rem 2.4rem;
  padding:2.2rem 2rem;text-align:center;
}
.policy-band a{
  font-size:1.5rem;font-weight:600;color:var(--blue);
  display:inline-flex;align-items:center;gap:.6rem;
}
.policy-band a:hover{text-decoration:underline}
.policy-band .dot{width:.5rem;height:.5rem;border-radius:50%;background:var(--blue-soft)}
.policy-band .muted{color:var(--muted);font-weight:500}

@media (min-width:768px){
  .footer__row{grid-template-columns:34rem 1fr;gap:7rem}
  .page-hero{padding:7rem 0 3rem}
}
