:root {
  --purple: #7d35d8;
  --purple-dark: #3e1466;
  --pink: #b0005a;
  --pink-deep: #850043;
  --green: #167a2e;
  --green-dark: #105f23;
  --focus: #ffc41f;
  --yellow: #ffc41f;
  --text: #202020;
  --muted: #5b5b5b;
  --line: #e9e5e5;
  --soft: #f6f4f1;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Poppins, Montserrat, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

.hero {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(130, 54, 211, .86), rgba(178, 82, 218, .72)),
    url("assets/hero-family.webp") center 42% / cover no-repeat;
}

.nav {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 40px 48px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.brand img {
  width: 140px;
  display: block;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  gap: 48px;
  padding-top: 4px;
  font-size: 16px;
  font-weight: 500;
}

.nav-links a {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: .96;
}

.nav-links a.active {
  color: #fff;
  font-weight: 800;
  text-shadow: 0 1px 12px rgba(255, 255, 255, .35);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 72px auto 0;
  padding: 0 32px;
  text-align: center;
}

.hero h1 {
  margin: 0 auto 24px;
  max-width: 1060px;
  font-size: clamp(48px, 5vw, 64px);
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 800;
}

.page-hero {
  min-height: 500px;
}

.page-hero .hero-content {
  margin-top: 64px;
}

.page-kicker {
  width: fit-content;
  margin: 0 auto 16px;
  padding: 6px 16px;
  color: #fff;
  background: rgba(233, 26, 155, .9);
  border-radius: 16px;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 800;
}

.hero p {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  transition: background-color .12s ease, color .12s ease, transform .12s ease, filter .12s ease, box-shadow .12s ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(32, 32, 32, .25);
}

.btn:active {
  transform: translateY(1px) scale(.985);
  filter: brightness(.94);
}

.btn-white {
  min-width: 240px;
  padding: 12px 24px;
  background: #fff;
  color: #252525;
  font-size: 16px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .12);
}

.btn-white:hover,
.btn-white:focus-visible {
  background: #f2f2f2;
  color: #111;
}

.btn-icon {
  width: 16px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 2px;
  display: inline-block;
}

.support-line {
  margin-top: 32px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 800;
}

.hero-tags {
  max-width: 980px;
  margin: 24px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-tags span {
  min-height: 36px;
  padding: 7px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 18px;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .08);
}

.section {
  padding: 64px 0;
}

.section h2,
.experience h2 {
  margin: 0;
  color: #202020;
  text-align: center;
  font-size: clamp(32px, 3vw, 42px);
  line-height: 1.25;
  font-weight: 800;
}

.lead {
  max-width: 870px;
  margin: 16px auto 24px;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.device-card {
  min-height: 164px;
  background: #f8f7f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.device-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.device-card strong {
  font-size: 16px;
  font-weight: 800;
}

.smart-tv-cube {
  width: 64px;
  height: 64px;
  display: block;
  border-radius: 7px;
  background: conic-gradient(from 45deg, #f33448, #f5cf25, #36c65c, #3a8fff, #f33448);
  border: 6px solid #f5f5f5;
  box-shadow: 0 0 0 1px #d8d8d8;
}

.pricing {
  padding-top: 64px;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 32px auto 0;
}

.plan-card {
  min-height: 620px;
  padding: 40px 32px 32px;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 2px 9px rgba(0, 0, 0, .08);
  text-align: center;
  background: #fff;
}

.plan-card h3 {
  margin: 0 0 8px;
  color: var(--pink);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
}

.codes {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
}

.price {
  color: #111;
  font-size: 56px;
  line-height: 1;
  font-weight: 900;
}

.price span {
  margin-left: 2px;
  font-size: 16px;
  font-weight: 900;
}

.delivery {
  width: fit-content;
  margin: 16px auto 16px;
  padding: 6px 16px;
  color: #202020;
  background: var(--yellow);
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
}

.btn-green {
  width: 180px;
  height: 48px;
  background: var(--green);
  color: #fff;
  font-size: 16px;
}

.btn-green:hover,
.btn-green:focus-visible {
  background: var(--green-dark);
  color: #fff;
}

.btn-green:disabled,
.btn-green[aria-disabled="true"] {
  background: #5f7166;
  color: #fff;
  cursor: not-allowed;
}

.plan-card ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #a7a7a7;
  text-align: left;
}

.plan-card li {
  padding: 10px 0 10px 24px;
  border-bottom: 1px solid #ececec;
  color: #252525;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
  position: relative;
}

.plan-card li::before {
  content: "\2713";
  position: absolute;
  left: 1px;
  top: 10px;
  color: #7441b9;
  font-weight: 900;
}

.experience {
  margin-top: -3px;
  padding: 64px 0;
  background: #f4f3f0;
}

.exp-wrap {
  display: grid;
  grid-template-columns: .98fr 1.02fr;
  align-items: center;
  gap: 40px;
}

.exp-copy {
  text-align: center;
}

.exp-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(40px, 4vw, 52px);
  line-height: 1.2;
}

.exp-copy p {
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
}

.btn-pink {
  min-width: 240px;
  min-height: 44px;
  padding: 12px 24px;
  background: var(--pink);
  color: #fff;
  font-size: 16px;
}

.btn-pink:hover,
.btn-pink:focus-visible {
  background: var(--pink-deep);
  color: #fff;
}

.btn-pink:disabled,
.btn-pink[aria-disabled="true"] {
  background: #806274;
  color: #fff;
  cursor: not-allowed;
}

.exp-art img {
  width: 100%;
  max-width: 560px;
  display: block;
}

.features {
  padding: 96px 0 72px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.feature-grid article {
  min-height: 148px;
}

.round-icon,
.line-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border: 3px solid var(--pink);
  border-radius: 50%;
  color: var(--pink);
  position: relative;
}

.round-icon::before,
.line-icon::before {
  content: "";
  width: 24px;
  height: 16px;
  border: 3px solid currentColor;
  border-radius: 3px;
}

.pc::before {
  height: 18px;
  border-bottom-width: 7px;
}

.phone::before {
  width: 14px;
  height: 28px;
}

.box::before {
  width: 26px;
  height: 14px;
}

.feature-grid h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
}

.feature-grid p {
  margin: 0 auto;
  max-width: 210px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.intro {
  padding: 64px 0;
}

.narrow {
  max-width: 1080px;
  text-align: center;
}

.intro h2 {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: clamp(32px, 3vw, 42px);
}

.intro p {
  margin: 0 auto 24px;
  max-width: 1030px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
}

.intro .btn {
  margin-top: 16px;
}

.reviews {
  padding-top: 64px;
}

.review-sub {
  margin: 16px 0 40px;
  text-align: center;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 700;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: start;
}

.review-grid img {
  width: 100%;
  display: block;
}

.benefits {
  padding: 72px 0 64px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit-grid article {
  min-height: 300px;
  padding: 40px 24px 32px;
  border: 1px solid #e5e5e5;
  border-radius: 9px;
  text-align: center;
  box-shadow: 0 2px 7px rgba(0, 0, 0, .04);
}

.line-icon {
  margin-bottom: 24px;
}

.play::before {
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-left-color: currentColor;
  border-radius: 0;
  transform: translateX(5px);
}

.globe::before {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.headset::before {
  width: 28px;
  height: 22px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom: 0;
}

.timer::before {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.benefit-grid h3 {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
}

.benefit-grid p {
  margin: 0;
  color: #333;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
}

.faq {
  padding: 64px 0;
}

.faq-wrap {
  max-width: 1000px;
  text-align: center;
}

.faq p {
  margin: 12px 0 24px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion button {
  width: 100%;
  min-height: 52px;
  padding: 0 20px;
  border: 0;
  background: var(--soft);
  color: #383838;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 800;
}

.accordion button:active {
  filter: brightness(.96);
}

.accordion span {
  width: 10px;
  height: 10px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
}

.accordion button.open span {
  transform: rotate(225deg);
}

.cta-bottom {
  margin-top: 32px;
  min-width: 260px;
}

.rating {
  margin-top: 20px;
  color: #222;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

.footer {
  background: var(--purple-dark);
  color: #fff;
}

.footer-grid {
  min-height: 280px;
  padding-top: 64px;
  padding-bottom: 48px;
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1fr;
  gap: 80px;
}

.footer h2 {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
}

.footer p,
.footer a {
  display: block;
  margin: 0 0 8px;
  color: #f8f8f8;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
}

.footer a:hover,
.footer a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.copyright {
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.comparison-table {
  margin-top: 32px;
  border: 1px solid #e5e5e5;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 2px 7px rgba(0, 0, 0, .04);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  align-items: center;
  min-height: 64px;
  border-bottom: 1px solid #ececec;
  background: #fff;
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row span,
.comparison-row strong {
  padding: 16px 20px;
  font-size: 16px;
  line-height: 1.45;
}

.comparison-row strong {
  color: #7441b9;
  text-align: center;
}

.comparison-head {
  color: #fff;
  background: var(--purple-dark);
  font-weight: 900;
}

.app-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

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

.app-card,
.support-card {
  min-height: 420px;
  padding: 32px 24px;
  border: 1px solid #e5e5e5;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 2px 7px rgba(0, 0, 0, .04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.support-card {
  min-height: 340px;
  align-items: center;
  text-align: center;
}

.app-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--purple-dark));
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 2px 7px rgba(0, 0, 0, .12);
}

.app-card h3,
.support-card h3 {
  margin: 0;
  color: #202020;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 900;
}

.app-card p,
.support-card p,
.contact-copy p {
  margin: 0;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
}

.app-card strong {
  color: var(--pink);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 900;
}

.app-card .btn {
  width: 100%;
  margin-top: auto;
}

.app-card ul,
.support-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.app-card li,
.support-list li {
  padding: 8px 0 8px 24px;
  border-bottom: 1px solid #ececec;
  color: #252525;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
  position: relative;
}

.app-card li::before,
.support-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #7441b9;
  font-weight: 900;
}

.contact-section {
  background: #f8f7f5;
}

.contact-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.contact-copy h2 {
  margin: 0 0 24px;
  color: #202020;
  font-size: clamp(32px, 3vw, 42px);
  line-height: 1.25;
  font-weight: 800;
}

.support-list {
  margin-top: 24px;
}

.support-form {
  padding: 32px;
  border: 1px solid #e5e5e5;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 2px 7px rgba(0, 0, 0, .04);
  display: grid;
  gap: 16px;
}

.support-form label {
  display: grid;
  gap: 8px;
  color: #202020;
  font-size: 15px;
  font-weight: 800;
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #202020;
  background: #fff;
  font: inherit;
}

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

.support-form button {
  width: 100%;
}

.page-cta {
  margin-top: 0;
}

.whatsapp {
  position: fixed;
  right: 20px;
  top: 49.5%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  z-index: 10;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-size: 24px;
  box-shadow: 0 2px 7px rgba(0, 0, 0, .22);
}

.side-help {
  position: fixed;
  right: -64px;
  top: 280px;
  z-index: 10;
  transform: rotate(-90deg);
  transform-origin: center;
  padding: 12px 16px;
  border-radius: 8px 8px 0 0;
  color: #fff;
  background: var(--pink);
  font-size: 14px;
  font-weight: 800;
}

.whatsapp:hover,
.whatsapp:focus-visible,
.side-help:hover,
.side-help:focus-visible {
  color: #fff;
  background: var(--green-dark);
}

.side-help:hover,
.side-help:focus-visible {
  background: var(--pink-deep);
}

@media (max-width: 1180px) {
  .app-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .container {
    padding: 0 24px;
  }

  .hero h1 {
    font-size: clamp(40px, 6vw, 52px);
  }

  .plans {
    gap: 16px;
  }

  .plan-card {
    padding: 32px 20px 28px;
  }

  .plan-card li {
    font-size: 14px;
  }

  .benefit-grid article {
    padding: 32px 20px 28px;
  }

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

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

@media (max-width: 820px) {
  .nav {
    padding: 32px 24px 0;
  }

  .brand img {
    width: 120px;
  }

  .nav-links {
    gap: 24px;
    font-size: 15px;
  }

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

  .plans,
  .exp-wrap {
    grid-template-columns: 1fr;
  }

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

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-head span:not(:first-child) {
    display: none;
  }

  .comparison-row strong {
    text-align: left;
  }
}

@media (max-width: 540px) {
  .container {
    padding: 0 20px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 24px 20px 0;
  }

  .brand img {
    width: 104px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 14px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    margin-top: 48px;
    padding: 0 20px;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .hero p,
  .support-line {
    font-size: 16px;
  }

  .hero-tags {
    gap: 8px;
  }

  .hero-tags span {
    min-height: 34px;
    padding: 7px 12px;
    font-size: 13px;
  }

  .section h2,
  .experience h2,
  .intro h2 {
    font-size: 28px;
    overflow-wrap: anywhere;
  }

  .device-grid,
  .review-grid,
  .benefit-grid,
  .feature-grid,
  .app-grid {
    grid-template-columns: 1fr;
  }

  .app-card,
  .support-card,
  .support-form {
    padding: 24px 20px;
  }

  .side-help {
    right: -60px;
    font-size: 14px;
  }
}
