:root{
  /* Light, warm, senior-friendly palette */
  --bg0:#f7fbff;
  --bg1:#f2f7ff;
  --card:#ffffff;
  --text:#1d2a3a;
  --muted:#526377;
  --line:rgba(16, 38, 66, .12);

  --accent:#2d7ef7;
  --accent2:#7a4cf4;
  --accent3:#20b486;

  --radius:18px;
  --shadow: 0 12px 28px rgba(16, 38, 66, .10);
  --shadow2: 0 18px 46px rgba(16, 38, 66, .12);
  --max: 1600px;

  --focus: 0 0 0 4px rgba(45,126,247,.18);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 520px at 15% 0%, rgba(45,126,247,.16), transparent 55%),
    radial-gradient(820px 520px at 90% 10%, rgba(122,76,244,.14), transparent 60%),
    radial-gradient(760px 520px at 60% 100%, rgba(32,180,134,.12), transparent 58%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

/* Global */
a{ color: var(--accent); text-decoration:none; }
a:hover{ text-decoration:underline; }
.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}
.muted{ color: var(--muted); }
.small{ font-size:.95rem; line-height:1.55; }
hr.sep{
  border:0;
  border-top:1px solid var(--line);
  margin: 24px 0;
}

:focus-visible{
  outline: none;
  box-shadow: var(--focus);
  border-radius: 12px;
}

/* Header */
.site-header{
  position: sticky;
  top:0;
  z-index:50;
  background: rgba(247, 251, 255, .82);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color: inherit;
}
.brand-mark{
  width:44px;
  height:44px;
  border-radius: 14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  letter-spacing:.5px;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(45,126,247,.95), rgba(122,76,244,.92));
  box-shadow: 0 10px 22px rgba(45,126,247,.20);
}
.brand-text .brand-name{ font-weight:800; display:block; }
.brand-text .brand-tagline{ display:block; margin-top:2px; color: var(--muted); font-size:.9rem; }

.site-nav{
  display:flex;
  align-items:center;
  gap:8px;
}
.site-nav a{
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text);
  border:1px solid transparent;
}
.site-nav a:hover{
  border-color: var(--line);
  background: rgba(255,255,255,.60);
  text-decoration:none;
}
.site-nav a.active{
  border-color: rgba(45,126,247,.30);
  background: rgba(45,126,247,.10);
  color: var(--text);
}
.nav-cta{
  color: #fff !important;
  border: 1px solid rgba(45,126,247,.28) !important;
  background: linear-gradient(135deg, rgba(45,126,247,.92), rgba(122,76,244,.88)) !important;
  box-shadow: 0 14px 28px rgba(45,126,247,.18);
}

.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.75);
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  height:2px;
  margin:7px 10px;
  background: rgba(29,42,58,.80);
  border-radius:2px;
}

.header-note{
  background: rgba(255,255,255,.55);
  border-top: 1px solid var(--line);
}
.header-note p{
  margin:0;
  padding: 10px 0;
  color: var(--muted);
  font-size: .95rem;
}

/* Main (default for inner pages) */
main{ padding: 28px 0 56px; }

/* Cards (general) */
.card{
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Buttons */
.actions{ display:flex; gap:12px; flex-wrap:wrap; align-items:center; }
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.75);
  cursor:pointer;
  font-weight: 700;
  color: var(--text);
}
.btn:hover{
  background: rgba(102, 165, 243, 0.92);
  box-shadow: 0 12px 24px rgba(16,38,66,.10);
  text-decoration:none;
}
.btn-primary{
  color:#ffffff;
  border: 1px solid rgba(45,126,247,.25);
  background: linear-gradient(135deg, rgba(45,126,247,.92), rgba(122,76,244,.88));
  box-shadow: 0 16px 32px rgba(45,126,247,.18);
}
.btn-primary:hover{ filter: saturate(1.05); }

/* =========================================================
   INDEX: one scroll + 2 full-screen sections + checker info
========================================================= */
body[data-page="index"] main{
  padding: 0;
}

body[data-page="index"]{
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

@media (max-width: 980px){
  body[data-page="index"]{
    scroll-snap-type: y proximity;
  }
}

/* each section is a “screen” */
body[data-page="index"] main > section{
  min-height: calc(100vh - var(--header-h, 0px));
  display:flex;
  align-items:center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 32px 0;
}

@media (max-width: 720px){
  body[data-page="index"] main > section{
    padding: 22px 0;
  }
}

/* ---------------- HERO (index) ---------------- */
body[data-page="index"] .hero-wrap{
  position: relative;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

body[data-page="index"] .hero-wrap::before{
  content:"";
  position:absolute;
  left: -26px;
  right: -26px;
  top: -24px;
  bottom: -24px;
  border-radius: 36px;

  background:
    radial-gradient(980px 560px at 18% 18%, rgba(45,126,247,.18), transparent 62%),
    radial-gradient(980px 580px at 86% 20%, rgba(122,76,244,.16), transparent 64%),
    radial-gradient(1080px 700px at 60% 115%, rgba(32,180,134,.14), transparent 68%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));

  box-shadow:
    0 26px 74px rgba(16,38,66,.12),
    0 1px 0 rgba(255,255,255,.75) inset;
}

body[data-page="index"] .hero-wrap > *{
  position: relative;
  z-index: 1;
}

body[data-page="index"] .hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 36px;
  align-items:center;
  padding: 38px;
}

body[data-page="index"] .hero h1{
  margin: 0 0 12px;
  font-size: clamp(2.0rem, 3.2vw, 3.0rem);
  line-height: 1.12;
  letter-spacing: -0.35px;
}

body[data-page="index"] .hero p{
  margin: 0 0 18px;
  max-width: 72ch;
  color: rgba(29,42,58,.72);
  font-size: 1.10rem;
  line-height: 1.62;
}

body[data-page="index"] .hero-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 14px;
}

body[data-page="index"] .pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255,255,255,.80);
  box-shadow:
    0 12px 22px rgba(16,38,66,.10),
    0 1px 0 rgba(255,255,255,.80) inset;
  color: rgba(29,42,58,.70);
  font-weight: 700;
  font-size: .96rem;
}
body[data-page="index"] .pill::before{
  content:"";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(45,126,247,.88), rgba(122,76,244,.76));
  box-shadow: 0 6px 14px rgba(45,126,247,.22);
}

/* hero image */
body[data-page="index"] .hero-visual--image{
  display:flex;
  align-items:center;
  justify-content:center;
  border: 0;
  background: transparent;
  box-shadow: none;
  min-height: 360px;
}
body[data-page="index"] .hero-visual--image img{
  width: 100%;
  max-width: 760px;
  height: auto;
  display:block;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(16,38,66,.22));
}

/* ---------------- INFO (index) ---------------- */
body[data-page="index"] .info-wrap{
  margin-top: 0;
  padding: 28px;

}

/* INFO section header — крупно, по центру (desktop) */
body[data-page="index"] .info-head{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  margin-bottom: 22px;
}

body[data-page="index"] .info-head h2{
  margin: 0;
  font-size: clamp(2.0rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.35px;
  max-width: 22ch;
}

body[data-page="index"] .info-head p{
  margin: 0;
  max-width: 68ch;
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(29,42,58,.72);
}

body[data-page="index"] .info-head .actions{
  justify-content: center;
  margin-top: 6px;
}

/* Tablet */
@media (max-width: 980px){
  body[data-page="index"] .info-head h2{
    font-size: clamp(1.75rem, 4vw, 2.2rem);
    max-width: none;
  }
}

/* Mobile */
@media (max-width: 720px){
  body[data-page="index"] .info-head{
    text-align: left;
    align-items: flex-start;
  }

  body[data-page="index"] .info-head .actions{
    justify-content: flex-start;
  }
}


/* Checker layout */
body[data-page="index"] .info-checker{
  display:flex;
  flex-direction:column;
  gap: 26px;
  margin-top: 22px;
}

body[data-page="index"] .info-item{ display:flex; }
body[data-page="index"] .info-item.left{ justify-content:flex-start; }
body[data-page="index"] .info-item.right{ justify-content:flex-end; }

body[data-page="index"] .info-text{
  width: 100%;
  max-width: 920px;
  padding: 22px 26px;
  border-radius: 28px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 18px 46px rgba(16,38,66,.10);
  position: relative;
}

body[data-page="index"] .info-text::before{
  content:"";
  position:absolute;
  left: 18px;
  top: 18px;
  bottom: 18px;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(45,126,247,.55), rgba(122,76,244,.35));
  opacity: .7;
}

body[data-page="index"] .info-text h3{
  margin: 0 0 10px;
  padding-left: 18px;
  font-size: 1.28rem;
  letter-spacing: -0.2px;
}

body[data-page="index"] .info-text p{
  margin: 0 0 10px;
  padding-left: 18px;
  color: rgba(29,42,58,.72);
  line-height: 1.68;
  font-size: 1.03rem;
}

/* =========================================================
   Generic content pages
========================================================= */
.page-title{ margin:0 0 16px; font-size: 1.85rem; }
.content{ padding: 22px; }
.content h2{ margin: 18px 0 10px; }
.content p, .content li{ color: var(--muted); line-height:1.65; font-size: 1.02rem; }

/* Two-column blocks used in quiz page */
.kv{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.kv .card{
  padding: 18px;
  background: rgba(255,255,255,.86);
}

/* Footer */
.site-footer{
  border-top:1px solid var(--line);
  background: rgba(255,255,255,.72);
  padding: 26px 0 10px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 18px;
}
.footer-brand{ font-weight: 900; margin-bottom: 6px; }
.footer-title{ font-weight: 800; margin-bottom: 10px; }
.footer-links{ list-style:none; padding:0; margin:0; }
.footer-links li{ margin: 8px 0; }
.footer-links a{ color: var(--muted); }
.footer-links a:hover{ color: var(--text); text-decoration:none; }

.footer-disclaimer{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* Responsive */
@media (max-width: 980px){
  main{ padding: 22px 0 46px; }
  .kv{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }

  /* index: center info items + reduce paddings */
  body[data-page="index"] .hero-grid{
    grid-template-columns: 1fr;
    padding: 22px;
    gap: 18px;
  }
  body[data-page="index"] .hero-wrap::before{
    left: -14px;
    right: -14px;
    top: -14px;
    bottom: -14px;
    border-radius: 28px;
  }
  body[data-page="index"] .hero-visual--image{
    min-height: auto;
    margin-top: 6px;
  }
  body[data-page="index"] .hero-visual--image img{
    max-width: 520px;
  }

  body[data-page="index"] .info-wrap{
    padding: 18px;
    border-radius: 26px;
  }
  body[data-page="index"] .info-item{
    justify-content: center !important;
  }
  body[data-page="index"] .info-text{
    max-width: 100%;
    padding: 18px 18px;
  }
  body[data-page="index"] .info-text::before{
    left: 14px;
    top: 14px;
    bottom: 14px;
  }
  body[data-page="index"] .info-text h3,
  body[data-page="index"] .info-text p{
    padding-left: 16px;
  }
}

@media (max-width: 720px){
  .container{ width: min(var(--max), calc(100% - 28px)); }
  .nav-toggle{ display:block; }
  .site-nav{
    position:absolute;
    right: 14px;
    top: 66px;
    width: min(380px, calc(100% - 28px));
    padding: 10px;
    border-radius: 18px;
    border:1px solid var(--line);
    background: rgba(247,251,255,.94);
    box-shadow: var(--shadow);
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
  }
  .site-nav.open{ display:flex; }
  .site-nav a{ width:100%; }

  /* index typography */
  body[data-page="index"] .hero-grid{
    padding: 18px;
  }
  body[data-page="index"] .hero h1{
    font-size: clamp(1.7rem, 6vw, 2.2rem);
  }
  body[data-page="index"] .hero p{
    font-size: 1.04rem;
  }
  body[data-page="index"] .hero-visual--image img{
    max-width: 360px;
  }

  .footer-grid{ grid-template-columns: 1fr; }
}
/* Brand logo instead of NH letters */
.brand-mark--logo{
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.brand-mark--logo img{
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}
/* =========================================================
   EDUKACJA: magazine UI enhancements (only this page)
   Applies only when body[data-page="edukacja"]
========================================================= */

body[data-page="edukacja"] .page-title{
  font-size: clamp(2.0rem, 3.2vw, 2.8rem);
  letter-spacing: -0.35px;
  margin-bottom: 8px;
}

body[data-page="edukacja"] .content{
  position: relative;
}

/* ---------- Mini-magazine cards (top) ---------- */
/* Usage: wrap a set of cards in <div class="edu-mag" role="list"> ... </div> */
body[data-page="edukacja"] .edu-mag{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 16px;
}

body[data-page="edukacja"] .edu-card{
  grid-column: span 4;
  border-radius: 18px;
  border: 1px solid rgba(16,38,66,.10);
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 34px rgba(16,38,66,.10);
  overflow: hidden;
  padding: 16px;
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease;
}

body[data-page="edukacja"] .edu-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(16,38,66,.14);
}

body[data-page="edukacja"] .edu-card .edu-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(45,126,247,.10);
  border: 1px solid rgba(45,126,247,.16);
  color: rgba(29,42,58,.75);
  font-weight: 750;
  font-size: .9rem;
}

body[data-page="edukacja"] .edu-card .edu-tag::before{
  content:"";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(45,126,247,.90), rgba(122,76,244,.78));
  box-shadow: 0 6px 14px rgba(45,126,247,.22);
}

body[data-page="edukacja"] .edu-card h3{
  margin: 10px 0 8px;
  font-size: 1.08rem;
  letter-spacing: -0.15px;
}

body[data-page="edukacja"] .edu-card p{
  margin: 0 0 10px;
  color: rgba(29,42,58,.70);
  line-height: 1.58;
}

body[data-page="edukacja"] .edu-card a{
  font-weight: 800;
  text-decoration: none;
}

body[data-page="edukacja"] .edu-card a:hover{
  text-decoration: underline;
}

/* gradient accent corner */
body[data-page="edukacja"] .edu-card::after{
  content:"";
  position:absolute;
  right:-40px;
  top:-40px;
  width: 140px;
  height: 140px;
  background:
    radial-gradient(circle at 30% 30%, rgba(45,126,247,.25), transparent 62%),
    radial-gradient(circle at 70% 60%, rgba(122,76,244,.18), transparent 64%);
  transform: rotate(10deg);
}

/* ---------- Anchor badges ---------- */
/* Usage: <a class="anchor-badge" href="#inflacja">Inflacja</a> */
body[data-page="edukacja"] .anchor-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 12px;
}

body[data-page="edukacja"] .anchor-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(16,38,66,.10);
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 22px rgba(16,38,66,.08);
  color: rgba(29,42,58,.80);
  font-weight: 750;
  text-decoration: none;
}

body[data-page="edukacja"] .anchor-badge:hover{
  border-color: rgba(45,126,247,.22);
  box-shadow: 0 16px 30px rgba(16,38,66,.12);
  text-decoration: none;
}

body[data-page="edukacja"] .anchor-badge::before{
  content:"↳";
  font-weight: 900;
  color: rgba(45,126,247,.90);
}

/* ---------- Note block (“notatki” with icon) ---------- */
/* Usage:
   <div class="edu-note edu-note--info">...</div>
   variants: --info, --tip, --warn
*/
body[data-page="edukacja"] .edu-note{
  position: relative;
  padding: 16px 16px 16px 52px;
  border-radius: 18px;
  border: 1px solid rgba(16,38,66,.10);
  background: rgba(255,255,255,.82);
  box-shadow: 0 14px 28px rgba(16,38,66,.09);
  margin: 16px 0;
}

body[data-page="edukacja"] .edu-note::before{
  content:"";
  position:absolute;
  left: 16px;
  top: 16px;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(45,126,247,.92), rgba(122,76,244,.82));
  box-shadow: 0 12px 24px rgba(45,126,247,.16);
}

body[data-page="edukacja"] .edu-note::after{
  /* icon */
  content:"i";
  position:absolute;
  left: 16px;
  top: 16px;
  width: 28px;
  height: 28px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  color: #fff;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

body[data-page="edukacja"] .edu-note h3{
  margin: 0 0 6px;
  font-size: 1.05rem;
}

body[data-page="edukacja"] .edu-note p{
  margin: 0;
  color: rgba(29,42,58,.72);
  line-height: 1.6;
}

/* variants */
body[data-page="edukacja"] .edu-note--tip::after{ content:"✓"; }
body[data-page="edukacja"] .edu-note--warn::after{ content:"!"; }
body[data-page="edukacja"] .edu-note--warn::before{
  background: linear-gradient(135deg, rgba(255,140,60,.92), rgba(45,126,247,.70));
}
body[data-page="edukacja"] .edu-note--tip::before{
  background: linear-gradient(135deg, rgba(32,180,134,.92), rgba(45,126,247,.74));
}

/* ---------- Styled blockquote ---------- */
body[data-page="edukacja"] blockquote{
  margin: 16px 0;
  padding: 14px 16px 14px 54px;
  border-radius: 18px;
  border: 1px solid rgba(16,38,66,.10);
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 24px rgba(16,38,66,.08);
  color: rgba(29,42,58,.74);
  position: relative;
}

body[data-page="edukacja"] blockquote::before{
  content:"“”";
  position:absolute;
  left: 16px;
  top: 12px;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  color: rgba(45,126,247,.55);
}

/* ---------- Checklist style for UL ---------- */
/* Usage: <ul class="edu-check"> ... </ul> */
body[data-page="edukacja"] .edu-check{
  list-style: none;
  padding-left: 0;
  margin: 12px 0;
  display: grid;
  gap: 10px;
}

body[data-page="edukacja"] .edu-check li{
  position: relative;
  padding: 10px 12px 10px 44px;
  border-radius: 16px;
  border: 1px solid rgba(16,38,66,.10);
  background: rgba(255,255,255,.82);
  color: rgba(29,42,58,.74);
  line-height: 1.6;
}

body[data-page="edukacja"] .edu-check li::before{
  content:"✓";
  position:absolute;
  left: 14px;
  top: 10px;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  color:#fff;
  background: linear-gradient(135deg, rgba(32,180,134,.92), rgba(45,126,247,.74));
  box-shadow: 0 10px 20px rgba(32,180,134,.14);
}

/* ---------- Smooth anchor offset under sticky header ---------- */
body[data-page="edukacja"] [id]{
  scroll-margin-top: 110px;
}

/* ---------- Responsive tweaks ---------- */
@media (max-width: 980px){
  body[data-page="edukacja"] .edu-card{ grid-column: span 6; }
}
@media (max-width: 720px){
  body[data-page="edukacja"] .edu-mag{ gap: 12px; }
  body[data-page="edukacja"] .edu-card{ grid-column: span 12; }
  body[data-page="edukacja"] .anchor-badge{ width: 100%; justify-content: space-between; }
}
/* =========================================================
   Cookie modal (session-only)
========================================================= */
body.cookie-locked{
  overflow: hidden;
}

body.cookie-locked main,
body.cookie-locked .site-header,
body.cookie-locked .site-footer{
  filter: blur(10px);
  pointer-events: none;
  user-select: none;
}

.cookie-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.cookie-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(16,38,66,.45);
  backdrop-filter: blur(4px);
}

.cookie-modal__dialog{
  position: relative;
  width: min(720px, calc(100% - 28px));
  margin: 10vh auto 0;
  border-radius: 24px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.60);
  box-shadow: 0 30px 90px rgba(16,38,66,.28);
  padding: 18px;
}

.cookie-modal__head{
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cookie-modal__icon{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45,126,247,.12);
  border: 1px solid rgba(45,126,247,.20);
  font-size: 1.2rem;
}

.cookie-modal__title{
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: -0.2px;
}

.cookie-modal__subtitle{
  margin-top: 4px;
  color: rgba(29,42,58,.74);
  line-height: 1.45;
}

.cookie-modal__text{
  margin-top: 12px;
}

.cookie-modal__list{
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(29,42,58,.74);
  line-height: 1.55;
}

.cookie-modal__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

@media (max-width: 720px){
  .cookie-modal__dialog{ margin: 7vh auto 0; padding: 16px; }
  .cookie-modal__actions .btn{ width: 100%; }
}
.contact-hidden{ display:none; }
.contact-visible{ display:block; }
/* ===== Contact form status ===== */
.form-status{
  display: none;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.82);
  color: var(--text);
  box-shadow: var(--shadow);
}

.form-status.is-ok{
  display:block;
  border-color: rgba(32,180,134,.35);
  background: rgba(32,180,134,.08);
}

.form-status.is-err{
  display:block;
  border-color: rgba(220,53,69,.25);
  background: rgba(220,53,69,.08);
}

.input-invalid{
  border-color: rgba(220,53,69,.35) !important;
  box-shadow: 0 0 0 4px rgba(220,53,69,.10) !important;
}
