/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f5f6f8;
  color: #2d2d2d;
  line-height: 1.6;
  font-size: 16px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
.header {
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.header__logo {
  font-family: 'Fira Sans', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #4a4ff0;
}

.header__menu {
  display: flex;
  gap: 1.2rem;
  list-style: none;
}

.header__menu-item a {
  text-decoration: none;
  color: #2d2d2d;
  font-weight: 500;
  transition: color 0.3s ease;
}

.header__menu-item a:hover {
  color: #4a4ff0;
}

/* ===== FOOTER ===== */
.footer {
  background-color: #1a1a1a;
  color: #eaeaea;
  padding: 2rem 0;
}

.footer__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer__logo {
  font-family: 'Fira Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
}

.footer__title {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.footer__menu {
  list-style: none;
}

.footer__menu li {
  margin-bottom: 0.4rem;
}

.footer__menu a {
  color: #eaeaea;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer__menu a:hover {
  color: #4a4ff0;
}

.footer__contacts {
  list-style: none;
}

.footer__contacts li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.footer__contacts i {
  width: 16px;
  height: 16px;
  stroke: #4a4ff0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header__menu {
    flex-direction: column;
    gap: 0.8rem;
  }
}

/* ===== COLOR PALETTE =====
   Головні: индиго #4a4ff0, м'який лиловый #9b8cff, хвойний #0ea5a3, графит #2d2d2d, фон #f5f6f8
*/

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: clip;
  background: radial-gradient(1200px 600px at 10% -10%, rgba(154, 140, 255, 0.18), transparent 60%),
              radial-gradient(900px 500px at 110% 20%, rgba(14, 165, 163, 0.14), transparent 60%);
  padding: 5rem 0 3rem;
}

.hero__container {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  align-items: center;
}

.hero__content {
  max-width: 720px;
}

.hero__title {
  font-family: 'Fira Sans', sans-serif;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero__title-word {
  display: inline-block;
  transform: translateY(16px);
  opacity: 0;
}

.hero__subtitle {
  margin-top: 1rem;
  font-size: 1.075rem;
  color: #4a4a4a;
}

.hero__chips {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.chip--accent {
  border-color: rgba(74, 79, 240, 0.35);
  background: linear-gradient(180deg, #fff, #f4f5ff);
}
.chip:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,0,0,0.08); }
.chip i { width: 16px; height: 16px; stroke: #4a4ff0; }

.hero__cta {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.1rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  border: 1px solid transparent;
}
.btn i { width: 18px; height: 18px; }
.btn--primary {
  background: #4a4ff0;
  color: #fff;
  box-shadow: 0 8px 18px rgba(74,79,240,0.25);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(74,79,240,0.32); }
.btn--ghost {
  background: #fff;
  color: #2d2d2d;
  border-color: rgba(0,0,0,0.12);
}
.btn--ghost:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(0,0,0,0.10); }

.hero__stats {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  color: #2d2d2d;
}
.hero__stat { display: grid; gap: 0.15rem; }
.hero__stat strong { font-size: 1.05rem; }
.hero__stat span { font-size: 0.9rem; color: #555; }

.hero__visual {
  position: relative;
  min-height: 260px;
}

.hero__blob {
  position: absolute;
  inset: -20% -10% auto auto;
  width: min(60vw, 520px);
  height: min(60vw, 520px);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(74,79,240,0.35), rgba(155,140,255,0.25) 40%, rgba(14,165,163,0.18) 70%, transparent 72%);
  filter: blur(18px);
  transform: translate3d(0,0,0) scale(0.9);
  opacity: 0.65;
}

.hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  background: #fff;
}

.hero__card {
  position: absolute;
  right: 6%;
  bottom: -12px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.6rem;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 0.7rem 0.9rem;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
  transform: translateY(12px);
  opacity: 0;
}
.hero__card i { width: 18px; height: 18px; stroke: #0ea5a3; }
.hero__card-title { font-weight: 700; font-size: 0.95rem; }
.hero__card-desc { font-size: 0.85rem; color: #555; }

/* ===== LAYOUT (>= 960px) ===== */
@media (min-width: 960px) {
  .hero__container {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
}

/* ===== TIPS SECTION ===== */
.tips { padding: 3.5rem 0 2.5rem; }
.tips__header { display: grid; gap: 0.6rem; margin-bottom: 1.4rem; }
.tips__title {
  font-family: 'Fira Sans', sans-serif;
  font-size: clamp(1.4rem, 4.5vw, 2rem);
  letter-spacing: -0.01em;
}
.tips__subtitle { color: #4a4a4a; }

.tips__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.tips-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  transition: transform 0.18s ease, box-shadow 0.25s ease;
  opacity: 0; transform: translateY(12px); /* для анімації появи */
}
.tips-card:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(0,0,0,0.08); }

.tips-card__head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}
.tips-card__head i { width: 20px; height: 20px; stroke: #4a4ff0; }
.tips-card__title { font-weight: 700; }

.tips-card__desc { color: #4a4a4a; margin-bottom: 0.6rem; }

.tips-card__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.6rem; list-style: none; }
.tag {
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
  border: 1px dashed rgba(74,79,240,0.35);
  border-radius: 999px;
  background: linear-gradient(180deg, #fff, #f5f7ff);
}

.tips-card__prompt {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
  align-items: start;
}
.prompt {
  display: block;
  padding: 0.7rem;
  background: #fafaff;
  border: 1px solid rgba(74,79,240,0.18);
  border-radius: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, monospace;
  font-size: 0.9rem;
  line-height: 1.45;
  overflow: auto;
  white-space: pre-wrap;
}

.btn--copy {
  background: #ffffff;
  color: #2d2d2d;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  padding: 0.6rem 0.7rem;
  font-weight: 600;
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}
.btn--copy i { width: 16px; height: 16px; }
.btn--copy:hover { transform: translateY(-1px); box-shadow: 0 10px 20px rgba(0,0,0,0.10); }

.tips-card__image {
  margin-top: 0.6rem;
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
  background: #fff;
}

.tips-card__cta {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.9rem;
  text-decoration: none;
  color: #0ea5a3;
  border-bottom: 1px dashed rgba(14,165,163,0.55);
  transition: opacity 0.2s ease;
}
.tips-card__cta:hover { opacity: 0.8; }

/* Поява карток при прокрутці */
.tips-card.is-visible { opacity: 1; transform: translateY(0); }

/* Layout ≥ 720px */
@media (min-width: 720px) {
  .tips__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Layout ≥ 1040px */
@media (min-width: 1040px) {
  .tips__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== TOOLS SECTION ===== */
.tools { padding: 3.5rem 0 2.5rem; background: #fafafa; }
.tools__header { display: grid; gap: 0.8rem; margin-bottom: 1.4rem; }
.tools__title {
  font-family: 'Fira Sans', sans-serif;
  font-size: clamp(1.4rem, 4.5vw, 2rem);
}
.tools__subtitle { color: #4a4a4a; }

.tools__filters { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter-btn {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.filter-btn:hover { background: #f0f1ff; }
.filter-btn.is-active {
  background: #4a4ff0;
  color: #fff;
  border-color: #4a4ff0;
}

.tools__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.tool-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
  transition: transform 0.18s ease, box-shadow 0.25s ease;
}
.tool-card:hover { transform: translateY(-2px); box-shadow: 0 14px 26px rgba(0,0,0,0.08); }

.tool-card__icon {
  width: 42px;
  height: 42px;
  background: #f4f5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 0.6rem;
}
.tool-card__icon i { width: 20px; height: 20px; stroke: #4a4ff0; }

.tool-card__title { font-weight: 700; margin-bottom: 0.3rem; }
.tool-card__desc { font-size: 0.95rem; color: #4a4a4a; margin-bottom: 0.6rem; }

.tool-card__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.8rem; list-style: none; }
.tool-card__cta {
  font-size: 0.9rem;
  text-decoration: none;
  color: #0ea5a3;
  border-bottom: 1px dashed rgba(14,165,163,0.55);
}
.tool-card__cta:hover { opacity: 0.8; }

/* Layout ≥ 720px */
@media (min-width: 720px) {
  .tools__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Layout ≥ 1040px */
@media (min-width: 1040px) {
  .tools__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== CASES SECTION ===== */
.cases { padding: 3.5rem 0 2.5rem; }
.cases__header { display: grid; gap: 0.6rem; margin-bottom: 1.4rem; }
.cases__title {
  font-family: 'Fira Sans', sans-serif;
  font-size: clamp(1.4rem, 4.5vw, 2rem);
}
.cases__subtitle { color: #4a4a4a; }

.cases__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.case-card {
  perspective: 1000px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.case-card.is-visible { opacity: 1; transform: translateY(0); }

.case-card__inner {
  position: relative;
  width: 100%;
  padding-top: 65%;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
  cursor: pointer;
}
.case-card:hover .case-card__inner,
.case-card.is-flipped .case-card__inner {
  transform: rotateY(180deg);
}

.case-card__face {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  backface-visibility: hidden;
  border-radius: 16px;
  padding: 1rem;
  display: grid;
  align-content: center;
  gap: 0.6rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.case-card__face--front {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
}
.case-card__face--back {
  background: linear-gradient(145deg, #4a4ff0, #9b8cff);
  color: #fff;
  transform: rotateY(180deg);
}

.case-card__title { font-weight: 700; }
.case-card__desc { color: #4a4a4a; }
.case-card__face--back p { font-size: 0.95rem; }
.case-card__cta {
  font-size: 0.9rem;
  text-decoration: none;
  color: #fff;
  border-bottom: 1px dashed rgba(255,255,255,0.65);
}
.case-card__cta:hover { opacity: 0.85; }

/* Layout ≥ 720px */
@media (min-width: 720px) {
  .cases__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Layout ≥ 1040px */
@media (min-width: 1040px) {
  .cases__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===== NEWS SECTION ===== */
.news { padding: 3.5rem 0 2.5rem; background: #fff; }
.news__header { display: grid; gap: 0.6rem; margin-bottom: 1rem; }
.news__title {
  font-family: 'Fira Sans', sans-serif;
  font-size: clamp(1.4rem, 4.5vw, 2rem);
}
.news__subtitle { color: #4a4a4a; }

.news__viewport {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  background: linear-gradient(180deg, #fafafa, #ffffff);
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  outline: none;
}
.news__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 88%;
  gap: 0.8rem;
  padding: 0.8rem;
  transform: translateX(0);
  transition: transform 0.4s ease;
}

.news-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}
.news-card__image {
  width: 100%; height: 160px; object-fit: cover;
  background: #eef0ff; display: block;
}
.news-card__body { padding: 0.8rem; display: grid; gap: 0.4rem; }
.news-card__title { font-weight: 700; }
.news-card__desc { color: #4a4a4a; font-size: 0.95rem; }
.news-card__cta {
  font-size: 0.9rem; text-decoration: none; color: #0ea5a3;
  border-bottom: 1px dashed rgba(14,165,163,0.55);
}
.news-card__cta:hover { opacity: 0.85; }

/* Controls */
.news__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center; cursor: pointer;
  border: 1px solid rgba(0,0,0,0.12); background: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}
.news__nav i { width: 18px; height: 18px; stroke: #2d2d2d; }
.news__nav--prev { left: 8px; }
.news__nav--next { right: 8px; }
.news__nav:hover { transform: translateY(calc(-50% - 1px)); }

/* Dots */
.news__dots {
  display: flex; justify-content: center; gap: 6px; margin-top: 0.8rem;
}
.news__dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: rgba(0,0,0,0.15); border: none;
}
.news__dot.is-active { background: #4a4ff0; }

/* ≥ 960px: показывать по 3 карточки */
@media (min-width: 960px) {
  .news__track { grid-auto-columns: calc((100% - 1.6rem) / 3); }
  .news-card__image { height: 150px; }
}

/* 720–960px: по 2 карточки */
@media (min-width: 720px) and (max-width: 959.98px) {
  .news__track { grid-auto-columns: calc((100% - 0.8rem) / 2); }
  .news-card__image { height: 150px; }
}

/* ===== CONTACT SECTION ===== */
.contact { padding: 3.5rem 0 3rem; background: #fafafa; }
.contact__header { display: grid; gap: 0.6rem; margin-bottom: 1.4rem; }
.contact__title {
  font-family: 'Fira Sans', sans-serif;
  font-size: clamp(1.4rem, 4.5vw, 2rem);
}
.contact__subtitle { color: #4a4a4a; }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.contact-form {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}
.contact-form__row { display: grid; gap: 0.35rem; margin-bottom: 0.8rem; }
.contact-form__label { font-weight: 600; font-size: 0.95rem; }
.contact-form__input {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form__input:focus {
  outline: none;
  border-color: #4a4ff0;
  box-shadow: 0 0 0 3px rgba(74,79,240,0.15);
}

.contact-form__error {
  min-height: 1.05em;
  color: #c0362c;
  font-size: 0.85rem;
}

.contact-form__row--captcha .captcha {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
  align-items: center;
}
.captcha__task {
  display: inline-block;
  font-weight: 700;
  background: #f4f5ff;
  border: 1px dashed rgba(74,79,240,0.35);
  border-radius: 10px;
  padding: 0.6rem 0.8rem;
}
.captcha__input { text-align: left; }

.contact-form__agree {
  margin: 0.6rem 0 0.8rem;
}
.checkbox {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: center;
  cursor: pointer;
}
.checkbox input { display: none; }
.checkbox__box {
  width: 18px; height: 18px; border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.25);
  background: #fff; display: inline-block;
  position: relative;
}
.checkbox input:checked + .checkbox__box {
  border-color: #4a4ff0; background: #4a4ff0;
}
.checkbox input:checked + .checkbox__box::after {
  content: ""; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/14px 14px no-repeat;
}
.checkbox__text a { color: #0ea5a3; text-decoration: none; border-bottom: 1px dashed rgba(14,165,163,0.55); }
.checkbox__text a:hover { opacity: 0.85; }

.contact-form__submit { margin-top: 0.4rem; }

.contact-form__status {
  margin-top: 0.8rem;
  min-height: 1.3em;
  font-size: 0.95rem;
}
.contact-form__status--ok {
  color: #0b7d75;
}
.contact-form__status--wait {
  color: #4a4a4a;
}

.contact__aside {
  display: grid;
  gap: 0.6rem;
}
.contact__card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
}
.contact__card i { width: 18px; height: 18px; stroke: #4a4ff0; }

.contact__image {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
  background: #fff;
}

/* Layout ≥ 960px */
@media (min-width: 960px) {
  .contact__grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
  .contact-form { padding: 1.1rem 1.2rem; }
}

/* ===== COOKIE POPUP ===== */
.cookie {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1100;
  padding: 0.75rem;
  background: transparent;
}
.cookie__container {
  width: min(1100px, 92%);
  margin: 0 auto;
  background: #1a1a1a;
  color: #eaeaea;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 0.8rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 14px 36px rgba(0,0,0,0.35);
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.cookie.is-visible .cookie__container { transform: translateY(0); opacity: 1; }
.cookie__text a { color: #9b8cff; text-decoration: none; border-bottom: 1px dashed rgba(155,140,255,0.6); }
.cookie__text a:hover { opacity: 0.85; }
.cookie__btn {
  background: #4a4ff0;
  color: #fff;
  border: 1px solid #4a4ff0;
  border-radius: 10px;
  padding: 0.6rem 0.9rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(74,79,240,0.32);
}
.cookie__btn:hover { transform: translateY(-1px); }

/* ===== POLICY PAGES (универсальные стили) =====
   Ориентированы на HTML-структуру:
   <main>
     <section class="pages">
       <div class="container">
         <h1>...</h1>
         <p>...</p>
         <h2>...</h2>
         <p>...</p>
         <ul> <li><strong>...</strong></li> <li>... <a href="#">...</a></li> </ul>
       </div>
     </section>
   </main>
*/
.pages { padding: 3rem 0; background: #fff; }
.pages .container { max-width: 860px; }
.pages h1 {
  font-family: 'Fira Sans', sans-serif;
  font-size: clamp(1.6rem, 4.8vw, 2.2rem);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.pages h2 {
  margin-top: 1.4rem;
  margin-bottom: 0.6rem;
  font-size: clamp(1.15rem, 3.8vw, 1.4rem);
}
.pages p {
  margin: 0.6rem 0;
  color: #333;
  line-height: 1.7;
}
.pages ul {
  margin: 0.6rem 0 0.8rem 1.1rem;
  display: grid;
  gap: 0.35rem;
}
.pages li { color: #2d2d2d; }
.pages strong { font-weight: 700; }
.pages a {
  color: #0ea5a3;
  text-decoration: none;
  border-bottom: 1px dashed rgba(14,165,163,0.55);
}
.pages a:hover { opacity: 0.85; }

/* Подсветка информационных блоков (если нужно вставлять примечания) */
.pages .note {
  margin: 0.8rem 0;
  padding: 0.8rem 0.9rem;
  background: #f7f8ff;
  border: 1px solid rgba(74,79,240,0.18);
  border-radius: 12px;
}

/* Таблицы внутри страниц политик (на случай, если добавите) */
.pages table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.6rem 0 1rem;
  font-size: 0.95rem;
}
.pages th, .pages td {
  padding: 0.6rem 0.5rem;
  border: 1px solid rgba(0,0,0,0.08);
}
.pages thead th {
  background: #f5f6f8;
  text-align: left;
}

/* Мелкий типографический тримминг */
.pages hr { border: none; height: 1px; background: rgba(0,0,0,0.08); margin: 1rem 0; }
.pages blockquote {
  margin: 0.8rem 0;
  padding: 0.6rem 0.8rem;
  border-left: 3px solid #4a4ff0;
  background: #fafaff;
  color: #444;
  border-radius: 8px;
}
