:root {
  --navy-950: #031326;
  --navy-900: #061d38;
  --navy-800: #0a3158;
  --blue-700: #0879bd;
  --blue-600: #0797d5;
  --cyan-500: #18b9ec;
  --cyan-300: #7bdbf7;
  --sky-100: #e9f8ff;
  --sky-50: #f4fbff;
  --violet-700: #81399a;
  --violet-100: #f5eafb;
  --green-700: #08794d;
  --green-100: #e7f8ef;
  --orange-700: #d85c09;
  --orange-100: #fff0e2;
  --ink: #10243d;
  --muted: #5a6d82;
  --line: #dce8f1;
  --white: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f4f9fc;
  --danger: #b42318;
  --success: #08794d;
  --shadow-sm: 0 8px 24px rgba(3, 19, 38, 0.08);
  --shadow-md: 0 20px 60px rgba(3, 19, 38, 0.14);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 126px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Aptos, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(24, 185, 236, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--navy-950);
  background: var(--cyan-300);
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.regulatory-bar {
  position: relative;
  z-index: 80;
  background: var(--navy-950);
  color: #dff7ff;
  font-size: 13px;
}

.regulatory-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 38px;
  padding-block: 6px;
  text-align: center;
}

.regulatory-bar a {
  color: var(--white);
  font-weight: 800;
  text-underline-offset: 3px;
}

.regulatory-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cyan-500);
  box-shadow: 0 0 0 5px rgba(24, 185, 236, 0.16);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 232, 241, 0.9);
  backdrop-filter: saturate(150%) blur(16px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  position: relative;
  width: 100px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  overflow: hidden;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  position: absolute;
  top: 0;
  left: 0;
  width: 122px;
  max-width: none;
  height: auto;
  transform: translate(-13px, -24px);
}

.brand .tag {
  display: none;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.menu a {
  padding: 9px 10px;
  border-radius: 999px;
  color: #43586f;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition: 160ms ease;
}

.menu a:hover,
.menu a[aria-current="page"] {
  color: var(--blue-700);
  background: var(--sky-100);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--navy-900);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 99px;
  background: currentColor;
  content: "";
  transition: 180ms ease;
}

.menu-toggle span {
  margin-block: 4px;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 17px;
  border: 1px solid var(--blue-600);
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--cyan-500));
  box-shadow: 0 10px 22px rgba(7, 151, 213, 0.2);
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(7, 151, 213, 0.28);
  filter: saturate(1.08);
}

.btn.secondary {
  border-color: rgba(8, 121, 189, 0.25);
  color: var(--blue-700);
  background: var(--white);
  box-shadow: none;
}

.btn.secondary:hover {
  background: var(--sky-100);
  box-shadow: none;
}

.btn.dark {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.btn.dark:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn.text {
  min-height: auto;
  padding: 4px 0;
  border: 0;
  border-radius: 0;
  color: var(--blue-700);
  background: transparent;
  box-shadow: none;
}

.btn.small {
  min-height: 38px;
  padding: 7px 13px;
  font-size: 13px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-700);
  font-weight: 850;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--cyan-300);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(24, 185, 236, 0.24), transparent 30%),
    radial-gradient(circle at 4% 92%, rgba(8, 121, 189, 0.3), transparent 34%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.hero::before,
.hero::after {
  position: absolute;
  right: -9%;
  bottom: -22%;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(123, 219, 247, 0.13);
  border-radius: 50%;
  content: "";
}

.hero::after {
  right: -2%;
  bottom: -34%;
  width: 500px;
  height: 500px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 610px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 58px;
  padding-block: 72px;
}

.hero.compact .hero-grid {
  min-height: 380px;
  padding-block: 54px;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero.compact h1 {
  font-size: clamp(38px, 5vw, 58px);
}

.hero h1 .accent {
  color: var(--cyan-500);
}

.lead {
  max-width: 670px;
  margin: 22px 0 0;
  color: #c5dfef;
  font-size: clamp(17px, 2vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 28px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 30px;
  color: #d8eef8;
  font-size: 13px;
  font-weight: 700;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof span::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan-500);
  content: "";
}

.video-shell {
  position: relative;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.34);
  transform: rotate(1deg);
}

.video-shell video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 23px;
  object-fit: cover;
  background: var(--navy-950);
}

.video-label {
  position: absolute;
  right: 24px;
  bottom: 22px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white);
  background: rgba(3, 19, 38, 0.72);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 800;
}

.stat-strip {
  position: relative;
  z-index: 3;
  margin-top: -38px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.stat {
  min-height: 116px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  color: var(--navy-900);
  font-size: 25px;
  line-height: 1.15;
}

.stat span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding-block: 82px;
}

.section.tight {
  padding-block: 56px;
}

.section.alt {
  background: var(--surface-soft);
  border-block: 1px solid var(--line);
}

.section.navy {
  color: var(--white);
  background: var(--navy-950);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.section-head > div:first-child {
  max-width: 760px;
}

.section h2,
.section-title {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.section.navy h2,
.section.navy .section-title {
  color: var(--white);
}

.section .sub,
.section-sub {
  max-width: 760px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section.navy .sub,
.section.navy .section-sub {
  color: #bcd6e7;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.card h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 20px;
  line-height: 1.2;
}

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

.card-list,
.check-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.card-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 14px;
}

.check-list li::before,
.card-list li::before {
  position: absolute;
  top: 0.37em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan-500);
  box-shadow: inset 0 0 0 4px var(--white);
  border: 1px solid var(--cyan-500);
  content: "";
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 15px;
  color: var(--blue-700);
  background: var(--sky-100);
  font-size: 20px;
  font-weight: 900;
}

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

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 25px;
  border: 1px solid #cce7f5;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--white), #f7fcff);
  box-shadow: var(--shadow-sm);
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.plan:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.plan.pro {
  border-color: #e5ccee;
  background: linear-gradient(180deg, var(--white), #fcf8fe);
}

.plan.featured {
  border-color: var(--cyan-500);
  box-shadow: 0 18px 48px rgba(7, 151, 213, 0.2);
}

.plan .badge {
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blue-700);
  background: var(--sky-100);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan.pro .badge {
  color: var(--violet-700);
  background: var(--violet-100);
}

.plan .name {
  color: var(--navy-900);
  font-size: 18px;
  font-weight: 850;
}

.plan .speed {
  margin-top: 7px;
  color: var(--blue-700);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}

.plan.pro .speed {
  color: var(--violet-700);
}

.plan .speed small {
  margin-left: 4px;
  font-size: 16px;
  font-weight: 850;
  letter-spacing: 0;
}

.plan .price {
  margin-top: 17px;
  color: var(--navy-950);
  font-size: 28px;
  font-weight: 900;
}

.plan .price small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.plan .actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
}

.plan-compare {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.plan-compare input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue-700);
}

.plan[hidden] {
  display: none;
}

.category-block {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
}

.category-block.home {
  border-top: 5px solid var(--blue-700);
}

.category-block.pro {
  border-top: 5px solid var(--violet-700);
}

.category-block.business {
  border-top: 5px solid var(--green-700);
}

.category-block.enterprise {
  border-top: 5px solid var(--orange-700);
}

.category-block h3 {
  margin: 0;
  color: var(--navy-900);
}

.category-block p {
  margin: 8px 0 0;
  color: var(--muted);
}

.compare-toolbar {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 14px;
  margin-bottom: 24px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.field {
  display: grid;
  gap: 7px;
}

label {
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid #cbdce7;
  border-radius: 12px;
  color: var(--ink);
  background: var(--white);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(24, 185, 236, 0.14);
  outline: none;
}

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

.form {
  display: grid;
  gap: 15px;
  max-width: 840px;
}

.form-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.row-2,
.row-3 {
  display: grid;
  gap: 14px;
}

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

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

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.checkbox input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--blue-700);
}

.toast {
  display: none;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  background: var(--surface-soft);
  white-space: pre-line;
}

.toast.show {
  display: block;
}

.toast.success {
  border-color: #a6dcc4;
  color: #07563a;
  background: #effbf5;
}

.toast.error {
  border-color: #f0b7b2;
  color: #7a271a;
  background: #fff4f3;
}

.comparison {
  display: none;
  margin-top: 26px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.comparison.show {
  display: block;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--navy-900);
  background: var(--surface-soft);
  font-size: 13px;
}

td {
  color: var(--muted);
  font-size: 14px;
}

tr:last-child td {
  border-bottom: 0;
}

.notice,
.note {
  padding: 17px 19px;
  border: 1px solid #bcdff2;
  border-radius: var(--radius-sm);
  color: #28506a;
  background: var(--sky-50);
  font-size: 14px;
}

.notice strong,
.note strong {
  color: var(--navy-900);
}

.notice.warning {
  border-color: #f2d0a8;
  color: #794310;
  background: #fff8ec;
}

.doclist {
  display: grid;
  gap: 11px;
}

.docitem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 19px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
}

.docitem strong {
  color: var(--navy-900);
}

.docitem .meta {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

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

.channel-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.channel-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--navy-900);
  font-size: 18px;
}

.channel-card h3::before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan-500);
  content: "";
}

.channel-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
}

.channel-card li {
  padding: 7px 9px;
  border-radius: 999px;
  color: #496176;
  background: var(--surface-soft);
  font-size: 12px;
  font-weight: 700;
}

.channel-card .channel-meta {
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
}

.coverage-map {
  min-height: 370px;
  display: grid;
  place-items: center;
  padding: 40px;
  border: 1px solid rgba(123, 219, 247, 0.22);
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 22% 26%, rgba(24, 185, 236, 0.35), transparent 10%),
    radial-gradient(circle at 72% 68%, rgba(24, 185, 236, 0.28), transparent 12%),
    linear-gradient(145deg, #092b4d, #031326);
  text-align: center;
}

.coverage-map strong {
  display: block;
  font-size: 30px;
}

.coverage-map p {
  max-width: 580px;
  margin: 12px auto 0;
  color: #c1dcea;
}

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

.step {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  counter-increment: steps;
}

.step::before {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 13px;
  color: var(--white);
  background: var(--blue-700);
  font-weight: 900;
  content: counter(steps);
}

.step h3 {
  margin: 0;
  color: var(--navy-900);
}

.step p {
  margin: 8px 0 0;
  color: var(--muted);
}

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

.accordion details {
  padding: 17px 19px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
}

.accordion summary {
  color: var(--navy-900);
  font-weight: 850;
  cursor: pointer;
}

.accordion details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.tab-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
}

.tab-button {
  flex: 1;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-weight: 850;
  cursor: pointer;
}

.tab-button[aria-selected="true"] {
  color: var(--white);
  background: var(--blue-700);
}

.tab-panel[hidden] {
  display: none;
}

.wizard-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.wizard-progress span {
  height: 6px;
  border-radius: 999px;
  background: var(--line);
}

.wizard-progress span.active {
  background: var(--cyan-500);
}

.wizard-step[hidden] {
  display: none;
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
}

.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 17px;
  border-radius: 999px;
  color: var(--white);
  background: #087f5b;
  box-shadow: 0 16px 36px rgba(8, 127, 91, 0.28);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.whatsapp-fab::before {
  width: 10px;
  height: 10px;
  border: 2px solid var(--white);
  border-radius: 50%;
  content: "";
}

.cta-band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr auto;
  align-items: center;
  gap: 28px;
  padding: 42px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(24, 185, 236, 0.42), transparent 27%),
    linear-gradient(135deg, var(--navy-900), var(--blue-700));
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  max-width: 700px;
  margin: 10px 0 0;
  color: #d7eef8;
}

.footer {
  padding: 62px 0 30px;
  color: #bfd2df;
  background: var(--navy-950);
}

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

.footer-brand img {
  width: 174px;
  border-radius: 12px;
}

.footer h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 15px;
}

.footer p {
  margin: 12px 0 0;
  color: #9fb9ca;
  font-size: 13px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer a {
  color: #bfd2df;
  font-size: 13px;
  text-decoration: none;
}

.footer a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8faabd;
  font-size: 12px;
}

.small {
  color: var(--muted);
  font-size: 12px;
}

.center {
  text-align: center;
}

.muted {
  color: var(--muted);
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

@media (max-width: 1080px) {
  .nav-actions .speed-action {
    display: none;
  }

  .menu a {
    padding-inline: 8px;
  }

  .hero-grid {
    gap: 34px;
  }

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

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

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .regulatory-bar .container {
    justify-content: flex-start;
    text-align: left;
  }

  .nav {
    min-height: 70px;
  }

  .brand img {
    width: 108px;
    transform: translate(-12px, -21px);
  }

  .brand {
    width: 86px;
    height: 60px;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .menu {
    position: fixed;
    top: 108px;
    right: 14px;
    left: 14px;
    max-height: calc(100vh - 126px);
    display: none;
    align-items: stretch;
    overflow-y: auto;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-md);
  }

  .menu.open {
    display: grid;
  }

  .menu a {
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 15px;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero-grid,
  .hero.compact .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-block: 58px 76px;
  }

  .video-shell {
    transform: none;
  }

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

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .grid-3,
  .steps {
    grid-template-columns: 1fr;
  }

  .compare-toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .compare-toolbar .btn {
    grid-column: 1 / -1;
  }

  .cta-band {
    grid-template-columns: 1fr;
    padding: 32px;
  }
}

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

  .section {
    padding-block: 62px;
  }

  .section-head {
    display: block;
  }

  .section-head .btn {
    margin-top: 18px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-proof {
    display: grid;
    gap: 8px;
  }

  .stat-strip {
    margin-top: -28px;
  }

  .stat {
    min-height: 104px;
    padding: 18px;
  }

  .stat strong {
    font-size: 20px;
  }

  .grid-2,
  .grid-4,
  .plan-grid,
  .channel-grid,
  .row-2,
  .row-3,
  .compare-toolbar {
    grid-template-columns: 1fr;
  }

  .compare-toolbar .btn {
    grid-column: auto;
  }

  .plan {
    min-height: 300px;
  }

  .plan .speed {
    font-size: 42px;
  }

  .docitem {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-card {
    padding: 20px;
  }

  .tab-bar {
    border-radius: 18px;
    flex-direction: column;
  }

  .tab-button {
    flex: none;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-fab {
    width: 52px;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-fab span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
