:root {
  --bg: #0f1620;
  --bg-elev: #151f2c;
  --bg-soft: #1e2d3e;
  --text: #edf2f7;
  --text-dim: #bcc8d5;
  --honey: #f3a527;
  --honey-strong: #d88909;
  --teal: #01b888;
  --teal-deep: #0e2a36;
  --line: rgba(255, 255, 255, 0.16);
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Poppins, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 0%, #223145 0%, transparent 42%),
    radial-gradient(circle at 84% 12%, rgba(1, 184, 136, 0.12) 0%, transparent 38%),
    linear-gradient(180deg, #151f2c 0%, var(--bg) 58%);
  line-height: 1.5;
}

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

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: linear-gradient(90deg, rgba(26, 36, 50, 0.97), rgba(16, 24, 36, 0.97));
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}

.header-inner {
  min-height: 90px;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo img {
  width: clamp(210px, 23vw, 340px);
  height: auto;
  max-height: 66px;
  object-fit: contain;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  line-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
  position: relative;
  z-index: 2;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
  gap: 22px;
}

.nav a {
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 14px;
  color: #f4f7fa;
  font-weight: 700;
}

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

.nav-dropdown {
  position: relative;
}

/* Prevent hover flicker: keep a small hover bridge between trigger and dropdown */
@media (min-width: 841px) {
  .nav-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 14px;
  }
}

.nav-drop-toggle {
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 14px;
  color: #f4f7fa;
  font-weight: 700;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.nav-drop-toggle:hover {
  color: var(--honey);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  background: linear-gradient(180deg, #1f2d3d, #172535);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 36px rgba(9, 16, 25, 0.34);
  padding: 10px;
  display: none;
  z-index: 1200;
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  color: #e5edf6;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  border-radius: 8px;
}

.dropdown-menu a:hover {
  color: #ffffff;
  background: rgba(243, 165, 39, 0.24);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 12px 20px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn-primary {
  color: #141414;
  background: linear-gradient(180deg, #ffbe4d, var(--honey));
  box-shadow: 0 10px 24px rgba(243, 165, 39, 0.35);
  -webkit-text-fill-color: #141414;
  text-shadow: none;
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #ffc765, #e7991a);
  color: #141414;
  -webkit-text-fill-color: #141414;
}

.btn-primary:focus-visible,
.btn-primary:active,
.btn-primary:visited {
  color: #141414;
  -webkit-text-fill-color: #141414;
}

.nav a.btn-primary,
.nav a.btn-primary:hover,
.nav a.btn-primary:focus-visible,
.nav a.btn-primary:active,
.nav a.btn-primary:visited {
  color: #141414;
  -webkit-text-fill-color: #141414;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.65);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: #fff;
  margin: 5px auto;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 82vh;
  overflow: hidden;
}

.hero-track {
  display: flex;
  width: 100%;
  transition: transform 0.7s ease;
  will-change: transform;
}

.hero-slide {
  position: relative;
  min-width: 100%;
  min-height: 82vh;
  display: grid;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(115deg, rgba(16, 22, 31, 0.82) 0%, rgba(16, 22, 31, 0.72) 42%, rgba(16, 22, 31, 0.52) 100%),
    radial-gradient(circle at 72% 24%, rgba(1, 184, 136, 0.34), transparent 46%);
}

.hero-slide .hero-grid {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 36px;
  padding: 72px 0;
}

.eyebrow {
  display: inline-block;
  color: var(--honey);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 13px;
}

.hero h1 {
  margin: 14px 0 16px;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1.04;
  color: #ffffff;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.45);
}

.hero p {
  margin: 0;
  color: #f0f5fb;
  font-size: clamp(17px, 2.1vw, 24px);
  max-width: 680px;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

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

.hero-trust {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  color: #e7ebf0;
}

.hero-side {
  background: linear-gradient(180deg, rgba(36, 48, 64, 0.9), rgba(24, 33, 46, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.hero-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(24, 33, 46, 0.62);
  color: #f5f8fb;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

.hero-control:hover {
  background: rgba(243, 165, 39, 0.28);
  border-color: rgba(243, 165, 39, 0.62);
}

.hero-control-prev {
  left: 18px;
}

.hero-control-next {
  right: 18px;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
  bottom: 24px;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  background: var(--honey);
  transform: scale(1.2);
}

.hero-side h3 {
  margin: 0 0 14px;
  font-size: 22px;
}

.hero-side ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-dim);
}

.hero-side li {
  margin-bottom: 8px;
}

.section {
  padding: 74px 0;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.section h2 {
  margin: 10px 0 12px;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
}

.section-header p {
  margin: 0;
  color: var(--text-dim);
}

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

.service-pillars {
  background: linear-gradient(180deg, rgba(21, 33, 47, 0.92), rgba(15, 24, 36, 0.96));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 52px 0;
}

.service-pillars-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 24px;
}

.service-pillars-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pillar-item {
  background: linear-gradient(165deg, rgba(33, 46, 64, 0.92), rgba(24, 35, 49, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 14px 14px 12px;
  position: relative;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.pillar-item::before {
  content: '';
  position: absolute;
  inset: -35% -18% auto;
  height: 74%;
  background: linear-gradient(115deg, rgba(1, 184, 136, 0.22), rgba(243, 165, 39, 0.16), rgba(255, 255, 255, 0));
  opacity: 0;
  transform: translateX(-14%);
  transition: opacity 0.24s ease, transform 0.24s ease;
  pointer-events: none;
}

.pillar-item::after {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffcb61, #f3a527);
  box-shadow: 0 0 0 4px rgba(243, 165, 39, 0.14);
  opacity: 0.75;
}

.pillar-item:hover,
.pillar-item:focus-within {
  transform: translateY(-5px);
  border-color: rgba(243, 165, 39, 0.36);
  box-shadow: 0 16px 30px rgba(16, 28, 40, 0.14), 0 0 0 1px rgba(1, 184, 136, 0.18);
}

.pillar-item:hover::before,
.pillar-item:focus-within::before {
  opacity: 1;
  transform: translateX(0);
}

.pillar-item h3 {
  margin: 0 0 6px;
  font-family: 'DM Sans', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: clamp(17px, 1.35vw, 22px);
  color: #ffba63;
}

.pillar-item p {
  margin: 0;
  color: #d6e0ea;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.45;
}

.service-pillars-media {
  position: relative;
  display: grid;
  justify-items: center;
  align-self: stretch;
  isolation: isolate;
}

.service-pillars-media::before {
  content: '';
  position: absolute;
  inset: 8% 2% 10%;
  border-radius: 26% 42% 34% 46% / 30% 36% 44% 38%;
  background:
    radial-gradient(circle at 28% 30%, rgba(1, 184, 136, 0.26), transparent 46%),
    radial-gradient(circle at 74% 66%, rgba(243, 165, 39, 0.22), transparent 42%),
    linear-gradient(145deg, rgba(15, 50, 68, 0.16), rgba(11, 33, 47, 0.08));
  filter: blur(2px);
  z-index: 0;
}

.service-pillars-media::after {
  content: '';
  position: absolute;
  inset: 14% 10% 12%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22% 40% 30% 44% / 28% 34% 44% 36%;
  transform: rotate(-4deg);
  z-index: 1;
  pointer-events: none;
}

.service-pillars-media img {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  height: auto;
  object-fit: contain;
  clip-path: polygon(10% 7%, 84% 2%, 100% 19%, 96% 83%, 75% 98%, 18% 96%, 0 76%, 2% 18%);
  border-radius: 24px;
  box-shadow: 0 26px 52px rgba(9, 19, 31, 0.22);
  transform: translateY(0);
  transition: transform 0.35s ease, filter 0.35s ease;
  animation: media-float 8.2s ease-in-out infinite;
}

.service-pillars-media:hover img {
  transform: translateY(-6px) scale(1.01);
  filter: saturate(1.04);
}

.getting-started {
  background: linear-gradient(180deg, #14b59a 0%, #0f8a77 52%, #0d3848 100%);
  color: #f3f8fd;
}

.getting-started-header h2 {
  color: #f3f8fd;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.getting-started-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 30px;
  align-items: center;
}

.getting-started-media img {
  width: min(100%, 760px);
  height: auto;
  object-fit: contain;
}

.getting-started-steps {
  display: grid;
  gap: 14px;
}

.start-step {
  background: linear-gradient(90deg, rgba(48, 129, 222, 0.9), rgba(55, 204, 181, 0.9));
  border: 1px solid rgba(240, 248, 255, 0.52);
  border-radius: 12px;
  padding: 14px 18px;
  min-height: 92px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 22px rgba(5, 26, 33, 0.2);
}

.start-step span {
  display: block;
  color: #f6fbff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1.24;
  font-weight: 700;
}

.device-compatibility {
  background: linear-gradient(180deg, rgba(20, 31, 44, 0.9), rgba(14, 23, 34, 0.95));
}

.device-compatibility .section-header h2 {
  color: #f0f5fb;
}

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

.compat-card {
  background: linear-gradient(180deg, #0f3244, #0a2535);
  border: 4px solid var(--honey);
  border-radius: 18px;
  padding: 16px 16px 14px;
  box-shadow: 0 14px 26px rgba(8, 18, 29, 0.28);
  min-height: 122px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.compat-card strong {
  color: #f7bb45;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.compat-card span {
  color: #f0f7ff;
  font-size: clamp(27px, 2.1vw, 43px);
  line-height: 1.06;
  font-family: 'DM Sans', Arial, sans-serif;
}

.card {
  background: linear-gradient(180deg, rgba(33, 46, 62, 0.92), rgba(23, 33, 46, 0.92));
  color: #edf2f7;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 34px rgba(10, 18, 28, 0.24);
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(243, 165, 39, 0.14), rgba(1, 184, 136, 0.12));
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.card:hover,
.card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(243, 165, 39, 0.5);
  box-shadow: 0 20px 38px rgba(10, 18, 28, 0.2), 0 0 0 1px rgba(1, 184, 136, 0.15);
}

.card:hover::before,
.card:focus-within::before {
  opacity: 1;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-family: 'DM Sans', Arial, sans-serif;
  color: #ffffff;
}

.card p {
  margin: 0;
  color: var(--text-dim);
}

.pricing {
  background: linear-gradient(180deg, rgba(28, 50, 66, 0.28), rgba(1, 184, 136, 0.1));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.plan-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  overflow: hidden;
}

.reseller-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.plan-grid::before {
  content: '';
  position: absolute;
  inset: -20% -12%;
  z-index: 0;
  background:
    linear-gradient(105deg, transparent 22%, rgba(1, 184, 136, 0.1) 42%, rgba(243, 165, 39, 0.14) 52%, rgba(1, 184, 136, 0.1) 62%, transparent 80%);
  transform: translateX(-88%) translateY(0);
  animation: plan-flow-across 9.6s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  pointer-events: none;
}

.plan {
  background: linear-gradient(180deg, #243245, #1a2535);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
  z-index: 1;
}

.plan::before {
  content: '';
  position: absolute;
  inset: -22% -14%;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 90%, rgba(243, 165, 39, 0.24) 0 7px, transparent 8px),
    radial-gradient(circle at 34% 86%, rgba(1, 184, 136, 0.21) 0 6px, transparent 7px),
    radial-gradient(circle at 52% 92%, rgba(243, 165, 39, 0.2) 0 5px, transparent 6px),
    radial-gradient(circle at 68% 87%, rgba(1, 184, 136, 0.18) 0 6px, transparent 7px),
    radial-gradient(circle at 84% 91%, rgba(243, 165, 39, 0.2) 0 5px, transparent 6px);
  opacity: 0.8;
  transform: translateY(0) scale(1);
  animation: popcorn-rise 5.8s ease-in-out infinite;
  pointer-events: none;
}

.plan::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01));
  pointer-events: none;
}

.plan:hover,
.plan:focus-within {
  transform: translateY(-8px) scale(1.012);
  border-color: rgba(243, 165, 39, 0.62);
  box-shadow: 0 18px 36px rgba(4, 12, 22, 0.34), 0 0 0 1px rgba(1, 184, 136, 0.25);
}

.plan:hover::before,
.plan:focus-within::before {
  animation: popcorn-repel 0.7s cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
  opacity: 1;
}

.plan-grid .plan:nth-child(1)::before {
  animation-delay: -0.2s;
  animation-duration: 6.2s;
}

.plan-grid .plan:nth-child(2)::before {
  animation-delay: -1.4s;
  animation-duration: 5.4s;
}

.plan-grid .plan:nth-child(3)::before {
  animation-delay: -2.5s;
  animation-duration: 6.8s;
}

.plan-grid .plan:nth-child(4)::before {
  animation-delay: -0.9s;
  animation-duration: 5.9s;
}

.plan-grid .plan:nth-child(5)::before {
  animation-delay: -2.2s;
  animation-duration: 6.5s;
}

.plan-grid .plan:nth-child(6)::before {
  animation-delay: -3.1s;
  animation-duration: 5.6s;
}

.plan.highlight {
  border-color: rgba(243, 165, 39, 0.6);
  box-shadow: 0 14px 32px rgba(243, 165, 39, 0.2);
}

.plan h3 {
  margin: 0;
  font-size: 24px;
}

.price {
  margin: 12px 0;
  font-size: 40px;
  font-family: 'DM Sans', Arial, sans-serif;
  color: var(--honey);
}

@keyframes plan-flow-across {
  0% {
    transform: translateX(-90%) translateY(-2%);
  }
  50% {
    transform: translateX(8%) translateY(2%);
  }
  100% {
    transform: translateX(92%) translateY(-1%);
  }
}

@keyframes popcorn-rise {
  0% {
    transform: translateY(8%) scale(0.98);
    opacity: 0.52;
  }
  30% {
    transform: translateY(-2%) scale(1.01);
    opacity: 0.85;
  }
  72% {
    transform: translateY(-12%) scale(1.03);
    opacity: 0.72;
  }
  100% {
    transform: translateY(10%) scale(0.99);
    opacity: 0.5;
  }
}

@keyframes popcorn-repel {
  0% {
    transform: translateY(-4%) scale(1);
    opacity: 0.9;
  }
  35% {
    transform: translateY(-22%) scale(1.06);
    opacity: 1;
  }
  100% {
    transform: translateY(22%) scale(0.94);
    opacity: 0.35;
  }
}

@keyframes media-float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(-0.6deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.plan ul {
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--text-dim);
}

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

.quote {
  background: linear-gradient(180deg, rgba(34, 46, 62, 0.92), rgba(24, 33, 46, 0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px;
}

.quote p {
  margin: 0 0 16px;
  color: #e2e8ef;
}

.quote strong {
  display: block;
  color: var(--honey);
}

.quote span {
  color: var(--text-dim);
  font-size: 14px;
}

.cta-band {
  background: linear-gradient(90deg, rgba(1, 184, 136, 0.22), rgba(243, 165, 39, 0.16));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cta-band h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  font-family: 'DM Sans', Arial, sans-serif;
}

.guide-hero {
  background: linear-gradient(180deg, rgba(28, 50, 66, 0.32), rgba(1, 184, 136, 0.1));
}

.guide-quick-grid,
.guide-device-grid,
.guide-issues-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.guide-quick-card,
.guide-device,
.guide-section .container {
  background: linear-gradient(180deg, rgba(34, 46, 62, 0.92), rgba(24, 33, 46, 0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.guide-quick-card {
  padding: 18px;
}

.guide-quick-card h3 {
  margin: 0 0 10px;
  font-family: 'DM Sans', Arial, sans-serif;
}

.guide-quick-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-dim);
}

.guide-device {
  display: block;
  padding: 16px 18px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.guide-device strong {
  display: block;
  font-size: 20px;
  color: #fff;
  margin-bottom: 6px;
  font-family: 'DM Sans', Arial, sans-serif;
}

.guide-device span {
  color: var(--text-dim);
}

.guide-device:hover {
  transform: translateY(-4px);
  border-color: rgba(243, 165, 39, 0.55);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26);
}

.pricing-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.pricing-tab {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(26, 37, 51, 0.94), rgba(19, 28, 40, 0.94));
  color: #dce7f2;
  border-radius: 10px;
  padding: 11px 10px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.pricing-tab:hover {
  border-color: rgba(243, 165, 39, 0.5);
}

.pricing-tab.is-active {
  background: linear-gradient(180deg, #ffbe4d, var(--honey));
  color: #141414;
  border-color: rgba(243, 165, 39, 0.78);
  box-shadow: 0 12px 24px rgba(243, 165, 39, 0.28);
}

.pricing-panel {
  display: none;
}

.pricing-panel.is-active {
  display: block;
}

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

.guide-section {
  --guide-accent: #f3a527;
  --guide-accent-soft: rgba(243, 165, 39, 0.24);
  padding-top: 14px;
  padding-bottom: 14px;
}

.guide-section .container {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.guide-section h3 {
  margin: 0 0 14px;
  font-family: 'DM Sans', Arial, sans-serif;
  color: #fff;
  font-size: clamp(28px, 2.2vw, 36px);
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.guide-section h3::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--guide-accent), #ffcc6c);
  box-shadow: 0 0 0 6px var(--guide-accent-soft);
  flex: 0 0 14px;
}

.guide-section .container::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--guide-accent), rgba(1, 184, 136, 0.85));
}

#firestick.guide-section {
  --guide-accent: #f3a527;
  --guide-accent-soft: rgba(243, 165, 39, 0.24);
}

#android.guide-section {
  --guide-accent: #01b888;
  --guide-accent-soft: rgba(1, 184, 136, 0.22);
}

#smarttv.guide-section {
  --guide-accent: #4ca8ff;
  --guide-accent-soft: rgba(76, 168, 255, 0.2);
}

#desktop.guide-section {
  --guide-accent: #9a7cff;
  --guide-accent-soft: rgba(154, 124, 255, 0.2);
}

#mobile.guide-section {
  --guide-accent: #ff8f5d;
  --guide-accent-soft: rgba(255, 143, 93, 0.22);
}

#browser.guide-section {
  --guide-accent: #4cd3b2;
  --guide-accent-soft: rgba(76, 211, 178, 0.2);
}

.guide-section ol {
  margin: 0;
  padding-left: 0;
  color: var(--text-dim);
  list-style: none;
  counter-reset: guide-step;
}

.guide-section li + li {
  margin-top: 10px;
}

.guide-section li {
  position: relative;
  counter-increment: guide-step;
  background: linear-gradient(180deg, rgba(30, 43, 58, 0.85), rgba(20, 30, 42, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 14px 12px 54px;
  line-height: 1.42;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.guide-section li::before {
  content: counter(guide-step);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  color: #10141b;
  background: linear-gradient(180deg, var(--guide-accent), #ffd483);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
}

.guide-section li:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 22px rgba(4, 10, 18, 0.24);
}

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

.channel-column {
  background: linear-gradient(180deg, rgba(33, 46, 62, 0.92), rgba(23, 33, 46, 0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.channel-column h3 {
  margin: 0 0 10px;
  font-family: 'DM Sans', Arial, sans-serif;
  color: #ffffff;
  font-size: 20px;
}

.channel-column ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-dim);
}

.channel-column li + li {
  margin-top: 6px;
}

.app-hero-card {
  background: linear-gradient(180deg, rgba(34, 46, 62, 0.92), rgba(24, 33, 46, 0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.app-hero-card p {
  margin: 0;
  color: var(--text-dim);
}

.app-code-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid rgba(243, 165, 39, 0.5);
  background: linear-gradient(180deg, rgba(243, 165, 39, 0.2), rgba(243, 165, 39, 0.08));
  padding: 8px 14px;
  margin-bottom: 14px;
}

.app-code-pill strong {
  color: #f5d18f;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.app-code-pill span {
  color: #ffd57b;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.app-device-grid .guide-quick-card {
  height: 100%;
}

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

.footer {
  margin-top: 76px;
  border-top: 1px solid var(--line);
  background: linear-gradient(90deg, #141d2a, #0f1622);
}

.footer-top {
  padding: 56px 0 26px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 26px;
}

.footer h4 {
  margin: 0 0 12px;
  font-size: 22px;
}

.footer ul {
  margin: 0;
  padding-left: 18px;
}

.footer li {
  margin-bottom: 8px;
}

.footer a {
  color: var(--honey);
}

.footer p {
  margin: 0;
  color: var(--text-dim);
}

.footer strong,
.footer em {
  color: var(--honey);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 14px 0 20px;
  color: #d7dee8;
}

@media (max-width: 1080px) {
  .hero-grid,
  .features,
  .testimonials,
  .plan-grid,
  .footer-top,
  .channel-grid,
  .app-steps,
  .guide-quick-grid,
  .guide-device-grid,
  .guide-issues-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

  .getting-started-grid {
    grid-template-columns: 1fr;
  }

  .start-step {
    min-height: 84px;
  }

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

}

@media (max-width: 840px) {
  .mobile-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 90px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: linear-gradient(180deg, #202d3d, #182432);
    border-bottom: 1px solid var(--line);
    padding: 8px 20px 14px;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-drop-toggle {
    width: 100%;
    text-align: left;
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .dropdown-menu {
    position: static;
    min-width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    border-radius: 10px;
    margin-top: 6px;
    padding: 6px;
  }

  .dropdown-menu a {
    color: #e7edf4;
    padding: 9px 10px;
  }

  .dropdown-menu a:hover {
    color: #ffffff;
    background: rgba(243, 165, 39, 0.24);
  }

  .nav-dropdown .dropdown-menu {
    display: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .nav .btn {
    margin-top: 10px;
    width: 100%;
  }

  .hero {
    min-height: 76vh;
  }

  .hero-slide {
    min-height: 76vh;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 44px;
    padding-bottom: 78px;
  }

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

  .start-step {
    min-height: 76px;
    padding: 12px 14px;
    border-radius: 10px;
  }

  .start-step span {
    font-size: clamp(15px, 4.9vw, 18px);
    letter-spacing: 0.025em;
  }
}

@media (max-width: 640px) {
  .features,
  .testimonials,
  .plan-grid,
  .footer-top,
  .channel-grid,
  .app-steps,
  .guide-quick-grid,
  .guide-device-grid,
  .guide-issues-grid {
    grid-template-columns: 1fr;
  }

  .pricing-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-four-grid {
    grid-template-columns: 1fr;
  }

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

  .service-pillars {
    padding: 44px 0;
  }

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

  .service-pillars-media::after {
    inset: 12% 6% 10%;
  }

  .service-pillars-media img {
    clip-path: polygon(8% 7%, 86% 3%, 100% 19%, 97% 83%, 77% 98%, 16% 96%, 0 77%, 2% 18%);
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-slide {
    min-height: 70vh;
  }

  .hero-control {
    width: 40px;
    height: 40px;
    font-size: 21px;
  }

  .hero-control-prev {
    left: 10px;
  }

  .hero-control-next {
    right: 10px;
  }

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

@media (prefers-reduced-motion: reduce) {
  .service-pillars-media img,
  .plan-grid::before,
  .plan::before {
    animation: none;
  }

  .plan:hover::before,
  .plan:focus-within::before {
    animation: none;
  }
}

/* Legacy page shell compatibility (all non-home pages) */
body.legacy-shell #main-header,
body.legacy-shell #main-footer,
body.legacy-shell #top-header,
body.legacy-shell #et_mobile_nav_menu {
  display: none !important;
}

body.legacy-shell .legacy-main {
  padding: 34px 0 24px;
  min-height: 48vh;
}

body.legacy-shell .legacy-main #page-container,
body.legacy-shell .legacy-main #et-main-area,
body.legacy-shell .legacy-main #main-content,
body.legacy-shell .legacy-main .entry-content,
body.legacy-shell .legacy-main article {
  background: transparent !important;
}

body.legacy-shell .legacy-main .et_pb_section,
body.legacy-shell .legacy-main .et_pb_row {
  background: transparent !important;
}

body.legacy-shell .legacy-main .et_pb_row {
  width: min(92%, var(--max));
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

body.legacy-shell .legacy-main h1,
body.legacy-shell .legacy-main h2,
body.legacy-shell .legacy-main h3,
body.legacy-shell .legacy-main h4,
body.legacy-shell .legacy-main h5,
body.legacy-shell .legacy-main h6 {
  color: #f1f6fc !important;
}

body.legacy-shell .legacy-main p,
body.legacy-shell .legacy-main li,
body.legacy-shell .legacy-main span,
body.legacy-shell .legacy-main div {
  color: var(--text-dim) !important;
}

body.legacy-shell .legacy-main a {
  color: var(--honey) !important;
}

body.legacy-shell .legacy-main .et_pb_button,
body.legacy-shell .legacy-main button,
body.legacy-shell .legacy-main input[type='submit'] {
  border-radius: 10px !important;
}
