:root {
  --ink: #071322;
  --navy: #071a35;
  --deep: #041023;
  --blue: #0b46d8;
  --green: #0abf7a;
  --cyan: #3bd8ff;
  --gold: #f7c948;
  --muted: #637083;
  --line: #dce5ef;
  --soft: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(7, 19, 34, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: var(--white);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(7, 19, 34, .08);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy);
}

.brand img {
  width: 148px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: .95rem;
  font-weight: 700;
}

.main-nav a {
  color: #1d2b3d;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--blue);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-size: 1.5rem;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 12px 28px rgba(11, 70, 216, .22);
  cursor: pointer;
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
  box-shadow: none;
}

.button.outline {
  color: var(--blue);
  background: transparent;
  border: 1px solid rgba(11, 70, 216, .28);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4, 16, 35, .94) 0%, rgba(4, 16, 35, .82) 42%, rgba(4, 16, 35, .28) 100%),
    url("assets/images/hero-banner.webp") center / cover no-repeat;
}

.hero .container {
  min-height: 690px;
  display: flex;
  align-items: center;
  padding: 80px 0 68px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: .85rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.12;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.7rem, 5vw, 5.8rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  letter-spacing: 0;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0;
}

.lead {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .82);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.section {
  padding: 84px 0;
}

.section.tight {
  padding: 56px 0;
}

.section.dark {
  color: var(--white);
  background: var(--navy);
}

.section.soft {
  background: var(--soft);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head p {
  margin-top: 16px;
  color: var(--muted);
}

.dark .section-head p,
.dark .muted {
  color: rgba(255, 255, 255, .72);
}

.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 32px 0 0;
}

.stat-card,
.card,
.price-card,
.feature-card,
.testimonial,
.contact-card,
.info-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.stat-card {
  min-height: 132px;
  padding: 24px 16px;
  text-align: center;
}

.stat-card strong {
  display: block;
  color: var(--blue);
  font-size: clamp(1.6rem, 2vw, 2.35rem);
  line-height: 1.05;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 500px);
  align-items: center;
  gap: 48px;
}

.split.reverse {
  grid-template-columns: minmax(300px, 500px) minmax(0, 1fr);
}

.split-copy p + p {
  margin-top: 16px;
}

.media-frame {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--navy);
  aspect-ratio: 4 / 3;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  align-items: stretch;
  overflow: hidden;
  margin-bottom: 48px;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.feature-showcase.reverse {
  margin: 56px 0 0;
}

.feature-showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  padding: 42px;
  color: var(--white);
}

.feature-showcase-copy h2 {
  max-width: 620px;
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 2.7vw, 2.6rem);
}

.feature-showcase-copy p {
  max-width: 640px;
  color: rgba(255, 255, 255, .78);
}

.feature-showcase-copy p + p {
  margin-top: 14px;
}

.feature-showcase-media {
  min-height: 360px;
  background: var(--navy);
}

.feature-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.price-card {
  position: relative;
  min-height: 330px;
  padding: 28px;
}

.info-card {
  padding: 28px;
}

.price-card.featured {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(145deg, var(--blue), var(--green));
}

.price {
  margin: 18px 0;
  font-size: 2.7rem;
  font-weight: 900;
}

.price small {
  color: inherit;
  font-size: .95rem;
  font-weight: 700;
}

.list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: .78rem;
  font-weight: 900;
}

.feature-card {
  min-height: 190px;
  padding: 24px;
}

.feature-card img {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
}

.feature-card p,
.card p,
.info-card p,
.testimonial p {
  margin-top: 10px;
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

th:first-child,
td:first-child {
  text-align: left;
  font-weight: 800;
}

thead th {
  color: var(--white);
  background: var(--navy);
}

thead th:nth-child(2) {
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.yes {
  color: var(--green);
  font-weight: 900;
}

.no {
  color: #b7c0cc;
  font-weight: 900;
}

.testimonial {
  padding: 26px;
}

.stars {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .05em;
}

.accordion {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.cta-band {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.cta-band .container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-card {
  padding: 28px;
}

.form {
  display: grid;
  gap: 14px;
}

.form-honeypot {
  display: none;
}

.form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 700;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
}

.form textarea {
  min-height: 130px;
  resize: vertical;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.page-hero {
  color: var(--white);
  background: linear-gradient(135deg, #041023, #0a3267 70%, #046a52);
}

.page-hero .container {
  padding: 78px 0;
}

.page-hero p {
  max-width: 760px;
  margin-top: 16px;
  color: rgba(255, 255, 255, .78);
  font-size: 1.08rem;
}

.policy {
  max-width: 920px;
}

.policy h2 {
  margin-top: 34px;
  font-size: 1.65rem;
}

.policy p,
.policy li {
  color: var(--muted);
}

.policy p {
  margin-top: 12px;
}

.policy ul {
  display: grid;
  gap: 10px;
}

.site-footer {
  color: rgba(255, 255, 255, .74);
  background: var(--deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 32px;
  padding: 58px 0;
}

.site-footer h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1.05rem;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.copyright {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .9rem;
}

.blog-page,
.article-page {
  background: #06111f;
}

.blog-main,
.article-main {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, #06111f 0%, #0a1528 42%, #07111f 100%);
}

.blog-hero {
  position: relative;
  padding: 86px 0 72px;
  background:
    linear-gradient(115deg, rgba(4, 16, 35, .98), rgba(7, 26, 53, .92) 48%, rgba(10, 191, 122, .54)),
    url("assets/images/streaming-room.jpg") center / cover;
}

.blog-hero-grid,
.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: center;
  gap: 54px;
}

.blog-hero-copy h1,
.article-hero h1 {
  max-width: 820px;
  margin: 16px 0 18px;
  color: var(--white);
  font-size: clamp(2.9rem, 6vw, 5.35rem);
  line-height: .98;
}

.blog-hero-copy p,
.article-summary {
  max-width: 760px;
  color: rgba(255, 255, 255, .78);
  font-size: 1.13rem;
  line-height: 1.75;
}

.blog-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.blog-hero-tags span,
.blog-meta span {
  padding: 7px 11px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .1);
  font-size: .86rem;
  font-weight: 850;
}

.blog-hero-panel,
.article-hero-media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .34);
}

.blog-hero-panel img,
.article-hero-media img,
.blog-featured-media img,
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-hero-panel-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  color: var(--white);
  background: rgba(4, 16, 35, .78);
  backdrop-filter: blur(12px);
}

.blog-hero-panel-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--cyan);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-section {
  padding: 72px 0 84px;
}

.blog-featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  min-height: 380px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(15, 34, 62, .98), rgba(6, 17, 31, .98));
  box-shadow: 0 28px 80px rgba(0, 0, 0, .3);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.blog-featured-card:hover,
.blog-featured-card:focus-visible,
.blog-card:hover,
.blog-card:focus-visible,
.article-nav-card:hover,
.article-nav-card:focus-visible {
  border-color: rgba(59, 216, 255, .48);
  box-shadow: 0 24px 72px rgba(0, 0, 0, .38);
  transform: translateY(-4px);
}

.blog-featured-card:focus-visible,
.blog-card:focus-visible,
.article-nav-card:focus-visible {
  outline: 3px solid rgba(59, 216, 255, .26);
  outline-offset: 3px;
}

.blog-featured-media,
.blog-card-media,
.article-hero-media {
  margin: 0;
}

.blog-featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
}

.blog-featured-copy h2 {
  margin: 20px 0 14px;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.02;
}

.blog-featured-copy p {
  color: rgba(255, 255, 255, .72);
  font-size: 1.08rem;
}

.blog-section-heading {
  max-width: 760px;
  margin: 68px 0 28px;
}

.blog-section-heading h2 {
  margin: 8px 0 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  color: var(--white);
  background: rgba(13, 31, 55, .9);
  text-decoration: none;
  box-shadow: 0 18px 52px rgba(0, 0, 0, .24);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.blog-card-media {
  aspect-ratio: 16 / 10;
  background: #0c1c32;
}

.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.blog-card h2 {
  margin: 18px 0 12px;
  font-size: 1.42rem;
  line-height: 1.16;
}

.blog-card p {
  color: rgba(255, 255, 255, .68);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, .76);
  font-size: .88rem;
  font-weight: 850;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  color: var(--cyan);
  font-weight: 900;
}

.blog-link::after {
  content: ">";
  font-size: .9rem;
  transition: transform .18s ease;
}

.blog-card:hover .blog-link::after,
.blog-card:focus-visible .blog-link::after,
.blog-featured-card:hover .blog-link::after,
.blog-featured-card:focus-visible .blog-link::after {
  transform: translateX(4px);
}

.blog-cta {
  padding: 0 0 86px;
}

.blog-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(11, 70, 216, .82), rgba(10, 191, 122, .72));
  box-shadow: 0 24px 68px rgba(0, 0, 0, .3);
}

.blog-cta h2 {
  max-width: 760px;
  margin: 8px 0;
  color: var(--white);
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  line-height: 1.05;
}

.blog-cta p {
  color: rgba(255, 255, 255, .78);
}

.article-hero {
  padding: 80px 0 72px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(4, 16, 35, .99), rgba(7, 26, 53, .94) 58%, rgba(10, 191, 122, .44));
}

.article-hero-media {
  aspect-ratio: 16 / 11;
  background-position: center;
  background-size: cover;
}

.article-summary {
  margin: 0 0 24px;
}

.article-back {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .76);
  font-weight: 850;
}

.article-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 820px);
  justify-content: center;
  gap: 42px;
  align-items: start;
  padding: 72px 0 88px;
}

.article-toc {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(13, 31, 55, .82);
  box-shadow: 0 18px 52px rgba(0, 0, 0, .22);
}

.article-toc h2 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 1rem;
}

.article-toc a {
  display: block;
  padding: 9px 0;
  color: rgba(255, 255, 255, .68);
  font-weight: 850;
}

.article-toc a:hover,
.article-toc a:focus-visible {
  color: var(--cyan);
}

.article-content {
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  color: var(--ink);
  background: #f8fbff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.article-lead {
  margin-top: 0;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  color: #233247;
  font-size: 1.22rem;
  line-height: 1.78;
}

.article-content h2 {
  margin: 42px 0 14px;
  color: var(--ink);
  font-size: 1.86rem;
  line-height: 1.22;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content p {
  margin-top: 16px;
  color: #536174;
  font-size: 1.08rem;
  line-height: 1.86;
}

.article-callout {
  padding: 18px 20px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: #edf8f4;
  color: #25394c !important;
  font-weight: 750;
}

.article-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.article-nav-card {
  min-height: 112px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(7, 19, 34, .08);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.article-nav-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 850;
}

.article-nav-card strong {
  color: var(--blue);
  font-size: 1.05rem;
}

.blog-page--text .blog-main {
  background:
    radial-gradient(circle at 78% 18%, rgba(10, 191, 122, .18), transparent 32%),
    linear-gradient(180deg, #07111f 0%, #0a1425 45%, #06111f 100%);
}

.blog-page--text .blog-hero {
  padding: 92px 0 70px;
  background:
    linear-gradient(135deg, rgba(4, 16, 35, .98), rgba(7, 26, 53, .96) 62%, rgba(10, 191, 122, .2));
}

.blog-hero-text {
  max-width: 900px;
}

.blog-hero-text h1 {
  max-width: 860px;
  margin: 16px 0 18px;
  color: var(--white);
  font-size: clamp(3.1rem, 7vw, 6rem);
  line-height: .96;
}

.blog-hero-text p {
  max-width: 720px;
  color: rgba(255, 255, 255, .76);
  font-size: 1.16rem;
  line-height: 1.78;
}

.blog-section--text {
  padding: 66px 0 84px;
}

.blog-featured-card--text {
  grid-template-columns: 180px minmax(0, 1fr);
  min-height: auto;
  padding: 36px;
  background:
    linear-gradient(135deg, rgba(15, 34, 62, .98), rgba(6, 17, 31, .98));
}

.blog-featured-index,
.blog-card-number {
  color: rgba(59, 216, 255, .26);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
}

.blog-featured-index {
  align-self: start;
  font-size: clamp(4.6rem, 10vw, 8rem);
}

.blog-featured-card--text .blog-featured-copy {
  padding: 0;
}

.blog-featured-card--text h2 {
  max-width: 720px;
  margin: 20px 0 14px;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.blog-featured-card--text p {
  max-width: 680px;
}

.blog-page--text .blog-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  max-width: none;
  margin: 64px 0 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.blog-page--text .blog-section-heading h2 {
  max-width: 640px;
}

.blog-card--text {
  position: relative;
  min-height: 360px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(15, 34, 62, .92), rgba(10, 24, 43, .92));
}

.blog-card--text::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(59, 216, 255, .12), transparent 38%);
  opacity: .75;
  pointer-events: none;
}

.blog-card--text .blog-card-number {
  position: relative;
  font-size: 3.8rem;
}

.blog-card--text .blog-card-body {
  position: relative;
  padding: 42px 0 0;
}

.blog-card--text h2 {
  margin-top: 20px;
  font-size: 1.55rem;
}

.blog-card--text p {
  min-height: 92px;
}

/* Blog index follows the same light page rhythm as the rest of the site. */
.blog-index-section {
  background: var(--white);
}

.blog-index-heading {
  margin-bottom: 30px;
}

.blog-title-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

.blog-title-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
  padding: 24px 28px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--ink);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.blog-title-item--blue {
  border-color: #dce9f7;
  background: #f3f8fd;
}

.blog-title-item--green {
  border-color: #d8eee7;
  background: #f1f9f6;
}

.blog-title-item--rose {
  border-color: #f0dfe3;
  background: #fcf5f6;
}

.blog-title-item h2 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.3;
}

.blog-title-item > span {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 1.5rem;
  font-weight: 900;
  transition: transform .18s ease;
}

.blog-title-item:hover,
.blog-title-item:focus-visible {
  transform: translateY(-2px);
  border-color: #b8cbe0;
  box-shadow: 0 12px 28px rgba(7, 30, 58, .09);
}

.blog-title-item:hover > span,
.blog-title-item:focus-visible > span {
  transform: translateX(4px);
}

.blog-page .floating-contact,
.article-page .floating-contact {
  right: 16px;
}

.blog-page .floating-contact__button,
.article-page .floating-contact__button {
  width: 54px;
  min-width: 54px;
  height: 54px;
  min-height: 54px;
  padding: 12px;
}

.blog-page .floating-contact__button span,
.article-page .floating-contact__button span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 16px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 8px;
  }

  .nav-cta {
    display: none;
  }

  .hero .container,
  .split,
  .split.reverse,
  .feature-showcase,
  .contact-grid,
  .cta-band .container {
    grid-template-columns: 1fr;
  }

  .feature-showcase.reverse .feature-showcase-media {
    order: 2;
  }

  .feature-showcase.reverse .feature-showcase-copy {
    order: 1;
  }

  .hero .container {
    min-height: 610px;
    padding: 64px 0;
  }

  .stats,
  .grid.four {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid.three,
  .footer-grid,
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-hero-grid,
  .article-hero-grid,
  .blog-featured-card,
  .blog-cta-inner {
    grid-template-columns: 1fr;
  }

  .blog-hero-panel {
    min-height: 300px;
  }

  .blog-featured-card {
    min-height: auto;
  }

  .blog-featured-media {
    aspect-ratio: 16 / 9;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-toc {
    position: static;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .brand img {
    width: 124px;
  }

  h1 {
    font-size: 2.45rem;
  }

  .section {
    padding: 62px 0;
  }

  .feature-showcase {
    margin-bottom: 38px;
  }

  .feature-showcase.reverse {
    margin-top: 42px;
  }

  .feature-showcase-copy {
    min-height: auto;
    padding: 28px;
  }

  .feature-showcase-media {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .stats,
  .grid.two,
  .grid.three,
  .grid.four,
  .footer-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero {
    padding: 62px 0 48px;
  }

  .blog-hero-copy h1,
  .article-hero h1 {
    font-size: 2.55rem;
    line-height: 1.04;
  }

  .blog-hero-panel {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .blog-hero-panel-card {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
  }

  .blog-section {
    padding: 48px 0 58px;
  }

  .blog-featured-copy,
  .article-content,
  .blog-cta-inner {
    padding: 24px;
  }

  .blog-section-heading {
    margin: 42px 0 22px;
  }

  .blog-page--text .blog-section-heading {
    display: block;
  }

  .blog-page--text .blog-section-heading h2 {
    margin-top: 8px;
  }

  .blog-card-body {
    padding: 22px;
  }

  .blog-title-item {
    min-height: 78px;
    padding: 20px;
  }

  .blog-title-item h2 {
    font-size: 1.12rem;
  }

  .blog-title-item > span {
    display: none;
  }

  .article-hero {
    padding: 62px 0 44px;
  }

  .article-hero-media {
    aspect-ratio: 16 / 10;
  }

  .article-layout {
    gap: 20px;
    padding: 38px 0 58px;
  }

  .article-toc {
    padding: 18px;
  }

  .article-content p {
    font-size: 1rem;
  }

  .article-nav {
    grid-template-columns: 1fr;
  }

  .article-nav-card {
    min-height: auto;
  }

  .stat-card {
    min-height: auto;
  }

  .hero-actions,
  .cta-band .container {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero {
    background-position: 68% center;
  }

  .article-page .floating-contact {
    right: 10px;
    bottom: 10px;
    gap: 8px;
  }

  .article-page .floating-contact__button {
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
  }

  .article-page .floating-contact__button svg {
    width: 22px;
    height: 22px;
  }
}


.player-support{

    padding:80px 0;
    background:#fff;

}

.player-support .container{

    max-width:1200px;
    margin:auto;

}

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;
    font-weight:700;
    margin-bottom:20px;

}

.section-title h3{

    font-size:28px;
    margin-bottom:25px;

}

.section-title p{

    max-width:900px;
    margin:auto;
    color:#666;
    line-height:1.8;

}


.device-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}


.device-card{

    display:flex;

    gap:25px;

    background:#fff;

    padding:40px;

    border-radius:15px;

    box-shadow:0 8px 30px rgba(0,0,0,.08);

    transition:.3s;

}

.device-card:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.device-icon{

    width:60px;
    height:60px;

    flex-shrink:0;

}

.device-icon img{

    width:100%;

}

.device-content h4{

    font-size:28px;

    margin-bottom:10px;

}

.device-content h5{

    font-size:18px;

    margin-bottom:15px;

}

.device-content p{

    color:#666;

    line-height:1.8;

}

@media(max-width:768px){

.device-grid{

grid-template-columns:1fr;

}

}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  gap: 12px;
}

.floating-contact__button {
  display: inline-flex;
  width: 54px;
  min-width: 54px;
  height: 54px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(7, 19, 34, .24);
  transition: transform .18s ease, box-shadow .18s ease;
}

.floating-contact__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(7, 19, 34, .3);
}

.floating-contact__button svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  flex: 0 0 auto;
}

.floating-contact__button span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.floating-contact__button--whatsapp {
  background: #20b857;
}

.floating-contact__button--telegram {
  background: #249bd7;
}

@media(max-width:620px) {
  .floating-contact {
    right: 14px;
    bottom: 14px;
    gap: 10px;
  }

  .floating-contact__button {
    width: 48px;
    min-width: 48px;
    height: 48px;
    min-height: 48px;
    padding: 10px;
  }
}
