:root {
  --navy: #0b1730;
  --navy-2: #142440;
  --orange: #f0642f;
  --orange-dark: #cf4920;
  --white: #ffffff;
  --page: #081321;
  --surface: #0d1829;
  --surface-warm: #101c2e;
  --panel: #101d31;
  --panel-strong: #14243b;
  --text: #edf3fb;
  --muted: #a7b3c6;
  --line: #2a3850;
  --success: #66aa83;
  --font: "IBM Plex Sans", "Helvetica Neue", sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
  --header-height: 76px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--page);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-underline-offset: 3px;
}

button,
input,
textarea,
select {
  font: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 1000;
  padding: 12px 16px;
  color: var(--white);
  background: var(--navy);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(8 19 33 / 96%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgb(0 0 0 / 16%);
}

.site-header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.campaign-header__actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.campaign-header__actions > span {
  color: #c4cede;
  font-size: 13px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand__logo {
  width: 174px;
  height: auto;
  display: block;
}

.brand__symbol {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  background: var(--orange);
  border-radius: 6px;
}

.brand__symbol i {
  width: 0;
  height: 0;
  display: block;
  margin-left: 2px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid var(--white);
}

.brand__name {
  color: var(--navy);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.brand__name strong {
  color: var(--orange);
  font-weight: 700;
}

.custom-logo-link {
  display: flex;
}

.custom-logo {
  width: auto;
  max-height: 46px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav__list a {
  color: #c4cede;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.site-nav__list a:hover,
.site-nav__list a:focus-visible {
  color: var(--white);
}

.menu-toggle {
  display: none;
}

.button,
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid var(--orange);
  border-radius: 6px;
  color: var(--white);
  background: var(--orange);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.button:hover,
.button:focus-visible,
.wp-element-button:hover,
.wp-element-button:focus-visible,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  color: var(--white);
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
}

.button--header {
  min-height: 42px;
  padding: 10px 17px;
}

.button--outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.button--outline:hover,
.button--outline:focus-visible {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.button--outline-dark {
  color: var(--text);
  background: transparent;
  border-color: #8290a5;
}

.button--outline-dark:hover,
.button--outline-dark:focus-visible {
  color: var(--white);
  background: rgb(255 255 255 / 7%);
  border-color: var(--white);
}

.button--light {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.button--light:hover,
.button--light:focus-visible {
  color: var(--navy);
  background: #e9eef7;
  border-color: #e9eef7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.text-link span {
  color: var(--orange);
  font-size: 20px;
  transition: transform 0.18s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero::after {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -290px;
  width: 520px;
  height: 520px;
  border: 90px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
}

.hero__grid {
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1.14fr);
  align-items: center;
  gap: clamp(54px, 7vw, 100px);
  padding-block: 72px;
}

.hero__copy,
.product-demo {
  position: relative;
  z-index: 2;
}

.eyebrow,
.kicker {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.35;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(47px, 4.8vw, 66px);
  font-weight: 600;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.hero__intro {
  max-width: 570px;
  margin: 25px 0 0;
  color: #cbd4e4;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.hero__disclaimer {
  margin: 19px 0 0;
  color: #97a3b8;
  font-size: 12px;
}

.hero__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.hero__trust li {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #bdc8d9;
  font-size: 11px;
  line-height: 1.35;
}

.hero__trust i {
  flex: 0 0 auto;
  color: var(--orange);
  font-size: 18px;
  line-height: 1;
}

.hero-showcase {
  --parallax-x: 0;
  --parallax-y: 0;
  --parallax-scroll: 0;
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero-showcase__frame {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  background: #07101f;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.3);
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.7s ease,
    visibility 0.7s ease;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 34%, rgba(4, 10, 20, 0.92) 100%),
    linear-gradient(90deg, rgba(4, 10, 20, 0.18), transparent 55%);
}

.hero-slide.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transform: scale(1.08)
    translate3d(
      calc(var(--parallax-x) * 1px),
      calc((var(--parallax-y) + var(--parallax-scroll)) * 1px),
      0
    );
  transition: transform 0.35s ease-out;
  will-change: transform;
}

.hero-slide:nth-child(2) img {
  object-position: 57% center;
}

.hero-slide:nth-child(3) img {
  object-position: 55% center;
}

.hero-slide figcaption {
  position: absolute;
  right: 38px;
  bottom: 35px;
  left: 38px;
  z-index: 3;
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: end;
  gap: 8px 22px;
}

.hero-slide figcaption > span {
  grid-row: 1 / 3;
  align-self: start;
  padding-top: 6px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.hero-slide figcaption strong {
  max-width: 470px;
  color: var(--white);
  font-size: clamp(24px, 2.25vw, 34px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.hero-slide figcaption small {
  color: #b7c2d3;
  font-size: 11px;
}

.hero-showcase__controls {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 3px 0 2px;
}

.hero-showcase__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-showcase__dots button {
  width: 31px;
  height: 3px;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transition:
    width 0.22s ease,
    background-color 0.22s ease;
}

.hero-showcase__dots button.is-active {
  width: 52px;
  background: var(--orange);
}

.hero-showcase__pause {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #aeb9ca;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  cursor: pointer;
}

.hero-showcase__pause:hover,
.hero-showcase__pause:focus-visible {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Hero do aplicativo */
.hero-app {
  --parallax-x: 0;
  --parallax-y: 0;
  --parallax-scroll: 0;
  min-height: 735px;
  isolation: isolate;
}

.hero-app {
  margin-bottom: clamp(28px, 3.5vw, 52px);
}

.hero-app::after {
  display: none;
}

.hero-app__stage {
  position: relative;
  min-height: 735px;
}

.hero-app__slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

.hero-app__slide::before,
.hero-app__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-app__slide::before {
  background: linear-gradient(
    90deg,
    rgba(6, 18, 40, 0.99) 0%,
    rgba(6, 18, 40, 0.94) 27%,
    rgba(6, 18, 40, 0.68) 43%,
    rgba(6, 18, 40, 0.12) 67%,
    rgba(6, 18, 40, 0.04) 100%
  );
}

.hero-app__slide::after {
  background: linear-gradient(
    180deg,
    rgba(6, 18, 40, 0.22) 0%,
    transparent 52%,
    rgba(6, 18, 40, 0.9) 100%
  );
}

.hero-app__slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.hero-app__media,
.hero-app__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-app__media {
  background: #061228;
  transform: scale(1.015);
  transition: transform 8s ease-out;
}

.hero-app__slide.is-active .hero-app__media {
  transform: scale(1.045);
}

.hero-app__media img {
  object-fit: cover;
  transform: translate3d(
    calc(var(--parallax-x) * 1px),
    calc((var(--parallax-y) + var(--parallax-scroll)) * 1px),
    0
  );
  transition: transform 0.35s ease-out;
  will-change: transform;
}

.hero-app__content {
  position: relative;
  z-index: 4;
  min-height: 675px;
  display: flex;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 100px;
}

.hero-app__copy {
  width: min(100%, 570px);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s 0.2s ease,
    transform 0.55s 0.2s ease;
}

.hero-app__slide.is-active .hero-app__copy {
  opacity: 1;
  transform: none;
}

.hero-app h1,
.hero-app h2 {
  max-width: 610px;
  margin: 0;
  color: var(--white);
  font-size: clamp(50px, 5.1vw, 72px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero-app .hero__intro {
  max-width: 530px;
  color: #d5ddec;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34);
}

.hero-app__footer {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.hero-app__controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-app__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-app__dots button {
  width: 36px;
  height: 4px;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.32);
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transition:
    width 0.22s ease,
    background-color 0.22s ease;
}

.hero-app__dots button.is-active {
  width: 64px;
  background: var(--orange);
}

.hero-app__pause {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #d5ddec;
  background: rgba(6, 18, 40, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 4px;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.hero-app__pause:hover,
.hero-app__pause:focus-visible {
  color: var(--white);
  border-color: var(--white);
}

.hero-app .hero__trust {
  display: flex;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 42px);
  margin: 0;
}

.hero-app .hero__trust li {
  color: #d4ddeb;
  font-size: 11px;
  white-space: nowrap;
}

.hero-app .hero__disclaimer {
  margin: 0;
  color: #aeb9ca;
  font-size: 10px;
  text-align: right;
}

.product-demo {
  margin-bottom: 20px;
}

.product-demo__screen {
  position: relative;
  min-height: 400px;
  padding: 20px;
  overflow: hidden;
  background: #111a28;
  border: 10px solid #050911;
  border-bottom-width: 14px;
  border-radius: 8px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.34);
}

.product-demo__screen::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  background: linear-gradient(
    112deg,
    transparent 0 42%,
    rgba(255, 255, 255, 0.035) 48%,
    transparent 54% 100%
  );
  background-size: 230% 100%;
  animation: screen-light 8s ease-in-out infinite;
}

.product-demo__topbar {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #e8ecf4;
  font-size: 10px;
  font-weight: 600;
}

.mini-brand i {
  width: 14px;
  height: 14px;
  display: block;
  background: var(--orange);
  border-radius: 3px;
}

.mini-avatar {
  width: 20px;
  height: 20px;
  border: 1px solid #738097;
  border-radius: 50%;
}

.product-demo__feature {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 25px 30px;
  background: #243654;
  border-radius: 5px;
}

.product-demo__feature small {
  display: block;
  margin-bottom: 12px;
  color: #aeb8c8;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.product-demo__feature strong {
  display: block;
  max-width: 350px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.product-demo__feature span {
  display: block;
  margin-top: 15px;
  color: #b9c4d5;
  font-size: 11px;
}

.product-demo__play {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  display: grid;
  place-items: center;
  padding-left: 3px;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  font-size: 20px;
  animation: play-breathe 3.4s ease-in-out infinite;
}

.product-demo__play i,
.campaign-device__play i {
  display: block;
  font-size: 21px;
  line-height: 1;
}

.product-demo__rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.demo-card {
  min-height: 85px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  border-radius: 4px;
}

.demo-card b {
  font-size: 10px;
  letter-spacing: 0.06em;
}

.demo-card small {
  margin-top: 2px;
  font-size: 8px;
  opacity: 0.72;
}

.demo-card--orange {
  background: #9d3e26;
  animation: card-focus 9s ease-in-out infinite;
}

.demo-card--blue {
  background: #244a75;
  animation: card-focus 9s 3s ease-in-out infinite;
}

.demo-card--green {
  background: #29614a;
  animation: card-focus 9s 6s ease-in-out infinite;
}

@keyframes screen-light {
  0%,
  30% {
    background-position: 130% 0;
  }
  70%,
  100% {
    background-position: -130% 0;
  }
}

@keyframes play-breathe {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(240, 100, 47, 0.22);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(240, 100, 47, 0);
  }
}

@keyframes card-focus {
  0%,
  23%,
  100% {
    transform: translateY(0);
    box-shadow: none;
  }
  7%,
  16% {
    transform: translateY(-4px);
    box-shadow: 0 9px 18px rgba(0, 0, 0, 0.2);
  }
}

.product-demo__base {
  width: 42%;
  height: 35px;
  margin: 0 auto;
  background: #050911;
  clip-path: polygon(
    44% 0,
    56% 0,
    63% 76%,
    100% 76%,
    100% 100%,
    0 100%,
    0 76%,
    37% 76%
  );
}

.product-demo > p {
  margin: 12px 0 0;
  color: #8592a8;
  font-size: 10px;
  text-align: center;
}

.video-explainer {
  background: var(--surface-warm);
  border-bottom: 1px solid var(--line);
}

.video-explainer__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: clamp(60px, 8vw, 115px);
}

.video-explainer h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(38px, 4.1vw, 56px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.video-explainer p:not(.kicker) {
  margin: 23px 0 21px;
  color: var(--muted);
}

.video-explainer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.video-explainer li {
  position: relative;
  padding: 7px 0 7px 23px;
  color: var(--text);
  font-size: 14px;
}

.video-explainer li::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 2px;
  width: 7px;
  height: 4px;
  border-bottom: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
  transform: rotate(-45deg);
}

.video-explainer__link {
  margin-top: 24px;
}

.video-explainer__media {
  min-width: 0;
}

.video-frame {
  padding: 10px;
  background: var(--navy);
  border-radius: 10px;
  box-shadow: 0 22px 45px rgba(11, 23, 48, 0.18);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #050911;
  border-radius: 5px;
}

.video-explainer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 15px 10px 0;
  color: var(--muted);
  font-size: 12px;
}

.video-explainer__meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.video-explainer__meta i {
  color: var(--orange-dark);
  font-size: 16px;
}

.video-transcript {
  margin-top: 17px;
  border-top: 1px solid var(--line);
}

.video-transcript summary {
  padding: 15px 10px 4px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.video-transcript p {
  padding: 0 10px 4px;
  margin: 10px 0 0 !important;
  font-size: 13px;
  line-height: 1.65;
}

.video-placeholder {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  color: var(--white);
  background:
    linear-gradient(rgba(11, 23, 48, 0.48), rgba(11, 23, 48, 0.72)),
    linear-gradient(135deg, #3d567a, #15243d 65%);
  border-radius: 5px;
}

.video-placeholder button {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  padding: 0 0 0 4px;
  color: var(--white);
  background: var(--orange);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  animation: play-breathe 3.4s ease-in-out infinite;
}

.video-placeholder button i {
  font-size: 22px;
  line-height: 1;
}

.video-placeholder span {
  font-size: 13px;
}

.app-tour {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.app-tour::before {
  content: "";
  position: absolute;
  top: -280px;
  right: -230px;
  width: 620px;
  height: 620px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(240, 100, 47, 0.13), transparent 68%);
}

.app-tour__heading {
  position: relative;
}

.app-tour .app-tour__heading h2 {
  max-width: 780px;
  color: var(--white);
}

.app-tour .app-tour__heading > p {
  margin: 0;
  color: #b9c4d5;
}

.app-tour__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
}

.app-tour__card {
  min-width: 0;
  overflow: hidden;
  background: var(--navy-2);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
}

.app-tour__media {
  aspect-ratio: 16 / 9;
  display: block;
  overflow: hidden;
  background: #071024;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.app-tour__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.app-tour__card:hover .app-tour__media img {
  transform: scale(1.018);
}

.app-tour__copy {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 15px;
  padding: 25px 24px 27px;
}

.app-tour__copy > span {
  padding-top: 3px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.app-tour__copy h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.app-tour__copy p {
  margin: 0;
  color: #b9c4d5;
  font-size: 13px;
  line-height: 1.55;
}

.app-tour__notice {
  max-width: 920px;
  margin: 24px 0 0;
  color: #8f9caf;
  font-size: 10px;
  line-height: 1.55;
}

.section {
  padding: clamp(82px, 9vw, 120px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  align-items: end;
  gap: clamp(50px, 8vw, 120px);
}

.section-heading h2,
.devices h2,
.support h2,
.faq h2,
.final-cta h2,
.entry-header h1,
.not-found h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(38px, 4.1vw, 56px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 62px;
  border-top: 1px solid var(--line);
}

.how__steps article {
  min-height: 250px;
  padding: 30px 34px 26px;
  border-right: 1px solid var(--line);
}

.how__steps article:first-child {
  border-left: 1px solid var(--line);
}

.step-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #ff8050;
  background: #192a43;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
}

.how h3 {
  margin: 42px 0 11px;
  color: var(--text);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.how article p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.devices {
  background: var(--surface);
}

.devices__header {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: clamp(48px, 8vw, 120px);
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.devices__header h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.devices__summary p {
  margin: 0 0 22px;
  color: var(--muted);
}

.device-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.75fr);
  grid-template-rows: repeat(2, minmax(230px, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.device-shot {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
  border-radius: 4px;
}

.device-shot--tv {
  grid-row: 1 / 3;
  aspect-ratio: 16 / 10.3;
}

.device-shot--notebook,
.device-shot--mobile {
  aspect-ratio: 16 / 8.9;
}

.device-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.device-shot--mobile img {
  object-position: 50% 46%;
}

.device-shot::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgb(5 16 35 / 84%));
  pointer-events: none;
}

.device-shot:hover img {
  transform: scale(1.025);
}

.device-shot figcaption {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 22px 24px;
  color: rgb(255 255 255 / 78%);
  font-size: 13px;
}

.device-shot figcaption i {
  color: var(--orange);
  font-size: 24px;
}

.device-shot figcaption strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
}

.devices__note {
  max-width: 900px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.content-discovery {
  background: var(--surface-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.content-discovery__layout {
  display: grid;
  grid-template-columns: minmax(420px, 1.08fr) minmax(0, 0.92fr);
  gap: 14px;
  margin-top: 52px;
}

.content-discovery__visual {
  position: relative;
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  background: #071225;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.content-discovery__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(7 18 37 / 2%) 30%, rgb(7 18 37 / 92%) 100%);
}

.content-discovery__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 62% center;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.content-discovery__visual:hover img {
  transform: scale(1.025);
}

.content-discovery__visual figcaption {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 590px;
  padding: clamp(28px, 4vw, 48px);
}

.content-discovery__visual figcaption > span {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.content-discovery__visual figcaption strong {
  display: block;
  color: var(--white);
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.content-discovery__visual figcaption p {
  max-width: 470px;
  margin: 16px 0 0;
  color: #bdc7d7;
  font-size: 14px;
}

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

.content-discovery__grid article {
  position: relative;
  min-height: 194px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-content: start;
  gap: 20px;
  padding: 24px 22px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.content-discovery__grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 180ms ease;
}

.content-discovery__grid article:hover {
  background: var(--panel-strong);
  border-color: #3b4d68;
  transform: translateY(-2px);
}

.content-discovery__grid article:hover::before {
  transform: scaleY(1);
}

.content-discovery__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: rgb(240 100 47 / 9%);
  border: 1px solid rgb(240 100 47 / 28%);
  border-radius: 4px;
}

.content-discovery__icon i {
  font-size: 23px;
}

.content-discovery__grid h3 {
  margin: 2px 0 8px;
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.content-discovery__grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.content-discovery__arrow {
  color: #718099;
  font-size: 16px;
  transition: color 180ms ease, transform 180ms ease;
}

.content-discovery__grid article:hover .content-discovery__arrow {
  color: var(--orange);
  transform: translate(2px, -2px);
}

.service-facts {
  color: var(--white);
  background: var(--navy);
}

.service-facts__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.22fr);
  align-items: start;
  gap: clamp(60px, 8vw, 120px);
}

.service-facts__intro {
  position: sticky;
  top: calc(var(--header-height) + 34px);
}

.service-facts h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(38px, 4.1vw, 56px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.service-facts__intro > p:not(.kicker) {
  margin: 24px 0 30px;
  color: #bdc7d7;
}

.service-facts__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  counter-reset: service-fact;
}

.service-facts__list > div {
  min-height: 205px;
  display: block;
  padding: 26px 24px;
  background: rgb(255 255 255 / 5%);
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 4px;
  counter-increment: service-fact;
}

.service-facts__list dt {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
}

.service-facts__list dt::before {
  content: counter(service-fact, decimal-leading-zero);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service-facts__list dd {
  margin: 28px 0 0;
  color: #bdc7d7;
  font-size: 13px;
  line-height: 1.6;
}

.national-service {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) minmax(300px, 0.65fr);
  align-items: center;
  gap: 28px 34px;
  padding: 34px 38px;
  margin-top: 72px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
}

.national-service__icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: rgba(240, 100, 47, 0.1);
  border: 1px solid rgba(240, 100, 47, 0.35);
  border-radius: 50%;
}

.national-service__icon i {
  font-size: 36px;
}

.national-service__copy h3 {
  margin: 0;
  color: var(--white);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.national-service__copy > p:not(.kicker) {
  margin: 10px 0 0;
  color: #bdc7d7;
  font-size: 13px;
}

.national-service__regions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.national-service__regions li {
  padding: 7px 10px;
  color: #d9e0eb;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.national-service__note {
  grid-column: 2 / -1;
  padding-top: 18px;
  margin: 0;
  color: #8f9caf;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
}

.plans {
  background: var(--page);
}

.decision-guide {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(240, 91, 44, 0.07), transparent 35%),
    var(--page);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.decision-guide::before {
  content: "";
  position: absolute;
  top: 0;
  left: max(24px, calc((100% - 1200px) / 2));
  width: 1px;
  height: 100%;
  background: linear-gradient(var(--orange), transparent 42%);
  opacity: 0.45;
}

.decision-guide__heading {
  display: grid;
  grid-template-columns: 1.05fr 0.65fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 38px;
}

.decision-guide__heading h2 {
  max-width: 740px;
  font-size: clamp(35px, 4.2vw, 56px);
}

.decision-guide__heading > p {
  max-width: 450px;
  margin: 0 0 5px;
  color: var(--muted);
}

.decision-guide__frame {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.decision-guide__tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.decision-guide__tabs button {
  min-height: 68px;
  padding: 0 24px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 3px solid transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.decision-guide__tabs button:last-child {
  border-right: 0;
}

.decision-guide__tabs button span {
  margin-right: 12px;
  color: var(--orange);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.decision-guide__tabs button.is-active {
  color: var(--text);
  background: var(--panel-strong);
  border-bottom-color: var(--orange);
}

.decision-guide__tabs button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: -4px;
}

.decision-guide__panel {
  min-height: 420px;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(45px, 7vw, 100px);
  align-items: center;
  padding: clamp(38px, 5vw, 68px);
}

.decision-guide__panel.is-active {
  display: grid;
  animation: guide-panel-in 0.35s ease both;
}

@keyframes guide-panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.decision-guide__index {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.decision-guide__lead h3 {
  max-width: 520px;
  margin: 0;
  color: var(--text);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.decision-guide__lead > p:not(.decision-guide__index) {
  max-width: 520px;
  margin: 20px 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.decision-guide__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.decision-guide__steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.decision-guide__steps li > span {
  color: var(--orange);
  font-size: 26px;
  font-weight: 600;
}

.decision-guide__steps strong,
.decision-guide__devices strong {
  color: var(--text);
  font-size: 15px;
}

.decision-guide__steps p,
.decision-guide__devices p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.decision-guide__devices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.decision-guide__devices article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.decision-guide__devices i {
  color: var(--orange);
  font-size: 30px;
}

.decision-guide__devices span {
  grid-column: 2;
  align-self: end;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.decision-guide__checklist {
  margin: 0;
  border-top: 1px solid var(--line);
}

.decision-guide__checklist div {
  display: grid;
  grid-template-columns: 0.65fr 1.2fr 24px;
  gap: 22px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.decision-guide__checklist dt {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.decision-guide__checklist dd {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.decision-guide__checklist i {
  color: var(--success);
  font-size: 18px;
}

.section-heading--plans {
  align-items: center;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 54px;
}

.plan-grid--primary {
  width: min(900px, 100%);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-right: auto;
  margin-left: auto;
}

.plan-card {
  position: relative;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.plan-card__eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.plan-card--featured {
  background: var(--panel-strong);
  border: 2px solid var(--orange);
  padding: 27px 23px 23px;
}

.plan-card__tag {
  position: absolute;
  top: 0;
  right: 18px;
  padding: 6px 9px;
  color: var(--white);
  background: var(--orange);
  border-radius: 0 0 5px 5px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.plan-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 22px;
  font-weight: 600;
}

.plan-card__period {
  margin: 4px 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}

.plan-card__price {
  margin: 22px 0 0;
  color: var(--text);
  font-size: clamp(48px, 6vw, 66px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.plan-card__price sup {
  margin-right: 4px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  vertical-align: top;
}

.plan-card__price small {
  font-size: 24px;
  letter-spacing: -0.03em;
}

.plan-card__comparison {
  width: fit-content;
  margin: 0 0 2px;
  padding: 8px 10px;
  color: var(--text);
  background: var(--surface-warm);
  border-left: 2px solid var(--orange);
  font-size: 12px;
  font-weight: 600;
}

.plan-card ul {
  padding: 20px 0 0;
  margin: 0 0 30px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.plan-card li {
  position: relative;
  padding: 6px 0 6px 20px;
  color: var(--muted);
  font-size: 13px;
}

.plan-card li::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 2px;
  width: 6px;
  height: 3px;
  border-bottom: 2px solid var(--success);
  border-left: 2px solid var(--success);
  transform: rotate(-45deg);
}

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

.plans__footnote {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.support {
  padding-top: 0;
}

.support__panel {
  min-height: 330px;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 45px;
  padding: 54px 60px;
  color: var(--white);
  background: var(--navy);
  border-radius: 10px;
}

.support__icon {
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  background: var(--orange);
  border-radius: 8px;
}

.support__icon .ph-duotone {
  color: var(--white);
  font-size: 48px;
  line-height: 1;
}

.support h2 {
  max-width: 660px;
  color: var(--white);
  font-size: clamp(34px, 3.5vw, 48px);
}

.support p:not(.kicker) {
  max-width: 750px;
  margin: 18px 0 0;
  color: #b9c4d7;
  font-size: 14px;
}

.faq {
  background: var(--surface-warm);
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(70px, 10vw, 150px);
}

.faq__grid > div:first-child > p:not(.kicker) {
  max-width: 400px;
  margin: 22px 0 0;
  color: var(--muted);
}

.faq__items {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--text);
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  width: 26px;
  flex: 0 0 26px;
  color: var(--orange);
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  transition: transform 0.18s ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 650px;
  margin: -2px 48px 25px 0;
  color: var(--muted);
  font-size: 14px;
}

.final-cta {
  padding: 70px 0;
  background: var(--page);
  border-top: 1px solid var(--line);
}

.final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.final-cta h2 {
  max-width: 710px;
  font-size: clamp(32px, 3.4vw, 46px);
}

.final-cta p {
  margin: 13px 0 0;
  color: var(--muted);
}

.floating-contact {
  position: fixed;
  z-index: 45;
  right: 22px;
  bottom: 22px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 17px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(5, 16, 35, 0.24);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background-color 180ms ease;
}

.floating-contact.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.floating-contact:hover,
.floating-contact:focus-visible {
  background: var(--navy-2);
  transform: translateY(-2px);
}

.floating-contact i {
  color: var(--orange);
  font-size: 21px;
}

/* Páginas internas */
.page-hero {
  color: var(--white);
  background: var(--navy);
}

.page-hero--light {
  color: var(--text);
  background: var(--surface-warm);
  border-bottom: 1px solid var(--line);
}

.page-hero__grid {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 70px;
  padding-block: 86px;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(45px, 5.8vw, 76px);
  font-weight: 600;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.page-hero p:not(.kicker) {
  max-width: 690px;
  margin: 24px 0 0;
  color: #c3cede;
  font-size: 18px;
}

.page-hero--light h1 {
  color: var(--text);
}

.page-hero--light p:not(.kicker) {
  color: var(--muted);
}

.process-detail .shell {
  border-top: 1px solid var(--line);
}

.process-detail article {
  display: grid;
  grid-template-columns: 72px minmax(260px, 0.85fr) minmax(300px, 1.15fr);
  gap: 42px;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}

.process-detail article > span {
  color: var(--orange);
  font-size: 15px;
  font-weight: 700;
}

.process-detail h2,
.preparation h2,
.requirements h2,
.payment-info h2,
.support-contact h2,
.campaign-section-title h2,
.campaign-faq h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(34px, 3.7vw, 50px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.process-detail article > p {
  margin: 28px 0 0;
  color: var(--muted);
}

.preparation,
.requirements,
.support-contact,
.campaign-video {
  background: var(--surface-warm);
  border-block: 1px solid var(--line);
}

.split-panel {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: start;
  gap: clamp(65px, 10vw, 150px);
}

.split-panel > div > p:not(.kicker) {
  margin: 23px 0 0;
  color: var(--muted);
}

.large-check-list,
.plain-list {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.large-check-list li,
.plain-list li {
  position: relative;
  padding: 19px 0 19px 34px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}

.large-check-list li::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 3px;
  width: 9px;
  height: 5px;
  border-bottom: 2px solid var(--success);
  border-left: 2px solid var(--success);
  transform: rotate(-45deg);
}

.plain-list li::before {
  content: "—";
  position: absolute;
  left: 3px;
  color: var(--muted);
}

.device-catalog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.device-catalog__grid article {
  min-height: 285px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.device-catalog__grid article:hover {
  background: var(--surface-warm);
  transform: translateY(-4px);
}

.contact-card > span {
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.device-catalog__icon {
  display: block;
  color: var(--orange-dark);
  font-size: 42px;
  line-height: 1;
}

.device-catalog__grid h3 {
  margin: 65px 0 12px;
  color: var(--text);
  font-size: 23px;
}

.device-catalog__grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.requirements__list {
  border-top: 1px solid var(--line);
}

.requirements__list > div {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 36px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.requirements__list strong {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-weight: 600;
}

.requirements__list strong i {
  color: var(--orange-dark);
  font-size: 22px;
  line-height: 1;
}

.requirements__list span {
  color: var(--muted);
  font-size: 14px;
}

.plans--page {
  padding-top: 64px;
}

.plans--page .plan-grid {
  margin-top: 0;
}

.plan-notice {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 35px;
  margin-top: 28px;
  padding: 24px 28px;
  background: var(--surface-warm);
  border-left: 3px solid var(--orange);
}

.plan-notice strong {
  color: var(--text);
}

.plan-notice p {
  margin: 0;
  color: var(--muted);
}

.payment-info {
  padding-top: 90px;
}

.support-scope__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.support-scope__card {
  padding: 42px;
  background: var(--surface-warm);
  border: 1px solid var(--line);
}

.support-scope__card--included {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.support-scope__lead-icon {
  display: block;
  margin-bottom: 35px;
  color: var(--orange-dark);
  font-size: 46px;
  line-height: 1;
}

.support-scope__card--included .support-scope__lead-icon {
  color: var(--orange);
}

.support-scope__card h2 {
  margin: 0 0 36px;
  color: var(--text);
  font-size: clamp(32px, 3.2vw, 44px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.support-scope__card--included h2,
.support-scope__card--included li {
  color: var(--white);
}

.support-scope__card--included .large-check-list,
.support-scope__card--included .large-check-list li {
  border-color: rgba(255, 255, 255, 0.16);
}

.faq--page {
  background: var(--page);
}

.faq-page__grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.faq-nav {
  position: sticky;
  top: calc(var(--header-height) + 35px);
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.faq-nav strong,
.faq-nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.faq-nav a {
  color: var(--muted);
  text-decoration: none;
}

.faq-nav a:hover {
  color: var(--orange-dark);
}

.faq-group {
  scroll-margin-top: calc(var(--header-height) + 30px);
  margin-bottom: 72px;
}

.contact-options__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.contact-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 42px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.contact-card h2 {
  max-width: 470px;
  margin: 65px 0 15px;
  color: var(--text);
  overflow-wrap: anywhere;
  font-size: clamp(27px, 2.7vw, 39px);
  line-height: 1.08;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.contact-card strong {
  margin-top: auto;
  color: var(--orange-dark);
}

.contact-card:hover {
  background: var(--surface-warm);
}

.contact-card--pending {
  cursor: default;
  background: rgb(255 255 255 / 1.5%);
}

.contact-card--pending strong {
  color: var(--muted);
}

/* Landing pages de campanhas */
.campaign-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.campaign-hero__grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(470px, 1.08fr);
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
  padding-block: 72px;
}

.campaign-hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(46px, 5.2vw, 70px);
  font-weight: 600;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.campaign-hero__content {
  max-width: 590px;
  margin: 24px 0 30px;
  color: #c3cede;
  font-size: 18px;
}

.campaign-hero__content p {
  margin: 0;
}

.campaign-hero__visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #071329;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
}

.campaign-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 62%, rgba(4, 12, 27, 0.42));
}

.campaign-hero__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.campaign-smallprint {
  max-width: 560px;
  margin: 17px 0 0;
  color: #8f9db3;
  font-size: 11px;
}

.campaign-device__screen {
  position: relative;
  min-height: 390px;
  padding: 30px;
  overflow: hidden;
  background: linear-gradient(145deg, #263f67, #111d31 70%);
  border: 10px solid #050911;
  border-bottom-width: 14px;
  border-radius: 8px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.34);
}

.campaign-device__screen > div {
  position: absolute;
  bottom: 42px;
  left: 32px;
}

.campaign-device__screen small {
  display: block;
  margin-bottom: 12px;
  color: #aeb8c8;
  font-size: 9px;
  letter-spacing: 0.13em;
}

.campaign-device__screen strong {
  display: block;
  font-size: clamp(39px, 4vw, 56px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.campaign-device__play {
  position: absolute;
  right: 34px;
  bottom: 43px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  padding-left: 4px;
  background: var(--orange);
  border-radius: 50%;
  animation: play-breathe 3.4s ease-in-out infinite;
}

.campaign-proof {
  border-bottom: 1px solid var(--line);
}

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

.campaign-proof span {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 20px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.campaign-proof i {
  color: var(--orange-dark);
  font-size: 22px;
  line-height: 1;
}

.campaign-proof span:first-child {
  border-left: 1px solid var(--line);
}

.campaign-section-title {
  max-width: 670px;
}

.campaign-process .how__steps h3 {
  margin: 42px 0 11px;
  color: var(--text);
  font-size: 21px;
}

.campaign-process .how__steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.campaign-faq {
  background: var(--surface-warm);
}

.campaign-final {
  padding: 80px 0;
  color: var(--white);
  background: var(--navy);
}

.campaign-final__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.campaign-final h2 {
  margin: 0;
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.campaign-final p:not(.kicker) {
  margin: 15px 0 0;
  color: #aebacf;
}

.site-footer {
  color: #c5cedd;
  background: #071225;
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.65fr);
  gap: 55px;
  padding-top: 64px;
  padding-bottom: 58px;
}

.brand--footer .brand__name {
  color: var(--white);
}

.site-footer__brand p {
  max-width: 350px;
  margin: 20px 0 0;
  color: #8f9bb0;
  font-size: 13px;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.site-footer__links strong {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
}

.site-footer__links a {
  color: #9ca8ba;
  font-size: 12px;
  text-decoration: none;
}

.site-footer__links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.site-footer__bottom {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #728097;
  font-size: 10px;
}

/* Conteúdo editorial */
.content-shell {
  min-height: 65vh;
  max-width: 1040px;
}

.entry-header {
  margin-bottom: 58px;
}

.entry-header h1,
.not-found h1 {
  max-width: 900px;
}

.entry-content {
  max-width: 760px;
  color: var(--text);
  font-size: 17px;
}

.entry-content h2,
.entry-content h3 {
  margin: 2em 0 0.65em;
  color: var(--text);
  font-weight: 600;
  line-height: 1.15;
}

.entry-content h2 {
  font-size: 38px;
}

.entry-content h3 {
  font-size: 27px;
}

.entry-content a {
  color: var(--orange-dark);
}

.post-list {
  border-top: 1px solid var(--line);
}

.post-card {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.post-card h2 {
  margin: 0;
  color: var(--text);
  font-size: 32px;
}

.post-card h2 a {
  text-decoration: none;
}

.not-found p:not(.kicker) {
  margin: 26px 0;
}

/* WooCommerce */
.commerce-shell {
  min-height: 70vh;
}

.woocommerce .woocommerce-breadcrumb {
  margin-bottom: 40px;
  color: var(--muted);
  font-size: 12px;
}

.woocommerce h1,
.woocommerce h2,
.woocommerce h3 {
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.woocommerce h1 {
  font-size: clamp(42px, 5vw, 64px);
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  width: auto;
  margin: 0;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 23px;
}

.woocommerce ul.products li.product .price {
  color: var(--orange);
  font-size: 18px;
  font-weight: 700;
}

.woocommerce span.onsale {
  min-width: 0;
  min-height: 0;
  padding: 6px 9px;
  background: var(--orange);
  border-radius: 4px;
  line-height: 1;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
  min-height: 48px;
  padding: 10px 12px;
  color: var(--text);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 5px;
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register,
.woocommerce-checkout #payment {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.woocommerce table.shop_table {
  border-color: var(--line);
  border-radius: var(--radius);
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  background: var(--surface);
  border-top-color: var(--orange);
}

.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.has-js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.has-js [data-reveal="left"] {
  transform: translateX(-22px);
}

.has-js [data-reveal="scale"] {
  transform: scale(0.975);
}

.has-js [data-reveal="left"].is-visible,
.has-js [data-reveal="scale"].is-visible {
  transform: none;
}

@media (max-width: 1040px) {
  :root {
    --shell: min(100% - 40px, 820px);
    --header-height: 70px;
  }

  .menu-toggle {
    width: 43px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    background: transparent;
    border: 1px solid #718099;
    border-radius: 5px;
  }

  .menu-toggle span:not(.screen-reader-text) {
    width: 100%;
    height: 1px;
    background: var(--white);
    transition: transform 0.18s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    min-height: calc(100vh - var(--header-height));
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 24px;
    padding: 28px 20px 40px;
    background: var(--surface-warm);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .page-hero__grid,
  .campaign-hero__grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .campaign-device {
    max-width: 720px;
  }

  .process-detail article {
    grid-template-columns: 55px 1fr;
  }

  .process-detail article > p {
    grid-column: 2;
    margin-top: 0;
  }

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

  .faq-nav {
    position: static;
  }

  .device-catalog__grid,
  .campaign-proof__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-nav__list {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .site-nav__list li {
    border-bottom: 1px solid var(--line);
  }

  .site-nav__list a {
    display: block;
    padding: 17px 0;
    font-size: 20px;
    font-weight: 500;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 58px;
    padding-block: 70px 85px;
  }

  .hero__copy {
    max-width: 680px;
  }

  .product-demo {
    max-width: 760px;
  }

  .hero-showcase {
    width: 100%;
    max-width: 760px;
  }

  .hero-app,
  .hero-app__stage {
    min-height: 700px;
  }

  .hero-app__slide::before {
    background: linear-gradient(
      90deg,
      rgba(6, 18, 40, 0.99) 0%,
      rgba(6, 18, 40, 0.93) 39%,
      rgba(6, 18, 40, 0.5) 61%,
      rgba(6, 18, 40, 0.08) 100%
    );
  }

  .hero-app__content {
    min-height: 645px;
  }

  .hero-app__copy {
    width: min(100%, 520px);
  }

  .hero-app h1,
  .hero-app h2 {
    font-size: clamp(48px, 7vw, 64px);
  }

  .hero-app__footer {
    gap: 10px 25px;
  }

  .hero-app .hero__trust {
    gap: 17px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 25px;
  }

  .video-explainer__grid {
    grid-template-columns: 1fr;
  }

  .video-explainer__copy {
    max-width: 680px;
  }

  .app-tour__grid {
    grid-template-columns: 1fr;
  }

  .app-tour__card {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
    align-items: stretch;
  }

  .app-tour__media {
    aspect-ratio: 16 / 9;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 0;
  }

  .app-tour__copy {
    align-content: end;
  }

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

  .how__steps article,
  .how__steps article:first-child {
    min-height: auto;
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .how h3 {
    margin-top: 25px;
  }

  .devices__header {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 26px;
  }

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

  .content-discovery__layout {
    grid-template-columns: 1fr;
  }

  .content-discovery__visual {
    min-height: 520px;
  }

  .service-facts__grid {
    grid-template-columns: 1fr;
  }

  .service-facts__intro {
    position: static;
    max-width: 680px;
  }

  .national-service {
    grid-template-columns: 70px 1fr;
  }

  .national-service__regions,
  .national-service__note {
    grid-column: 2;
    justify-content: flex-start;
  }

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

  .support__panel {
    grid-template-columns: 90px 1fr;
  }

  .support__panel > .button {
    grid-column: 2;
    justify-self: start;
  }

  .faq__grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

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

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1040px) {
  .decision-guide__heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .decision-guide__panel {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .brand__name {
    font-size: 19px;
  }

  .brand__logo {
    width: 158px;
  }

  .campaign-header__actions > span {
    display: none;
  }

  .campaign-header__actions .button {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 12px;
  }

  .page-hero__grid {
    min-height: 390px;
    gap: 36px;
    padding-block: 58px;
  }

  .page-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .page-hero p:not(.kicker),
  .campaign-hero__content {
    font-size: 16px;
  }

  .hero__grid {
    gap: 48px;
    padding-block: 56px 68px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 58px);
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__trust {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-showcase__frame {
    min-height: 455px;
  }

  .hero-app,
  .hero-app__stage {
    width: 100%;
    height: calc(100svh - var(--header-height));
    min-height: 560px;
  }

  .hero-app__media {
    inset: 0;
    height: 100%;
  }

  .hero-app__media img {
    top: -7%;
    right: 0;
    bottom: auto;
    left: 0;
    height: 112%;
  }

  .hero-app__media {
    transform: none;
  }

  .hero-app__slide.is-active .hero-app__media {
    transform: none;
  }

  .hero-app__media img {
    object-position: center 36%;
  }

  .hero-app__slide::before {
    background: linear-gradient(
      180deg,
      rgba(6, 18, 40, 0.97) 0%,
      rgba(6, 18, 40, 0.9) 30%,
      rgba(6, 18, 40, 0.58) 51%,
      rgba(6, 18, 40, 0.3) 68%,
      rgba(6, 18, 40, 0.92) 100%
    );
  }

  .hero-app__slide::after {
    background: linear-gradient(
      90deg,
      rgba(6, 18, 40, 0.6),
      rgba(6, 18, 40, 0.08) 64%,
      rgba(6, 18, 40, 0.24)
    );
  }

  .hero-app__content {
    min-height: 0;
    height: 100%;
    align-items: flex-start;
    padding-top: clamp(30px, 6svh, 54px);
    padding-bottom: 155px;
  }

  .hero-app h1,
  .hero-app h2 {
    max-width: 355px;
    font-size: clamp(42px, 12.5vw, 51px);
    line-height: 1;
  }

  .hero-app .hero__intro {
    max-width: 350px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.48;
  }

  .hero-app .hero__actions {
    gap: 9px;
    margin-top: 23px;
  }

  .hero-app .hero__actions .button {
    min-height: 45px;
    padding: 10px 14px;
    font-size: 12px;
  }

  .hero-app__footer {
    bottom: 15px;
    align-items: stretch;
  }

  .hero-app .hero__trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 0;
  }

  .hero-app .hero__trust li {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    font-size: 12px;
    line-height: 1.3;
    white-space: normal;
  }

  .hero-app .hero__disclaimer {
    margin-top: 0;
    font-size: 12px;
    line-height: 1.42;
    text-align: left;
  }

  .devices__header {
    padding-bottom: 28px;
  }

  .device-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 10px;
    margin-top: 28px;
  }

  .device-shot--tv,
  .device-shot--notebook,
  .device-shot--mobile {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .device-shot--mobile img {
    object-position: center 43%;
  }

  .content-discovery__grid {
    grid-template-columns: 1fr;
  }

  .content-discovery__grid article {
    min-height: 145px;
    padding: 22px 18px;
  }

  .content-discovery__grid h3 {
    margin-top: 2px;
  }

  .content-discovery__visual {
    min-height: 440px;
  }

  .content-discovery__visual figcaption {
    padding: 26px 22px;
  }

  .service-facts__list {
    grid-template-columns: 1fr;
  }

  .service-facts__list > div {
    min-height: 176px;
    padding: 23px 21px;
  }

  .national-service {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 26px 22px;
    margin-top: 52px;
  }

  .national-service__regions,
  .national-service__note {
    grid-column: 1;
  }

  .national-service__regions {
    justify-content: flex-start;
  }

  .floating-contact {
    right: 12px;
    bottom: 12px;
    width: 48px;
    min-height: 48px;
    justify-content: center;
    padding: 0;
  }

  .floating-contact span {
    display: none;
  }

  .video-explainer__meta {
    gap: 8px 16px;
    padding-inline: 2px;
  }

  .video-transcript summary,
  .video-transcript p {
    padding-inline: 2px;
  }

  .app-tour__grid {
    gap: 12px;
    margin-top: 34px;
  }

  .app-tour__card {
    display: block;
  }

  .app-tour__media {
    aspect-ratio: 390 / 620;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .app-tour__media img {
    object-position: top center;
  }

  .app-tour__copy {
    padding: 22px 20px 24px;
  }

  .app-tour__notice {
    font-size: 9px;
  }

  .device-shot figcaption {
    padding: 18px;
  }

  .hero-slide figcaption {
    right: 22px;
    bottom: 24px;
    left: 22px;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .hero-slide figcaption > span {
    grid-row: auto;
    padding: 0;
  }

  .hero-slide figcaption strong {
    font-size: 27px;
  }

  .hero-slide:nth-child(1) img {
    object-position: 58% center;
  }

  .hero-slide:nth-child(2) img {
    object-position: 64% center;
  }

  .hero-slide:nth-child(3) img {
    object-position: 59% center;
  }

  .product-demo__screen {
    min-height: 290px;
    padding: 13px;
    border-width: 7px;
    border-bottom-width: 10px;
  }

  .campaign-hero__grid {
    min-height: auto;
    gap: 48px;
    padding-block: 58px 70px;
  }

  .campaign-hero h1 {
    font-size: clamp(42px, 12.5vw, 57px);
  }

  .campaign-device__screen {
    min-height: 290px;
    padding: 20px;
    border-width: 7px;
    border-bottom-width: 10px;
  }

  .campaign-device__screen > div {
    bottom: 28px;
    left: 22px;
  }

  .campaign-device__screen strong {
    font-size: 38px;
  }

  .campaign-device__play {
    right: 23px;
    bottom: 29px;
    width: 48px;
    height: 48px;
  }

  .product-demo__feature {
    min-height: 155px;
    padding: 18px;
  }

  .product-demo__feature strong {
    font-size: 26px;
  }

  .product-demo__feature span {
    font-size: 9px;
  }

  .product-demo__play {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    font-size: 15px;
  }

  .demo-card {
    min-height: 67px;
    padding: 9px;
  }

  .demo-card small {
    display: none;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .devices h2,
  .faq h2,
  .video-explainer h2 {
    font-size: 39px;
  }

  .how__steps {
    margin-top: 44px;
  }

  .how__steps article {
    padding: 25px 22px;
  }

  .process-detail article {
    grid-template-columns: 40px 1fr;
    gap: 20px;
    padding: 32px 0;
  }

  .device-catalog__grid,
  .campaign-proof__grid,
  .support-scope__grid,
  .contact-options__grid {
    grid-template-columns: 1fr;
  }

  .device-catalog__grid article {
    min-height: 225px;
  }

  .device-catalog__grid h3 {
    margin-top: 50px;
  }

  .requirements__list > div,
  .plan-notice {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .support-scope__card,
  .contact-card {
    padding: 30px 24px;
  }

  .contact-card {
    min-height: 300px;
  }

  .campaign-proof span {
    min-height: 62px;
    border-left: 1px solid var(--line);
  }

  .campaign-final__inner {
    align-items: stretch;
    flex-direction: column;
    gap: 30px;
  }

  .device-list article {
    grid-template-columns: 48px 1fr;
    gap: 18px;
  }

  .device-list .ph-duotone {
    font-size: 42px;
  }

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

  .plan-card {
    min-height: 380px;
  }

  .support__panel {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 38px 28px;
  }

  .support__panel > .button {
    grid-column: auto;
    justify-self: stretch;
  }

  .support__icon {
    width: 70px;
    height: 70px;
  }

  .support__icon .ph-duotone {
    font-size: 39px;
  }

  .faq summary {
    font-size: 16px;
  }

  .final-cta__inner {
    align-items: stretch;
    flex-direction: column;
    gap: 28px;
  }

  .site-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 40px 25px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .decision-guide::before {
    left: 14px;
  }

  .decision-guide__heading {
    margin-bottom: 26px;
  }

  .decision-guide__heading h2 {
    font-size: 36px;
  }

  .decision-guide__tabs {
    grid-template-columns: 1fr;
  }

  .decision-guide__tabs button {
    min-height: 52px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 3px solid transparent;
  }

  .decision-guide__tabs button.is-active {
    border-bottom-color: var(--line);
    border-left-color: var(--orange);
  }

  .decision-guide__panel {
    min-height: 0;
    padding: 30px 22px;
  }

  .decision-guide__lead h3 {
    font-size: 30px;
  }

  .decision-guide__devices {
    grid-template-columns: 1fr;
  }

  .decision-guide__devices article {
    min-height: 128px;
  }

  .decision-guide__checklist div {
    grid-template-columns: 1fr 24px;
    gap: 5px 14px;
  }

  .decision-guide__checklist dd {
    grid-column: 1;
  }

  .decision-guide__checklist i {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 18px;
  }

  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .has-js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .product-demo__screen::after,
  .product-demo__play,
  .demo-card,
  .hero-slide img {
    animation: none;
    transform: scale(1.03);
  }

  .hero-showcase__pause {
    display: none;
  }

  .hero-app__media,
  .hero-app__slide.is-active .hero-app__media,
  .hero-app__media img,
  .hero-app__copy,
  .hero-app__slide.is-active .hero-app__copy {
    transform: none;
  }

  .hero-app__pause {
    display: none;
  }
}
