﻿:root {
  --background: #03080e;
  --background-2: #06111a;
  --panel: rgba(8, 18, 27, 0.84);
  --panel-2: rgba(13, 25, 36, 0.78);
  --card: rgba(13, 26, 38, 0.84);
  --yellow: #ffd200;
  --yellow-2: #ffb900;
  --white: #f7f8fb;
  --gray: #b8c0ca;
  --muted: #7f8b98;
  --border: rgba(124, 147, 167, 0.22);
  --border-strong: rgba(255, 210, 0, 0.9);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.48);
  --radius: 8px;
  --container: 1380px;
  --header-h: 80px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 16%, rgba(20, 79, 119, 0.36), transparent 34%),
    radial-gradient(circle at 23% 20%, rgba(10, 49, 79, 0.3), transparent 29%),
    linear-gradient(180deg, #02060b 0%, #04101a 44%, #02060b 100%);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px) 0 0 / 80px 80px;
  opacity: 0.18;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: var(--header-h);
  background: rgba(2, 7, 12, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(14px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.logo-link {
  width: 190px;
  flex: 0 0 auto;
}

.logo {
  width: 190px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  margin-right: 42px;
}

.main-nav a {
  position: relative;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--yellow);
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 3px;
  background: var(--yellow);
  border-radius: 999px;
}

.nav-cta,
.btn,
.buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 34px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.nav-cta,
.btn-primary,
.buy-btn.primary {
  color: #071018;
  background: linear-gradient(180deg, var(--yellow) 0%, var(--yellow-2) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.38), 0 14px 26px rgba(255, 199, 0, 0.18);
}

.nav-cta {
  min-height: 50px;
  padding-inline: 28px;
  gap: 13px;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 46px 0 34px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 8, 14, 0.88) 0%, rgba(3, 8, 14, 0.66) 42%, rgba(3, 8, 14, 0.12) 72%),
    radial-gradient(circle at 59% 60%, rgba(255, 191, 0, 0.09), transparent 27%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(470px, 560px) minmax(560px, 1fr);
  align-items: center;
  gap: 24px;
}

.hero-copy {
  z-index: 3;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 23px;
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow img {
  width: 30px;
  height: 22px;
  object-fit: cover;
  border-radius: 2px;
}

h1,
h2,
h3,
.price {
  margin: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 560px;
  font-family: Impact, "Arial Black", Haettenschweiler, sans-serif;
  font-size: clamp(60px, 6vw, 76px);
  line-height: 1.08;
  font-weight: 900;
  color: var(--white);
  text-shadow: 0 4px 0 rgba(0,0,0,0.28);
}

h1 span,
h2 span {
  color: var(--yellow);
}

.hero-lead {
  margin: 20px 0 36px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.65;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 585px;
  margin-bottom: 36px;
}

.stat {
  min-width: 0;
  text-align: center;
}

.stat-icon {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 42px;
  margin-bottom: 13px;
  background-repeat: no-repeat;
  background-color: transparent;
}

.tv-icon {
  background-image: url("assets/icons-for-banner.png");
  background-size: 508.8px 55.2px;
  background-position: -43.7px -10.3px;
}

.movie-icon {
  background-image: url("assets/icons-for-banner.png");
  background-size: 641.5px 55.6px;
  background-position: -194.1px -8.5px;
}

.quality-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #7897b2;
  border-radius: 3px;
  color: #9bb6ce;
  font-size: 18px;
  font-weight: 900;
}

.device-icon {
  background-image: url("assets/icons-for-banner.png");
  background-size: 416.8px 53.6px;
  background-position: -219.4px -9.7px;
}

.stat strong {
  display: block;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
}

.stat small {
  color: var(--gray);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-bottom: 36px;
}

.btn {
  min-width: 182px;
  gap: 26px;
}

.btn-ghost {
  color: var(--white);
  background: rgba(2, 7, 12, 0.32);
  border: 1px solid rgba(255, 210, 0, 0.74);
}

.rating-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.stars,
.trust-stars {
  display: flex;
  gap: 4px;
}

.stars span,
.trust-stars span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: white;
  background: #00b67a;
  font-size: 18px;
  line-height: 1;
}

.trustpilot {
  color: var(--white);
  font-weight: 850;
}

.trustpilot span {
  color: #00b67a;
}

.hero-media {
  position: relative;
  z-index: 2;
  height: 670px;
  margin-right: -88px;
}

.hero-media > img {
  position: absolute;
  right: -92px;
  top: -18px;
  width: 860px;
  max-width: none;
  height: auto;
  filter: drop-shadow(0 34px 52px rgba(0, 0, 0, 0.6));
}


.section-panel > .container,
.split-panel,
.cta-banner {
  position: relative;
  background:
    radial-gradient(circle at 50% -18%, rgba(50, 93, 125, 0.22), transparent 40%),
    linear-gradient(180deg, rgba(9, 21, 32, 0.92), rgba(5, 13, 21, 0.92));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), var(--shadow);
}

.benefits {
  margin-top: -8px;
}

.benefits > .container {
  padding: 28px 24px 28px;
}

.section-panel h2,
.devices h2,
.trust h2,
.cta-banner h2 {
  text-align: center;
  color: var(--white);
  font-size: 31px;
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: 1px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.benefit-card {
  min-height: 180px;
  padding: 24px 18px 20px;
  text-align: center;
  background: linear-gradient(180deg, rgba(18, 33, 48, 0.82), rgba(10, 20, 31, 0.9));
  border: 1px solid var(--border);
  border-radius: 8px;
}

.benefit-icon {
  position: relative;
  display: block;
  width: 46px;
  height: 46px;
  margin: 0 auto 20px;
  color: var(--yellow);
}

.badge-icon,
.channels-icon,
.screens-icon,
.support-icon,
.shield-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  color: #ffd200;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.badge-icon {
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20width%3D'54'%20height%3D'54'%20viewBox%3D'0%200%2054%2054'%20fill%3D'none'%3E%0A%20%20%20%20%3Ccircle%20cx%3D'27'%20cy%3D'27'%20r%3D'19'%20stroke%3D'currentColor'%20stroke-width%3D'3.2'%2F%3E%0A%20%20%20%20%3Ccircle%20cx%3D'27'%20cy%3D'27'%20r%3D'10'%20stroke%3D'currentColor'%20stroke-width%3D'3'%20opacity%3D'.95'%2F%3E%0A%20%20%20%20%3Cpath%20d%3D'M20%2013.5%2014.5%207.5%2016.7%2018.5'%20stroke%3D'currentColor'%20stroke-width%3D'3'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%2F%3E%0A%20%20%20%20%3Cpath%20d%3D'M34%2013.5%2039.5%207.5%2037.3%2018.5'%20stroke%3D'currentColor'%20stroke-width%3D'3'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%2F%3E%0A%20%20%20%20%3Cpath%20d%3D'M27%2018.5l2.3%204.8%205.3.8-3.8%203.7.9%205.2-4.7-2.5-4.7%202.5.9-5.2-3.8-3.7%205.3-.8z'%20fill%3D'currentColor'%2F%3E%0A%20%20%3C%2Fsvg%3E");
}

.channels-icon {
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20width%3D'54'%20height%3D'54'%20viewBox%3D'0%200%2054%2054'%20fill%3D'none'%3E%0A%20%20%20%20%3Crect%20x%3D'10'%20y%3D'10'%20width%3D'34'%20height%3D'34'%20rx%3D'5'%20stroke%3D'currentColor'%20stroke-width%3D'3.2'%2F%3E%0A%20%20%20%20%3Crect%20x%3D'18'%20y%3D'18'%20width%3D'4.5'%20height%3D'4.5'%20rx%3D'1'%20fill%3D'currentColor'%2F%3E%0A%20%20%20%20%3Crect%20x%3D'27'%20y%3D'18'%20width%3D'4.5'%20height%3D'4.5'%20rx%3D'1'%20fill%3D'currentColor'%2F%3E%0A%20%20%20%20%3Crect%20x%3D'18'%20y%3D'27'%20width%3D'4.5'%20height%3D'4.5'%20rx%3D'1'%20fill%3D'currentColor'%2F%3E%0A%20%20%20%20%3Crect%20x%3D'27'%20y%3D'27'%20width%3D'4.5'%20height%3D'4.5'%20rx%3D'1'%20fill%3D'currentColor'%2F%3E%0A%20%20%20%20%3Cpath%20d%3D'M33%2031h8v8h-8z'%20stroke%3D'currentColor'%20stroke-width%3D'3'%20stroke-linejoin%3D'round'%2F%3E%0A%20%20%3C%2Fsvg%3E");
}

.screens-icon {
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20width%3D'54'%20height%3D'54'%20viewBox%3D'0%200%2054%2054'%20fill%3D'none'%3E%0A%20%20%20%20%3Crect%20x%3D'8.5'%20y%3D'13'%20width%3D'23'%20height%3D'16'%20rx%3D'2.5'%20stroke%3D'currentColor'%20stroke-width%3D'3'%2F%3E%0A%20%20%20%20%3Cpath%20d%3D'M14%2031.5h13'%20stroke%3D'currentColor'%20stroke-width%3D'3'%20stroke-linecap%3D'round'%2F%3E%0A%20%20%20%20%3Cpath%20d%3D'M17.5%2034.5H21'%20stroke%3D'currentColor'%20stroke-width%3D'3'%20stroke-linecap%3D'round'%2F%3E%0A%20%20%20%20%3Crect%20x%3D'26'%20y%3D'20'%20width%3D'18.5'%20height%3D'14.5'%20rx%3D'2.5'%20stroke%3D'currentColor'%20stroke-width%3D'3'%2F%3E%0A%20%20%20%20%3Cpath%20d%3D'M30%2024h10.5M30%2028h7.5'%20stroke%3D'currentColor'%20stroke-width%3D'3'%20stroke-linecap%3D'round'%2F%3E%0A%20%20%3C%2Fsvg%3E");
}

.support-icon {
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20width%3D'54'%20height%3D'54'%20viewBox%3D'0%200%2054%2054'%20fill%3D'none'%3E%0A%20%20%20%20%3Cpath%20d%3D'M39%2018a17%2017%200%201%200%204%2011'%20stroke%3D'currentColor'%20stroke-width%3D'3.5'%20stroke-linecap%3D'round'%2F%3E%0A%20%20%20%20%3Cpath%20d%3D'M39%2018v8h-8'%20stroke%3D'currentColor'%20stroke-width%3D'3.5'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%2F%3E%0A%20%20%20%20%3Cpath%20d%3D'M24.5%2039.5h5'%20stroke%3D'currentColor'%20stroke-width%3D'3.5'%20stroke-linecap%3D'round'%2F%3E%0A%20%20%3C%2Fsvg%3E");
}

.shield-icon {
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20width%3D'54'%20height%3D'54'%20viewBox%3D'0%200%2054%2054'%20fill%3D'none'%3E%0A%20%20%20%20%3Cpath%20d%3D'M27%207.5%2041%2012v10.5c0%2010-6.3%2016.8-14%2021-7.7-4.2-14-11-14-21V12l14-4.5Z'%20stroke%3D'currentColor'%20stroke-width%3D'3.2'%20stroke-linejoin%3D'round'%2F%3E%0A%20%20%20%20%3Cpath%20d%3D'm20.5%2027.5%204%204.2%209-9.2'%20stroke%3D'currentColor'%20stroke-width%3D'3.5'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%2F%3E%0A%20%20%3C%2Fsvg%3E");
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
}

.benefit-icon img {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.benefit-card p {
  margin: 0;
  color: var(--white);
  font-size: 12px;
  line-height: 1.62;
}


.pricing {
  padding-top: 20px;
}

.pricing > .container {
  padding: 24px 20px 18px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.price-card {
  position: relative;
  min-height: 390px;
  padding: 24px 26px 22px;
  background: rgba(6, 13, 22, 0.56);
  border: 1px solid rgba(153, 170, 188, 0.38);
  border-radius: 8px;
}

.price-card.featured {
  border: 2px solid var(--yellow);
  box-shadow: 0 0 0 1px rgba(255, 210, 0, 0.12), 0 0 26px rgba(255, 210, 0, 0.08);
}

.popular {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px 5px;
  color: #10161d;
  background: var(--yellow);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.price-card h3 {
  margin-bottom: 22px;
  font-size: 23px;
  font-weight: 950;
  text-align: center;
}

.price {
  margin-bottom: 24px;
  color: var(--white);
  font-size: 52px;
  line-height: 1;
  font-weight: 300;
}

.price sup {
  top: -0.65em;
  position: relative;
  margin-right: 4px;
  font-size: 26px;
}

.price small {
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-transform: none;
}

.price-card ul {
  display: grid;
  gap: 13px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 28px;
  color: var(--white);
  font-size: 14px;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border: 1.6px solid var(--yellow);
  border-radius: 50%;
}

.price-card li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  transform: rotate(-45deg);
}

.buy-btn {
  width: 100%;
  min-height: 52px;
  color: var(--white);
  border: 1px solid rgba(198, 208, 220, 0.58);
  background: rgba(4, 9, 15, 0.45);
}

.buy-btn.primary {
  color: #071018;
  border-color: transparent;
}

.devices-trust {
  padding-top: 18px;
}

.split-panel {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 28px;
  padding: 24px 26px;
}

.devices h2,
.trust h2,
.cta-banner h2 {
  text-align: left;
  font-size: 29px;
}

.devices h2 span,
.trust h2 span,
.cta-banner h2 span {
  color: var(--yellow);
}

.device-list {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
  margin-top: 30px;
}

.device-list div {
  display: grid;
  place-items: center;
  min-width: 82px;
  gap: 14px;
  color: var(--white);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.device-list img {
  width: 48px;
  height: 54px;
  object-fit: contain;
}

.device-list div:nth-child(2) img {
  width: 36px;
}

.device-list div:nth-child(3) img {
  width: 61px;
}

.device-list div:nth-child(5) img {
  width: 52px;
}

.mag-device {
  display: grid;
  place-items: center;
  width: 56px;
  height: 43px;
  border: 2px solid rgba(255,255,255,0.72);
  border-radius: 3px;
  font-weight: 950;
}

.trust {
  padding-left: 36px;
  border-left: 1px solid rgba(255,255,255,0.15);
}

.trust-stars {
  margin: 23px 0 9px;
}

.trust-stars span {
  width: 41px;
  height: 41px;
  font-size: 28px;
}

.trust p {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.45;
}

.avatars {
  display: flex;
  align-items: center;
  padding-top: 4px;
}

.avatars img {
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255,255,255,0.86);
  border-radius: 50%;
  object-fit: cover;
  margin-left: -8px;
}

.avatars img:first-child {
  margin-left: 0;
}

.avatars span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 34px;
  margin-left: 4px;
  color: #11171d;
  background: var(--yellow);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 950;
}

.cta-section {
  padding: 14px 0 26px;
}

.cta-banner {
  min-height: 96px;
  display: grid;
  grid-template-columns: 108px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 16px 26px;
}

.cta-banner > img {
  width: 96px;
  height: 55px;
  object-fit: cover;
  border-radius: 2px;
}

.cta-banner h2 {
  margin-bottom: 4px;
}

.cta-banner p {
  margin: 0;
  color: var(--white);
  font-size: 15px;
}

.cta-banner .btn {
  min-width: 222px;
  min-height: 55px;
}

.site-footer {
  padding: 18px 0 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(31, 66, 97, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(4, 10, 16, 0.96), rgba(2, 7, 12, 0.98));
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.28fr 0.72fr 0.82fr 0.76fr 1.18fr;
  gap: 34px;
  padding: 10px 0 24px;
}

.footer-brand {
  padding-top: 2px;
}

.footer-logo {
  width: 184px;
  height: auto;
  margin-bottom: 12px;
}

.footer-brand p,
.footer-grid a {
  color: var(--white);
  font-size: 12px;
  line-height: 1.72;
}

.footer-brand p {
  margin: 0 0 15px;
  color: #d7dde5;
}

.footer-col,
.footer-payments {
  display: flex;
  flex-direction: column;
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0;
}

.footer-col a {
  margin-bottom: 6px;
  color: #d7dde5;
}

.footer-col a:last-child {
  margin-bottom: 0;
}

.footer-payments {
  display: flex;
  flex-direction: column;
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0;
}

.footer-col a {
  margin-bottom: 6px;
  color: #d7dde5;
}

.footer-col a:last-child {
  margin-bottom: 0;
}

.footer-payments {
  padding-left: 34px;
  border-left: 1px solid rgba(255,255,255,0.12);
}

.payments-grid {
  display: grid;
  grid-template-columns: repeat(3, 74px);
  gap: 12px 14px;
}

.payment-card {
  display: grid;
  place-items: center;
  width: 74px;
  height: 38px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.35), inset 0 0 0 1px rgba(0,0,0,0.04);
}

.payment-card img {
  width: 56px;
  height: 30px;
  object-fit: contain;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-bottom p,
.footer-bottom span {
  margin: 0;
  color: #98a2ae;
  font-size: 12px;
}

.footer-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-meta::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  opacity: 0.95;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.footer-secure::before {
  background-image: radial-gradient(circle at 50% 50%, currentColor 0 2px, transparent 2px),
    linear-gradient(currentColor, currentColor);
  clip-path: polygon(50% 0%, 90% 14%, 90% 52%, 50% 100%, 10% 52%, 10% 14%);
}

.footer-ssl::before {
  background: currentColor;
  clip-path: polygon(26% 38%, 26% 28%, 32% 17%, 50% 11%, 68% 17%, 74% 28%, 74% 38%, 79% 38%, 79% 89%, 21% 89%, 21% 38%);
}

.footer-support::before {
  background: currentColor;
  clip-path: polygon(50% 0%, 62% 7%, 69% 18%, 79% 18%, 82% 31%, 93% 38%, 89% 50%, 93% 62%, 82% 69%, 79% 82%, 69% 82%, 62% 93%, 50% 100%, 38% 93%, 31% 82%, 21% 82%, 18% 69%, 7% 62%, 11% 50%, 7% 38%, 18% 31%, 21% 18%, 31% 18%, 38% 7%);
}

.footer-guarantee::before {
  background: currentColor;
  clip-path: polygon(50% 0%, 64% 14%, 82% 10%, 88% 28%, 100% 36%, 92% 52%, 100% 68%, 88% 76%, 82% 94%, 64% 90%, 50% 100%, 36% 90%, 18% 94%, 12% 76%, 0% 68%, 8% 52%, 0% 36%, 12% 28%, 18% 10%, 36% 14%);
}
.footer-bottom p {
  margin-right: auto;
}

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

  .footer-payments {
    padding-left: 0;
    border-left: 0;
  }
}

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

  .footer-bottom-inner {
    flex-wrap: wrap;
    gap: 10px 18px;
    padding: 14px 0;
  }
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  :root {
    --header-h: 92px;
  }

  .container {
    width: min(100% - 40px, var(--container));
  }

  .main-nav {
    gap: 20px;
    margin-right: 20px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    height: 520px;
    margin-right: 0;
  }

  .hero-media > img {
    right: 50%;
    transform: translateX(50%);
    width: min(900px, 115vw);
  }

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

  .split-panel,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust,
  .payments {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: auto;
    position: relative;
  }

  .header-inner {
    padding: 16px 0;
    flex-wrap: wrap;
  }

  .logo-link,
  .logo {
    width: 180px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    gap: 22px;
    margin: 4px 0 0;
    padding-bottom: 8px;
  }

  .nav-cta {
    padding-inline: 18px;
  }

  .hero {
    padding-top: 48px;
  }

  h1 {
    font-size: 54px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-stats,
  .benefit-grid,
  .pricing-grid,
  .split-panel,
  .footer-grid,
  .cta-banner {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-media {
    height: 390px;
  }


  .section-panel h2,
  .devices h2,
  .trust h2,
  .cta-banner h2 {
    font-size: 27px;
  }

  .device-list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bottom .container {
    flex-wrap: wrap;
    gap: 12px 24px;
    padding: 16px 0;
  }
}












