/* ============================================================
   Planet VPN — style.css
   Design source: planet-freevpn.ru
   Mode C (service) — VPN/ВПН allowed
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg-white:    #FCFCFF;
  --bg-blue:     #F1F4FB;
  --navy:        #1D253A;
  --dark:        #1D1D35;
  --blue:        #5A78A6;
  --blue-light:  #879EC1;
  --green:       #87AB49;
  --green-hover: #9BC256;
  --red:         #FB1B43;
  --red-hover:   #FF3C5E;
  --border:      #C2CCDF;
  --text-muted:  #44516C;
  --card-bg:     #F1F4FB;
  --radius:      24px;
  --radius-sm:   12px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--bg-white);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; vertical-align: middle; }
ul { list-style: none; }

/* ── Container ─────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: background .2s, transform .15s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-red {
  background: var(--red);
  color: #fff;
}
.btn-red:hover { background: var(--red-hover); }
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-white {
  background: #fff;
  color: var(--navy);
}
.btn-white:hover { background: var(--bg-blue); }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ── Header ────────────────────────────────────────────────── */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.logo svg { height: 32px; width: auto; }
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  color: rgba(255,255,255,.8);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}
.nav a:hover { color: #fff; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  background: var(--bg-blue);
  padding: 64px 0 56px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(90,120,166,.12);
  color: var(--blue);
  border: 1px solid rgba(90,120,166,.25);
  border-radius: 40px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--dark);
}
.hero h1 .accent { color: var(--red); }
.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.65;
}
.hero-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 32px;
}
.hero-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}
.hero-check::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M4 9l3.5 3.5L14 6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-trial {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
}
.hero-trial strong { color: var(--green); }
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hero-card {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: 0 2px 20px rgba(90,120,166,.12);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-card-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-blue);
  border-radius: var(--radius-sm);
}
.hero-card-text strong {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
}
.hero-card-text span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Platform Icons ────────────────────────────────────────── */
.platforms {
  background: #fff;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.platforms-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.platforms-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-right: 8px;
  white-space: nowrap;
}
.platform-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 40px;
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all .2s;
  cursor: default;
}
.platform-icon:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--bg-blue);
}
.platform-icon svg { width: 16px; height: 16px; }

/* ── Banners grid ──────────────────────────────────────────── */
.banners {
  background: var(--bg-white);
  padding: 56px 0;
}
.banners-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.banner {
  border-radius: var(--radius);
  padding: 40px;
  overflow: hidden;
  position: relative;
}
.banner-main {
  grid-row: 1 / 3;
  background: var(--navy);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}
.banner-main h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}
.banner-main p {
  font-size: 15px;
  color: rgba(255,255,255,.75);
  margin-bottom: 28px;
}
.banner-green {
  background: #1D2E16;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 120px;
}
.banner-green-icon {
  font-size: 36px;
  flex-shrink: 0;
}
.banner-green h3 { font-size: 18px; font-weight: 700; }
.banner-green p { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 4px; }
.banner-gray {
  background: var(--bg-blue);
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 120px;
}
.banner-gray-icon {
  font-size: 36px;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-gray h3 { font-size: 18px; font-weight: 700; color: var(--dark); }
.banner-gray p { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ── Propositions ──────────────────────────────────────────── */
.propositions {
  background: var(--bg-blue);
  padding: 64px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-label {
  display: inline-block;
  background: rgba(90,120,166,.1);
  color: var(--blue);
  border-radius: 40px;
  padding: 4px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 12px;
}
.props-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.prop-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.prop-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: var(--bg-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.prop-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.prop-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Advantages chain ──────────────────────────────────────── */
.adv-chain {
  background: var(--navy);
  padding: 64px 0;
}
.adv-chain-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.adv-chain h2 {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
}
.adv-faq-list { display: flex; flex-direction: column; gap: 16px; }
.adv-faq-item {
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.adv-faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
}
.adv-faq-q::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255,255,255,.6);
  border-bottom: 2px solid rgba(255,255,255,.6);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform .25s;
}
.adv-faq-item.open .adv-faq-q::after { transform: rotate(-135deg); }
.adv-faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
  padding: 0 24px;
  transition: max-height .3s ease, padding .3s ease;
}
.adv-faq-item.open .adv-faq-a {
  max-height: 200px;
  padding: 0 24px 20px;
}
.adv-chain-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-box {
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  padding: 28px 24px;
  text-align: center;
}
.stat-num {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--green-hover);
  line-height: 1.1;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-top: 8px;
}

/* ── Pricing ───────────────────────────────────────────────── */
.pricing {
  background: var(--bg-white);
  padding: 72px 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 780px;
  margin: 40px auto 0;
}
.price-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: border-color .2s, box-shadow .2s;
  position: relative;
}
.price-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 24px rgba(90,120,166,.15);
}
.price-card.featured {
  border-color: var(--red);
  box-shadow: 0 4px 28px rgba(251,27,67,.15);
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  border-radius: 40px;
  padding: 4px 16px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.price-period {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 12px;
}
.price-amount {
  font-size: 52px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
}
.price-amount sup { font-size: 22px; vertical-align: super; }
.price-saving {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  min-height: 20px;
  margin-bottom: 24px;
}
.price-btn {
  display: block;
  background: var(--red);
  color: #fff;
  border-radius: 40px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  transition: background .2s;
  text-decoration: none;
}
.price-btn:hover { background: var(--red-hover); }
.trial-note {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-muted);
}
.trial-note strong { color: var(--dark); }

/* ── Service Advantages ────────────────────────────────────── */
.service-adv {
  background: var(--bg-blue);
  padding: 72px 0;
}
.svc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}
.svc-block:last-child { margin-bottom: 0; }
.svc-block.reverse .svc-img { order: -1; }
.svc-text h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}
.svc-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.svc-checks { display: flex; flex-direction: column; gap: 10px; }
.svc-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}
.svc-check::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M4 10l4 4L16 6' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.svc-img {
  background: var(--navy);
  border-radius: var(--radius);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: rgba(255,255,255,.15);
  overflow: hidden;
}
.svc-img-inner {
  text-align: center;
  padding: 40px;
}
.svc-img-icon {
  font-size: 64px;
  display: block;
  margin-bottom: 12px;
}
.svc-img-label {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  font-weight: 600;
}

/* ── Referral ──────────────────────────────────────────────── */
.referral {
  background: var(--bg-white);
  padding: 72px 0;
}
.referral-box {
  background: var(--bg-blue);
  border-radius: var(--radius);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
}
.referral-steps { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.referral-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-text strong { display: block; font-weight: 700; font-size: 15px; color: var(--dark); }
.step-text span { font-size: 13px; color: var(--text-muted); }
.referral-bonus {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  color: #fff;
  min-width: 220px;
}
.bonus-emoji { font-size: 40px; margin-bottom: 12px; }
.bonus-title { font-size: 14px; color: rgba(255,255,255,.6); margin-bottom: 8px; }
.bonus-highlight {
  display: block;
  font-size: 42px;
  font-weight: 800;
  color: var(--green-hover);
  line-height: 1.1;
  margin-bottom: 12px;
}
.bonus-desc { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.5; }

/* ── Download ──────────────────────────────────────────────── */
.download {
  background: var(--bg-blue);
  padding: 72px 0;
}
.download-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.download-intro h3 { font-size: 22px; font-weight: 800; color: var(--dark); }
.download-intro p { font-size: 14px; color: var(--text-muted); margin-top: 6px; }
.download-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.dl-card {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 24px 16px;
  text-align: center;
  border: 1px solid var(--border);
  transition: box-shadow .2s, border-color .2s;
}
.dl-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(90,120,166,.12);
}
.dl-icon { width: 40px; height: 40px; margin: 0 auto 10px; display: block; }
.dl-name { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.dl-version { font-size: 12px; color: var(--text-muted); margin-bottom: 14px; }
.dl-btn {
  display: block;
  background: var(--navy);
  color: #fff;
  border-radius: 40px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition: background .2s;
  text-decoration: none;
}
.dl-btn:hover { background: var(--blue); }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq {
  background: var(--bg-white);
  padding: 72px 0;
}
.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,3,.4,1);
}
.faq-item:hover { transform: scale(1.01); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  padding: 24px 28px;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
}
.faq-q::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--dark);
  border-bottom: 2px solid var(--dark);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-q.open::after { transform: rotate(-135deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 28px;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-a.open {
  max-height: 200px;
  padding: 0 28px 24px;
}

/* ── CTA Section ───────────────────────────────────────────── */
.cta-section {
  background: var(--navy);
  padding: 72px 0;
  text-align: center;
}
.cta-section .section-title { color: #fff; }
.cta-section .section-sub { color: rgba(255,255,255,.7); }
.cta-section .btn-red { margin-top: 32px; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 56px 0 32px;
  color: rgba(255,255,255,.75);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
}
.footer-logo-wrap svg { height: 30px; }
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  transition: color .2s;
  line-height: 1.4;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,.35); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .download-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { grid-template-columns: 1fr 1fr; }
  .hero-checks { grid-template-columns: 1fr; }
  .banners-grid { grid-template-columns: 1fr; }
  .banner-main { grid-row: auto; }
  .props-grid { grid-template-columns: 1fr; }
  .adv-chain-inner { grid-template-columns: 1fr; }
  .adv-chain-stats { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 320px; }
  .svc-block { grid-template-columns: 1fr; }
  .svc-block.reverse .svc-img { order: 0; }
  .referral-box { grid-template-columns: 1fr; }
  .download-intro { flex-direction: column; align-items: flex-start; }
  .download-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav { display: none; }
  .menu-toggle { display: flex; }
}
@media (max-width: 480px) {
  .hero-visual { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .adv-chain-stats { grid-template-columns: 1fr; }
  .download-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}


/* === SEO Block === */
.seo-block{padding:40px 20px;border-top:1px solid rgba(128,128,128,0.15)}
.seo-block-wrap{max-width:960px;margin:0 auto}
.seo-block-label{font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:#888;margin:0 0 14px}
.seo-block-links{list-style:none;padding:0;margin:0;display:flex;flex-wrap:wrap;gap:4px 18px}
.seo-block-links li a{font-size:13px;line-height:1.9;color:#4a90e2;text-decoration:none}
.seo-block-links li a:hover{text-decoration:underline}
