@import url("https://fonts.googleapis.com/css2?family=Poiret+One&display=swap");

:root {
  --bg: #050608;
  --surface: #0c0f14;
  --surface-soft: #0f131a;
  --text: #e8edf5;
  --text-soft: #a9b4c7;
  --line: #1d2633;
  --blue: #0f7bff;
  --green: #19c37d;
  --gold: #f4b942;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shadow: 0 28px 50px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Sora", sans-serif;
  background:
    radial-gradient(circle at 15% -10%, rgba(22, 94, 255, 0.2), transparent 42%),
    radial-gradient(circle at 85% 10%, rgba(15, 123, 255, 0.12), transparent 30%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      to right,
      transparent 0,
      transparent 62px,
      rgba(255, 255, 255, 0.02) 63px,
      transparent 64px
    ),
    linear-gradient(180deg, rgba(9, 35, 87, 0.2), transparent 40%);
  opacity: 0.4;
  animation: driftGrid 16s linear infinite;
}

.mega-header {
  position: relative;
  z-index: 30;
  width: min(1760px, calc(100% - 2rem));
  margin: 1.2rem auto 0.8rem;
  padding: 0;
  animation: floatIn 0.9s ease-out both;
}

.mega-header,
.mega-header .nav-link,
.mega-header .nav-btn,
.mega-header .mobile-link,
.mega-header .mobile-accordion,
.mega-header .mobile-panel a,
.mega-header .mobile-call,
.mega-header .call-pill,
.mega-header .phone-text {
  font-family: "Poiret One", "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nav-shell {
  border: 1px solid rgba(30, 40, 58, 0.85);
  border-radius: 30px;
  min-height: 92px;
  padding: 0.55rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  background:
    radial-gradient(circle at 50% 92%, rgba(18, 109, 222, 0.24), transparent 36%),
    repeating-linear-gradient(
      to right,
      transparent 0,
      transparent 60px,
      rgba(255, 255, 255, 0.017) 61px,
      transparent 62px
    ),
    linear-gradient(165deg, rgba(17, 20, 26, 0.96), rgba(4, 6, 9, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 20px 44px rgba(0, 0, 0, 0.48);
  position: relative;
  overflow: visible;
}

.nav-shell::before,
.nav-shell::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.nav-shell::before {
  top: -1px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(22, 125, 255, 0.45),
    rgba(26, 142, 255, 0.9),
    rgba(22, 125, 255, 0.45)
  );
}

.nav-shell::after {
  bottom: -1px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(137, 79, 255, 0.2),
    rgba(175, 102, 255, 0.6),
    rgba(137, 79, 255, 0.2)
  );
}

.brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  grid-column: 1;
}

.brand-mark {
  width: 118px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 14px rgba(7, 123, 255, 0.25));
  animation: pulseMark 3.2s ease-in-out infinite;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 2vw, 2rem);
  grid-column: 2;
}

.nav-link,
.nav-btn {
  color: #f0f2f6;
  text-decoration: none;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: clamp(1rem, 1.24vw, 2rem);
  line-height: 1;
  cursor: pointer;
  transition: color 220ms ease;
  padding: 0;
}

.nav-link.active,
.nav-btn.active,
.nav-link:hover,
.nav-btn:hover {
  color: #1490ff;
}

.nav-item {
  position: relative;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 16px;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
}

.caret {
  font-size: 0.9em;
  color: #1490ff;
}

.dropdown {
  position: absolute;
  top: calc(100% + 0.22rem);
  left: 0;
  min-width: 304px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(7, 9, 12, 0.97);
  box-shadow: 0 18px 38px rgba(2, 7, 16, 0.72);
  padding: 0.72rem;
  display: grid;
  gap: 0.12rem;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.dropdown a,
.submenu-toggle {
  color: #e8eef7;
  text-decoration: none;
  padding: 0.58rem 0.42rem;
  border-radius: 8px;
  font-size: 0.96rem;
  line-height: 1.3;
}

.dropdown a:hover,
.submenu-toggle:hover {
  background: rgba(20, 144, 255, 0.12);
  color: #4fb2ff;
}

.nav-item.open > .dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


.submenu-wrap {
  position: relative;
}

.submenu-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-family: inherit;
}

.submenu {
  position: absolute;
  left: calc(100% + 0.2rem);
  bottom: 0;
  min-width: 270px;
  border-radius: 13px;
  border: 1px solid var(--line);
  background: rgba(8, 10, 14, 0.98);
  padding: 0.6rem;
  display: grid;
  gap: 0.22rem;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.submenu-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 14px;
  height: 100%;
}

.submenu-wrap.open > .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

@media (hover: hover) and (pointer: fine) {
  .nav-item:hover > .dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .submenu-wrap:hover > .submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.68rem;
  grid-column: 3;
  justify-self: end;
}

.icon-btn {
  border: 0;
  background: transparent;
  color: #e7ebf3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 200ms ease;
}

.icon-btn[aria-label="Search"] {
  display: none;
}

.icon-btn:hover {
  color: #1490ff;
}

.grid-icon {
  width: 24px;
  height: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.grid-icon i {
  display: block;
  width: 100%;
  height: 100%;
  background: currentColor;
}

.call-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border-radius: 999px;
  padding: 0.32rem 0.95rem 0.32rem 0.32rem;
  text-decoration: none;
  color: #d8dee8;
  border: 1px solid rgba(14, 90, 210, 0.45);
  box-shadow: inset 0 0 0 1px rgba(15, 123, 255, 0.18);
  background: rgba(9, 12, 18, 0.82);
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 220ms ease;
}

.call-pill:hover {
  border-color: rgba(53, 148, 255, 0.82);
  box-shadow:
    inset 0 0 0 1px rgba(85, 170, 255, 0.38),
    0 10px 22px rgba(7, 46, 102, 0.28);
  transform: translateY(-1px);
}

.call-badge {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #d6e9ff;
  background: linear-gradient(145deg, #0e71d8, #0058b8);
  border: 1px solid rgba(130, 193, 255, 0.6);
  box-shadow:
    0 0 0 4px rgba(15, 123, 255, 0.12),
    0 10px 20px rgba(0, 72, 155, 0.45);
}

.phone-text {
  font-size: clamp(1rem, 1.35vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.mobile-toggle {
  display: none;
  border: 1px solid rgba(50, 116, 201, 0.45);
  background: rgba(10, 12, 17, 0.8);
  color: #e9eff8;
  border-radius: 10px;
  width: 42px;
  height: 42px;
  font-size: 1.35rem;
}

.mobile-menu {
  margin-top: 0.6rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0.9rem;
  background: rgba(8, 10, 13, 0.97);
  display: grid;
  gap: 0.4rem;
  transform-origin: top center;
}

.mobile-menu[hidden] {
  display: none !important;
}

.mobile-menu.open {
  animation: mobileMenuIn 220ms ease both;
}

.mobile-menu.closing {
  animation: mobileMenuOut 220ms ease both;
}

.mobile-link,
.mobile-accordion,
.mobile-panel a {
  color: #eff4fd;
  text-decoration: none;
  font-size: 0.98rem;
  line-height: 1.3;
}

.mobile-link,
.mobile-accordion {
  border: 0;
  background: transparent;
  padding: 0.62rem 0.35rem;
  text-align: left;
  width: 100%;
  font-family: inherit;
}

.mobile-link.active,
.mobile-accordion.active {
  color: #1490ff;
}

.mobile-accordion {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-panel {
  display: grid;
  gap: 0.2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.mobile-panel a {
  padding: 0.45rem 0.35rem 0.45rem 1rem;
  color: #ced8ea;
}

.mobile-call {
  margin-top: 0.5rem;
  border: 1px solid rgba(43, 138, 255, 0.48);
  border-radius: 12px;
  padding: 0.72rem 0.8rem;
  text-decoration: none;
  color: #e7f2ff;
  font-weight: 600;
  text-align: center;
}

.container {
  width: 100%;
  margin: 1rem 0 3rem;
  padding: 0 1rem;
  display: grid;
  gap: 1.1rem;
  position: relative;
  z-index: 1;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 0%, rgba(15, 123, 255, 0.14), transparent 45%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    var(--surface);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  inset: -120% 20% auto -60%;
  height: 180%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(63, 140, 255, 0.16),
    transparent
  );
  transform: rotate(12deg);
  opacity: 0;
  pointer-events: none;
}

.panel:hover::before {
  animation: panelSweep 1s ease-out;
}

.hero {
  padding: clamp(2rem, 6vw, 4rem);
  text-align: center;
  animation: heroBreath 6s ease-in-out infinite alternate;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  color: #62afff;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  border: 2px solid var(--blue);
}

.hero h1 {
  margin: 1rem auto;
  max-width: 850px;
  font-size: clamp(1.8rem, 4.9vw, 3.2rem);
  line-height: 1.14;
  background: linear-gradient(90deg, #f5f8ff, #d7e8ff 38%, #93c5ff 62%, #f5f8ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 8s linear infinite;
}

.subtext {
  margin: 0 auto;
  max-width: 740px;
  color: var(--text-soft);
  line-height: 1.7;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

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

@media (max-width: 1200px) {
  .plans-grid-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .plans-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .plans-grid-4 {
    grid-template-columns: 1fr;
  }
}

.plan-card {
  padding: 1.35rem;
  border-radius: var(--radius-md);
  display: grid;
  gap: 1rem;
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.plan-card:hover {
  transform: translateY(-7px);
  border-color: rgba(82, 160, 255, 0.58);
  box-shadow: 0 28px 48px rgba(3, 11, 25, 0.6);
}

.plan-card h2 {
  margin: 0.3rem 0 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.plan-card h3 {
  margin: 0;
  font-size: 1rem;
}

.plan-head {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.price-note {
  margin: 0.3rem 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.price-highlight {
  display: inline-block;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  color: #101824;
  font-weight: 700;
  background: linear-gradient(135deg, #f4b942, #ffd983);
  border: 1px solid rgba(244, 185, 66, 0.55);
}

.price-note-row {
  margin-top: 0.35rem;
  display: grid;
  gap: 0.45rem;
}

.price-note-row .price-note {
  margin: 0;
}

.fee-dropdown {
  border: 1px solid rgba(15, 123, 255, 0.35);
  border-radius: 10px;
  background: rgba(9, 18, 34, 0.6);
  width: fit-content;
  max-width: 260px;
}

.fee-dropdown summary {
  list-style: none;
  cursor: pointer;
  padding: 0.38rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #9fcbff;
  white-space: nowrap;
}

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

.fee-dropdown summary::after {
  content: " +";
  color: #6eb6ff;
}

.fee-dropdown[open] summary::after {
  content: " -";
}

.fee-dropdown-body {
  border-top: 1px solid var(--line);
  padding: 0.7rem;
  font-size: 0.84rem;
  color: var(--text-soft);
  line-height: 1.45;
  max-height: 340px;
  overflow: auto;
}

.fee-dropdown-body h4 {
  margin: 0 0 0.45rem;
  color: #d6e7ff;
  font-size: 0.86rem;
}

.fee-dropdown-body p {
  margin: 0 0 0.45rem;
}

.fee-dropdown-body ul {
  margin: 0 0 0.55rem;
  padding-left: 1rem;
  display: grid;
  gap: 0.3rem;
}

.badge {
  margin: 0;
  width: fit-content;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.73rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 600;
}

.starter {
  background: rgba(25, 195, 125, 0.17);
  color: #8df0c4;
  border: 1px solid rgba(25, 195, 125, 0.4);
}

.growth {
  background: rgba(244, 185, 66, 0.18);
  color: #ffd983;
  border: 1px solid rgba(244, 185, 66, 0.45);
}

.pro {
  background: rgba(15, 123, 255, 0.18);
  color: #8fc8ff;
  border: 1px solid rgba(15, 123, 255, 0.45);
}

.best-for {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.plan-whats-included {
  margin: 0.6rem 0 0;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #93c5ff;
}

.plan-best-for {
  margin: 0.75rem 0 0;
  padding-top: 0.6rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.45;
}

.plan-best-for strong {
  color: #c8d9f7;
}

.plan-card ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.55rem;
  color: #d7deea;
}

.plan-card li {
  line-height: 1.4;
}

.muted-list {
  color: #b6c0d2;
}

.meta-row {
  display: grid;
  gap: 0.38rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
}

.meta-row p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.meta-row span {
  color: #f1f6ff;
  font-weight: 600;
}

.card-note {
  margin: 0;
  color: #c8d9f7;
  font-weight: 500;
}

.card-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(26, 137, 255, 0.55);
  color: #e9f2ff;
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(140deg, rgba(16, 54, 108, 0.88), rgba(10, 24, 46, 0.92));
  box-shadow: inset 0 0 0 1px rgba(120, 182, 255, 0.15);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.card-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(85, 174, 255, 0.86);
  box-shadow:
    inset 0 0 0 1px rgba(133, 194, 255, 0.24),
    0 10px 22px rgba(9, 39, 82, 0.35);
}

.featured {
  border-color: rgba(15, 123, 255, 0.55);
  background:
    radial-gradient(circle at 80% -10%, rgba(15, 123, 255, 0.27), transparent 45%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    #0d121a;
  animation: featuredGlow 3.8s ease-in-out infinite;
}

.addons,
.faq,
.terms {
  padding: 1.4rem;
}

.section-head h2 {
  margin: 0.55rem 0 0;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
}

.table-wrap {
  width: 100%;
  overflow: auto;
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 460px;
}

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

th {
  color: #dbe8ff;
  background: #101722;
  font-weight: 600;
}

td {
  color: var(--text-soft);
}

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

tbody tr {
  transition: background-color 220ms ease;
}

tbody tr:hover {
  background: rgba(55, 124, 215, 0.12);
}

.terms ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.8rem;
  color: #d5dfef;
}

.faq-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  transition: border-color 240ms ease, box-shadow 240ms ease;
}

.faq-item:hover {
  border-color: rgba(90, 164, 255, 0.48);
  box-shadow: 0 12px 28px rgba(6, 15, 34, 0.42);
}

.faq-item.is-open {
  border-color: rgba(100, 170, 255, 0.66);
  box-shadow: 0 15px 30px rgba(10, 32, 67, 0.35);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: #ecf3ff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  text-align: left;
  font-family: inherit;
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  font-weight: 600;
  padding: 1rem 1.05rem;
  cursor: pointer;
}

.faq-icon {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(63, 140, 255, 0.5);
  color: #79bbff;
  flex: 0 0 auto;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 220ms ease, background-color 220ms ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
  background: rgba(15, 123, 255, 0.15);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
}

.faq-answer p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
  padding: 0 1.05rem 1.05rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  filter: blur(6px);
}

.reveal.in-view {
  animation: revealIn 700ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  animation-delay: var(--delay, 0ms);
}

@keyframes revealIn {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.985);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes gradientShift {
  from {
    background-position: 0% center;
  }
  to {
    background-position: 200% center;
  }
}

@keyframes panelSweep {
  from {
    opacity: 0;
    transform: translateX(-45%) rotate(12deg);
  }
  20% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translateX(75%) rotate(12deg);
  }
}

@keyframes ctaSheen {
  0% {
    transform: translateX(-120%) rotate(20deg);
  }
  34%,
  100% {
    transform: translateX(190%) rotate(20deg);
  }
}

@keyframes pulseMark {
  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.08);
    filter: brightness(1.25);
  }
}

@keyframes featuredGlow {
  0%,
  100% {
    border-color: rgba(15, 123, 255, 0.52);
    box-shadow: 0 24px 42px rgba(7, 17, 38, 0.58);
  }
  50% {
    border-color: rgba(77, 164, 255, 0.9);
    box-shadow: 0 28px 48px rgba(14, 49, 103, 0.45);
  }
}

@keyframes heroBreath {
  from {
    background-position: 0% 0%;
  }
  to {
    background-position: 14% 0%;
  }
}

@keyframes driftGrid {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-32px);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mobileMenuIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes mobileMenuOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(-8px) scale(0.985);
  }
}

@media (max-width: 1040px) {
  .mega-header {
    margin-top: 0.8rem;
    width: calc(100% - 1.2rem);
    padding: 0;
  }

  .nav-shell {
    min-height: 78px;
    padding: 0.5rem 0.8rem;
    grid-template-columns: auto 1fr auto;
  }

  .brand-mark {
    width: 95px;
    height: 54px;
  }

  .desktop-nav {
    display: none;
  }

  .icon-btn {
    width: 34px;
    height: 34px;
    font-size: 1.8rem;
  }

  .call-pill {
    padding: 0.24rem 0.65rem 0.24rem 0.24rem;
    gap: 0.58rem;
  }

  .call-badge {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .phone-text {
    font-size: 1.2rem;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    margin-top: 0;
    max-height: min(72vh, 560px);
    overflow: auto;
    z-index: 32;
    box-shadow: 0 24px 44px rgba(2, 8, 18, 0.72);
  }

  .mobile-link,
  .mobile-accordion {
    padding: 0.78rem 0.42rem;
    font-size: 1rem;
  }

  .mobile-panel a {
    padding: 0.56rem 0.42rem 0.56rem 1rem;
    font-size: 0.96rem;
  }

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

  .featured {
    grid-column: span 2;
  }
}

@media (max-width: 740px) {
  body {
    background:
      radial-gradient(circle at 50% -10%, rgba(22, 94, 255, 0.22), transparent 46%),
      var(--bg);
  }

  .bg-glow {
    opacity: 0.22;
  }

  .mega-header {
    margin: 0.45rem 0 0.62rem;
    width: calc(100% - 0.7rem);
    padding: 0;
  }

  .nav-shell {
    min-height: 66px;
    border-radius: 18px;
    padding: 0.38rem 0.55rem;
    grid-template-columns: auto 1fr auto;
    gap: 0.45rem;
  }

  .brand-mark {
    width: 68px;
    height: 38px;
  }

  .nav-actions {
    gap: 0.32rem;
  }

  .icon-btn[aria-label="Open apps"] {
    display: none;
  }

  .icon-btn[aria-label="Search"] {
    display: inline-flex;
  }

  .icon-btn {
    width: 30px;
    height: 30px;
    font-size: 1.35rem;
  }

  .call-pill {
    padding: 0.16rem;
    border-radius: 999px;
  }

  .call-badge {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .phone-text {
    display: none;
  }

  .mobile-toggle {
    width: 38px;
    height: 38px;
    font-size: 1.08rem;
    border-radius: 11px;
    background: rgba(10, 20, 35, 0.95);
    border-color: rgba(56, 140, 255, 0.55);
  }

  .mobile-menu {
    border-radius: 16px;
    padding: 0.64rem;
    max-height: min(74vh, 520px);
  }

  .mobile-link,
  .mobile-accordion,
  .mobile-panel a {
    font-size: 0.92rem;
  }

  .container {
    width: 100%;
    margin: 0.65rem 0 2rem;
    padding: 0 0.45rem;
    gap: 0.8rem;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .featured {
    grid-column: auto;
  }

  .panel,
  .hero,
  .addons,
  .faq,
  .terms,
  .plan-card {
    border-radius: 16px;
  }

  .hero {
    padding: 1.3rem 1rem;
    text-align: left;
  }

  .hero h1 {
    margin: 0.72rem 0;
    font-size: clamp(1.45rem, 8vw, 2rem);
    line-height: 1.2;
  }

  .subtext {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .plan-card {
    padding: 1rem;
    gap: 0.78rem;
  }

  .plan-card h2 {
    font-size: 1.5rem;
  }

  .plan-card ul {
    gap: 0.45rem;
    font-size: 0.93rem;
    padding-left: 1rem;
  }

  .meta-row {
    padding: 0.7rem;
  }

  .addons,
  .faq,
  .terms {
    padding: 1rem;
  }

  .section-head h2 {
    font-size: clamp(1.25rem, 6.5vw, 1.6rem);
  }

  .table-wrap {
    border: 0;
    overflow: visible;
    margin-top: 0.8rem;
  }

  table,
  thead,
  tbody,
  tr,
  th,
  td {
    display: block;
    width: 100%;
  }

  thead {
    display: none;
  }

  table {
    min-width: 0;
  }

  tbody {
    display: grid;
    gap: 0.62rem;
  }

  tbody tr {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.15rem 0;
    background: rgba(14, 20, 30, 0.9);
  }

  td {
    border: 0;
    padding: 0.5rem 0.82rem;
    display: grid;
    grid-template-columns: 88px 1fr;
    align-items: start;
    gap: 0.45rem;
  }

  td::before {
    content: attr(data-label);
    color: #7db8ff;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }

  .faq-list {
    gap: 0.62rem;
  }

  .faq-question {
    padding: 0.85rem 0.78rem;
    font-size: 0.95rem;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .faq-question span:first-child {
    line-height: 1.35;
    max-width: calc(100% - 2.3rem);
  }

  .faq-icon {
    width: 1.7rem;
    height: 1.7rem;
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 0 0.78rem 0.9rem;
    font-size: 0.92rem;
    line-height: 1.52;
  }

  .terms ul {
    gap: 0.62rem;
    padding-left: 1rem;
    font-size: 0.93rem;
  }
}

@media (max-width: 480px) {
  .mega-header {
    width: calc(100% - 0.5rem);
    padding: 0;
  }

  .nav-shell {
    padding: 0.32rem 0.44rem;
  }

  .brand-mark {
    width: 58px;
    height: 34px;
  }

  .icon-btn {
    width: 28px;
    height: 28px;
    font-size: 1.35rem;
  }

  .call-badge {
    width: 34px;
    height: 34px;
    font-size: 0.92rem;
  }

  .mobile-toggle {
    width: 33px;
    height: 33px;
  }

  .eyebrow {
    font-size: 0.75rem;
  }

  .eyebrow::before {
    width: 0.68rem;
    height: 0.68rem;
  }

  .hero h1 {
    font-size: clamp(1.35rem, 8.4vw, 1.75rem);
  }

  td {
    grid-template-columns: 76px 1fr;
    font-size: 0.9rem;
  }

  td::before {
    font-size: 0.72rem;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
