:root {
  --blue-950: #061229;
  --blue-900: #071a3a;
  --blue-800: #092653;
  --blue-700: #063f90;
  --blue-600: #006fe8;
  --blue-500: #1490ff;
  --text: #101828;
  --muted: #667085;
  --line: #e4e7ec;
  --surface: #ffffff;
  --surface-soft: #f3f7ff;
  --footer: #050c1c;
  --shadow: 0 18px 48px rgba(6, 18, 41, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  background: var(--surface);
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 72px;
  padding: 0 clamp(20px, 4vw, 56px);
  color: #fff;
  background: rgba(6, 18, 41, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fff;
  object-fit: contain;
  padding: 4px;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a:hover {
  color: #fff;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue-600);
  font-weight: 800;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: #fff;
  background: var(--blue-950);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1522869635100-9f4c5e86aa37?q=80&w=1800&auto=format&fit=crop");
  background-size: cover;
  background-position: center right;
  opacity: 0.72;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 18, 41, 1) 0%, rgba(6, 18, 41, 0.94) 34%, rgba(6, 18, 41, 0.55) 64%, rgba(6, 18, 41, 0.18) 100%),
    linear-gradient(180deg, rgba(6, 18, 41, 0.06), rgba(6, 18, 41, 0.82));
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: center;
  padding: 74px 0;
}

.hero-copy {
  max-width: 680px;
}

.kicker {
  margin: 0 0 16px;
  color: #80c7ff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.country-note {
  display: inline-flex;
  margin: -4px 0 18px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #d7ebff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.84rem;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

h3 {
  font-size: 1.45rem;
  letter-spacing: -0.035em;
}

.lead {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
  line-height: 1.65;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-weight: 850;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--blue-600);
  box-shadow: 0 16px 30px rgba(0, 111, 232, 0.28);
}

.button-primary:hover {
  background: var(--blue-700);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.button-outline {
  color: var(--blue-700);
  background: #fff;
  border-color: #b7d7ff;
}

.hero-panel {
  padding: 28px;
  border-radius: 24px;
  color: var(--text);
  background: #fff;
  box-shadow: var(--shadow);
}

.panel-tag,
.plan-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--blue-800);
  background: #e8f2ff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin: 18px 0 10px;
  font-size: 2rem;
}

.hero-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.panel-price {
  margin: 24px 0;
  color: var(--blue-900);
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.panel-price small {
  color: var(--muted);
  font-size: 1rem;
  letter-spacing: normal;
}

.section {
  padding: 84px 0;
  background: var(--surface);
}

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

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

.section-title p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.plan-card {
  display: flex;
  flex-direction: column;
  min-height: 455px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(6, 18, 41, 0.08);
}

.plan-featured {
  position: relative;
  border-color: #9acbff;
  box-shadow: var(--shadow);
}

.plan-card h3 {
  margin: 12px 0 8px;
}

.plan-card p {
  color: var(--muted);
}

.plan-card strong {
  display: block;
  margin: 18px 0 22px;
  color: var(--blue-900);
  font-size: 2.55rem;
  letter-spacing: -0.06em;
}

.plan-card strong span {
  color: var(--muted);
  font-size: 1rem;
  letter-spacing: normal;
}

.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  color: #344054;
}

.plan-card li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--blue-600);
  font-weight: 900;
}

.plan-card .button {
  margin-top: auto;
}

.split {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 48px;
  align-items: center;
}

.split > div > p:not(.kicker) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.split-reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.extra-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.extra-grid article {
  min-height: 160px;
  display: flex;
  align-items: end;
  padding: 22px;
  border-radius: 22px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(6, 18, 41, 0.12), rgba(6, 18, 41, 0.92)),
    var(--blue-800);
  font-size: 1.25rem;
  font-weight: 850;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue-700);
  font-weight: 900;
}

.showcase {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: var(--blue-950);
}

.showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.76;
}

.showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 18, 41, 0.94), rgba(6, 18, 41, 0.48), rgba(6, 18, 41, 0.1));
}

.showcase-sports::before {
  background-image: url("https://images.unsplash.com/photo-1431324155629-1a6deb1dec8d?q=80&w=1800&auto=format&fit=crop");
}

.showcase-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  padding: 96px 0;
}

.showcase-content h2,
.showcase-content p {
  max-width: 620px;
}

.showcase-content p:not(.kicker) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  line-height: 1.72;
}

.image-card {
  min-height: 420px;
  border-radius: 28px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.image-live {
  background-image:
    linear-gradient(180deg, rgba(6,18,41,0), rgba(6,18,41,.72)),
    url("https://images.unsplash.com/photo-1601944179066-29786cb9d32a?q=80&w=1400&auto=format&fit=crop");
}

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

.devices-grid span {
  min-height: 104px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  color: var(--blue-900);
  font-weight: 850;
  text-align: center;
}

.center-action {
  margin-top: 32px;
  text-align: center;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px;
  color: var(--blue-900);
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.65;
}

.final-cta {
  padding: 80px 0;
  background: var(--blue-950);
}

.final-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 40px;
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
}

.final-box h2 {
  margin-bottom: 8px;
}

.final-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--footer);
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer strong {
  color: #fff;
}

.footer nav {
  display: flex;
  gap: 20px;
}

.page-hero {
  padding: 78px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6,18,41,1), rgba(6,18,41,.86), rgba(6,18,41,.46)),
    url("https://images.unsplash.com/photo-1593784991095-a205069470b6?q=80&w=1800&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}

.page-hero h1 {
  max-width: 820px;
}

.page-hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
  line-height: 1.68;
}

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

.info-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(6, 18, 41, 0.06);
}

.info-card p {
  color: var(--muted);
  line-height: 1.65;
}

.contact-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-card p {
  color: var(--muted);
  line-height: 1.65;
}

.catalog-page {
  color: #f5f7fb;
  background: #060b13;
}

.catalog-page .topbar,
.catalog-page .footer,
.catalog-page .final-cta {
  display: none;
}

.catalog-experience {
  min-height: 100vh;
  background:
    radial-gradient(circle at 76% 0%, rgba(111, 74, 255, 0.16), transparent 32rem),
    radial-gradient(circle at 18% 24%, rgba(31, 109, 184, 0.12), transparent 28rem),
    linear-gradient(135deg, #070d17 0%, #0a101b 42%, #050810 100%);
}

.catalog-stage {
  min-height: 100vh;
  padding: 42px 0 56px;
}

.catalog-shell {
  width: min(1800px, calc(100% - 64px));
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.catalog-intro {
  position: sticky;
  top: 32px;
  display: grid;
  gap: 18px;
}

.catalog-intro h1 {
  margin: 0;
  font-size: clamp(2.3rem, 3vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.catalog-intro > p:not(.kicker):not(.country-note) {
  max-width: 280px;
  margin: 0 0 40px;
  color: rgba(245, 247, 251, 0.58);
  font-size: 1.05rem;
  line-height: 1.45;
}

.catalog-filter-panel {
  display: grid;
  gap: 22px;
  width: 100%;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(17, 25, 37, 0.78);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.catalog-filter-panel.is-open {
  border-color: rgba(124, 77, 255, 0.42);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22), 0 0 0 4px rgba(124, 77, 255, 0.08);
}

.catalog-filter-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.catalog-filter-title strong {
  font-size: 1.08rem;
}

.catalog-filter-title button,
.catalog-section-head button {
  border: 0;
  color: #8d63ff;
  background: transparent;
  font-weight: 850;
  cursor: pointer;
}

.catalog-filter-group {
  display: grid;
  gap: 12px;
}

.catalog-filter-group p,
.catalog-filter-group > span {
  margin: 0;
  color: rgba(245, 247, 251, 0.78);
  font-size: 1rem;
  font-weight: 850;
}

.catalog-check {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  padding: 0;
  color: rgba(245, 247, 251, 0.72);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.catalog-check span {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(245, 247, 251, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
}

.catalog-check.is-active span {
  border-color: #7c4dff;
  background: #7c4dff;
  box-shadow: inset 0 0 0 4px #7c4dff;
}

.catalog-filter-group select {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 0 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  font-weight: 760;
}

.catalog-filter-group select option {
  color: #101828;
}

.catalog-console {
  display: grid;
  gap: 26px;
  min-width: 0;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(320px, 1fr);
  gap: 0;
  align-items: center;
}

.catalog-search {
  position: relative;
  display: block;
}

.catalog-search-icon {
  position: absolute;
  left: 24px;
  top: 50%;
  color: rgba(245, 247, 251, 0.76);
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  z-index: 1;
}

.catalog-toolbar input {
  width: 100%;
  min-height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 0 66px;
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 12px 36px rgba(0,0,0,0.16);
  font: inherit;
  font-size: 1.14rem;
  outline: none;
}

.catalog-toolbar input::placeholder {
  color: rgba(245, 247, 251, 0.5);
}

.catalog-toolbar input:focus {
  border-color: rgba(124, 77, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(124, 77, 255, 0.12);
}

.catalog-tabs {
  display: inline-flex;
  width: fit-content;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.catalog-tabs button {
  min-height: 58px;
  border: 0;
  padding: 0 28px;
  color: rgba(245, 247, 251, 0.72);
  background: transparent;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.catalog-tabs button.is-active {
  color: #fff;
  background: linear-gradient(135deg, #865dff, #6e39ff);
  box-shadow: 0 12px 28px rgba(110, 57, 255, 0.28);
}

.catalog-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(245, 247, 251, 0.6);
  font-size: 1rem;
  font-weight: 760;
}

.catalog-meta strong {
  color: #8d63ff;
}

.catalog-meta p {
  margin: 0;
}

.catalog-meta [data-catalog-package] {
  display: none;
}

.catalog-sections {
  display: grid;
  gap: 36px;
}

.catalog-section {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.catalog-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.catalog-section-head h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.catalog-card {
  min-width: 0;
}

.catalog-poster {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 36px rgba(0,0,0,0.24);
}

.catalog-section-live .catalog-poster {
  aspect-ratio: 1.45 / 1;
  padding: 20px;
}

.catalog-poster img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.catalog-poster span {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 5px 8px;
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 12, 20, 0.78);
  font-size: 0.68rem;
  font-weight: 900;
}

.catalog-poster b {
  display: none;
}

.catalog-poster.is-empty {
  background: linear-gradient(145deg, #111b28, #0b111b);
}

.catalog-poster.is-empty b {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  color: rgba(255,255,255,0.86);
  background: rgba(255,255,255,0.1);
  font-size: 1.65rem;
  font-weight: 950;
}

.catalog-card-body {
  padding-top: 12px;
}

.catalog-card-body strong {
  display: -webkit-box;
  min-height: 2.55em;
  overflow: hidden;
  color: #f7f9ff;
  font-size: 0.94rem;
  line-height: 1.28;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.catalog-card-body p {
  display: -webkit-box;
  min-height: 2.35em;
  overflow: hidden;
  margin: 6px 0 0;
  color: rgba(245, 247, 251, 0.48);
  font-size: 0.86rem;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.catalog-card-body div {
  display: none;
}

.catalog-empty {
  padding: 42px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  color: rgba(245, 247, 251, 0.62);
  background: rgba(255, 255, 255, 0.045);
  text-align: center;
}

.catalog-empty strong {
  display: block;
  color: #fff;
  font-size: 1.25rem;
}

.catalog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  color: rgba(245, 247, 251, 0.68);
  font-weight: 820;
}

.catalog-pagination.is-hidden {
  display: none;
}

.catalog-pagination .button-outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(255, 255, 255, 0.12);
}

.catalog-pagination button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 960px) {
  .topbar {
    grid-template-columns: auto 1fr auto;
    gap: 16px;
  }

  .menu-button {
    justify-self: end;
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 0 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    font-weight: 800;
  }

  .main-nav {
    position: fixed;
    inset: 72px 16px auto;
    display: grid;
    gap: 0;
    padding: 10px;
    border-radius: 18px;
    background: var(--blue-950);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav a {
    padding: 14px;
    border-radius: 12px;
  }

  .topbar-link {
    display: none;
  }

  .hero-layout,
  .plans-grid,
  .split,
  .split-reverse,
  .faq-layout,
  .final-box,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .catalog-shell {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .catalog-intro {
    position: relative;
    top: auto;
  }

  .catalog-filter-panel {
    display: none;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .catalog-intro h1,
  .catalog-intro > p:not(.kicker):not(.country-note) {
    max-width: none;
  }

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

  .catalog-section-live .catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-panel {
    max-width: 520px;
  }

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

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

  .topbar {
    min-height: 66px;
    padding-inline: 14px;
  }

  .brand span:last-child {
    font-size: 0.98rem;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .main-nav {
    top: 66px;
  }

  .hero,
  .hero-layout {
    min-height: auto;
  }

  .hero-layout {
    padding: 56px 0;
  }

  .hero-media {
    background-position: 64% center;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(6,18,41,.82), rgba(6,18,41,.96));
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .lead,
  .page-hero p {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-actions .button,
  .hero-panel .button,
  .final-box .button,
  .contact-card .button {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }

  .extra-grid,
  .devices-grid {
    grid-template-columns: 1fr;
  }

  .catalog-meta,
  .catalog-pagination {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-stage {
    padding: 18px 0 34px;
  }

  .catalog-shell {
    width: min(100% - 24px, 1180px);
    gap: 24px;
  }

  .catalog-intro {
    gap: 12px;
  }

  .catalog-intro h1 {
    font-size: clamp(1.95rem, 9vw, 2.55rem);
  }

  .catalog-intro > p:not(.kicker):not(.country-note) {
    max-width: 290px;
    margin-bottom: 0;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
  }

  .catalog-search-icon {
    left: 14px;
    font-size: 1.45rem;
  }

  .catalog-toolbar input {
    min-height: 48px;
    border-radius: 14px;
    padding: 0 42px;
    font-size: 0.95rem;
  }

  .catalog-tabs {
    width: 100%;
    overflow-x: auto;
    border-radius: 12px;
  }

  .catalog-tabs button {
    flex: 1 0 auto;
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.8rem;
  }

  .catalog-meta {
    gap: 8px;
    font-size: 0.9rem;
  }

  .catalog-sections {
    gap: 32px;
  }

  .catalog-section-head h2 {
    font-size: 1.02rem;
  }

  .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 13px;
  }

  .catalog-section-live .catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .catalog-poster span {
    right: 8px;
    bottom: 8px;
    max-width: calc(100% - 16px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.62rem;
  }

  .catalog-card-body {
    padding: 8px 0 0;
  }

  .catalog-card-body strong {
    min-height: 2.55em;
    font-size: 0.82rem;
  }

  .catalog-card-body p {
    min-height: 2.35em;
    font-size: 0.74rem;
  }

  .image-card {
    min-height: 280px;
  }

  .footer-layout {
    flex-direction: column;
    text-align: center;
  }

  .footer nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}
