:root {
  --page-bg: #f4f6f6;
  --nav-blue: #11185f;
  --accent-yellow: #ffe800;
  --button-blue: #2e48dc;
  --text-blue: #07145e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--page-bg);
  font-family: Arial, Helvetica, sans-serif;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.page {
  width: 100%;
  overflow-x: hidden;
}

.slice {
  position: relative;
  width: 100%;
  margin: 0 auto;
  line-height: 0;
  background: var(--page-bg);
}

.slice img {
  position: relative;
  z-index: 0;
  display: block;
  width: min(100%, calc(var(--w) * 1px));
  height: auto;
  margin: 0 auto;
  user-select: none;
  -webkit-user-drag: none;
}

.mask-whatsapp::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 5.7%;
  height: 11%;
  background: var(--page-bg);
  pointer-events: none;
}

.mask-whatsapp-dark::after {
  background: #15111b;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 7, 15, 0.68), rgba(6, 7, 15, 0.5) 42%, rgba(6, 7, 15, 0.68)),
    rgba(6, 7, 15, 0.38);
  pointer-events: none;
}

#playlist::before {
  content: "";
  position: absolute;
  left: 40%;
  top: 69%;
  z-index: 3;
  width: 31%;
  height: 12%;
  background: var(--page-bg);
  border-radius: 0;
  pointer-events: none;
}

.hotspot {
  position: absolute;
  display: block;
  border-radius: 999px;
  transform-origin: center;
  transition: transform 120ms ease, background-color 120ms ease;
}

.hotspot:active {
  transform: scale(0.965);
  background-color: rgba(255, 255, 255, 0.08);
}

.hero-copy {
  position: absolute;
  left: 29%;
  top: 29%;
  z-index: 3;
  width: 43%;
  padding: 26px 32px 28px;
  color: #ffffff;
  text-align: center;
  line-height: 1.45;
  background: rgba(8, 9, 18, 0.96);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(3px);
  border-radius: 8px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 5px 10px;
  color: var(--accent-yellow);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  background: #0757c8;
  border: 1px solid #ffffff;
  border-radius: 4px;
}

.hero-copy h1 {
  margin: 0 0 16px;
  color: var(--accent-yellow);
  font-size: 46px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy .hero-title {
  margin-bottom: 12px;
  font-size: 76px;
  line-height: 0.95;
}

.hero-copy .hero-subtitle {
  margin: 0 auto 14px;
  max-width: 760px;
  color: var(--accent-yellow);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-copy p {
  margin: 0 auto 20px;
  max-width: 780px;
  font-size: 21px;
  font-weight: 700;
}

.primary-cta,
.section-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  background: var(--button-blue);
  border: 2px solid #ffffff;
  border-radius: 999px;
  transition: transform 120ms ease, background-color 120ms ease;
}

.primary-cta:active,
.section-button:active {
  transform: scale(0.96);
  background: #2238bd;
}

.section-copy {
  position: absolute;
  z-index: 2;
  color: #050f4f;
  line-height: 1.55;
  background: var(--page-bg);
}

.playlist-copy {
  top: 0;
  right: 0;
  width: 51%;
  height: 70%;
  padding: 24px 78px 20px 36px;
  overflow: hidden;
}

.section-copy h2,
.seo-heading h2 {
  margin: 0 0 18px;
  color: var(--text-blue);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.28;
  text-transform: uppercase;
}

.section-copy p,
.seo-heading p {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.5;
}

.section-copy ul {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  font-size: 19px;
  font-weight: 600;
}

.section-copy li {
  position: relative;
  padding: 6px 0 6px 30px;
}

.section-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 13px;
  height: 7px;
  border-bottom: 4px solid var(--text-blue);
  border-left: 4px solid var(--text-blue);
  transform: rotate(-45deg);
}

.section-button {
  min-height: 50px;
  padding: 0 34px;
  color: #ffffff;
  background: var(--nav-blue);
  border-color: var(--nav-blue);
}

.seo-heading {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: var(--text-blue);
  text-align: center;
  line-height: 1.35;
  background: var(--page-bg);
}

.seo-heading h2 {
  margin-bottom: 10px;
}

.seo-heading p {
  margin-bottom: 0;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 10.96%;
  padding: 0 9.8% 0 7.7%;
  background: var(--nav-blue);
  line-height: 1;
}

.site-logo,
.site-nav {
  display: flex;
  align-items: center;
}

.site-logo {
  height: 78%;
  color: #ffffff;
  text-decoration: none;
  gap: 12px;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0;
}

.site-logo:active,
.site-nav a:active {
  transform: scale(0.985);
}

.slice .brand-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: 100%;
  margin: 0;
  object-fit: contain;
}

.site-nav {
  gap: 48px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 500;
}

.site-nav a {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav .package-link {
  padding: 15px 29px;
  color: #07145e;
  font-weight: 800;
  background: #ffffff;
  border: 2px dashed #07145e;
  border-radius: 6px;
}

.brand-footer {
  display: none;
}

.nav-hotspot {
  top: 2.1%;
  height: 6.1%;
}

.nav-hotspot.multi {
  left: 33.4%;
  width: 16.5%;
}

.nav-hotspot.channels {
  left: 52.2%;
  width: 15.4%;
}

.nav-hotspot.packages {
  left: 80.1%;
  width: 10.3%;
}

.hero-cta {
  display: none;
}

.intro-cta {
  left: 51.5%;
  top: 66.0%;
  width: 17.5%;
  height: 9.6%;
}

.plans-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 19.6% 8px;
  background: var(--page-bg);
  line-height: 1.35;
}

#packages > img {
  display: none;
}

#packages .plans-overlay {
  position: relative;
  min-height: auto;
  padding-top: 28px;
  padding-bottom: 34px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 1160px;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 375px;
  padding: 26px 20px 22px;
  color: var(--text-blue);
  background: #ffffff;
  border: 1.5px solid var(--text-blue);
  border-radius: 10px;
  box-shadow: 0 2px 0 rgba(7, 20, 94, 0.02);
}

.plan-card.featured {
  color: #ffffff;
  background: var(--nav-blue);
}

.best-seller {
  position: absolute;
  top: 0;
  left: 50%;
  min-width: 130px;
  padding: 7px 14px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, #61c7f3, #47ce5b);
  border-radius: 0 0 6px 6px;
  transform: translateX(-50%);
}

.plan-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.plan-card h3 {
  min-height: 54px;
  margin: 0;
  color: inherit;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.plan-price {
  margin: 10px 0 12px;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.plan-price span {
  margin-right: 4px;
  font-size: 20px;
  vertical-align: super;
}

.plan-card ul {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 600;
}

.plan-card li {
  padding: 10px 0;
  border-top: 1px solid rgba(7, 20, 94, 0.18);
}

.plan-card.featured li {
  border-top-color: rgba(255, 255, 255, 0.35);
}

.plan-button {
  align-self: center;
  min-width: 160px;
  padding: 10px 22px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  background: var(--nav-blue);
  border-radius: 6px;
  transition: transform 120ms ease, background-color 120ms ease;
}

.plan-card.featured .plan-button {
  color: var(--text-blue);
  background: #ffffff;
}

.plan-button:active {
  transform: scale(0.96);
  background: #0a1048;
}

.plan-card.featured .plan-button:active {
  background: #e9edf7;
}

.steps-cta {
  left: 44.2%;
  top: 0;
  width: 11.9%;
  height: 6.1%;
}

.start-cta {
  left: 51.1%;
  top: 88.9%;
  width: 9.7%;
  height: 6.3%;
}

.supplier-cta {
  left: 44.1%;
  top: 80.4%;
  width: 12.0%;
  height: 8.3%;
}

.devices-cta {
  left: 44.1%;
  top: 62.8%;
  width: 12.0%;
  height: 6.5%;
}

.reviews-cta {
  left: 42.1%;
  top: 78.8%;
  width: 15.9%;
  height: 13.0%;
}

#reviews {
  padding: 48px 3% 56px;
  background: var(--page-bg);
  line-height: 1.35;
}

#reviews > img {
  display: none;
}

.reviews-overlay {
  max-width: 1510px;
  margin: 0 auto;
  color: var(--text-blue);
  text-align: center;
}

.reviews-overlay h2 {
  margin: 0 0 8px;
  color: var(--text-blue);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.review-stars {
  margin-bottom: 24px;
  color: #ffe800;
  font-size: 34px;
  letter-spacing: 4px;
  line-height: 1;
}

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

.review-card {
  min-height: 260px;
  padding: 26px 28px 24px;
  color: #20232c;
  text-align: left;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(7, 20, 94, 0.08);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  color: #07145e;
  font-size: 15px;
  font-weight: 900;
  background: #ffe8bd;
  border-radius: 50%;
}

.review-card:nth-child(2) .review-avatar {
  background: #fff6b9;
}

.review-card:nth-child(3) .review-avatar {
  background: #b9f7df;
}

.review-author h3 {
  margin: 0 0 4px;
  color: #20232c;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
}

.review-author p,
.review-card p {
  margin: 0;
}

.review-author p {
  color: #737783;
  font-size: 13px;
  font-weight: 700;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: #05b67a;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 1px;
}

.review-rating span {
  color: #737783;
  font-size: 13px;
  letter-spacing: 0;
}

.review-card h4 {
  margin: 0 0 8px;
  color: #20232c;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.review-card > p {
  color: #3f4654;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.reviews-buy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin-top: 32px;
  padding: 0 48px;
  color: #ffffff;
  font-size: 23px;
  font-weight: 900;
  text-decoration: none;
  background: var(--nav-blue);
  border-radius: 999px;
}

#reviews .reviews-cta {
  display: none;
}

.faq-cta {
  left: 59.5%;
  top: 90.2%;
  width: 12.8%;
  height: 7.3%;
}

.faq-overlay {
  position: relative;
  z-index: 2;
  color: var(--text-blue);
  background: var(--page-bg);
  line-height: 1.35;
}

#faq > img,
#faq + .slice > img,
#faq + .slice + .slice > img {
  display: none;
}

.faq-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(420px, 1fr);
  gap: 48px;
  padding: 0 12.8% 38px 5.7%;
}

.faq-heading {
  padding-top: 4px;
}

.faq-heading h2 {
  margin: 0 0 28px;
  color: var(--text-blue);
  font-size: 47px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
}

.faq-heading p {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
}

.faq-panel {
  align-self: start;
  width: 100%;
  background: #f9fbfb;
  box-shadow: 0 14px 34px rgba(7, 20, 94, 0.08);
}

.faq-buy-button {
  grid-column: 2;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin-top: 22px;
  padding: 0 34px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  background: var(--nav-blue);
  border-radius: 999px;
  transition: transform 120ms ease, background-color 120ms ease;
}

.faq-buy-button::before {
  content: "";
  width: 20px;
  height: 15px;
  margin-right: 12px;
  border: 2px solid #ffffff;
  border-bottom-width: 4px;
  border-radius: 2px;
}

.faq-buy-button:active {
  transform: scale(0.96);
  background: #0a1048;
}

.faq-wide {
  padding: 28px 3.4% 36px;
}

.faq-wide .faq-panel {
  max-width: 1510px;
  margin: 0 auto;
}

.faq-install {
  padding-top: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(7, 20, 94, 0.04);
}

.faq-question {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 68px;
  padding: 14px 62px 14px 32px;
  color: var(--text-blue);
  font: inherit;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.3;
  text-align: left;
  background: #f9fbfb;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  box-shadow: 0 9px 18px rgba(0, 0, 0, 0.08);
}

.faq-question::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  width: 18px;
  height: 18px;
  background: var(--nav-blue);
  border-radius: 50%;
  transform: translateY(-50%);
}

.faq-question::before {
  content: "";
  position: absolute;
  right: 37px;
  top: 50%;
  z-index: 1;
  width: 6px;
  height: 6px;
  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  transform: translateY(-50%) rotate(-45deg);
  transition: transform 160ms ease;
}

.faq-question:hover,
.faq-question:focus-visible {
  background: #ffffff;
}

.faq-question:focus-visible {
  outline: 3px solid rgba(46, 72, 220, 0.35);
  outline-offset: -3px;
}

.faq-item.is-open .faq-question::before {
  transform: translateY(-64%) rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 32px 24px;
  color: #17205f;
  background: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.faq-answer p {
  max-width: 980px;
  margin: 0;
}

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

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  color: #ffffff;
  background: #2fca4c;
  border: 6px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.12);
  transition: transform 120ms ease, background-color 120ms ease;
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  left: -8px;
  bottom: -7px;
  width: 0;
  height: 0;
  border-top: 18px solid #ffffff;
  border-right: 15px solid transparent;
  transform: rotate(11deg);
}

.whatsapp-float svg {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.whatsapp-float:active {
  transform: scale(0.94);
  background: #25b843;
}

.standalone-page .page-hero {
  min-height: 430px;
  overflow: hidden;
  background: #15111b;
}

.standalone-page .page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.standalone-page .page-hero .site-header {
  height: 94px;
}

.standalone-page .subpage-copy {
  left: 50%;
  top: 146px;
  width: min(780px, 86%);
  background: rgba(12, 12, 22, 0.86);
  transform: translateX(-50%);
}

.standalone-page .subpage-copy h1 {
  color: var(--accent-yellow);
}

.standalone-page .subpage-copy p {
  max-width: 700px;
}

.seo-content {
  background: #ffffff;
  color: var(--text-blue);
  line-height: 1.6;
}

.seo-content-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 52px;
}

.seo-content h2 {
  margin: 0 0 18px;
  color: var(--text-blue);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.seo-content h3 {
  margin: 26px 0 10px;
  color: var(--text-blue);
  font-size: 23px;
  font-weight: 900;
  line-height: 1.25;
}

.seo-content p {
  max-width: 980px;
  margin: 0 0 16px;
  font-size: 18px;
}

.seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.seo-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  background: var(--nav-blue);
  border-radius: 6px;
}

.site-footer {
  background: var(--nav-blue);
  color: #ffffff;
  line-height: 1.5;
}

.footer-content {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
  gap: 48px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 46px 0 44px;
}

.footer-brand {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.footer-brand img {
  flex: 0 0 auto;
  width: 74px;
  height: auto;
}

.footer-brand strong {
  display: block;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
}

.footer-brand p,
.footer-actions p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.footer-actions {
  text-align: right;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0 16px;
  margin-bottom: 18px;
}

.footer-links a,
.footer-actions a {
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.footer-actions p + p {
  margin-top: 10px;
}

@media (max-width: 760px) {
  .slice {
    width: 100%;
  }

  .site-header {
    padding: 0 4.2%;
  }

  .site-logo {
    gap: 7px;
    font-size: 15px;
  }

  .site-nav {
    gap: 10px;
    font-size: 10px;
  }

  .site-nav .package-link {
    padding: 6px 8px;
    border-radius: 4px;
  }

  .hero-copy {
    left: 6%;
    top: 20%;
    width: 88%;
    padding: 18px 16px 20px;
  }

  .hero::before {
    background: rgba(6, 7, 15, 0.58);
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .hero-copy h1 {
    margin-bottom: 12px;
    font-size: 22px;
  }

  .hero-copy .hero-title {
    margin-bottom: 8px;
    font-size: 42px;
  }

  .hero-copy .hero-subtitle {
    margin-bottom: 12px;
    font-size: 17px;
  }

  .hero-copy p {
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.45;
  }

  .primary-cta,
  .section-button {
    min-height: 40px;
    padding: 0 18px;
    font-size: 13px;
  }

  .playlist-copy {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: auto;
    padding: 24px 18px;
  }

  #playlist > img {
    display: none;
  }

  .section-copy h2,
  .seo-heading h2 {
    font-size: 24px;
  }

  .section-copy p,
  .seo-heading p {
    font-size: 16px;
    line-height: 1.55;
  }

  .section-copy ul {
    font-size: 15px;
  }

  .plans-overlay {
    position: relative;
    padding: 22px 14px;
  }

  #packages > img {
    display: none;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .plan-card {
    min-height: 0;
    padding: 24px 18px 20px;
  }

  .plan-card h3 {
    min-height: 0;
    font-size: 21px;
  }

  .plan-price {
    font-size: 44px;
  }

  .faq-intro {
    display: block;
    padding: 28px 16px 24px;
  }

  #reviews {
    padding: 34px 16px 40px;
  }

  .reviews-overlay h2 {
    font-size: 27px;
  }

  .review-stars {
    margin-bottom: 18px;
    font-size: 26px;
    letter-spacing: 2px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .review-card {
    min-height: 0;
    padding: 20px 18px 18px;
  }

  .reviews-buy-button {
    min-height: 50px;
    margin-top: 22px;
    padding: 0 28px;
    font-size: 17px;
  }

  .faq-heading {
    padding-top: 0;
    margin-bottom: 22px;
  }

  .faq-heading h2 {
    margin-bottom: 14px;
    font-size: 31px;
  }

  .faq-heading p {
    font-size: 15px;
  }

  .faq-wide {
    padding: 18px 16px 24px;
  }

  .faq-buy-button {
    min-height: 48px;
    margin-top: 18px;
    padding: 0 24px;
    font-size: 15px;
  }

  .faq-buy-button::before {
    width: 17px;
    height: 13px;
    margin-right: 9px;
  }

  .faq-question {
    min-height: 64px;
    padding: 14px 48px 14px 16px;
    font-size: 15px;
  }

  .faq-question::after {
    right: 18px;
    width: 17px;
    height: 17px;
  }

  .faq-question::before {
    right: 25px;
    width: 5px;
    height: 5px;
    border-width: 2px;
  }

  .faq-answer {
    padding: 0 16px 18px;
    font-size: 14px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
    border-width: 5px;
  }

  .whatsapp-float svg {
    width: 29px;
    height: 29px;
  }

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

  .standalone-page .page-hero .site-header {
    height: 72px;
  }

  .standalone-page .subpage-copy {
    top: 116px;
  }

  .seo-content-inner {
    width: calc(100% - 32px);
    padding: 34px 0 38px;
  }

  .seo-content h2 {
    font-size: 25px;
  }

  .seo-content h3 {
    font-size: 20px;
  }

  .seo-content p {
    font-size: 16px;
  }

  .seo-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .seo-links a {
    justify-content: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 26px;
    width: calc(100% - 32px);
    padding: 34px 0 36px;
  }

  .footer-brand {
    display: block;
    text-align: center;
  }

  .footer-brand img {
    width: 62px;
    margin: 0 auto 12px;
  }

  .footer-actions {
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}
