/* ============================================================
   Политика конфиденциальности — изолированные стили
   Префикс: pol- (всё под .pol-root)
   ============================================================ */

.pol-root {
  --pol-accent: #FE5D26;
  --pol-accent-hover: #D95427;
  --pol-black: #312D2B;
  --pol-text: #272F3D;
  --pol-bg: #F6F6F6;
  --pol-white: #FFFFFF;
  --pol-border: rgba(49, 45, 43, 0.1);
  --pol-muted: rgba(49, 45, 43, 0.55);
  --pol-card-shadow: 0 1px 4px 0 rgba(49, 45, 43, 0.08);
  --pol-transition: .25s ease;
  --pol-radius-sm: 10px;
  --pol-radius-md: 12px;
  --pol-radius-lg: 24px;

  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--pol-text);
  background-color: var(--pol-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.pol-root *,
.pol-root *::before,
.pol-root *::after {
  box-sizing: border-box;
}

.pol-root a {
  text-decoration: none;
  color: inherit;
}

.pol-root h1,
.pol-root h2,
.pol-root h3,
.pol-root p,
.pol-root ul {
  margin: 0;
  padding: 0;
}

.pol-root ul {
  list-style: none;
}

.pol-container {
  max-width: 1327px; /* контент 1297px (1327 − 2×15) */
  margin: 0 auto;
  padding: 0 15px;
}

/* --- Hero --- */
.pol-hero {
  padding: 36px 0 16px;
  text-align: left;
}

.pol-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(254, 93, 38, 0.1);
  color: var(--pol-accent);
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
}

.pol-hero-title {
  margin-top: 14px;
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  color: var(--pol-black);
  letter-spacing: -0.5px;
}

.pol-hero-subtitle {
  margin-top: 8px;
  font-size: 17px;
  color: var(--pol-muted);
  max-width: 620px;
}

/* --- Document --- */
.pol-doc-wrap {
  padding: 8px 0 56px;
}

.pol-doc {
  max-width: 820px;
  background: var(--pol-white);
  border: 1px solid var(--pol-border);
  border-radius: var(--pol-radius-lg);
  box-shadow: var(--pol-card-shadow);
  padding: 48px 56px;
}

.pol-doc-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: var(--pol-black);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--pol-border);
}

/* .pol-doc-prefix перебивает ресет .pol-root h3 (0,1,1) */
.pol-doc .pol-doc-subtitle {
  font-size: 19px;
  font-weight: 600;
  line-height: 26px;
  color: var(--pol-black);
  margin-top: 20px;
  margin-bottom: 12px;
}

.pol-doc p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--pol-text);
}

.pol-doc p + p {
  margin-top: 18px;
}

.pol-doc a {
  color: var(--pol-accent);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-word;
}

.pol-doc a:hover {
  color: var(--pol-accent-hover);
}

/* --- Список данных --- */
.pol-list {
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.pol-list li {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--pol-text);
}

.pol-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pol-accent);
}

/* --- Callout --- */
.pol-callout {
  display: flex;
  gap: 16px;
  margin: 28px 0;
  padding: 20px 24px;
  background: rgba(254, 93, 38, 0.06);
  border: 1px solid rgba(254, 93, 38, 0.18);
  border-left: 4px solid var(--pol-accent);
  border-radius: var(--pol-radius-md);
}

.pol-callout-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pol-white);
  color: var(--pol-accent);
  border-radius: 50%;
  box-shadow: var(--pol-card-shadow);
}

.pol-callout-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--pol-accent);
  margin-bottom: 6px;
}

.pol-callout-body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--pol-text);
}

.pol-callout-body strong {
  color: var(--pol-black);
  font-weight: 600;
}

/* --- CTA --- */
.pol-cta {
  max-width: 820px;
  margin-top: 24px;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, var(--pol-accent) 30%, #7B2FF2 120%);
  border-radius: var(--pol-radius-lg);
}

.pol-cta-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  color: var(--pol-white);
}

.pol-cta-sub {
  margin-top: 6px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}

.pol-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  background: var(--pol-white);
  color: var(--pol-accent);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--pol-radius-sm);
  transition: background var(--pol-transition), transform var(--pol-transition);
  white-space: nowrap;
}

.pol-btn:hover {
  background: var(--pol-bg);
  transform: translateY(-1px);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 768px) {
  /* перебиваем глобальное style.css: section{margin-bottom:60px} на мобилке */
  .pol-root section {
    margin-bottom: 0;
  }
  .pol-hero {
    padding: 28px 0 12px;
  }

  .pol-hero-title {
    font-size: 28px;
    line-height: 34px;
  }

  .pol-hero-subtitle {
    font-size: 15px;
  }

  .pol-doc {
    padding: 28px 20px;
    border-radius: var(--pol-radius-md);
  }

  .pol-doc-title {
    font-size: 20px;
    line-height: 27px;
  }

  .pol-doc .pol-doc-subtitle {
    font-size: 17px;
  }

  .pol-doc p,
  .pol-list li {
    font-size: 15px;
  }

  .pol-callout {
    flex-direction: column;
    gap: 12px;
    padding: 18px;
  }

  .pol-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    border-radius: var(--pol-radius-md);
  }

  .pol-btn {
    width: 100%;
  }
}
