/*
Theme Name: TIS Dialog Agent
Theme URI: https://tis-dialog.ru/
Author: Codex
Description: Conversion-focused WordPress theme for an agent landing site that collects connection requests for TIS Dialog services.
Version: 1.9.8
Text Domain: tis-dialog-agent
*/

:root {
  --ink: #101b2b;
  --muted: #657386;
  --line: #dce4ec;
  --paper: #f7f9fb;
  --white: #ffffff;
  --navy: #092133;
  --navy-2: #102f45;
  --teal: #163f73;
  --cyan: #8bd7ff;
  --green: #1e5aa8;
  --amber: #1f6feb;
  --shadow: 0 24px 70px rgba(11, 34, 54, .16);
  --soft-shadow: 0 14px 42px rgba(16, 27, 43, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

#request-form {
  scroll-margin-block: 24px;
}

#request-form .request-card {
  transition: box-shadow .28s ease, transform .28s ease;
}

#request-form.is-attention .request-card {
  box-shadow: 0 0 0 3px rgba(25, 104, 219, .22), 0 22px 55px rgba(17, 67, 128, .18);
  transform: translateY(-2px);
}

.tis-request-form.is-attention {
  box-shadow: 0 0 0 3px rgba(25, 104, 219, .22), 0 22px 55px rgba(17, 67, 128, .18);
}

.coverage-checker {
  margin: 34px 0;
  padding: 28px;
  border: 1px solid #d6e3f2;
  border-radius: 8px;
  background: #f8fbff;
  box-shadow: 0 18px 45px rgba(31, 80, 132, .08);
}

.coverage-checker__head { max-width: 760px; }
.coverage-checker__head h2 { margin: 4px 0 8px; }
.coverage-checker__head p:last-child { margin-bottom: 0; color: var(--muted); }
.coverage-checker__fields { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 22px; }
.coverage-checker__fields label { display: grid; gap: 7px; color: var(--ink); font-size: 13px; font-weight: 700; }
.coverage-checker__fields select {
  width: 100%;
  min-height: 46px;
  padding: 0 38px 0 12px;
  border: 1px solid #cbd9e8;
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
}
.coverage-checker__fields select:disabled { color: #7b8998; background: #edf2f7; }
.coverage-checker__result { min-height: 44px; margin: 18px 0 14px; padding: 12px 14px; border-left: 3px solid #236fd1; color: #30465e; background: #edf5ff; }
.coverage-checker__note { margin: 14px 0 0; color: var(--muted); font-size: 12px; }

.speed-tools { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin: 30px 0 38px; }
.speed-tools article { padding: 26px; border: 1px solid #d7e2ee; border-radius: 8px; background: var(--white); box-shadow: 0 16px 38px rgba(21, 58, 99, .07); }
.speed-tools h2 { margin: 10px 0 8px; font-size: 24px; }
.speed-tools__number { color: #236fd1; font-size: 13px; font-weight: 800; }
.speed-tools__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.speed-tools .btn.secondary { color: #12375e; border-color: #b9d1ed; background: #edf5ff; }
.speed-tools .btn.secondary:hover { color: #082543; border-color: #76a8e1; background: #dfeeff; }
.support-panel { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 34px; padding: 26px; border-radius: 8px; color: var(--white); background: #0b2b4b; }
.support-panel h2 { margin: 4px 0 8px; color: var(--white); }
.support-panel p { margin-bottom: 0; color: #d7e5f3; }

@media (max-width: 760px) {
  .coverage-checker { padding: 20px 16px; }
  .coverage-checker__fields, .speed-tools { grid-template-columns: 1fr; }
  .coverage-checker .btn { width: 100%; }
  .support-panel { display: grid; }
  .support-panel .btn { width: 100%; }
}
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 22% 0%, rgba(0, 166, 166, .10), transparent 30%),
    linear-gradient(180deg, #f9fbfd 0%, var(--paper) 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 70px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(220, 228, 236, .86);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  box-shadow: 0 10px 24px rgba(0, 166, 166, .20);
}
.brand strong, .brand small { display: block; }
.brand small { color: var(--muted); font-size: 12px; }
.nav { display: flex; gap: 8px; font-size: 15px; color: #33465b; }
.nav ul { display: flex; gap: 8px; margin: 0; padding: 0; list-style: none; }
.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 11px;
  border-radius: 8px;
  transition: color .2s ease, background-color .2s ease;
}
.nav a:hover { color: #067c7d; background: rgba(0, 166, 166, .08); }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 14px; }
.header-contacts { display: flex; align-items: center; gap: 14px; }
.header-contact { display: grid; gap: 1px; color: var(--navy); white-space: nowrap; line-height: 1.1; }
.header-contact small { color: var(--muted); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.header-contact strong { font-size: 13px; font-weight: 900; }
.header-contact--support { padding-left: 14px; border-left: 1px solid var(--line); }
.mobile-contact-bar { display: none; }
.cabinet-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(0, 166, 166, .22);
  border-radius: 8px;
  color: #087c7d;
  font-weight: 850;
  white-space: nowrap;
  background: rgba(0, 166, 166, .07);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
  align-items: center;
  gap: clamp(24px, 5vw, 58px);
  min-height: calc(100vh - 70px);
  padding: clamp(34px, 6vw, 78px) clamp(18px, 5vw, 72px) 42px;
  overflow: hidden;
  background: var(--navy);
}
.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 33, 51, .96) 0%, rgba(9, 33, 51, .82) 42%, rgba(9, 33, 51, .26) 100%),
    var(--hero-image) center / cover no-repeat;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(125, 220, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 220, 255, .08) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(90deg, #000, transparent 74%);
}
.network-map {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .78;
}
.network-map::before,
.network-map::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125, 220, 255, .62), transparent);
  transform: rotate(-11deg);
  animation: network-sweep 8s linear infinite;
}
.network-map::before { top: 28%; }
.network-map::after { top: 48%; animation-delay: -3s; transform: rotate(9deg); }
.network-map span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 7px rgba(125, 220, 255, .10), 0 0 24px rgba(125, 220, 255, .75);
  animation: node-pulse 3.8s ease-in-out infinite;
  animation-delay: var(--d);
}
.hero-content, .request-card { position: relative; z-index: 2; }
.hero-content { max-width: 700px; color: var(--white); }
.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: .98;
  letter-spacing: 0;
}
.hero-copy {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 20px;
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary { color: var(--navy); background: var(--amber); box-shadow: 0 12px 28px rgba(242, 184, 75, .25); }
.btn.secondary { color: var(--white); border-color: rgba(255, 255, 255, .30); background: rgba(255, 255, 255, .08); }
.btn.dark-secondary { color: var(--navy); border-color: var(--line); background: var(--white); }
.btn.full { width: 100%; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin: 36px 0 0;
}
.hero-stats div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
}
.hero-stats dt { font-size: 19px; font-weight: 950; }
.hero-stats dd { margin: 5px 0 0; color: rgba(255, 255, 255, .72); font-size: 13px; }

.request-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow);
}
.request-card h2 { margin: 0 0 8px; font-size: 25px; line-height: 1.12; }
.request-card p { margin: 0 0 16px; color: var(--muted); line-height: 1.5; }
label { display: block; margin-bottom: 12px; }
label span { display: block; margin-bottom: 7px; color: #34475c; font-size: 14px; font-weight: 800; }
input, select, textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fbfcfd;
  font: inherit;
}
textarea { min-height: 84px; padding-top: 12px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(0, 166, 166, .18); border-color: var(--teal); }
.request-card small { display: block; margin-top: 10px; color: var(--muted); font-size: 12px; line-height: 1.4; }
.request-card small a { color: #087c7d; font-weight: 850; }
.form-consent {
  position: relative;
  z-index: 8;
}
.form-consent__link {
  position: relative;
  z-index: 9;
  pointer-events: auto;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-checkbox {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  margin: 10px 0 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}
.legal-checkbox input {
  appearance: none;
  display: grid;
  place-items: center;
  width: 15px;
  height: 15px;
  min-height: 15px;
  margin: 2px 0 0;
  padding: 0;
  border: 1.5px solid rgba(22, 63, 115, .42);
  border-radius: 4px;
  background: #fff;
  box-shadow: inset 0 1px 2px rgba(16, 27, 43, .04);
  cursor: pointer;
  transition: border-color .16s ease, background-color .16s ease, box-shadow .16s ease;
}
.legal-checkbox input::before {
  content: "";
  width: 8px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  opacity: 0;
  transform: translateY(-1px) rotate(-45deg) scale(.75);
  transition: opacity .16s ease, transform .16s ease;
}
.legal-checkbox input:checked {
  border-color: #163f73;
  background: linear-gradient(135deg, #0d2f57 0%, #1f6feb 100%);
  box-shadow: 0 5px 12px rgba(31, 111, 235, .18);
}
.legal-checkbox input:checked::before {
  opacity: 1;
  transform: translateY(-1px) rotate(-45deg) scale(1);
}
.legal-checkbox input:focus-visible {
  outline: 3px solid rgba(31, 111, 235, .18);
  outline-offset: 2px;
}
.legal-checkbox span {
  margin: 0;
  color: #4a5b70;
  font-size: 11px;
  line-height: 1.38;
  font-weight: 650;
}
.legal-checkbox a {
  color: #163f73;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.form-status { min-height: 22px; margin-top: 12px; color: #0f7d5a; font-weight: 800; }

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 32px rgba(16, 27, 43, .04);
}
.trust-band a {
  padding: 20px clamp(16px, 3vw, 34px);
  border-right: 1px solid var(--line);
  font-weight: 900;
  transition: color .2s ease, background-color .2s ease;
}
.trust-band a:hover { color: #087c7d; background: rgba(0, 166, 166, .06); }
.section, .split-section, .page-shell { padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 72px); }
.section-head { max-width: 780px; margin-bottom: 30px; }
.section h2, .split-section h2, .page-shell h1 { margin: 0; font-size: clamp(30px, 4vw, 48px); line-height: 1.06; }
.section-head p, .split-section p, .page-shell p, .entry-content li { color: var(--muted); font-size: 18px; line-height: 1.6; }

.tariff-tabs { max-width: 1180px; }
.segmented-control {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  margin-bottom: 22px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}
.segmented-control button {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  color: #405469;
  background: transparent;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.segmented-control button.is-active { color: var(--white); background: var(--navy-2); }
.tariff-panel[hidden] { display: none; }
.tariff-grid, .seo-grid, .landing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.tariff-card, .seo-grid article, .landing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--soft-shadow);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.tariff-card:hover, .landing-card:hover { transform: translateY(-3px); border-color: rgba(0, 166, 166, .35); box-shadow: 0 20px 54px rgba(16, 27, 43, .12); }
.tariff-card.featured { border-color: rgba(0, 166, 166, .45); box-shadow: 0 18px 50px rgba(0, 166, 166, .15); }
.badge { display: inline-block; align-self: flex-start; padding: 6px 10px; border-radius: 999px; color: #075d5e; background: rgba(0, 166, 166, .12); font-size: 12px; font-weight: 850; }
.tariff-card h3, .seo-grid h3, .landing-card h3 { margin: 18px 0 8px; font-size: 24px; line-height: 1.14; }
.seo-grid h3, .landing-card h3 { margin-top: 0; }
.speed { margin: 0; color: var(--navy); font-size: 34px; font-weight: 950; }
.price { margin-top: 8px; }
.tariff-card p, .seo-grid p, .landing-card p { color: var(--muted); line-height: 1.5; }
.link-button { display: inline-flex; margin-top: auto; padding-top: 16px; color: #087c7d; font-weight: 900; }
.link-button:hover { color: var(--navy); }
.split-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .55fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 166, 166, .22), transparent 36%),
    #16334b;
}
.split-section .eyebrow { color: var(--cyan); }
.split-section p { color: rgba(255, 255, 255, .74); }
.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li { padding: 16px 0 16px 34px; border-bottom: 1px solid rgba(255, 255, 255, .16); background: linear-gradient(var(--green), var(--green)) 0 20px / 16px 16px no-repeat; }
.muted { background: #eef3f6; }
.seo-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.page-shell { max-width: 1120px; margin: 0 auto; }
.entry-content { margin-top: 24px; }
.entry-content h2 { margin-top: 38px; font-size: 30px; }
.entry-content a { color: #087c7d; font-weight: 800; }
.entry-content > p,
.entry-content > ul,
.entry-content > ol,
.entry-content > .seo-faq:not(.official-detail) { max-width: 920px; }
.entry-content > ul,
.entry-content > ol { padding-left: 24px; }
.entry-content > ul li,
.entry-content > ol li { margin-bottom: 7px; }
.official-detail {
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid rgba(13, 47, 87, .12);
}
.official-detail h2 { margin-top: 0; }
.official-detail p { max-width: 920px; }
.cta-panel { margin: 36px 0; padding: 28px; border-radius: 8px; color: var(--white); background: #16334b; }
.cta-panel > p { color: rgba(255, 255, 255, .76); }
.cta-panel .request-card p { color: var(--muted); }
.footer { display: flex; justify-content: space-between; gap: 18px; padding: 28px clamp(18px, 5vw, 72px); color: var(--white); background: #071725; }
.footer p { margin: 7px 0 0; color: rgba(255, 255, 255, .72); }
.footer-contacts { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 14px; }
.footer-contacts a { display: grid; gap: 2px; }
.footer-contacts span { color: rgba(255, 255, 255, .62); font-size: 11px; }
.footer-contacts strong { color: #fff; font-size: 14px; }

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes node-pulse {
  0%, 100% { transform: scale(.86); opacity: .58; }
  50% { transform: scale(1.12); opacity: 1; }
}
@keyframes network-sweep {
  0% { opacity: .18; transform: translateX(-10%) rotate(-11deg); }
  45% { opacity: .8; }
  100% { opacity: .18; transform: translateX(10%) rotate(-11deg); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; align-items: start; }
  .request-card { max-width: 560px; }
  .tariff-grid, .seo-grid, .landing-grid, .trust-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split-section { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .site-header { min-height: 64px; padding: 10px 16px; }
  .brand { gap: 9px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand strong { font-size: 14px; }
  .brand small { display: none; }
  .header-contacts { display: none; }
  .header-actions { gap: 0; max-width: 104px; }
  .cabinet-link {
    justify-content: center;
    width: 104px;
    max-width: 104px;
    min-height: 38px;
    padding: 6px 8px;
    white-space: normal;
    text-align: center;
    font-size: 12px;
    line-height: 1.2;
  }
  .mobile-contact-bar {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    border: 1px solid #d8e4f1;
    border-radius: 8px;
    background: #f5f9ff;
    overflow: hidden;
  }
  .mobile-contact-bar a { display: grid; gap: 2px; min-width: 0; padding: 8px 10px; color: var(--navy); }
  .mobile-contact-bar a + a { border-left: 1px solid #d8e4f1; }
  .mobile-contact-bar small { color: var(--muted); font-size: 9px; font-weight: 800; text-transform: uppercase; }
  .mobile-contact-bar strong { font-size: 12px; line-height: 1.15; overflow-wrap: anywhere; }
  .hero { padding: 28px 16px 32px; gap: 22px; }
  .hero-media { background-position: 56% center; }
  .hero h1 { font-size: 36px; }
  .hero-copy { font-size: 16px; margin-top: 16px; }
  .hero-actions { margin-top: 22px; }
  .hero-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; margin-top: 24px; }
  .hero-stats div { padding: 10px 8px; }
  .hero-stats dt { font-size: 12px; line-height: 1.15; overflow-wrap: anywhere; }
  .hero-stats dd { display: none; }
  .tariff-grid, .seo-grid, .landing-grid, .trust-band { grid-template-columns: 1fr; }
  .segmented-control { display: grid; width: 100%; }
  .request-card { padding: 18px; }
  .request-card h2 { font-size: 23px; }
  .section, .split-section, .page-shell { padding: 48px 16px; }
  .footer { display: block; }
  .footer .btn { margin-top: 18px; width: 100%; }
}

.hero-light {
  color: var(--ink);
  background:
    radial-gradient(circle at 76% 20%, rgba(125, 220, 255, .30), transparent 28%),
    linear-gradient(135deg, #f8fbfd 0%, #edf7f8 46%, #ffffff 100%);
}
.hero-light .hero-media {
  background:
    linear-gradient(90deg, rgba(248, 251, 253, .98) 0%, rgba(248, 251, 253, .88) 48%, rgba(248, 251, 253, .50) 100%),
    var(--hero-image) right center / cover no-repeat;
  opacity: .92;
}
.hero-light .hero-media::after {
  background-image:
    linear-gradient(rgba(0, 166, 166, .13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 166, .13) 1px, transparent 1px);
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, .32) 78%, transparent);
}
.hero-light .network-map { opacity: .86; }
.hero-light .network-map::before,
.hero-light .network-map::after {
  background: linear-gradient(90deg, transparent, rgba(0, 166, 166, .58), transparent);
}
.hero-light .network-map span {
  background: var(--teal);
  box-shadow: 0 0 0 7px rgba(0, 166, 166, .10), 0 0 26px rgba(0, 166, 166, .50);
}
.hero-light .hero-content { color: var(--ink); }
.hero-light .eyebrow { color: #087c7d; }
.hero-light .hero-copy { color: #4e6074; }
.hero-title-stack span {
  display: block;
}
.hero-light .btn.secondary {
  color: var(--navy);
  border-color: rgba(9, 33, 51, .16);
  background: rgba(255, 255, 255, .68);
}
.hero-light .hero-stats div {
  border-color: rgba(0, 166, 166, .16);
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 14px 36px rgba(16, 27, 43, .06);
}
.hero-light .hero-stats dt { color: var(--navy); }
.hero-light .hero-stats dd { color: #607286; }
.stat-phone {
  color: inherit;
  text-decoration: none;
}
.stat-phone:hover {
  color: #087c7d;
}
.tis-request-form.is-submitted {
  display: grid;
  min-height: 260px;
  place-items: center;
}
.tis-request-form.is-submitted .form-status {
  max-width: 300px;
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.25;
  text-align: center;
}
.tis-request-form.is-submitted .form-status::before {
  content: "";
  display: block;
  width: 46px;
  height: 46px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, transparent 46%, var(--white) 47% 54%, transparent 55%) 14px 19px / 18px 12px no-repeat,
    var(--green);
  box-shadow: 0 14px 28px rgba(66, 184, 131, .24);
}

@media (max-width: 640px) {
  .hero-light .hero-media { background-position: 64% center; }
  .hero-title-stack span { overflow-wrap: anywhere; }
}

/* Blue premium refresh */
:root {
  --teal: #163f73;
  --cyan: #8bd7ff;
  --green: #1e5aa8;
  --amber: #1f6feb;
}

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(86, 154, 255, .16), transparent 26%),
    radial-gradient(circle at 86% 2%, rgba(139, 215, 255, .18), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, #f3f7fb 54%, #eef4fa 100%);
}

.brand-mark,
.btn.primary,
.segmented-control button.is-active,
.tis-cookie-banner__button {
  background: linear-gradient(135deg, #0d2f57 0%, #1f6feb 58%, #8bd7ff 130%);
}

.btn.primary,
.tis-cookie-banner__button {
  color: #fff;
  box-shadow: 0 16px 34px rgba(31, 111, 235, .24);
}

.btn.primary:hover {
  box-shadow: 0 18px 42px rgba(31, 111, 235, .32);
}

.hero-actions {
  position: relative;
  z-index: 5;
  pointer-events: auto;
}

.hero-actions .btn {
  position: relative;
  z-index: 6;
  pointer-events: auto;
}

.eyebrow,
.hero-light .eyebrow,
.cabinet-link,
.link-button,
.request-card small a,
.entry-content a,
.stat-phone:hover {
  color: #163f73;
}

.nav a:hover,
.trust-band a:hover {
  color: #163f73;
  background: rgba(31, 111, 235, .08);
}

.cabinet-link {
  border-color: rgba(31, 111, 235, .22);
  background: rgba(31, 111, 235, .07);
}

input:focus,
select:focus,
textarea:focus {
  outline-color: rgba(31, 111, 235, .18);
  border-color: #1f6feb;
}

.form-status {
  color: #163f73;
}

.hero-light {
  background:
    radial-gradient(circle at 18% 18%, rgba(139, 215, 255, .34), transparent 27%),
    radial-gradient(circle at 82% 12%, rgba(31, 111, 235, .18), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #f4f8fd 42%, #e9f4ff 100%);
}

.hero-light .hero-media {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(247, 251, 255, .91) 47%, rgba(237, 247, 255, .62) 100%),
    var(--hero-image) right center / cover no-repeat;
}

.hero-light .hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 56% 28%, rgba(31, 111, 235, .10), transparent 18%),
    linear-gradient(120deg, transparent 0 38%, rgba(31, 111, 235, .08) 38% 39%, transparent 39% 100%);
}

.hero-light .hero-media::after {
  background-image:
    linear-gradient(rgba(31, 111, 235, .11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 111, 235, .11) 1px, transparent 1px);
}

.hero-light .network-map::before,
.hero-light .network-map::after,
.network-map::before,
.network-map::after {
  background: linear-gradient(90deg, transparent, rgba(31, 111, 235, .56), rgba(139, 215, 255, .62), transparent);
}

.hero-light .network-map span,
.network-map span {
  background: #1f6feb;
  box-shadow: 0 0 0 7px rgba(31, 111, 235, .10), 0 0 26px rgba(31, 111, 235, .38);
}

.hero-light .hero-stats div,
.tariff-card.featured {
  border-color: rgba(31, 111, 235, .24);
  box-shadow: 0 18px 48px rgba(31, 111, 235, .10);
}

.badge {
  color: #163f73;
  background: rgba(31, 111, 235, .10);
}

.tariff-card:hover,
.landing-card:hover {
  border-color: rgba(31, 111, 235, .35);
}

.split-section {
  background:
    radial-gradient(circle at 85% 20%, rgba(139, 215, 255, .20), transparent 28%),
    linear-gradient(135deg, #08213c 0%, #123f70 58%, #1f6feb 132%);
}

.split-section .eyebrow {
  color: #bfe9ff;
}

.check-list li {
  background: linear-gradient(#8bd7ff, #8bd7ff) 0 20px / 16px 16px no-repeat;
}

.tis-request-form.is-submitted .form-status {
  position: relative;
  color: #0d2f57;
}

.tis-request-form.is-submitted .form-status::before {
  position: relative;
  background: linear-gradient(135deg, #0d2f57, #1f6feb 70%, #8bd7ff);
  box-shadow: 0 16px 32px rgba(31, 111, 235, .24);
}

.tis-request-form.is-submitted .form-status::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  width: 18px;
  height: 9px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: translateX(-50%) rotate(-45deg);
}

.tis-cookie-banner__text a {
  color: #8bd7ff;
}

/* Executive cosmic hero refresh */
.hero-light {
  background: linear-gradient(135deg, #f9fcff 0%, #eef6ff 46%, #f7fbff 100%);
}

.hero-light .hero-media {
  background:
    radial-gradient(circle at 14% 18%, rgba(139, 215, 255, .34) 0 1px, transparent 2px),
    radial-gradient(circle at 28% 72%, rgba(31, 111, 235, .22) 0 1px, transparent 2px),
    radial-gradient(circle at 46% 24%, rgba(13, 47, 87, .18) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 40%, rgba(139, 215, 255, .36) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 18%, rgba(31, 111, 235, .22) 0 1px, transparent 2px),
    linear-gradient(115deg, rgba(255, 255, 255, .98) 0%, rgba(246, 250, 255, .93) 48%, rgba(231, 242, 255, .86) 100%);
  background-size: 220px 220px, 260px 260px, 300px 300px, 240px 240px, 280px 280px, auto;
  opacity: 1;
}

.hero-light .hero-media::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(112deg, transparent 0 33%, rgba(31, 111, 235, .10) 34%, rgba(139, 215, 255, .16) 35%, transparent 42%),
    linear-gradient(144deg, transparent 0 58%, rgba(13, 47, 87, .08) 59%, rgba(139, 215, 255, .14) 60%, transparent 68%);
  transform: translate3d(0, 0, 0);
  animation: cosmic-drift 18s ease-in-out infinite alternate;
}

.hero-light .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(31, 111, 235, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 111, 235, .08) 1px, transparent 1px),
    radial-gradient(circle at 50% 22%, rgba(139, 215, 255, .16), transparent 34%);
  background-size: 92px 92px, 92px 92px, auto;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .62) 58%, transparent 100%);
  animation: grid-breathe 12s ease-in-out infinite;
}

.network-map {
  mix-blend-mode: multiply;
}

.hero-light .network-map::before,
.hero-light .network-map::after,
.network-map::before,
.network-map::after {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(13, 47, 87, .18), rgba(31, 111, 235, .32), rgba(139, 215, 255, .40), transparent);
  filter: blur(.2px);
}

.hero-light .network-map span,
.network-map span {
  width: 7px;
  height: 7px;
  background: #1f6feb;
  box-shadow: 0 0 0 6px rgba(31, 111, 235, .08), 0 0 22px rgba(31, 111, 235, .30);
}

.hero-content {
  padding: clamp(8px, 2vw, 18px);
  border-radius: 8px;
}

.hero-light .hero-content {
  background: linear-gradient(90deg, rgba(255, 255, 255, .50), rgba(255, 255, 255, .18));
  backdrop-filter: blur(2px);
}

.hero h1 {
  text-wrap: balance;
}

.hero-light .hero-copy {
  color: #425a75;
}

.request-card {
  border-color: rgba(255, 255, 255, .86);
  background: rgba(255, 255, 255, .90);
  backdrop-filter: blur(16px);
  box-shadow: 0 26px 80px rgba(13, 47, 87, .16);
}

.btn.primary {
  position: relative;
  overflow: hidden;
  border: 0;
  color: #fff;
  background-color: #1f6feb;
  background-image: linear-gradient(135deg, #0d2f57 0%, #1f6feb 62%, #8bd7ff 118%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  box-shadow: 0 16px 34px rgba(31, 111, 235, .26);
  isolation: isolate;
}

.btn.primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0 34%, rgba(255, 255, 255, .28) 48%, transparent 62% 100%);
  transform: translateX(-140%);
  transition: transform .55s ease;
  pointer-events: none;
}

.btn.primary:hover::after {
  transform: translateX(140%);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(31, 111, 235, .34);
}

.btn.secondary {
  backdrop-filter: blur(10px);
}

.hero-light .btn.secondary {
  background: rgba(255, 255, 255, .64);
  box-shadow: inset 0 0 0 1px rgba(13, 47, 87, .08);
}

.hero-stats div,
.trust-band a,
.tariff-card,
.landing-card,
.seo-grid article {
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background-color .24s ease;
}

.hero-stats div:hover,
.trust-band a:hover {
  transform: translateY(-2px);
}

.hero-light .hero-stats div {
  background: rgba(255, 255, 255, .66);
  backdrop-filter: blur(10px);
}

.section {
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, transparent 0 62%, rgba(31, 111, 235, .04) 62% 63%, transparent 63% 100%),
    radial-gradient(circle at 90% 18%, rgba(139, 215, 255, .10), transparent 24%);
}

@keyframes cosmic-drift {
  0% { transform: translate3d(-18px, -8px, 0) rotate(.2deg); opacity: .78; }
  100% { transform: translate3d(18px, 10px, 0) rotate(-.2deg); opacity: 1; }
}

@keyframes grid-breathe {
  0%, 100% { opacity: .58; transform: scale(1); }
  50% { opacity: .82; transform: scale(1.015); }
}

@media (max-width: 640px) {
  .hero-light .hero-media {
    background-size: 170px 170px, 210px 210px, 240px 240px, 190px 190px, 230px 230px, auto;
  }

  .hero-content {
    padding: 0;
    background: transparent;
    backdrop-filter: none;
  }
}

/* Dark cosmic identity refresh */
.brand-mark {
  overflow: hidden;
  padding: 0;
  background: transparent;
  box-shadow: 0 12px 28px rgba(31, 111, 235, .24);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-light {
  color: #f7fbff;
  background:
    radial-gradient(circle at 18% 18%, rgba(31, 111, 235, .22), transparent 24%),
    radial-gradient(circle at 80% 24%, rgba(139, 215, 255, .14), transparent 26%),
    linear-gradient(135deg, #061426 0%, #0b2240 44%, #0e3158 100%);
}

.hero-light .hero-media {
  background:
    radial-gradient(circle at 12% 20%, rgba(139, 215, 255, .70) 0 1px, transparent 2px),
    radial-gradient(circle at 22% 76%, rgba(255, 255, 255, .48) 0 1px, transparent 2px),
    radial-gradient(circle at 48% 18%, rgba(139, 215, 255, .42) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 42%, rgba(255, 255, 255, .36) 0 1px, transparent 2px),
    radial-gradient(circle at 90% 16%, rgba(31, 111, 235, .44) 0 1px, transparent 2px),
    linear-gradient(115deg, #07172b 0%, #0b2544 48%, #123a68 100%);
  background-size: 210px 210px, 270px 270px, 310px 310px, 240px 240px, 280px 280px, auto;
}

.hero-light .hero-media::before {
  background:
    radial-gradient(ellipse at 76% 42%, rgba(31, 111, 235, .22), transparent 32%),
    linear-gradient(112deg, transparent 0 33%, rgba(139, 215, 255, .12) 34%, rgba(31, 111, 235, .18) 35%, transparent 42%),
    linear-gradient(144deg, transparent 0 58%, rgba(139, 215, 255, .10) 59%, rgba(255, 255, 255, .12) 60%, transparent 68%);
}

.hero-light .hero-media::after {
  background:
    linear-gradient(rgba(139, 215, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 215, 255, .08) 1px, transparent 1px),
    radial-gradient(circle at 50% 22%, rgba(139, 215, 255, .16), transparent 34%);
  background-size: 96px 96px, 96px 96px, auto;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, #000 64%, transparent 100%);
}

.network-map {
  mix-blend-mode: screen;
  opacity: .54;
}

.hero-light .network-map::before,
.hero-light .network-map::after,
.network-map::before,
.network-map::after {
  background: linear-gradient(90deg, transparent, rgba(139, 215, 255, .18), rgba(31, 111, 235, .34), rgba(139, 215, 255, .22), transparent);
}

.hero-light .network-map span,
.network-map span {
  background: #8bd7ff;
  box-shadow: 0 0 0 6px rgba(139, 215, 255, .08), 0 0 22px rgba(139, 215, 255, .30);
}

.hero-light .hero-content {
  color: #f7fbff;
  background: linear-gradient(90deg, rgba(6, 20, 38, .34), rgba(6, 20, 38, .08));
  backdrop-filter: blur(3px);
}

.hero-light .eyebrow {
  color: #9edfff;
}

.hero-light .hero-copy {
  color: rgba(247, 251, 255, .78);
}

.hero-light .btn.secondary {
  color: #f7fbff;
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.hero-light .hero-stats div {
  border-color: rgba(139, 215, 255, .20);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .18);
}

.hero-light .hero-stats dt {
  color: #fff;
}

.hero-light .hero-stats dd {
  color: rgba(247, 251, 255, .66);
}

.scroll-planet {
  position: absolute;
  z-index: 1;
  right: clamp(-120px, -5vw, -56px);
  top: clamp(112px, 16vw, 190px);
  width: clamp(150px, 18vw, 240px);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  opacity: .42;
  transform: translate3d(0, var(--planet-shift, 0px), 0) rotate(var(--planet-rotate, 0deg));
  transition: transform .08s linear;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, .85), transparent 0 8%, transparent 9%),
    radial-gradient(circle at 36% 34%, #8bd7ff 0%, #1f6feb 28%, #0b2f5d 62%, #07172b 100%);
  box-shadow:
    inset -28px -24px 42px rgba(0, 0, 0, .36),
    inset 18px 12px 32px rgba(255, 255, 255, .14),
    0 0 80px rgba(31, 111, 235, .24);
}

.scroll-planet::before {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background:
    linear-gradient(18deg, transparent 0 36%, rgba(255, 255, 255, .16) 38% 42%, transparent 44% 100%),
    linear-gradient(-16deg, transparent 0 54%, rgba(139, 215, 255, .18) 55% 59%, transparent 61% 100%);
  filter: blur(1px);
}

.scroll-planet__ring {
  position: absolute;
  left: -24%;
  right: -24%;
  top: 45%;
  height: 22%;
  border: 2px solid rgba(139, 215, 255, .38);
  border-left-color: rgba(255, 255, 255, .08);
  border-right-color: rgba(255, 255, 255, .08);
  border-radius: 50%;
  transform: rotate(-14deg);
  box-shadow: 0 0 22px rgba(139, 215, 255, .14);
}

.request-card {
  color: var(--ink);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 32px 90px rgba(2, 8, 23, .28);
}

.hero-light .request-card h2,
.hero-light .request-card label span {
  color: var(--ink);
}

.hero-light .request-card p,
.hero-light .request-card small {
  color: var(--muted);
}

@media (max-width: 980px) {
  .scroll-planet {
    right: -70px;
    top: 126px;
    opacity: .30;
  }
}

@media (max-width: 640px) {
  .hero-light .hero-content {
    background: transparent;
    backdrop-filter: none;
  }

  .scroll-planet {
    width: 120px;
    right: -58px;
    top: 112px;
    opacity: .22;
  }
}

/* Rollback of planet/dark identity stage */
.brand-mark {
  display: grid;
  place-items: center;
  overflow: visible;
  padding: 0;
  color: #fff;
  background: linear-gradient(135deg, #163f73, #092133);
  box-shadow: 0 10px 24px rgba(31, 111, 235, .20);
}

.brand-mark img,
.scroll-planet {
  display: none;
}

.hero-light {
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 18%, rgba(139, 215, 255, .34), transparent 27%),
    radial-gradient(circle at 82% 12%, rgba(31, 111, 235, .18), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #f4f8fd 42%, #e9f4ff 100%);
}

.hero-light .hero-media {
  background:
    radial-gradient(circle at 14% 18%, rgba(139, 215, 255, .34) 0 1px, transparent 2px),
    radial-gradient(circle at 28% 72%, rgba(31, 111, 235, .22) 0 1px, transparent 2px),
    radial-gradient(circle at 46% 24%, rgba(13, 47, 87, .18) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 40%, rgba(139, 215, 255, .36) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 18%, rgba(31, 111, 235, .22) 0 1px, transparent 2px),
    linear-gradient(115deg, rgba(255, 255, 255, .98) 0%, rgba(246, 250, 255, .93) 48%, rgba(231, 242, 255, .86) 100%);
  background-size: 220px 220px, 260px 260px, 300px 300px, 240px 240px, 280px 280px, auto;
  opacity: 1;
}

.hero-light .hero-media::before {
  background:
    linear-gradient(112deg, transparent 0 33%, rgba(31, 111, 235, .10) 34%, rgba(139, 215, 255, .16) 35%, transparent 42%),
    linear-gradient(144deg, transparent 0 58%, rgba(13, 47, 87, .08) 59%, rgba(139, 215, 255, .14) 60%, transparent 68%);
}

.hero-light .hero-media::after {
  background:
    linear-gradient(rgba(31, 111, 235, .11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 111, 235, .11) 1px, transparent 1px),
    radial-gradient(circle at 50% 22%, rgba(139, 215, 255, .16), transparent 34%);
  background-size: 92px 92px, 92px 92px, auto;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .62) 58%, transparent 100%);
}

.network-map {
  mix-blend-mode: multiply;
  opacity: .86;
}

.hero-light .hero-content {
  color: var(--ink);
  background: linear-gradient(90deg, rgba(255, 255, 255, .50), rgba(255, 255, 255, .18));
  backdrop-filter: blur(2px);
}

.hero-light .eyebrow {
  color: #163f73;
}

.hero-light .hero-copy {
  color: #425a75;
}

.hero-light .btn.secondary {
  color: var(--navy);
  border-color: rgba(9, 33, 51, .16);
  background: rgba(255, 255, 255, .64);
}

.hero-light .hero-stats div {
  border-color: rgba(31, 111, 235, .24);
  background: rgba(255, 255, 255, .66);
  box-shadow: 0 18px 48px rgba(31, 111, 235, .10);
}

.hero-light .hero-stats dt {
  color: var(--navy);
}

.hero-light .hero-stats dd {
  color: #607286;
}

.request-card {
  color: var(--ink);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 26px 80px rgba(13, 47, 87, .16);
}

/* Original Dialog logo and clean hero title */
.brand--dialog {
  gap: 12px;
}

.brand-mark--dialog {
  display: block;
  width: 116px;
  height: 42px;
  padding: 4px 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark--dialog img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand--dialog .brand-text {
  display: none;
}

.hero-content,
.hero-light .hero-content {
  padding: 0;
  background: transparent;
  backdrop-filter: none;
}

.seo-links {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(13, 47, 87, .12);
}

.seo-links h2 {
  margin-bottom: 14px;
}

.seo-links ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.seo-links li {
  display: flex;
  min-width: 0;
}

.seo-links a {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 64px;
  padding: 13px 15px;
  border: 1px solid rgba(31, 111, 235, .18);
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255, 255, 255, .76);
  font-weight: 800;
  text-decoration: none;
}

.seo-links a:hover {
  border-color: rgba(31, 111, 235, .38);
  background: #fff;
}

@media (max-width: 820px) {
  .seo-links ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
  .seo-links ul { grid-template-columns: 1fr; }
  .seo-links a { min-height: 52px; }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 12px 0;
}

.footer-links a {
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-requisites {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.legal-doc {
  max-width: 920px;
}

.legal-doc__version {
  color: #607286;
  font-weight: 800;
}

.legal-doc h2 {
  margin-top: 28px;
}

.legal-doc li {
  margin-bottom: 8px;
}

/* Compact legal consent checkbox */
.request-card .tis-form-trap {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.request-card .legal-checkbox {
  position: relative;
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  margin: 10px 0 12px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.request-card .legal-checkbox input[type="checkbox"] {
  position: absolute;
  left: 0;
  top: 0;
  width: 17px !important;
  height: 17px !important;
  min-height: 17px !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0;
  cursor: pointer;
}

.request-card .legal-checkbox__box {
  display: block;
  width: 15px;
  height: 15px;
  min-height: 15px;
  margin: 2px 0 0;
  border: 1.5px solid rgba(22, 63, 115, .42);
  border-radius: 4px;
  background: #fff;
  box-shadow: inset 0 1px 2px rgba(16, 27, 43, .04);
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

.request-card .legal-checkbox__box::after {
  content: "";
  display: block;
  width: 7px;
  height: 4px;
  margin: 3px 0 0 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  opacity: 0;
  transform: rotate(-45deg) scale(.75);
  transition: opacity .16s ease, transform .16s ease;
}

.request-card .legal-checkbox input[type="checkbox"]:checked + .legal-checkbox__box {
  border-color: #163f73;
  background: linear-gradient(135deg, #0d2f57 0%, #1f6feb 100%);
  box-shadow: 0 5px 12px rgba(31, 111, 235, .18);
}

.request-card .legal-checkbox input[type="checkbox"]:checked + .legal-checkbox__box::after {
  opacity: 1;
  transform: rotate(-45deg) scale(1);
}

.request-card .legal-checkbox input[type="checkbox"]:focus-visible + .legal-checkbox__box {
  outline: 3px solid rgba(31, 111, 235, .18);
  outline-offset: 2px;
}

.request-card .legal-checkbox > span:not(.legal-checkbox__box) {
  margin: 0;
  color: #56677a;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 10.5px;
  line-height: 1.34;
  font-weight: 500;
  letter-spacing: 0;
}

.request-card .legal-checkbox > span:not(.legal-checkbox__box) a {
  color: #163f73;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

@media (max-width: 640px) {
  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .page-shell {
    padding-top: 36px;
    padding-bottom: 40px;
  }

  .page-shell h1 {
    font-size: 30px;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .entry-content { margin-top: 20px; }
  .entry-content h2 { margin-top: 30px; font-size: 25px; line-height: 1.18; }
  .entry-content h3 { line-height: 1.25; }
  .page-shell p,
  .entry-content li { font-size: 16px; line-height: 1.58; }
  .entry-content > ul,
  .entry-content > ol { padding-left: 21px; }
  .tariff-card,
  .landing-card,
  .seo-grid article { padding: 18px; }
  .official-detail { margin-top: 34px; padding-top: 28px; }
  .cta-panel { margin: 30px 0; padding: 18px 14px; }
  .cta-panel > h2,
  .cta-panel > p { padding-inline: 4px; }

  .brand-mark--dialog {
    width: 94px;
    height: 34px;
  }
}

/* Official content blocks */
.official-facts {
  background: linear-gradient(135deg, rgba(240, 248, 255, .92), rgba(255, 255, 255, .98));
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.fact-grid article {
  min-height: 132px;
  padding: 22px;
  border: 1px solid rgba(22, 65, 108, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 46px rgba(16, 27, 43, .07);
}

.fact-grid strong {
  display: block;
  margin-bottom: 10px;
  color: #08213f;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.08;
}

.fact-grid span {
  color: var(--muted);
  line-height: 1.45;
}

.coverage-section .check-list {
  align-self: stretch;
}

.service-section .landing-card p {
  min-height: 72px;
}

@media (max-width: 980px) {
  .fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .fact-grid {
    grid-template-columns: 1fr;
  }

  .fact-grid article {
    min-height: auto;
    padding: 18px;
  }

  .service-section .landing-card p {
    min-height: 0;
  }
}
