/* Lightweight stylesheet shared by /vpn-iphone, /vpn-android,
   /razblokirovat-youtube and any other long-tail SEO pages. Kept
   intentionally small so each page Time-To-First-Byte stays low —
   crawlers (and LLMs that fetch the URL) read fast pages first. */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #06091A;
  --orange: #EA9B25;
  --green: #34D399;
  --white: #F7F7F7;
  --white60: rgba(247, 247, 247, 0.6);
  --white30: rgba(247, 247, 247, 0.3);
  --white10: rgba(247, 247, 247, 0.1);
  --white5: rgba(247, 247, 247, 0.05);
}

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(160deg, #0F1B3D 0%, #1A0B2E 35%, #0D1538 65%, #06091A 100%);
  background-attachment: fixed;
  color: var(--white);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

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

.seo-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

.seo-header { margin-bottom: 40px; }
.seo-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}
.seo-brand:hover { text-decoration: none; }
.seo-logo { width: 32px; height: 32px; border-radius: 8px; }
.seo-brand .orange { color: var(--orange); }

.seo-hero {
  text-align: center;
  margin-bottom: 56px;
}
.seo-hero h1 {
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.seo-hero .lead {
  color: var(--white60);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 28px;
}

.seo-cta {
  display: inline-block;
  background: var(--orange);
  color: #06091A;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 14px;
  transition: transform 0.12s, box-shadow 0.2s;
}
.seo-cta:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(234, 155, 37, 0.35);
}
.seo-cta-sub {
  margin-top: 12px;
  color: var(--white30);
  font-size: 13px;
}

.seo-alt-cta {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--white30);
}
.seo-alt-cta a {
  color: var(--orange);
  font-weight: 600;
}
.seo-alt-cta span { margin: 0 6px; opacity: 0.5; }

.seo-section {
  margin-bottom: 48px;
  padding: 24px;
  background: var(--white5);
  border: 1px solid var(--white10);
  border-radius: 24px;
}
.seo-section h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}
.seo-section h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.seo-section p { color: var(--white60); margin-bottom: 12px; }
.seo-section p:last-child { margin-bottom: 0; }

.seo-list {
  list-style: none;
  padding: 0;
}
.seo-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--white60);
}
ul.seo-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
ol.seo-list { counter-reset: step; }
ol.seo-list li {
  counter-increment: step;
  padding-left: 32px;
}
ol.seo-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: #06091A;
  font-weight: 700;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.seo-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .seo-cards { grid-template-columns: 1fr 1fr; }
}
.seo-card {
  padding: 18px;
  background: var(--white5);
  border: 1px solid var(--white10);
  border-radius: 18px;
}
.seo-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.seo-card .muted {
  font-size: 13px;
  color: var(--white30);
  margin-top: 6px;
}

.badge {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--white10);
  color: var(--white60);
  border: 1px solid var(--white10);
}
.badge.green {
  background: rgba(52, 211, 153, 0.15);
  color: var(--green);
  border-color: rgba(52, 211, 153, 0.3);
}

details {
  padding: 14px 16px;
  background: var(--white5);
  border: 1px solid var(--white10);
  border-radius: 14px;
  margin-bottom: 10px;
}
details[open] { background: rgba(247, 247, 247, 0.07); }
details summary {
  cursor: pointer;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  list-style: none;
  position: relative;
  padding-right: 24px;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  color: var(--white30);
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.2s;
}
details[open] summary::after { transform: rotate(45deg); }
details p {
  color: var(--white60);
  font-size: 13.5px;
  margin-top: 10px;
}

.seo-cta-block {
  text-align: center;
}

/* ── Legal pages (privacy / terms / contacts) ── */
.legal {
  background: var(--white5);
  border: 1px solid var(--white10);
  border-radius: 24px;
  padding: 32px 28px;
}
.legal h1 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  margin-bottom: 8px;
}
.legal h2 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 12px;
}
.legal p, .legal li {
  color: var(--white60);
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
}
.legal ul {
  padding-left: 22px;
  margin-bottom: 12px;
}
.legal ul li { margin-bottom: 6px; list-style: disc; }
.legal-meta {
  color: var(--white30);
  font-size: 13px;
  margin-bottom: 24px;
}
.legal a { color: var(--orange); }
.legal b, .legal strong { color: var(--white); }
.placeholder-warn {
  background: rgba(234, 155, 37, 0.12);
  border: 1px solid rgba(234, 155, 37, 0.3);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--white) !important;
}

/* ── Site-wide footer ── */
.site-footer {
  margin-top: 48px;
  padding: 24px 16px;
  border-top: 1px solid var(--white10);
  text-align: center;
  font-size: 12.5px;
  color: var(--white30);
}
.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}
.site-footer-links a {
  color: var(--white60);
  text-decoration: none;
}
.site-footer-links a:hover { color: var(--white); }
.site-footer-copy { color: var(--white30); }
.seo-cta-block h2 { margin-bottom: 18px; }
.seo-cta-block .muted { margin-top: 18px; }
.seo-cta-block .muted a { color: var(--white30); }
