*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #3BB9FF;
  --blue-dark:   #1A9FE0;
  --blue-deep:   #0B6FA4;
  --blue-light:  #E8F7FF;
  --blue-mid:    #B3E5FC;

  --green:       #10B981;
  --green-dark:  #059669;
  --green-light: #ECFDF5;
  --green-mid:   #A7F3D0;

  --purple:      #8B5CF6;
  --purple-dark: #6D28D9;
  --purple-light:#F5F3FF;
  --purple-mid:  #DDD6FE;

  --orange:      #F59E0B;
  --orange-dark: #D97706;
  --orange-light:#FFFBEB;
  --orange-mid:  #FDE68A;

  --pink:        #EC4899;
  --pink-light:  #FDF2F8;
  --pink-mid:    #FBCFE8;

  --ink:         #0A1628;
  --ink-soft:    #1E3A5F;
  --muted:       #5A7FA0;
  --border:      #D6EAF8;
  --white:       #FFFFFF;
  --surface:     #F4FBFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

/* ─── ALERTS ─── */
.alert {
  max-width: 1180px;
  margin: 20px auto 0;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 14px;
}
.alert-success {
  background: var(--green-light);
  color: #065F46;
  border-left: 5px solid var(--green);
}
.alert-error {
  background: #FEF2F2;
  color: #991B1B;
  border-left: 5px solid #EF4444;
}

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 6%;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex; align-items: center; gap: 11px;
  text-decoration: none;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  filter: brightness(0) saturate(100%) invert(67%) sepia(93%) saturate(1814%) hue-rotate(180deg) brightness(101%) contrast(101%);
}

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 14px; font-weight: 500;
  color: var(--muted); transition: color .2s;
}
.nav-links a:hover { color: var(--blue-deep); }

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 9px 20px; border-radius: 9px;
  font-weight: 700 !important; font-size: 13.5px !important;
  transition: background .2s, box-shadow .2s !important;
  box-shadow: 0 3px 14px rgba(59,185,255,.35);
}
.nav-cta:hover {
  background: var(--blue-dark) !important;
  box-shadow: 0 5px 20px rgba(59,185,255,.45) !important;
}

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  gap: 5px; padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE NAV ─── */
.mobile-nav-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 199;
  background: rgba(10,22,40,.55);
  backdrop-filter: blur(3px);
}
.mobile-nav-overlay.open { display: block; }

.mobile-nav {
  position: fixed; top: 0; right: -280px; z-index: 200;
  width: 260px; height: 100%;
  background: white;
  border-left: 1px solid var(--border);
  box-shadow: -6px 0 30px rgba(10,22,40,.12);
  padding: 70px 28px 40px;
  transition: right .32s cubic-bezier(.4,0,.2,1);
}
.mobile-nav.open { right: 0; }

.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.mobile-nav a {
  display: block;
  padding: 11px 14px;
  font-size: 15px; font-weight: 600;
  color: var(--ink-soft); text-decoration: none;
  border-radius: 10px; transition: background .2s, color .2s;
}
.mobile-nav a:hover { background: var(--surface); color: var(--blue-deep); }
.mobile-nav .mobile-nav-cta {
  background: var(--blue); color: white !important;
  margin-top: 14px; text-align: center;
  box-shadow: 0 4px 14px rgba(59,185,255,.3);
}
.mobile-nav .mobile-nav-cta:hover { background: var(--blue-dark); }

.mobile-nav-close {
  position: absolute; top: 18px; right: 18px;
  background: var(--surface); border: none;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 18px; color: var(--muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.mobile-nav-close:hover { background: var(--border); }

/* ─── HERO ─── */
.hero-wrap {
  background: linear-gradient(160deg, var(--surface) 0%, #ffffff 60%);
  border-bottom: 1px solid var(--border);
}

.hero {
  max-width: 1180px; margin: 0 auto;
  padding: 90px 6% 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-light); color: var(--blue-deep);
  font-size: 11.5px; font-weight: 700; letter-spacing: 1.8px;
  text-transform: uppercase; padding: 6px 16px; border-radius: 100px;
  margin-bottom: 26px; border: 1px solid var(--blue-mid);
}

.dot-pulse {
  width: 7px; height: 7px; background: var(--green);
  border-radius: 50%; animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.75)} }

.hero h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -2.5px; color: var(--ink);
  margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--blue); }

.hero-sub {
  font-size: 16.5px; color: var(--muted);
  line-height: 1.75; margin-bottom: 38px;
  max-width: 460px;
}

.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: white;
  padding: 13px 26px; border-radius: 11px;
  font-size: 15px; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(59,185,255,.38);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 7px 26px rgba(59,185,255,.48);
}

.btn-ghost {
  font-size: 14.5px; font-weight: 600;
  color: var(--ink-soft); text-decoration: none;
  display: flex; align-items: center; gap: 6px;
  transition: color .2s; background: none; border: none; cursor: pointer;
  padding: 13px 0;
}
.btn-ghost:hover { color: var(--blue); }

/* Hero signal graphic */
.hero-visual {
  display: flex; align-items: center; justify-content: center;
}

.signal-wrap {
  position: relative; width: 340px; height: 340px;
  display: flex; align-items: center; justify-content: center;
}

.ring {
  position: absolute; border-radius: 50%;
  border: 2px solid var(--blue);
  opacity: 0;
  animation: ripple 3.2s ease-out infinite;
}
.ring:nth-child(1){ width:80px;  height:80px;  animation-delay:0s;    border-color:rgba(59,185,255,.9); }
.ring:nth-child(2){ width:155px; height:155px; animation-delay:.7s;   border-color:rgba(59,185,255,.6); }
.ring:nth-child(3){ width:235px; height:235px; animation-delay:1.4s;  border-color:rgba(59,185,255,.35); }
.ring:nth-child(4){ width:315px; height:315px; animation-delay:2.1s;  border-color:rgba(59,185,255,.15); }

@keyframes ripple {
  0%   { transform:scale(.55); opacity:.85; }
  100% { transform:scale(1);   opacity:0;   }
}

.signal-core {
  width: 70px; height: 70px; z-index: 2;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 14px var(--blue-light), 0 8px 32px rgba(59,185,255,.5);
}
.signal-core svg { width: 34px; height: 34px; }

/* speed badges */
.badge-float {
  position: absolute;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 4px 20px rgba(10,22,40,.09);
  font-size: 13px; font-weight: 700; color: var(--ink);
  animation: float 4s ease-in-out infinite;
}
.badge-float span { color: var(--blue); font-size: 16px; display: block; }
.badge-float.b1 { top: 30px; right: 10px; animation-delay: 0s; }
.badge-float.b2 { bottom: 50px; left: 0; animation-delay: 1.5s; }
.badge-float.b3 {
  top: 50%; left: -10px; transform: translateY(-50%);
  animation-delay: 0.8s;
}
.badge-float.b3 span { color: var(--green); }

@keyframes float {
  0%,100%{ transform:translateY(0); }
  50%    { transform:translateY(-8px); }
}
.badge-float.b3 {
  animation: float3 4s ease-in-out infinite;
  animation-delay: 0.8s;
}
@keyframes float3 {
  0%,100%{ transform:translateY(-50%) translateX(0); }
  50%    { transform:translateY(-50%) translateX(-4px); }
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: linear-gradient(90deg, #0B6FA4 0%, #3BB9FF 100%);
  padding: 28px 6%;
}
.stats-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px; text-align: center;
}
.stat-val { font-size: 30px; font-weight: 900; color: white; letter-spacing: -1.5px; }
.stat-lbl { font-size: 12.5px; color: rgba(255,255,255,.75); font-weight: 500; margin-top: 5px; }

/* ─── PACKAGES ─── */
#packages {
  background: var(--surface);
  padding: 90px 6%;
}

.sec-head {
  text-align: center; max-width: 560px;
  margin: 0 auto 56px;
}
.sec-eyebrow {
  font-size: 11px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 14px;
}
.sec-head h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 900; letter-spacing: -1.5px;
  color: var(--ink); margin-bottom: 14px;
}
.sec-head p { font-size: 15.5px; color: var(--muted); line-height: 1.72; }

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-content: center;
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Plan card accent colors based on position */
.pkg {
  background: white;
  border: 2px solid var(--border);
  border-radius: 22px; padding: 36px 26px;
  cursor: pointer; position: relative; overflow: hidden;
  transition: border-color .22s, transform .22s, box-shadow .22s;
}
.pkg:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(0,0,0,.1);
}

/* Default (blue) */
.pkg:hover { border-color: var(--blue); box-shadow: 0 14px 44px rgba(59,185,255,.14); }

/* Position-based accent colors */
.pkg.plan-pos-1 { --accent: var(--blue); --accent-dark: var(--blue-dark); --accent-light: var(--blue-light); --accent-mid: var(--blue-mid); --accent-check: #3BB9FF; }
.pkg.plan-pos-2 { --accent: var(--purple); --accent-dark: var(--purple-dark); --accent-light: var(--purple-light); --accent-mid: var(--purple-mid); --accent-check: var(--purple); }
.pkg.plan-pos-3 { --accent: var(--green); --accent-dark: var(--green-dark); --accent-light: var(--green-light); --accent-mid: var(--green-mid); --accent-check: var(--green); }
.pkg.plan-pos-4 { --accent: var(--orange); --accent-dark: var(--orange-dark); --accent-light: var(--orange-light); --accent-mid: var(--orange-mid); --accent-check: var(--orange); }

.pkg.plan-pos-1:hover { border-color: var(--blue); box-shadow: 0 14px 44px rgba(59,185,255,.16); }
.pkg.plan-pos-2:hover { border-color: var(--purple); box-shadow: 0 14px 44px rgba(139,92,246,.16); }
.pkg.plan-pos-3:hover { border-color: var(--green); box-shadow: 0 14px 44px rgba(16,185,129,.16); }
.pkg.plan-pos-4:hover { border-color: var(--orange); box-shadow: 0 14px 44px rgba(245,158,11,.16); }

.pkg.popular {
  border-color: var(--accent, var(--blue));
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}
.pkg.popular::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(var(--accent-rgb, 59,185,255),.05) 0%, transparent 60%);
  pointer-events: none;
}

.pop-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--accent, var(--blue)); color: white;
  font-size: 10.5px; font-weight: 800; letter-spacing: 1.2px;
  text-transform: uppercase; padding: 5px 13px; border-radius: 100px;
}

.pkg-dur {
  font-size: 11px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--accent, var(--blue)); margin-bottom: 10px;
}
.pkg-price {
  font-size: 46px; font-weight: 900; color: var(--ink);
  letter-spacing: -2.5px; line-height: 1; margin-bottom: 5px;
}
.pkg-price sup { font-size: 20px; font-weight: 800; vertical-align: super; letter-spacing: 0; }
.pkg-period { font-size: 13px; color: var(--muted); margin-bottom: 28px; }

.pkg-feats { list-style: none; margin-bottom: 28px; }
.pkg-feats li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ink-soft);
  padding: 9px 0; border-bottom: 1px solid var(--border);
}
.pkg-feats li:last-child { border: none; }
.check {
  width: 20px; height: 20px; min-width: 20px;
  background: var(--accent-light, var(--blue-light)); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.check svg { width: 11px; height: 11px; }

.btn-sel {
  width: 100%;
  background: var(--accent-light, var(--blue-light));
  color: var(--accent-dark, var(--blue-deep));
  padding: 13px; border-radius: 10px;
  font-size: 14px; font-weight: 700;
  border: 2px solid transparent; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.pkg.popular .btn-sel,
.pkg:hover .btn-sel {
  background: var(--accent, var(--blue)); color: white;
}

/* ─── WHY CHOOSE US ─── */
#why {
  padding: 90px 6%;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1060px;
  margin: 0 auto;
}

.feature-card {
  border-radius: 20px;
  padding: 32px 26px;
  border: 2px solid var(--border);
  transition: transform .22s, box-shadow .22s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.08);
}
.feature-card.fc-blue  { background: linear-gradient(145deg, #EFF9FF 0%, white 100%); border-color: var(--blue-mid); }
.feature-card.fc-green { background: linear-gradient(145deg, #ECFDF5 0%, white 100%); border-color: var(--green-mid); }
.feature-card.fc-purple { background: linear-gradient(145deg, #F5F3FF 0%, white 100%); border-color: var(--purple-mid); }
.feature-card.fc-orange { background: linear-gradient(145deg, #FFFBEB 0%, white 100%); border-color: var(--orange-mid); }
.feature-card.fc-pink  { background: linear-gradient(145deg, #FDF2F8 0%, white 100%); border-color: var(--pink-mid); }
.feature-card.fc-teal  { background: linear-gradient(145deg, #F0FDFA 0%, white 100%); border-color: #99F6E4; }

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
}
.fc-blue   .feature-icon { background: var(--blue-light); }
.fc-green  .feature-icon { background: var(--green-light); }
.fc-purple .feature-icon { background: var(--purple-light); }
.fc-orange .feature-icon { background: var(--orange-light); }
.fc-pink   .feature-icon { background: var(--pink-light); }
.fc-teal   .feature-icon { background: #F0FDFA; }

.feature-card h3 {
  font-size: 17px; font-weight: 800;
  color: var(--ink); margin-bottom: 8px;
}
.feature-card p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

/* ─── HOW IT WORKS ─── */
#how {
  padding: 90px 6%;
  max-width: 1180px; margin: 0 auto;
}

.steps {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 48px; margin-top: 56px;
}

.step { text-align: center; }

.step-num {
  width: 56px; height: 56px;
  background: var(--blue-light); color: var(--blue-deep);
  border-radius: 16px; font-size: 22px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 14px rgba(59,185,255,.18);
}
.step:nth-child(2) .step-num { background: var(--purple-light); color: var(--purple-dark); box-shadow: 0 4px 14px rgba(139,92,246,.18); }
.step:nth-child(3) .step-num { background: var(--green-light); color: var(--green-dark); box-shadow: 0 4px 14px rgba(16,185,129,.18); }

.step h3 { font-size: 18px; font-weight: 800; color: var(--ink); margin-bottom: 10px; }
.step p  { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* connector line between steps */
.steps-connector {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 48px; max-width: 1180px; margin: 0 auto;
  padding: 0 6%;
  position: relative;
}
.steps-connector::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(6% + 28px + 80px);
  right: calc(6% + 28px + 80px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-mid), var(--purple-mid), var(--green-mid));
  z-index: 0;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  margin: 0 6% 0;
  background: linear-gradient(135deg, var(--blue-deep) 0%, #1A3A8F 50%, var(--purple-dark) 100%);
  border-radius: 28px;
  padding: 64px 10%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(139,92,246,.3) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(59,185,255,.2) 0%, transparent 50%);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900; color: white; letter-spacing: -1.5px;
  margin-bottom: 14px; position: relative;
}
.cta-banner p {
  font-size: 16px; color: rgba(255,255,255,.75);
  margin-bottom: 32px; position: relative;
  max-width: 480px; margin-left: auto; margin-right: auto;
  line-height: 1.7;
}
.cta-actions {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; position: relative;
}
.btn-cta-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--blue-deep);
  padding: 13px 26px; border-radius: 11px;
  font-size: 15px; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  transition: opacity .2s, transform .15s;
  box-shadow: 0 4px 18px rgba(0,0,0,.2);
}
.btn-cta-white:hover { opacity:.93; transform:translateY(-2px); }
.btn-cta-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); color: white;
  padding: 13px 26px; border-radius: 11px;
  font-size: 15px; font-weight: 700;
  text-decoration: none; border: 1.5px solid rgba(255,255,255,.3); cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-cta-outline:hover { background: rgba(255,255,255,.2); transform:translateY(-2px); }

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  padding: 48px 6% 32px;
  margin-top: 80px;
}
.foot-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
}
.foot-logo .n1 { font-size: 20px; font-weight: 900; color: var(--blue); letter-spacing: -0.5px; }
.foot-logo .n2 { font-size: 9px; color: rgba(255,255,255,.35); letter-spacing: 3px; text-transform: uppercase; }
.foot-right { font-size: 13px; color: rgba(255,255,255,.35); text-align: right; line-height: 1.8; }

/* ─── MODAL ─── */
.backdrop {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(10,22,40,.65);
  backdrop-filter: blur(5px);
  align-items: center; justify-content: center;
  padding: 20px;
}
.backdrop.open { display: flex; }

.modal {
  background: white; border-radius: 26px;
  padding: 44px 40px; width: 100%; max-width: 476px;
  position: relative; animation: mIn .26s cubic-bezier(.34,1.56,.64,1);
  max-height: 90vh; overflow-y: auto;
}
@keyframes mIn {
  from{ opacity:0; transform:translateY(20px) scale(.97); }
  to  { opacity:1; transform:translateY(0)    scale(1);   }
}

.m-close {
  position: absolute; top: 18px; right: 18px;
  width: 34px; height: 34px; border-radius: 50%;
  border: none; background: #F1F5F9; cursor: pointer;
  font-size: 15px; display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: background .2s;
}
.m-close:hover { background: #E2E8F0; }

.m-plan-badge {
  display: inline-block;
  background: var(--blue-light); color: var(--blue-deep);
  font-size: 11.5px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 5px 15px; border-radius: 100px;
  margin-bottom: 14px; border: 1px solid var(--blue-mid);
}
.modal h2 { font-size: 26px; font-weight: 900; letter-spacing: -1px; color: var(--ink); margin-bottom: 4px; }
.m-sub { font-size: 14px; color: var(--muted); margin-bottom: 26px; }

.fg { margin-bottom: 16px; }
.fg label { display: block; font-size: 12.5px; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.fg input {
  width: 100%; padding: 12px 15px;
  border: 2px solid var(--border); border-radius: 11px;
  font-size: 15px; font-family: inherit; color: var(--ink);
  outline: none; transition: border-color .2s, box-shadow .2s;
}
.fg input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(59,185,255,.15); }
.fg input::placeholder { color: #A0B5C8; }

.m-summary {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: 13px; padding: 16px 20px;
  margin-bottom: 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.m-sum-lbl { font-size: 13px; color: var(--muted); font-weight: 500; }
.m-sum-amt { font-size: 24px; font-weight: 900; color: var(--ink); letter-spacing: -1px; }

.btn-pay {
  width: 100%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: white; padding: 14px;
  border-radius: 13px; font-size: 15px; font-weight: 800;
  border: none; cursor: pointer;
  transition: opacity .2s, transform .15s, box-shadow .2s;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  box-shadow: 0 4px 20px rgba(59,185,255,.38);
}
.btn-pay:hover { opacity:.92; transform:translateY(-1px); box-shadow: 0 7px 28px rgba(59,185,255,.48); }
.btn-pay:disabled { opacity:.6; cursor:not-allowed; transform:none; }

.pay-note {
  text-align: center; font-size: 12px; color: var(--muted); margin-top: 12px;
}
.pay-note a { color: var(--blue); text-decoration: none; }

/* ─── PAGINATION & TABLES ─── */
nav[role="navigation"] svg { width: 20px; height: 20px; }
.table-responsive { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-responsive table { min-width: 650px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  nav { height: 64px; }
  .hero          { grid-template-columns: 1fr; padding: 56px 6%; gap: 36px; }
  .hero-visual   { display: none; }
  .pkg-grid      { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .stats-inner   { grid-template-columns: 1fr; gap: 8px; }
  .steps         { grid-template-columns: 1fr; gap: 28px; }
  .steps-connector::before { display: none; }
  .features-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .cta-banner    { margin: 0 4%; padding: 48px 8%; }
  .nav-links     { display: none; }
  .hamburger     { display: flex; }
  .foot-inner    { flex-direction: column; text-align: center; }
  .foot-right    { text-align: center; }
  .modal         { padding: 36px 24px; }

  /* Admin & Dashboards Mobile Adjustments */
  .admin-header, .welcome-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
  }
  .admin-header div, .welcome-header div {
    width: 100%;
  }
  .admin-header h1, .welcome-header h1 {
    font-size: 26px !important;
  }
  .admin-container, .dash-container {
    margin: 20px auto 60px;
    padding: 0 4%;
  }
  .stats-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
    margin-bottom: 24px;
  }
  .stat-card {
    padding: 18px;
  }
  .stat-number {
    font-size: 24px;
  }
  .plans-layout, .dashboard-columns, .dash-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .admin-card, .dash-card {
    padding: 20px 16px;
    border-radius: 16px;
    margin-bottom: 20px;
  }
  .admin-card h2, .dash-card h2 {
    font-size: 17px;
    margin-bottom: 16px;
  }
  .search-form {
    width: 100%;
    flex-direction: row;
  }
  .search-input {
    width: 100%;
    flex: 1;
  }
  
  /* Tables on mobile */
  th, td {
    padding: 10px 12px;
    font-size: 12.5px;
  }
  
  /* List items */
  .device-item, .voucher-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
  }
  .device-item > div, .voucher-item > div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .btn-primary, .btn-pay { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; width: 100%; align-items: stretch; }
  .btn-ghost { justify-content: center; }
  .search-form { flex-direction: column; }
  .btn-search { width: 100%; padding: 12px; height: auto; }
}

