:root {
  --red: #f04438;
  --red-dark: #d92d20;
  --coral: #ff756b;
  --ink: #111827;
  --navy: #101828;
  --muted: #667085;
  --line: #e4e7ec;
  --soft: #f7f8fa;
  --white: #ffffff;
  --green: #039855;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 24px 70px rgba(16, 24, 40, 0.12);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}
body,
button,
input,
select,
textarea {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  border: 0;
}
button,
select {
  cursor: pointer;
}
img {
  max-width: 100%;
}
.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  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;
  z-index: 999;
  left: 12px;
  top: -60px;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
}
.skip-link:focus {
  top: 12px;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  transition: 0.25s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 0 rgba(16, 24, 40, 0.08);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.brand > span:last-child {
  display: grid;
  line-height: 1.05;
}
.brand b {
  font:
    800 21px/1 "Manrope",
    sans-serif;
  letter-spacing: -0.04em;
}
.brand small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.brand-mark {
  width: 35px;
  height: 35px;
  position: relative;
  display: grid;
  place-items: center;
  border: 8px solid var(--red);
  border-radius: 50%;
  transform: rotate(-25deg);
}
.brand-mark::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 8px;
  right: -9px;
  bottom: -4px;
  background: var(--white);
}
.brand-mark i {
  position: absolute;
  width: 6px;
  height: 6px;
  right: -7px;
  bottom: -3px;
  border-radius: 50%;
  background: var(--red);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}
.main-nav a {
  color: #344054;
  transition: 0.2s ease;
}
.main-nav a:hover {
  color: var(--red);
}
.main-nav .nav-cta {
  padding: 11px 19px;
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 800px;
  padding: 155px 0 95px;
  overflow: hidden;
  background: linear-gradient(145deg, #fff 15%, #fff8f7 66%, #fff1f0);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #fbc7c3, transparent);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}
.hero-glow-one {
  width: 490px;
  height: 490px;
  right: -160px;
  top: 60px;
  background: radial-gradient(circle, rgba(240, 68, 56, 0.14), transparent 68%);
}
.hero-glow-two {
  width: 340px;
  height: 340px;
  left: -220px;
  bottom: -80px;
  background: radial-gradient(
    circle,
    rgba(255, 117, 107, 0.12),
    transparent 68%
  );
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 88px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(240, 68, 56, 0.12);
}
.hero h1 {
  max-width: 680px;
  margin: 23px 0 24px;
  font:
    800 clamp(48px, 5.2vw, 76px) / 1.03 "Manrope",
    sans-serif;
  letter-spacing: -0.055em;
}
.hero-copy > p {
  max-width: 620px;
  margin: 0;
  color: #475467;
  font-size: 18px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 35px;
}
.button {
  min-height: 49px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 13px 30px rgba(240, 68, 56, 0.25);
}
.button-primary:hover {
  background: var(--red-dark);
}
.button-ghost {
  color: var(--ink);
  background: #fff;
  border: 1px solid #d0d5dd;
}
.button:focus-visible,
.main-nav a:focus-visible,
.filter-button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(240, 68, 56, 0.3);
  outline-offset: 3px;
}
.trust-row {
  display: flex;
  gap: 28px;
  margin-top: 48px;
}
.trust-row span {
  display: grid;
  color: #667085;
  font-size: 11px;
}
.trust-row b {
  color: #344054;
  font-size: 13px;
}

.hero-panel {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}
.signal-card {
  position: relative;
  width: min(440px, 100%);
  min-height: 480px;
  padding: 28px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(155deg, #182230, #0c111d 72%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 38px;
  box-shadow: 0 40px 90px rgba(16, 24, 40, 0.25);
}
.signal-card::before {
  content: "";
  position: absolute;
  inset: -25% auto auto -20%;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 68, 56, 0.33), transparent 65%);
}
.signal-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: #d0d5dd;
  font-size: 13px;
}
.signal-bars {
  height: 17px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
}
.signal-bars i {
  display: block;
  width: 4px;
  background: #75e0a7;
  border-radius: 4px;
}
.signal-bars i:nth-child(1) {
  height: 5px;
}
.signal-bars i:nth-child(2) {
  height: 9px;
}
.signal-bars i:nth-child(3) {
  height: 13px;
}
.signal-bars i:nth-child(4) {
  height: 17px;
}
.router-visual {
  position: relative;
  height: 280px;
  display: grid;
  place-items: center;
}
.router-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}
.ring-one {
  width: 240px;
  height: 240px;
}
.ring-two {
  width: 330px;
  height: 330px;
  border-color: rgba(255, 255, 255, 0.06);
}
.router-body {
  position: relative;
  z-index: 2;
  width: 150px;
  height: 188px;
  padding-top: 28px;
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, #d0d5dd);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.45),
    inset -8px -12px 24px rgba(16, 24, 40, 0.12);
}
.router-body span {
  width: 9px;
  height: 9px;
  display: block;
  margin: 0 auto 69px;
  border-radius: 50%;
  background: #17b26a;
  box-shadow: 0 0 13px #17b26a;
}
.router-body i {
  display: block;
  width: 64px;
  height: 3px;
  margin: 7px auto;
  border-radius: 4px;
  background: #98a2b3;
}
.signal-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.signal-stats div {
  padding: 15px;
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}
.signal-stats b {
  font-size: 13px;
}
.signal-stats span {
  color: #98a2b3;
  font-size: 10px;
}
.floating-note {
  position: absolute;
  z-index: 5;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(208, 213, 221, 0.8);
  border-radius: 15px;
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.14);
  backdrop-filter: blur(12px);
}
.floating-note > b {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: #fee4e2;
  border-radius: 9px;
}
.floating-note span {
  display: grid;
  font-size: 12px;
  font-weight: 700;
}
.floating-note small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
}
.note-one {
  left: -38px;
  top: 102px;
}
.note-two {
  right: -25px;
  bottom: 70px;
}

.intro-strip {
  padding: 54px 0;
  background: var(--navy);
  color: #fff;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
}
.section-index {
  color: var(--coral);
  font:
    700 12px/1 "Manrope",
    sans-serif;
}
.intro-grid h2 {
  margin: -7px 0 0;
  font:
    700 25px/1.32 "Manrope",
    sans-serif;
  letter-spacing: -0.025em;
}
.intro-grid p {
  margin: 0;
  color: #98a2b3;
  font-size: 14px;
}

.section {
  padding: 112px 0;
}
.section-soft {
  background: var(--soft);
}
.section-heading {
  margin-bottom: 45px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: end;
}
.section-heading h2,
.signal-layout h2,
.troubleshoot-intro h2,
.help-copy h2,
.faq-layout h2 {
  margin: 12px 0 0;
  font:
    800 clamp(34px, 4vw, 48px) / 1.13 "Manrope",
    sans-serif;
  letter-spacing: -0.045em;
}
.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.modem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.modem-card {
  position: relative;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: #fff;
  transition: 0.25s ease;
}
.modem-card:hover {
  transform: translateY(-5px);
  border-color: #fda29b;
  box-shadow: var(--shadow);
}
.modem-card.featured {
  border-color: #f97066;
  box-shadow: 0 20px 45px rgba(240, 68, 56, 0.1);
}
.card-top {
  min-height: 27px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.status-pill,
.value-pill {
  padding: 5px 10px;
  color: var(--green);
  background: #ecfdf3;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.value-pill {
  color: var(--red-dark);
  background: #fff1f0;
}
.device-icon {
  height: 105px;
  margin: 18px 0 9px;
  display: grid;
  place-items: center;
}
.device-icon div {
  position: relative;
  width: 75px;
  height: 88px;
  border-radius: 13px;
  background: linear-gradient(145deg, #f9fafb, #d0d5dd);
  box-shadow: 0 15px 30px rgba(16, 24, 40, 0.18);
}
.device-icon div::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #17b26a;
  transform: translateX(-50%);
}
.device-icon div::after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 50%;
  width: 34px;
  height: 3px;
  border-radius: 4px;
  background: #98a2b3;
  transform: translateX(-50%);
  box-shadow: 0 7px #98a2b3;
}
.device-icon > i {
  position: absolute;
  width: 115px;
  height: 115px;
  border: 1px solid #fecdca;
  border-radius: 50%;
}
.device-icon > i:last-child {
  width: 86px;
  height: 86px;
}
.modem-card h3 {
  margin: 6px 0 2px;
  font:
    700 23px/1.2 "Manrope",
    sans-serif;
  letter-spacing: -0.03em;
}
.recommendation {
  min-height: 45px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.price {
  padding: 17px 0;
  display: grid;
  border-bottom: 1px solid var(--line);
}
.price span {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}
.price strong {
  font:
    800 25px/1.25 "Manrope",
    sans-serif;
  letter-spacing: -0.03em;
}
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.spec-grid div {
  min-width: 0;
}
.spec-grid dt {
  color: #98a2b3;
  font-size: 10px;
}
.spec-grid dd {
  margin: 1px 0 0;
  color: #344054;
  font-size: 12px;
  font-weight: 600;
}
.bonus {
  min-height: 58px;
  padding: 11px 12px;
  display: grid;
  color: #475467;
  background: #f9fafb;
  border-radius: 12px;
  font-size: 10px;
}
.bonus b {
  color: var(--red-dark);
}
.button-card {
  width: 100%;
  margin-top: auto;
  color: #fff;
  background: var(--navy);
}
.legacy-box {
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
}
.legacy-box summary {
  padding: 21px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
}
.legacy-box summary::-webkit-details-marker {
  display: none;
}
.legacy-box summary span {
  display: grid;
}
.legacy-box summary small {
  color: var(--muted);
  font-weight: 400;
}
.legacy-box summary i {
  font-style: normal;
  font-size: 22px;
  transition: 0.2s;
}
.legacy-box[open] summary i {
  transform: rotate(45deg);
}
.legacy-grid {
  padding: 0 24px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.legacy-grid article {
  padding: 17px;
  background: var(--soft);
  border-radius: 14px;
}
.legacy-grid span {
  color: var(--red-dark);
  font-size: 9px;
  text-transform: uppercase;
}
.legacy-grid h3 {
  margin: 4px 0;
  font-size: 14px;
}
.legacy-grid p {
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 10px;
}
.legacy-grid small {
  color: #475467;
  font-size: 9px;
}
.legacy-warning {
  margin: 0 24px 24px;
  padding: 12px;
  color: #854a0e;
  background: #fffaeb;
  border-radius: 10px;
  font-size: 11px;
}

.filter-scroll {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-scroll::-webkit-scrollbar {
  display: none;
}
.filter-button {
  flex: 0 0 auto;
  padding: 9px 15px;
  color: #475467;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.filter-button.active {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}
.package-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-height: 215px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: 0.2s;
}
.package-card:hover {
  transform: translateY(-3px);
  border-color: #fda29b;
}
.package-card > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}
.package-category {
  color: var(--red-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.popular-tag {
  padding: 3px 7px;
  color: #027a48;
  background: #ecfdf3;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 700;
}
.package-card h3 {
  margin: 17px 0 0;
  font:
    800 28px/1 "Manrope",
    sans-serif;
  letter-spacing: -0.04em;
}
.package-card p {
  margin: 7px 0 12px;
  color: var(--muted);
  font-size: 11px;
}
.package-card strong {
  margin-top: auto;
  font-size: 17px;
}
.validity {
  color: #475467;
  font-size: 10px;
}
.package-card small {
  margin-top: 8px;
  color: #98a2b3;
  font-size: 9px;
}
.package-card[hidden] {
  display: none;
}
.package-note {
  margin-top: 25px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #475467;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 11px;
}
.package-note span {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #175cd3;
  background: #eff8ff;
  border-radius: 50%;
  font-weight: 700;
}
.package-note p {
  margin: 0;
}

.signal-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
}
.signal-visual {
  position: relative;
  min-height: 535px;
  overflow: hidden;
  background: linear-gradient(150deg, #fff1f0, #f2f4f7);
  border-radius: 35px;
}
.signal-visual::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  left: -120px;
  top: -80px;
  border-radius: 50%;
  background: rgba(240, 68, 56, 0.08);
}
.tower {
  position: absolute;
  left: 70px;
  top: 135px;
  width: 75px;
  height: 245px;
  border-left: 4px solid #475467;
  border-right: 4px solid #475467;
  transform: perspective(200px) rotateX(-4deg);
}
.tower::before,
.tower::after {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  height: 3px;
  background: #667085;
  transform: rotate(35deg);
  box-shadow:
    0 40px #667085,
    0 80px #667085,
    0 120px #667085,
    0 160px #667085;
}
.tower::after {
  transform: rotate(-35deg);
}
.tower span {
  position: absolute;
  left: 50%;
  top: -35px;
  width: 4px;
  height: 45px;
  background: var(--red);
}
.tower i {
  position: absolute;
  left: 50%;
  top: -50px;
  width: 95px;
  height: 95px;
  border: 2px solid rgba(240, 68, 56, 0.4);
  border-radius: 50%;
  transform: translateX(-50%);
}
.tower i:nth-child(2) {
  width: 145px;
  height: 145px;
  top: -75px;
  border-color: rgba(240, 68, 56, 0.16);
}
.house {
  position: absolute;
  left: 50%;
  top: 258px;
  width: 155px;
  height: 118px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.14);
  transform: translateX(-22%);
}
.house::before {
  content: "";
  position: absolute;
  left: -16px;
  top: -59px;
  width: 136px;
  height: 136px;
  background: var(--navy);
  transform: rotate(45deg);
  border-radius: 5px;
}
.house::after {
  content: "";
  position: absolute;
  left: 55px;
  bottom: 0;
  width: 38px;
  height: 65px;
  background: #fee4e2;
}
.house span {
  position: absolute;
  z-index: 2;
  left: 61px;
  top: -18px;
  width: 22px;
  height: 58px;
  background: #e4e7ec;
  border-radius: 6px;
}
.house span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -16px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #17b26a;
  transform: translateX(-50%);
}
.house div {
  position: absolute;
  z-index: 2;
  left: 13px;
  bottom: 42px;
  width: 30px;
  height: 30px;
  background: #d1e9ff;
  box-shadow: 72px 0 #d1e9ff;
}
.phone {
  position: absolute;
  right: 38px;
  bottom: 56px;
  width: 63px;
  height: 115px;
  border: 6px solid var(--navy);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 16px 30px rgba(16, 24, 40, 0.18);
}
.phone i {
  display: block;
  width: 18px;
  height: 3px;
  margin: 7px auto;
  background: #98a2b3;
  border-radius: 5px;
}
.path {
  position: absolute;
  border: 2px dashed rgba(240, 68, 56, 0.45);
  border-radius: 50%;
}
.path-one {
  width: 180px;
  height: 100px;
  left: 130px;
  top: 115px;
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(14deg);
}
.path-two {
  width: 130px;
  height: 130px;
  right: 42px;
  bottom: 106px;
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(15deg);
}
.signal-visual > b {
  position: absolute;
  padding: 6px 9px;
  color: var(--red-dark);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 7px;
  font-size: 9px;
}
.label-cellular {
  left: 224px;
  top: 135px;
}
.label-wifi {
  right: 42px;
  bottom: 198px;
}
.signal-layout .lead {
  color: var(--muted);
  font-size: 16px;
}
.guide-stack {
  margin: 30px 0;
}
.guide-stack article {
  padding: 19px 0;
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 13px;
  border-top: 1px solid var(--line);
}
.guide-stack article > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
}
.guide-stack h3 {
  margin: -3px 0 4px;
  font-size: 15px;
}
.guide-stack p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.text-link {
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 700;
}

.section-dark {
  color: #fff;
  background: var(--navy);
}
.section-dark .eyebrow {
  color: var(--coral);
}
.troubleshoot-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 85px;
  align-items: start;
}
.troubleshoot-intro {
  position: sticky;
  top: 120px;
}
.troubleshoot-intro > p {
  color: #98a2b3;
  font-size: 14px;
}
.support-card {
  margin-top: 32px;
  padding: 19px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
}
.support-card p {
  margin: 5px 0 0;
  color: #98a2b3;
  font-size: 11px;
}
.accordion {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.accordion > button {
  width: 100%;
  padding: 23px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  background: transparent;
  text-align: left;
}
.accordion > button span {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 600;
}
.accordion > button b {
  color: #667085;
  font-size: 10px;
}
.accordion > button i {
  font-style: normal;
  font-size: 21px;
  transition: 0.2s;
}
.accordion.open > button i {
  color: var(--coral);
  transform: rotate(45deg);
}
.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}
.accordion-content p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: #98a2b3;
  font-size: 13px;
}
.accordion.open .accordion-content {
  grid-template-rows: 1fr;
}
.accordion.open .accordion-content p {
  padding: 0 42px 24px;
}

.help-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.help-copy > p {
  color: var(--muted);
}
.help-copy ul {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}
.help-copy li {
  position: relative;
  padding-left: 29px;
  font-size: 13px;
  font-weight: 600;
}
.help-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: #ecfdf3;
  border-radius: 50%;
  font-size: 10px;
}
.lead-form {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 25px;
  box-shadow: var(--shadow);
}
.form-title {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form-title span {
  font:
    700 20px/1 "Manrope",
    sans-serif;
}
.form-title small {
  color: var(--muted);
  font-size: 10px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.lead-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: #344054;
  font-size: 11px;
  font-weight: 600;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: #f9fafb;
  border: 1px solid #d0d5dd;
  border-radius: 10px;
  outline: 0;
  transition: 0.2s;
}
.lead-form textarea {
  resize: vertical;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  background: #fff;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(240, 68, 56, 0.09);
}
.honeypot {
  position: absolute;
  left: -9999px;
}
.button-submit {
  width: 100%;
  border: 0;
}
.button-submit:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}
.privacy-note {
  display: block;
  margin-top: 11px;
  color: #98a2b3;
  font-size: 9px;
  text-align: center;
}
.alert {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 11px;
}
.alert ul {
  margin: 5px 0 0;
  padding-left: 18px;
}
.alert.success {
  color: #05603a;
  background: #ecfdf3;
}
.alert.error {
  color: #912018;
  background: #fef3f2;
}
.alert.notice {
  color: #854a0e;
  background: #fffaeb;
}

.faq-section {
  padding-top: 35px;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}
.faq-list details {
  border-top: 1px solid var(--line);
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary i {
  font-style: normal;
  transition: 0.2s;
}
.faq-list details[open] summary i {
  color: var(--red);
  transform: rotate(45deg);
}
.faq-list p {
  margin: -5px 35px 20px 0;
  color: var(--muted);
  font-size: 13px;
}
.source-section {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.source-section .container {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 10px;
}
.source-section span {
  color: var(--ink);
  font-weight: 700;
}
.source-section a:hover {
  color: var(--red);
}
.source-section small {
  margin-left: auto;
}

.site-footer {
  padding: 70px 0 25px;
  color: #98a2b3;
  background: #0c111d;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 70px;
}
.brand-light b {
  color: #fff;
}
.brand-light .brand-mark::after {
  background: #0c111d;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer-grid > div:first-child p {
  max-width: 480px;
  margin: 14px 0 0;
  font-size: 11px;
}
.footer-grid > div > b {
  margin-bottom: 7px;
  color: #fff;
  font-size: 12px;
}
.footer-grid a,
.footer-grid span {
  font-size: 11px;
}
.footer-grid a:hover {
  color: #fff;
}
.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #1d2939;
  font-size: 9px;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .hero h1 {
    font-size: 52px;
  }
  .note-one {
    left: -8px;
  }
  .note-two {
    right: -8px;
  }
  .modem-grid {
    grid-template-columns: 1fr 1fr;
  }
  .modem-card:last-child {
    grid-column: span 2;
  }
  .legacy-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .package-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .signal-layout {
    gap: 45px;
  }
  .troubleshoot-layout,
  .help-grid,
  .faq-layout {
    gap: 45px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 640px);
  }
  .site-header {
    background: rgba(255, 255, 255, 0.95);
  }
  .nav-wrap {
    min-height: 70px;
  }
  .menu-toggle {
    display: block;
  }
  .main-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 65px;
    padding: 15px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 17px;
    box-shadow: var(--shadow);
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a {
    padding: 10px 12px;
  }
  .main-nav .nav-cta {
    text-align: center;
  }
  .hero {
    min-height: auto;
    padding: 118px 0 75px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: clamp(42px, 13vw, 60px);
  }
  .hero-copy > p {
    font-size: 16px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .trust-row {
    gap: 15px;
    justify-content: space-between;
  }
  .hero-panel {
    min-height: 450px;
  }
  .signal-card {
    min-height: 430px;
  }
  .router-visual {
    height: 240px;
  }
  .note-one {
    left: 0;
    top: 80px;
  }
  .note-two {
    right: 0;
    bottom: 40px;
  }
  .intro-grid,
  .section-heading,
  .signal-layout,
  .troubleshoot-layout,
  .help-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .intro-grid {
    gap: 25px;
  }
  .section {
    padding: 78px 0;
  }
  .section-heading {
    gap: 17px;
  }
  .section-heading h2,
  .signal-layout h2,
  .troubleshoot-intro h2,
  .help-copy h2,
  .faq-layout h2 {
    font-size: 35px;
  }
  .modem-grid {
    grid-template-columns: 1fr;
  }
  .modem-card:last-child {
    grid-column: auto;
  }
  .legacy-grid {
    grid-template-columns: 1fr 1fr;
  }
  .package-grid {
    grid-template-columns: 1fr 1fr;
  }
  .signal-layout {
    gap: 35px;
  }
  .signal-visual {
    min-height: 460px;
    order: 2;
  }
  .troubleshoot-intro {
    position: static;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .lead-form {
    padding: 23px;
  }
  .source-section .container {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .source-section small {
    width: 100%;
    margin: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .footer-grid > div:first-child {
    grid-column: span 2;
  }
  .footer-bottom {
    gap: 15px;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-panel {
    min-height: 420px;
  }
  .signal-card {
    padding: 20px;
    min-height: 400px;
    border-radius: 28px;
  }
  .floating-note {
    display: none;
  }
  .trust-row {
    flex-wrap: wrap;
  }
  .trust-row span {
    width: 45%;
  }
  .legacy-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }
  .signal-visual {
    min-height: 410px;
  }
  .tower {
    left: 35px;
    transform: scale(0.8);
    transform-origin: bottom;
  }
  .house {
    left: 45%;
    transform: translateX(-25%) scale(0.85);
  }
  .phone {
    right: 20px;
    transform: scale(0.85);
  }
  .label-cellular {
    left: 135px !important;
  }
  .label-wifi {
    right: 16px !important;
  }
  .accordion > button span {
    gap: 10px;
  }
  .accordion.open .accordion-content p {
    padding-left: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* Professional Growthive visual system — v1.1 */
:root {
  --red: #ef4444;
  --red-dark: #dc2626;
  --coral: #fb7185;
  --ink: #0f172a;
  --navy: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --white: #ffffff;
  --green: #059669;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-soft: #eff6ff;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.09);
}

body {
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(1180px, calc(100% - 48px));
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.nav-wrap {
  min-height: 78px;
}

.brand {
  gap: 12px;
}

.brand b,
.hero h1,
.section-heading h2,
.signal-layout h2,
.troubleshoot-intro h2,
.help-copy h2,
.faq-layout h2,
.intro-grid h2,
.modem-card h3,
.price strong,
.package-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.brand b {
  color: var(--ink);
  font-size: 20px;
  letter-spacing: -0.035em;
}

.brand small {
  margin-top: 3px;
  color: #94a3b8;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-width: 7px;
  border-color: var(--red);
}

.main-nav {
  gap: 30px;
  font-size: 13px;
}

.main-nav a {
  color: #475569;
}

.main-nav a:hover {
  color: var(--blue);
}

.main-nav .nav-cta {
  padding: 12px 20px;
  color: #fff;
  background: var(--blue);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.18);
}

.hero {
  min-height: 760px;
  padding: 154px 0 96px;
  background:
    radial-gradient(
      circle at 82% 25%,
      rgba(37, 99, 235, 0.09),
      transparent 26%
    ),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.13) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 30%,
    transparent 90%
  );
}

.hero::after {
  background: var(--line);
}

.hero-glow {
  display: none;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: 80px;
}

.eyebrow {
  gap: 8px;
  color: var(--blue-dark);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.eyebrow i {
  width: 6px;
  height: 6px;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.1);
}

.hero h1 {
  margin: 24px 0;
  font-size: clamp(46px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.hero-copy > p {
  max-width: 600px;
  color: #475569;
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 34px;
  gap: 12px;
}

.button {
  min-height: 50px;
  padding: 0 21px;
  gap: 14px;
  border-radius: 10px;
  font-size: 13px;
}

.button-primary {
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.19);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-ghost {
  color: #334155;
  border-color: #cbd5e1;
}

.button:focus-visible,
.main-nav a:focus-visible,
.filter-button:focus-visible,
summary:focus-visible {
  outline-color: rgba(37, 99, 235, 0.3);
}

.trust-row {
  margin-top: 44px;
  gap: 0;
}

.trust-row span {
  min-width: 120px;
  padding: 0 20px;
  border-left: 1px solid var(--line);
}

.trust-row span:first-child {
  padding-left: 0;
  border-left: 0;
}

.trust-row b {
  color: var(--ink);
}

.hero-panel {
  min-height: 490px;
}

.signal-card {
  width: min(460px, 100%);
  min-height: 462px;
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(203, 213, 225, 0.9);
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
}

.signal-card::before {
  inset: -190px -140px auto auto;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 66%);
}

.signal-top {
  color: #475569;
  font-size: 12px;
  font-weight: 600;
}

.router-visual {
  height: 275px;
}

.router-ring {
  border-color: rgba(37, 99, 235, 0.16);
}

.ring-two {
  border-color: rgba(37, 99, 235, 0.08);
}

.router-body {
  width: 144px;
  height: 180px;
  background: linear-gradient(145deg, #fff, #e8eef7);
  border: 1px solid #dbe4f0;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
}

.signal-stats div {
  border-color: var(--line);
  background: #f8fafc;
}

.signal-stats b {
  color: var(--ink);
}

.signal-stats span {
  color: var(--muted);
}

.floating-note {
  border-color: var(--line);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
}

.floating-note > b {
  color: var(--blue-dark);
  background: var(--blue-soft);
}

.note-one {
  left: -24px;
}

.note-two {
  right: -18px;
}

.intro-strip {
  padding: 56px 0;
  color: var(--ink);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  gap: 90px;
}

.section-index {
  color: var(--blue);
}

.intro-grid h2 {
  color: var(--ink);
  font-size: 24px;
}

.intro-grid p {
  color: var(--muted);
}

.section {
  padding: 104px 0;
}

.section-soft {
  background: var(--soft);
}

.section-heading {
  margin-bottom: 42px;
  gap: 72px;
}

.section-heading h2,
.signal-layout h2,
.troubleshoot-intro h2,
.help-copy h2,
.faq-layout h2 {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.section-heading p {
  color: var(--muted);
  line-height: 1.7;
}

.modem-grid {
  gap: 18px;
}

.modem-card {
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.modem-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.modem-card.featured {
  border-color: #bfdbfe;
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.08);
}

.status-pill,
.value-pill {
  border-radius: 7px;
}

.value-pill {
  color: var(--blue-dark);
  background: var(--blue-soft);
}

.device-icon > i {
  border-color: #dbeafe;
}

.modem-card h3 {
  font-size: 22px;
}

.price strong {
  font-size: 24px;
}

.bonus {
  border: 1px solid #eef2f7;
  border-radius: 10px;
}

.bonus b {
  color: var(--blue-dark);
}

.button-card {
  background: var(--ink);
}

.legacy-box,
.package-card,
.package-note {
  border-radius: 14px;
}

.package-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
}

.package-category {
  color: var(--blue-dark);
}

.filter-button {
  border-radius: 9px;
}

.filter-button.active {
  background: var(--blue);
  border-color: var(--blue);
}

.signal-layout {
  gap: 84px;
}

.signal-visual {
  min-height: 520px;
  background: linear-gradient(145deg, #eff6ff, #f8fafc);
  border: 1px solid #dbeafe;
  border-radius: 22px;
}

.guide-stack article > span {
  color: var(--blue-dark);
  background: var(--blue-soft);
}

.text-link {
  color: var(--blue-dark);
}

.section-dark {
  color: var(--ink);
  background: #f8fafc;
}

.section-dark::before {
  display: none;
}

.section-dark .eyebrow {
  color: var(--blue-dark);
}

.troubleshoot-intro > p {
  color: var(--muted);
}

.support-card {
  color: #334155;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.support-card p {
  color: var(--muted);
}

.accordion {
  border-color: var(--line);
}

.accordion > button {
  color: var(--ink);
}

.accordion > button span b {
  color: var(--blue);
}

.accordion-content p {
  color: var(--muted);
}

.lead-form {
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.08);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  background: #fff;
  border-color: #cbd5e1;
  border-radius: 9px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.09);
}

.faq-list details[open] summary i {
  color: var(--blue);
}

.source-section a:hover {
  color: var(--blue);
}

.site-footer {
  background: #0b1220;
}

.brand-light b {
  color: #fff;
}

.brand-light .brand-mark::after {
  background: #0b1220;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 38px;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 640px);
  }

  .main-nav {
    border-radius: 14px;
  }

  .main-nav .nav-cta {
    border-radius: 9px;
  }

  .hero {
    padding: 120px 0 72px;
  }

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

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

  .hero-panel {
    min-height: 440px;
  }

  .signal-card {
    min-height: 420px;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .signal-layout h2,
  .troubleshoot-intro h2,
  .help-copy h2,
  .faq-layout h2 {
    font-size: 34px;
  }
}

@media (max-width: 480px) {
  .trust-row span {
    min-width: 0;
    width: 50%;
    margin-bottom: 16px;
  }

  .trust-row span:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .signal-card {
    border-radius: 18px;
  }
}
