:root {
  --purple: #533afd;
  --purple-dark: #4434d4;
  --navy: #061b31;
  --brand-dark: #1c1e54;
  --body: #64748d;
  --label: #273951;
  --border: #e5edf5;
  --soft: #f6f9fc;
  --success: #15be53;
  --ruby: #ea2261;
  --magenta: #f96bee;
  --white: #ffffff;
  --shadow: rgba(50,50,93,0.25) 0 30px 45px -30px, rgba(0,0,0,0.1) 0 18px 36px -18px;
  --ambient: rgba(23,23,23,0.08) 0 15px 35px 0;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--navy);
  background: var(--white);
  font-feature-settings: "ss01";
}
a { color: inherit; text-decoration: none; }
.container { width: min(1080px, calc(100% - 32px)); margin: 0 auto; }
.section-pad { padding: 88px 0; }
.site-header { position: fixed; top: 16px; left: 0; right: 0; z-index: 150; background: transparent; border-bottom: 0; pointer-events: none; }
.nav { min-height: 64px; width: min(1180px, calc(100% - 36px)); display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 10px 12px 10px 16px; border: 1px solid rgba(220,233,255,.20); border-radius: 999px; background: linear-gradient(135deg, rgba(3,9,20,.82), rgba(7,21,42,.72)); box-shadow: rgba(0,0,0,.36) 0 26px 80px -42px, rgba(59,130,246,.18) 0 0 48px -24px, inset rgba(255,255,255,.08) 0 1px 0; backdrop-filter: blur(18px) saturate(150%); pointer-events: auto; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: #ffffff; flex: 0 0 auto; letter-spacing: .02em; text-transform: uppercase; }
.brand-mark { width: 36px; height: 36px; border-radius: 999px; display: grid; place-items: center; color: #ffffff; background: radial-gradient(circle at 30% 22%, rgba(255,255,255,.28), transparent 34%), linear-gradient(135deg, #0ea5e9, #2563eb 46%, #081a34); border: 1px solid rgba(220,233,255,.26); box-shadow: rgba(14,165,233,.34) 0 0 28px -10px; font-size: 13px; }
.nav-menu { display: flex; align-items: center; justify-content: flex-end; flex-wrap: nowrap; gap: 4px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: rgba(244,247,251,.78); }
.nav-menu > a:not(.btn) { padding: 10px 11px; border-radius: 999px; transition: color .2s ease, background .2s ease; }
.nav-menu > a:not(.btn):hover { color: #ffffff; background: rgba(255,255,255,.09); }
.nav-toggle { display: none; border: 1px solid rgba(220,233,255,.20); background: rgba(255,255,255,.10); border-radius: 999px; padding: 8px 10px; cursor: pointer; position: relative; z-index: 180; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: #ffffff; margin: 4px 0; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.btn { border: 0; cursor: pointer; display: inline-flex; justify-content: center; align-items: center; gap: 8px; padding: 11px 18px; border-radius: 5px; font: 400 16px/1 'Source Sans 3', sans-serif; transition: .2s ease; }
.btn-primary { background: var(--purple); color: white; box-shadow: rgba(83,58,253,.24) 0 12px 28px -12px; }
.btn-primary:hover { background: var(--purple-dark); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--purple); border: 1px solid #b9b9f9; }
.btn-light { background: white; color: var(--brand-dark); }
.btn-small { padding: 9px 14px; font-size: 14px; }
.btn-portal { background: #ffffff; color: var(--purple); border: 1px solid #b9b9f9; box-shadow: rgba(83,58,253,.12) 0 10px 24px -14px; }
.btn-portal:hover { background: rgba(83,58,253,.06); transform: translateY(-1px); }
.nav .btn { border-radius: 999px; text-transform: uppercase; letter-spacing: .06em; font-size: 12px; font-weight: 800; padding: 11px 15px; }
.nav .btn-portal { background: rgba(255,255,255,.08); color: #dce9ff; border: 1px solid rgba(220,233,255,.18); box-shadow: none; }
.nav .btn-portal:hover { background: rgba(255,255,255,.14); color: #ffffff; }
.nav .btn-primary { background: linear-gradient(135deg, #ffffff, #dce9ff); color: #06101f; box-shadow: rgba(220,233,255,.24) 0 14px 28px -18px; }
.nav .btn-primary:hover { background: linear-gradient(135deg, #ffffff, #b9dcff); transform: translateY(-1px); }
.packages-page-start,
.info-section.packages-page-start,
.privacy-section,
.portal-login-wrap { padding-top: 132px; }
.portal-strip { background: linear-gradient(135deg, #fbfbff 0%, #f6f9fc 100%); padding: 34px 0; border-bottom: 1px solid var(--border); }
.portal-card { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; background: white; border: 1px solid var(--border); border-radius: 8px; padding: 24px; box-shadow: var(--shadow); }
.portal-card h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 8px; }
.portal-card p { margin-bottom: 0; }

.btn-block { width: 100%; }
.hero { position: relative; overflow: hidden; padding-top: 112px; }
.hero-bg { position: absolute; border-radius: 999px; filter: blur(6px); opacity: .15; }
.hero-bg-one { width: 420px; height: 420px; background: var(--magenta); top: -160px; right: -120px; }
.hero-bg-two { width: 340px; height: 340px; background: var(--purple); bottom: -180px; left: -100px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) 420px; gap: 58px; align-items: center; }
.eyebrow { display: inline-flex; color: var(--purple); font: 500 13px/1 'Source Code Pro', monospace; letter-spacing: .02em; text-transform: uppercase; margin-bottom: 14px; }
.eyebrow.light { color: #c7c3ff; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(42px, 6vw, 66px); line-height: 1.02; letter-spacing: -1.4px; font-weight: 300; margin-bottom: 22px; }
h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.12; letter-spacing: -.96px; font-weight: 300; margin-bottom: 16px; }
h3 { font-size: 24px; line-height: 1.12; letter-spacing: -.22px; font-weight: 300; margin-bottom: 10px; }
p { color: var(--body); font-size: 17px; line-height: 1.55; }
.lead { font-size: 20px; line-height: 1.45; max-width: 650px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 24px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 14px; color: var(--label); font-size: 14px; }
.network-visual-card, .package-card, .step-card, .coverage-card, .support-card { background: white; border: 1px solid var(--border); border-radius: 8px; box-shadow: var(--shadow); }
.network-visual-card { position: relative; overflow: hidden; min-height: 430px; padding: 18px; background: linear-gradient(155deg, #ffffff 0%, #f6f9ff 48%, #eef6ff 100%); }
.cell-tower-graphic { display: block; width: 100%; height: auto; min-height: 315px; }
.signal-ground { fill: rgba(83,58,253,.10); }
.tower-top, .tower-leg-svg, .tower-base-svg { fill: url(#towerGradient); }
.tower-cutout { fill: rgba(255,255,255,.94); }
.tower-cross-svg { fill: none; stroke: #ffffff; stroke-width: 8; stroke-linecap: round; opacity: .72; }
.tower-beacon { fill: var(--success); stroke: rgba(21,190,83,.22); stroke-width: 16; animation: towerBeaconPulse 1.5s ease-in-out infinite; }
.signal-path { fill: none; stroke: var(--purple); stroke-width: 7; stroke-linecap: round; stroke-dasharray: 26 18; animation: signalDash 1.25s linear infinite; opacity: .78; }
.signal-two { stroke: var(--success); animation-delay: .18s; }
.signal-three { stroke: var(--ruby); animation-delay: .36s; }
.signal-dot { fill: #15be53; opacity: .85; animation: signalDotPulse 1.25s ease-in-out infinite; }
.dot-two { animation-delay: .18s; }
.dot-three { animation-delay: .36s; }
.building { fill: url(#buildingGradient); stroke: rgba(83,58,253,.24); stroke-width: 2; }
.windows rect { fill: rgba(83,58,253,.26); animation: windowGlow 2.1s ease-in-out infinite alternate; }
.windows rect:nth-child(2n) { animation-delay: .35s; }
.network-caption { position: relative; z-index: 2; margin-top: 8px; background: rgba(255,255,255,.92); border: 1px solid rgba(229,237,245,.88); border-radius: 10px; padding: 16px; }
.network-caption strong { display: block; font-size: 22px; font-weight: 500; margin-bottom: 4px; }
.network-caption p { font-size: 15px; margin-bottom: 0; }
.micro-label { display:block; font: 500 11px/1 'Source Code Pro', monospace; color: var(--label); text-transform: uppercase; margin-bottom: 8px; }
.hero-media-card { position: relative; min-height: 520px; border-radius: 22px; overflow: hidden; border: 1px solid rgba(255,255,255,.68); box-shadow: rgba(50,50,93,.28) 0 34px 70px -32px, rgba(0,0,0,.18) 0 22px 46px -28px; background: var(--navy); isolation: isolate; }
.hero-media-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,27,49,.04) 0%, rgba(6,27,49,.14) 38%, rgba(6,27,49,.82) 100%); z-index: 1; pointer-events: none; }
.hero-media-card > img, .investor-image-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-media-card > img { position: absolute; inset: 0; transform: scale(1.02); }
.hero-media-overlay { position: absolute; left: 22px; right: 22px; bottom: 22px; z-index: 2; background: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.76); border-radius: 16px; padding: 20px; box-shadow: rgba(6,27,49,.22) 0 24px 45px -28px; }
.hero-media-overlay strong { display: block; font-size: clamp(22px, 2.5vw, 30px); line-height: 1.1; font-weight: 500; margin-bottom: 8px; }
.hero-media-overlay p { margin-bottom: 0; font-size: 15px; }
.metric-pill { position: absolute; z-index: 3; display: grid; gap: 2px; min-width: 154px; padding: 13px 15px; border-radius: 999px; background: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.7); box-shadow: rgba(6,27,49,.18) 0 18px 34px -24px; }
.metric-pill strong { font-size: 14px; font-weight: 700; color: var(--navy); }
.metric-pill span { font-size: 12px; color: var(--body); }
.metric-pill-one { top: 22px; left: 22px; }
.metric-pill-two { top: 96px; right: 18px; }
.investor-story { position: relative; overflow: hidden; background: radial-gradient(circle at 8% 10%, rgba(83,58,253,.12), transparent 28%), linear-gradient(135deg, #061b31 0%, #121b4e 52%, #533afd 100%); color: white; }
.investor-story::after { content: ''; position: absolute; width: 420px; height: 420px; border-radius: 999px; right: -140px; bottom: -180px; background: rgba(249,107,238,.18); filter: blur(8px); }
.investor-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 42px; align-items: center; }
.investor-copy p { color: rgba(255,255,255,.78); }
.investor-story .eyebrow { color: #d7d3ff; }
.investor-points { display: grid; gap: 12px; margin-top: 26px; }
.investor-points article { display: grid; gap: 4px; padding: 16px 18px; border-radius: 14px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.16); }
.investor-points strong { color: white; font-size: 18px; }
.investor-points span { color: rgba(255,255,255,.72); }
.investor-image-card { margin: 0; min-height: 450px; overflow: hidden; border-radius: 22px; border: 1px solid rgba(255,255,255,.22); box-shadow: rgba(0,0,0,.28) 0 34px 70px -32px; position: relative; background: rgba(255,255,255,.08); }
.investor-image-card figcaption { position: absolute; left: 18px; right: 18px; bottom: 18px; padding: 14px 16px; border-radius: 14px; background: rgba(255,255,255,.92); color: var(--navy); font-weight: 600; box-shadow: rgba(6,27,49,.20) 0 18px 34px -24px; }
input, select, textarea { width: 100%; border: 1px solid var(--border); border-radius: 5px; padding: 11px 12px; color: var(--navy); font: 400 15px/1.2 'Source Sans 3', sans-serif; background: white; }
input:focus, select:focus, textarea:focus { outline: 2px solid rgba(83,58,253,.18); border-color: var(--purple); }
@keyframes towerBeaconPulse { 0%, 100% { opacity: 1; } 50% { opacity: .55; } }
@keyframes signalDash { to { stroke-dashoffset: -88; } }
@keyframes signalDotPulse { 0%, 100% { transform: scale(1); opacity: .55; } 50% { transform: scale(1.45); opacity: 1; } }
@keyframes windowGlow { from { opacity: .48; } to { opacity: 1; } }
.stats-strip { background: var(--brand-dark); color: white; padding: 28px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stats-grid strong { display:block; font-size: 32px; font-weight: 300; letter-spacing: -.64px; }
.stats-grid span { color: rgba(255,255,255,.72); }
.system-notice { padding: 34px 0; background: linear-gradient(135deg, #ffffff 0%, #fbfbff 100%); border-bottom: 1px solid var(--border); }
.notice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.notice-card { background: rgba(255,255,255,.88); border: 1px solid var(--border); border-radius: 9px; padding: 22px; box-shadow: rgba(50,50,93,.14) 0 18px 36px -28px, rgba(0,0,0,.06) 0 10px 24px -18px; }
.notice-card h2 { font-size: clamp(24px, 3vw, 34px); margin: 12px 0 8px; }
.notice-card p { margin-bottom: 0; }
.notice-card .btn { margin-top: 16px; }
.notice-active { border-color: rgba(21,190,83,.28); background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(240,255,246,.86)); }
.notice-status { display: inline-flex; align-items: center; gap: 8px; width: fit-content; color: #0f7a37; background: rgba(232,255,241,.9); border: 1px solid rgba(21,190,83,.22); border-radius: 999px; padding: 6px 10px; font: 600 12px/1 'Source Code Pro', monospace; text-transform: uppercase; letter-spacing: .02em; }
.notice-soft { color: var(--purple); background: rgba(243,240,255,.92); border-color: rgba(83,58,253,.18); }
.pulse-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--success); box-shadow: 0 0 0 6px rgba(21,190,83,.12); }
.services-section { position: relative; overflow: hidden; background: linear-gradient(180deg, #ffffff 0%, #fbfbff 100%); }
.services-section::before { content: ''; position: absolute; width: 360px; height: 360px; left: -180px; bottom: 60px; border-radius: 999px; background: rgba(21,190,83,.06); }
.services-hero { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: stretch; margin-bottom: 28px; }
.services-hero > div:first-child, .brand-promise-card { background: #ffffff; border: 1px solid rgba(229,237,245,.95); border-radius: 14px; padding: 28px; box-shadow: rgba(50,50,93,.14) 0 22px 48px -30px, rgba(0,0,0,.06) 0 14px 30px -24px; }
.services-hero p, .brand-promise-card p { margin-bottom: 0; }
.brand-promise-card { display: flex; flex-direction: column; justify-content: center; background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(240,255,246,.78)); border-color: rgba(21,190,83,.20); }
.brand-promise-card h3 { font-size: clamp(26px, 3vw, 36px); margin: 16px 0 10px; }
.services-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { background: rgba(255,255,255,.94); border: 1px solid rgba(229,237,245,.96); border-radius: 12px; padding: 24px; box-shadow: rgba(50,50,93,.16) 0 24px 48px -30px, rgba(0,0,0,.06) 0 14px 28px -24px; transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: rgba(50,50,93,.24) 0 34px 60px -30px, rgba(0,0,0,.10) 0 18px 34px -24px; }
.service-card.featured-service { border-color: rgba(83,58,253,.36); background: linear-gradient(180deg, #ffffff 0%, #fbfbff 100%); }
.service-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 10px; background: linear-gradient(135deg, var(--purple), var(--ruby)); color: white; font: 700 14px/1 'Source Code Pro', monospace; box-shadow: var(--ambient); margin-bottom: 16px; }
.service-card:nth-child(2) .service-icon { background: linear-gradient(135deg, var(--brand-dark), var(--purple)); }
.service-card:nth-child(3) .service-icon { background: linear-gradient(135deg, #15be53, var(--purple)); }
.service-card:nth-child(4) .service-icon { background: linear-gradient(135deg, #061b31, #15be53); }
.service-card:nth-child(5) .service-icon { background: linear-gradient(135deg, var(--purple), #7c3aed); }
.service-card:nth-child(6) .service-icon { background: linear-gradient(135deg, var(--ruby), var(--magenta)); }
.service-card ul { margin: 18px 0 0; padding: 0; list-style: none; color: var(--label); }
.service-card li { padding: 8px 0; border-top: 1px solid var(--border); }
.service-card li::before { content: '✓'; color: var(--success); margin-right: 8px; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading.narrow { text-align: center; margin-left: auto; margin-right: auto; }
code { font-family: 'Source Code Pro', monospace; font-size: .86em; background: var(--soft); padding: 2px 5px; border-radius: 4px; color: var(--purple); }
#packages { position: relative; overflow: hidden; background: radial-gradient(circle at 12% 12%, rgba(83,58,253,.12), transparent 28%), radial-gradient(circle at 88% 18%, rgba(249,107,238,.12), transparent 24%), linear-gradient(180deg, #fbfbff 0%, #ffffff 58%, #f8fbff 100%); }
#packages::before { content: ''; position: absolute; inset: 34px 18px auto 18px; height: 260px; border-radius: 28px; background: linear-gradient(135deg, rgba(28,30,84,.06), rgba(83,58,253,.05)); border: 1px solid rgba(185,185,249,.28); pointer-events: none; }
#packages .section-heading { position: relative; z-index: 1; background: rgba(255,255,255,.78); border: 1px solid rgba(229,237,245,.92); border-radius: 14px; padding: 24px; box-shadow: rgba(50,50,93,.14) 0 18px 40px -28px, rgba(0,0,0,.06) 0 12px 28px -20px; }
#packages .section-heading h2 { margin-bottom: 12px; }
.package-hero-heading {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(56,189,248,.28), transparent 32%),
    radial-gradient(circle at 92% 18%, rgba(37,99,235,.22), transparent 30%),
    linear-gradient(135deg, rgba(3,9,20,.88), rgba(7,21,42,.82) 52%, rgba(8,43,77,.74)) !important;
  border-color: rgba(125,211,252,.24) !important;
  box-shadow: rgba(0,0,0,.34) 0 30px 70px -42px, rgba(56,189,248,.20) 0 0 60px -30px, inset rgba(255,255,255,.08) 0 1px 0 !important;
  backdrop-filter: blur(14px) saturate(140%);
}
.package-hero-heading::after {
  content: '';
  position: absolute;
  inset: auto -8% -70px 42%;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(56,189,248,.24), transparent 64%);
  pointer-events: none;
}
.package-hero-heading h2 {
  max-width: 760px;
  color: #ffffff;
  letter-spacing: -.04em;
  text-shadow: rgba(56,189,248,.18) 0 0 26px;
}
.package-hero-heading p { max-width: 680px; color: #cfe4f7; }
.package-choice-trail {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.package-choice-trail span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #eaf6ff;
  background: rgba(240,249,255,.09);
  border: 1px solid rgba(186,230,253,.22);
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: inset rgba(255,255,255,.08) 0 1px 0, rgba(56,189,248,.16) 0 18px 32px -24px;
}
.package-choice-trail strong {
  display: inline-grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  border-radius: 999px;
  color: #03101f;
  background: linear-gradient(135deg, #e0f2fe, #38bdf8);
  font: 800 12px/1 'Source Code Pro', monospace;
}
.package-choice-trail i {
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, rgba(125,211,252,.20), rgba(125,211,252,.82));
  position: relative;
}
.package-choice-trail i::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1px solid rgba(125,211,252,.86);
  border-top: 1px solid rgba(125,211,252,.86);
  transform: translateY(-50%) rotate(45deg);
}
.billing-row { display: flex; align-items: center; justify-content: flex-end; gap: 12px; margin-bottom: 20px; color: var(--label); }
.billing-row select { width: auto; min-width: 130px; }
.purchase-flow { position: relative; z-index: 1; margin-bottom: 24px; background: rgba(255,255,255,.86); border: 1px solid rgba(229,237,245,.96); border-radius: 16px; padding: 18px; box-shadow: rgba(50,50,93,.18) 0 24px 54px -30px, rgba(0,0,0,.08) 0 16px 36px -26px; }
.hostel-panel { display: grid; grid-template-columns: 1fr 320px 300px; gap: 18px; align-items: center; background: linear-gradient(135deg, #ffffff 0%, #fbfbff 55%, #f5f8ff 100%); border: 1px solid rgba(185,185,249,.5); border-radius: 12px; padding: 24px; box-shadow: rgba(83,58,253,.15) 0 22px 45px -30px, rgba(0,0,0,.08) 0 14px 28px -24px; margin-bottom: 18px; position: relative; overflow: hidden; }
.hostel-panel::before { content: ''; position: absolute; width: 160px; height: 160px; right: -70px; top: -70px; border-radius: 999px; background: rgba(83,58,253,.10); }
.hostel-panel::after { content: 'Start here'; position: absolute; right: 18px; top: 18px; color: var(--purple); background: rgba(243,240,255,.92); border: 1px solid rgba(83,58,253,.16); border-radius: 999px; padding: 6px 10px; font: 600 11px/1 'Source Code Pro', monospace; text-transform: uppercase; letter-spacing: .03em; }
.hostel-panel > * { position: relative; z-index: 1; }
.step-kicker { display: inline-flex; color: var(--purple); font: 500 12px/1 'Source Code Pro', monospace; letter-spacing: .03em; text-transform: uppercase; margin-bottom: 8px; }
.hostel-panel h3 { margin-bottom: 8px; }
.hostel-panel p { margin-bottom: 0; }
.hostel-control label { display: block; color: var(--label); font-size: 14px; margin-bottom: 6px; }
.hostel-control small { display: block; color: var(--body); margin-top: 7px; font-size: 13px; }
.selected-hostel { min-height: 96px; border: 1px solid rgba(83,58,253,.22); border-radius: 10px; background: rgba(255,255,255,.78); padding: 14px; display: flex; flex-direction: column; justify-content: center; gap: 5px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.72), rgba(83,58,253,.08) 0 14px 28px -24px; }
.selected-hostel strong { color: var(--navy); font-size: 18px; font-weight: 500; }
.selected-hostel span, .selected-hostel small { color: var(--body); }
.package-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 18px; background: rgba(6,27,49,.04); border: 1px solid rgba(229,237,245,.92); border-radius: 11px; padding: 16px 18px; }
.package-toolbar-compact { justify-content: flex-end; }
.package-toolbar .billing-row { margin-bottom: 0; }
.package-card.disabled { opacity: .72; }
.package-loader { position: relative; z-index: 3; margin: 0 auto 22px; display: none; }
.package-loader[hidden]:not(.is-visible) { display: none !important; }
.package-loader.is-visible, .package-loader[data-loading="true"] { display: block !important; }
.hostel-inline-loader {
  grid-column: 1 / -1;
  width: 100%;
  margin: 8px 0 0;
  border-radius: 18px;
  padding: 12px;
  background:
    radial-gradient(circle at 10% 0%, rgba(56,189,248,.30), transparent 34%),
    linear-gradient(135deg, rgba(3,9,20,.88), rgba(8,43,77,.78));
  border: 1px solid rgba(125,211,252,.30);
  box-shadow: rgba(56,189,248,.26) 0 0 54px -24px, rgba(0,0,0,.34) 0 24px 52px -36px;
}
.hostel-inline-loader .loader-card { align-items: center; gap: 16px; padding: 18px; border-color: rgba(125,211,252,.30); background: rgba(240,249,255,.09); }
.hostel-inline-loader .loader-spinner { width: 44px; height: 44px; flex-basis: 44px; border-width: 4px; border-color: rgba(186,230,253,.25); border-top-color: #38bdf8; border-right-color: #22c55e; box-shadow: 0 0 0 8px rgba(56,189,248,.12), 0 0 28px rgba(56,189,248,.36); }
.hostel-inline-loader .loader-card strong { font-size: 17px; color: #ffffff; }
.hostel-inline-loader .loader-card p { font-size: 14px; line-height: 1.4; color: #d3e6f7; }
.hostel-inline-loader .loader-progress { margin-top: 10px; height: 6px; background: rgba(186,230,253,.16); }
.loader-card { display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,.92); border: 1px solid rgba(185,185,249,.46); border-radius: 14px; padding: 18px 20px; box-shadow: rgba(83,58,253,.16) 0 22px 44px -30px, rgba(0,0,0,.08) 0 14px 28px -24px; }
.loader-card strong { display: block; color: var(--navy); font-size: 18px; font-weight: 600; margin-bottom: 3px; }
.loader-card p { margin-bottom: 0; font-size: 15px; }
.loader-spinner { width: 42px; height: 42px; flex: 0 0 42px; border-radius: 999px; border: 4px solid rgba(83,58,253,.16); border-top-color: var(--purple); border-right-color: rgba(21,190,83,.72); animation: loaderSpin .85s linear infinite; box-shadow: 0 0 0 8px rgba(83,58,253,.06); }
.loader-progress { height: 4px; overflow: hidden; border-radius: 999px; margin-top: 10px; background: rgba(185,185,249,.28); }
.loader-progress span { display: block; width: 42%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--purple), var(--success), var(--ruby)); animation: loaderSlide 1.05s ease-in-out infinite; }
.package-grid.loading { opacity: .42; filter: blur(.8px); pointer-events: none; }
.package-grid.locked .package-card:hover { transform: none; box-shadow: var(--shadow); }
.btn-disabled { background: #8e98aa; color: white; box-shadow: none; cursor: not-allowed; }
.btn-disabled:hover { background: #8e98aa; transform: none; }
@keyframes loaderSpin { to { transform: rotate(360deg); } }
@keyframes loaderSlide { 0% { transform: translateX(-110%); } 55% { transform: translateX(70%); } 100% { transform: translateX(255%); } }

.package-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.package-card { padding: 22px; position: relative; display: flex; flex-direction: column; min-height: 430px; transition: .2s ease; background: rgba(255,255,255,.94); border-color: rgba(229,237,245,.96); box-shadow: rgba(50,50,93,.16) 0 22px 44px -30px, rgba(0,0,0,.06) 0 14px 28px -24px; }
.package-card:hover { transform: translateY(-6px); box-shadow: rgba(50,50,93,.26) 0 36px 62px -28px, rgba(0,0,0,.12) 0 22px 42px -22px; }
.package-card.featured { border-color: rgba(83,58,253,.42); box-shadow: rgba(83,58,253,.18) 0 28px 55px -30px, rgba(0,0,0,.08) 0 18px 34px -24px; }
.package-card.featured::before { content: ''; position: absolute; left: 18px; right: 18px; top: 0; height: 3px; border-radius: 999px; background: linear-gradient(90deg, var(--purple), var(--ruby)); }
.badge { display:inline-flex; width: fit-content; background: rgba(21,190,83,.2); color: #108c3d; border: 1px solid rgba(21,190,83,.4); padding: 2px 7px; border-radius: 4px; font-size: 11px; margin-bottom: 14px; }
.price { font-size: 38px; line-height: 1; letter-spacing: -.64px; font-weight: 300; margin: 10px 0; font-feature-settings: "tnum"; }
.package-card ul { padding: 0; margin: 18px 0 24px; list-style: none; color: var(--label); }
.package-card li { padding: 8px 0; border-bottom: 1px solid var(--border); }
.package-card .btn { margin-top: auto; }
.muted { background: var(--soft); }
.student-features { background: linear-gradient(180deg, #ffffff 0%, #fbfbff 100%); position: relative; overflow: hidden; }
.student-features::before { content: ''; position: absolute; width: 420px; height: 420px; right: -180px; top: 80px; border-radius: 999px; background: rgba(249,107,238,.10); filter: blur(6px); }
.feature-suite-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; z-index: 1; }
.feature-suite-card { background: white; border: 1px solid var(--border); border-radius: 8px; padding: 22px; box-shadow: var(--shadow); display: flex; flex-direction: column; min-height: 430px; transition: transform .2s ease, box-shadow .2s ease; }
.feature-suite-card:hover { transform: translateY(-4px); box-shadow: rgba(50,50,93,.28) 0 36px 55px -28px, rgba(0,0,0,.12) 0 20px 38px -20px; }
.feature-suite-card.featured-ai { border-color: #b9b9f9; background: linear-gradient(180deg, #ffffff 0%, #fbfbff 100%); }
.feature-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 8px; background: var(--brand-dark); color: white; font: 700 14px/1 'Source Code Pro', monospace; margin-bottom: 16px; box-shadow: var(--ambient); }
.feature-suite-card:nth-child(2) .feature-icon { background: linear-gradient(135deg, var(--ruby), var(--magenta)); }
.feature-suite-card:nth-child(3) .feature-icon { background: linear-gradient(135deg, var(--purple), #15be53); }
.feature-suite-card:nth-child(4) .feature-icon { background: linear-gradient(135deg, #061b31, var(--purple)); }
.feature-suite-card p { margin-bottom: 16px; }
.feature-suite-card ul { margin: auto 0 0; padding: 0; list-style: none; color: var(--label); }
.feature-suite-card li { padding: 8px 0; border-top: 1px solid var(--border); }
.feature-suite-card li::before { content: '✓'; color: var(--success); margin-right: 8px; }
.feature-note { margin-top: 22px; display: flex; gap: 8px; align-items: flex-start; background: #fbfbff; border: 1px dashed #b9b9f9; border-radius: 8px; padding: 14px 16px; color: var(--body); }
.feature-note strong { color: var(--purple); }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step-card { padding: 24px; box-shadow: none; }
.step-card > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 5px; background: var(--purple); color: white; margin-bottom: 18px; }
.info-section { background: linear-gradient(180deg, #ffffff 0%, #fbfbff 100%); }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-card { background: white; border: 1px solid var(--border); border-radius: 8px; padding: 24px; box-shadow: var(--shadow); }
.info-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 8px; background: linear-gradient(135deg, var(--purple), var(--ruby)); color: white; font-weight: 700; margin-bottom: 16px; }
.info-card ul, .trust-info-list ul { margin: 16px 0 0; padding-left: 18px; color: var(--label); }
.info-card li { margin: 8px 0; }
.trust-grid-large { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; align-items: start; }
.trust-info-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.trust-info-list article { background: white; border: 1px solid var(--border); border-radius: 8px; padding: 20px; box-shadow: rgba(23,23,23,.06) 0 10px 25px -18px; }
.trust-info-list h3 { font-size: 22px; }
.trust-info-list p { margin-bottom: 0; }
.split-grid, .support-grid { display: grid; grid-template-columns: 1fr 420px; gap: 58px; align-items: center; }
.check-list { list-style: none; padding: 0; margin: 22px 0 0; color: var(--label); }
.check-list li { margin: 10px 0; }
.check-list li::before { content: '✓'; color: var(--success); margin-right: 10px; }
.coverage-card { padding: 18px; }
.map-card { height: 260px; border-radius: 7px; background: linear-gradient(135deg, #eef4ff, #fff0fa); border: 1px dashed #b9b9f9; position: relative; overflow: hidden; }
.map-card::before, .map-card::after { content: ''; position: absolute; border: 1px solid rgba(83,58,253,.18); border-radius: 999px; }
.map-card::before { width: 320px; height: 320px; top: -90px; left: -40px; }
.map-card::after { width: 220px; height: 220px; bottom: -70px; right: -30px; }
.pin { position: absolute; width: 16px; height: 16px; background: var(--ruby); border: 3px solid white; border-radius: 999px; box-shadow: var(--ambient); z-index: 2; }
.pin-a { left: 28%; top: 35%; } .pin-b { right: 26%; top: 45%; } .pin-c { left: 50%; bottom: 25%; }
.map-label { position: absolute; left: 18px; bottom: 18px; background: white; border: 1px solid var(--border); padding: 10px 12px; border-radius: 5px; box-shadow: var(--ambient); }
.zone-list div { display:flex; justify-content:space-between; gap: 10px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.zone-list span { color: var(--body); }
.dark-section { background: var(--brand-dark); color: white; }
.dark-section p { color: rgba(255,255,255,.72); }
.support-card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); padding: 24px; color: white; box-shadow: none; }
.support-card p, .support-card a { color: rgba(255,255,255,.78); }
.package-faq-section { background: linear-gradient(180deg, #ffffff 0%, #fbfbff 100%); }
.package-faq-list { display: grid; gap: 12px; }
.package-faq-list details { margin-bottom: 0; box-shadow: rgba(50,50,93,.10) 0 18px 36px -28px, rgba(0,0,0,.05) 0 10px 24px -18px; }
.package-faq-list details[open] { border-color: rgba(83,58,253,.32); background: linear-gradient(180deg, #ffffff 0%, #fbfbff 100%); }
.package-faq-list summary { font-weight: 500; }
.package-faq-list p { margin: 12px 0 0; }
.faq-list { max-width: 760px; }
details { border: 1px solid var(--border); border-radius: 7px; padding: 18px 20px; margin-bottom: 12px; background: white; }
summary { cursor: pointer; font-size: 19px; color: var(--navy); }
.site-footer { border-top: 1px solid var(--border); padding: 32px 0; background: var(--soft); }
.footer-grid { display: grid; grid-template-columns: minmax(220px, .55fr) minmax(520px, 1.45fr); gap: 28px; align-items: start; }
.footer-brand-block p { margin-bottom: 0; }
.footer-links { display: grid; grid-template-rows: repeat(4, auto); grid-auto-flow: column; grid-auto-columns: minmax(150px, 1fr); column-gap: 26px; row-gap: 8px; color: var(--label); }
.footer-links a { display: inline-flex; align-items: center; gap: 10px; width: fit-content; padding: 6px 0; transition: color .2s ease, transform .2s ease; }
.footer-links a:hover { color: var(--purple); transform: translateX(2px); }
.footer-link-icon { width: 24px; height: 24px; flex: 0 0 24px; display: inline-grid; place-items: center; border-radius: 7px; background: #ffffff; border: 1px solid var(--border); color: var(--purple); font: 700 11px/1 'Source Code Pro', monospace; box-shadow: rgba(23,23,23,.05) 0 8px 18px -14px; }

.floating-whatsapp { position: fixed; right: 18px; bottom: 24px; z-index: 60; display: grid; gap: 10px; }
.floating-action { min-width: 190px; display: flex; align-items: center; gap: 10px; padding: 11px 13px; border-radius: 8px; color: var(--navy); border: 1px solid rgba(255,255,255,.72); box-shadow: rgba(50,50,93,.16) 0 18px 34px -24px, rgba(0,0,0,.08) 0 12px 24px -18px; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.floating-action:hover { transform: translateY(-2px); box-shadow: rgba(50,50,93,.22) 0 26px 44px -26px, rgba(0,0,0,.10) 0 18px 34px -24px; }
.floating-support { background: rgba(232, 255, 241, .88); color: #0f7a37; border-color: rgba(21,190,83,.22); }
.floating-ticket { background: rgba(243, 240, 255, .90); color: var(--purple); border-color: rgba(83,58,253,.22); }
.floating-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 7px; background: rgba(255,255,255,.72); color: currentColor; font-weight: 700; font-size: 18px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.45); }
.floating-action span:last-child { display: grid; gap: 2px; }
.floating-action strong { font-size: 15px; line-height: 1; font-weight: 600; }
.floating-action small { color: currentColor; opacity: .72; font-size: 12px; line-height: 1; }


.ticket-drawer-backdrop { position: fixed; inset: 0; z-index: 130; background: rgba(6,27,49,.42); }
.ticket-drawer { position: fixed; top: 0; right: 0; bottom: 0; z-index: 140; width: min(620px, 100%); background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%); box-shadow: rgba(3,3,39,.25) 0 14px 40px -14px, rgba(0,0,0,.18) 0 8px 28px -8px; border-left: 1px solid var(--border); padding: 28px; overflow-y: auto; transform: translateX(104%); transition: transform .28s ease; }
.ticket-drawer.open { transform: translateX(0); }
.drawer-open { overflow: hidden; }
.ticket-drawer-header { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: start; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.ticket-drawer-header h2 { font-size: clamp(30px, 4vw, 42px); margin-bottom: 10px; }
.ticket-drawer-header p { margin-bottom: 0; }
.ticket-close { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 7px; background: white; color: var(--label); cursor: pointer; font-size: 26px; line-height: 1; box-shadow: rgba(23,23,23,.06) 0 3px 8px; }
.ticket-close:hover { color: var(--navy); border-color: #b9b9f9; }
.ticket-form { display: grid; gap: 16px; }
.ticket-form label { display: grid; gap: 7px; color: var(--label); font-size: 14px; }
.ticket-form input, .ticket-form select, .ticket-form textarea { box-shadow: rgba(23,23,23,.03) 0 2px 6px; }
.ticket-form textarea { resize: vertical; min-height: 120px; line-height: 1.45; }
.ticket-grid.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ticket-note { display: grid; grid-template-columns: auto 1fr; gap: 8px; align-items: start; background: #fbfbff; border: 1px dashed #b9b9f9; border-radius: 7px; padding: 13px 14px; color: var(--body); }
.ticket-note strong { color: var(--purple); }

.toast { position: fixed; right: 18px; bottom: 18px; background: var(--brand-dark); color:white; padding: 12px 14px; border-radius: 6px; box-shadow: var(--shadow); transform: translateY(20px); opacity:0; pointer-events:none; transition: .2s ease; z-index: 120; }
.toast.show { transform: translateY(0); opacity: 1; }

.visit-popup-backdrop { position: fixed; inset: 0; z-index: 170; background: radial-gradient(circle at top, rgba(83,58,253,.26), transparent 34%), rgba(6,27,49,.52); backdrop-filter: blur(8px); }
.visit-popup { position: fixed; left: 50%; top: 50%; z-index: 180; width: min(760px, calc(100% - 32px)); max-height: calc(100vh - 32px); overflow-y: auto; background: linear-gradient(180deg, rgba(255,255,255,.99), rgba(248,251,255,.97)); border: 1px solid rgba(229,237,245,.96); border-radius: 24px; padding: 30px; box-shadow: rgba(3,3,39,.30) 0 34px 80px -28px, rgba(83,58,253,.18) 0 18px 44px -26px; transform: translate(-50%, -46%) scale(.96); opacity: 0; pointer-events: none; transition: opacity .22s ease, transform .22s ease; }
.visit-popup.open { transform: translate(-50%, -50%) scale(1); opacity: 1; pointer-events: auto; }
.popup-open { overflow: hidden; }
.popup-close { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.72); border-radius: 999px; background: rgba(255,255,255,.92); color: var(--label); cursor: pointer; font-size: 26px; line-height: 1; box-shadow: rgba(23,23,23,.10) 0 8px 18px -12px; }
.popup-close:hover { color: var(--navy); border-color: #b9b9f9; }
.popup-header { padding-right: 42px; margin-bottom: 20px; }
.popup-header h2 { font-size: clamp(30px, 4vw, 44px); margin: 12px 0 10px; }
.popup-header p { margin-bottom: 0; }
.how-buy-hero { margin: -8px -8px 22px; padding: 28px 72px 28px 28px; border-radius: 20px; color: white; background: radial-gradient(circle at 92% 8%, rgba(255,255,255,.28), transparent 28%), linear-gradient(135deg, #533afd 0%, #7c4dff 48%, #f96bee 100%); box-shadow: rgba(83,58,253,.28) 0 22px 50px -28px; }
.how-buy-hero h2, .how-buy-hero p { color: white; }
.guide-pill { display: inline-flex; align-items: center; gap: 8px; width: fit-content; border: 1px solid rgba(255,255,255,.42); border-radius: 999px; padding: 7px 12px; background: rgba(255,255,255,.16); color: white; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.guide-pill::before { content: '⚡'; }
.popup-notice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 18px 0; }
.popup-notice-grid article { border: 1px solid var(--border); border-radius: 10px; background: white; padding: 18px; box-shadow: rgba(23,23,23,.05) 0 12px 24px -20px; }
.stepper-list { display: grid; gap: 14px; margin: 20px 0; counter-reset: packageStep; }
.stepper-list article { display: grid; grid-template-columns: auto 1fr; gap: 6px 14px; align-items: start; border: 1px solid rgba(229,237,245,.95); border-radius: 18px; background: linear-gradient(180deg, #ffffff, #fbfbff); padding: 18px; box-shadow: rgba(83,58,253,.10) 0 18px 38px -28px; position: relative; }
.stepper-list article::after { content: ''; position: absolute; left: 34px; top: 56px; bottom: -15px; width: 2px; background: linear-gradient(180deg, rgba(83,58,253,.34), transparent); }
.stepper-list article:last-child::after { display: none; }
.stepper-list span { grid-row: span 2; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 13px; background: linear-gradient(135deg, var(--purple), var(--ruby)); color: white; font-weight: 800; box-shadow: rgba(83,58,253,.24) 0 16px 30px -18px; }
.stepper-list strong { color: var(--navy); font-size: 20px; font-weight: 700; }
.stepper-list p { margin-bottom: 0; font-size: 15px; }
.catchy-stepper { grid-template-columns: repeat(2, 1fr); }
.catchy-stepper article::after { display: none; }
.how-buy-highlight { border: 1px solid rgba(83,58,253,.18); border-radius: 16px; padding: 14px 16px; color: var(--navy); background: linear-gradient(135deg, rgba(83,58,253,.08), rgba(249,107,238,.10)); }
.how-buy-highlight strong { color: var(--purple); }
.popup-notice-grid h3 { display: block; color: var(--navy); font-size: 20px; font-weight: 500; margin-bottom: 8px; }
.popup-notice-grid p { margin-bottom: 0; font-size: 15px; }
.privacy-note { background: #fbfbff; border: 1px dashed #b9b9f9; border-radius: 9px; padding: 14px 16px; color: var(--body); }
.privacy-note strong { color: var(--purple); }
.popup-actions { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.privacy-section { background: linear-gradient(180deg, #ffffff 0%, #fbfbff 100%); }
.privacy-panel { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 30px; box-shadow: var(--shadow); }
.privacy-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 24px 0; }
.privacy-grid article { background: var(--soft); border: 1px solid var(--border); border-radius: 9px; padding: 18px; }
.privacy-grid h3 { font-size: 21px; }
.privacy-grid p { font-size: 15px; margin-bottom: 0; }
@media (max-width: 960px) {
  .hero-grid, .split-grid, .support-grid, .hostel-panel, .trust-grid-large, .services-hero, .investor-grid { grid-template-columns: 1fr; }
  .hero-media-card, .network-visual-card, .coverage-card, .investor-image-card { max-width: 620px; }
  .package-grid, .steps-grid, .stats-grid, .feature-suite-grid, .info-grid, .notice-grid, .privacy-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .catchy-stepper { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .section-pad { padding: 58px 0; }
  .site-header { top: 10px; }
  .nav { width: min(100% - 24px, 680px); min-height: 58px; padding: 9px 10px 9px 12px; }
  .brand span:last-child { font-size: 13px; }
  .brand-mark { width: 34px; height: 34px; }
  .nav-toggle { display:block; }
  .nav-menu { display:none; position:fixed; left:12px; right:12px; top:78px; background: linear-gradient(180deg, rgba(3,9,20,.96), rgba(7,21,42,.94)); border:1px solid rgba(220,233,255,.20); border-radius:22px; padding:16px; box-shadow: rgba(0,0,0,.42) 0 30px 90px -38px, rgba(59,130,246,.22) 0 0 54px -24px; backdrop-filter: blur(18px) saturate(150%); flex-direction:column; align-items:stretch; z-index:160; color: #ffffff; }
  .nav-menu.open { display:flex; }
  .nav-menu a { padding: 12px 10px; }
  .nav-menu .btn { width: 100%; margin-top: 4px; }
  .package-grid, .steps-grid, .stats-grid, .feature-suite-grid, .info-grid, .notice-grid, .privacy-grid, .services-grid, .popup-notice-grid, .trust-info-list { grid-template-columns: 1fr; }
  .hero-media-card { min-height: 430px; }
  .investor-image-card { min-height: 360px; }
  .metric-pill { position: relative; top: auto; left: auto; right: auto; margin: 12px 16px 0; border-radius: 14px; }
  .metric-pill-one { margin-top: 18px; }
  .metric-pill-two { margin-left: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-rows: repeat(6, auto); grid-auto-flow: column; grid-auto-columns: minmax(140px, 1fr); grid-template-columns: none; column-gap: 18px; row-gap: 8px; }
  .billing-row { justify-content: flex-start; }

  .package-toolbar { flex-direction: column; align-items: flex-start; }

  .portal-card .btn { width: 100%; }
  .feature-note { flex-direction: column; }

  .hostel-panel { padding: 18px; }
  .hostel-panel::after { position: static; width: fit-content; margin-bottom: 10px; }
  .hero { padding-top: 92px; }
  .network-visual-card { display: none; }
  h1 { letter-spacing: -.9px; }
  .floating-whatsapp { left: auto; right: 16px; bottom: 12px; grid-template-columns: 1fr; width: min(210px, calc(100% - 32px)); }
  .floating-action { min-width: 0; padding: 10px 12px; }
  .floating-action strong { font-size: 13px; }
  .floating-action small { display: block; }
  .floating-icon { width: 30px; height: 30px; }
  .ticket-drawer { padding: 20px; }
  .visit-popup { padding: 22px; }
  .how-buy-hero { padding: 24px 52px 24px 22px; }
  .popup-header { padding-right: 34px; }
  .popup-actions .btn { width: 100%; }
  .privacy-panel { padding: 22px; }
  .ticket-grid.two { grid-template-columns: 1fr; }
  .ticket-drawer-header { grid-template-columns: 1fr; }
  .ticket-close { position: absolute; top: 16px; right: 16px; }
}


.portal-login-page { min-height: 100vh; background: radial-gradient(circle at top left, rgba(249,107,238,.18), transparent 32%), radial-gradient(circle at bottom right, rgba(83,58,253,.18), transparent 30%), var(--soft); }
.portal-login-wrap { min-height: 100vh; display: grid; place-items: center; padding: 28px 16px; }
.portal-login-card { width: min(520px, 100%); background: white; border: 1px solid var(--border); border-radius: 10px; padding: 30px; box-shadow: var(--shadow); }
.portal-login-heading { margin: 34px 0 24px; }
.portal-login-heading h1 { font-size: clamp(36px, 7vw, 52px); margin-bottom: 14px; }
.portal-google { background: #ffffff; color: var(--navy); border: 1px solid var(--border); box-shadow: rgba(23,23,23,.08) 0 12px 28px -18px; }
.portal-google:hover { background: var(--soft); color: var(--navy); }
.portal-google span { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 5px; background: linear-gradient(135deg, #4285f4, #34a853); color: white; font-weight: 600; }
.portal-divider { display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: center; color: var(--body); font-size: 13px; margin: 22px 0; }
.portal-divider::before, .portal-divider::after { content: ''; height: 1px; background: var(--border); }
.portal-form { display: grid; gap: 14px; }
.portal-form label { display: grid; gap: 7px; color: var(--label); font-size: 14px; }
.portal-login-footer { display: flex; justify-content: space-between; gap: 14px; margin-top: 18px; color: var(--purple); font-size: 14px; }


/* Dedicated packages page and homepage package preview */
.packages-preview-section { background: linear-gradient(180deg, #ffffff 0%, var(--soft) 100%); }
.home-package-preview .package-card { min-height: 100%; }
.package-preview-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.packages-page-hero { padding-top: 120px; }
.portal-login-page .site-header { background: rgba(255,255,255,.92); }
.portal-login-page .portal-login-wrap { min-height: auto; padding-top: 120px; padding-bottom: 72px; }

@media (max-width: 720px) {
  .package-preview-actions .btn { width: 100%; }
  .portal-login-page .portal-login-wrap { padding-top: 104px; }
}

/* Floating navbar matched page theme */
:root {
  --purple: #38bdf8;
  --purple-dark: #0ea5e9;
  --navy: #eaf6ff;
  --brand-dark: #041327;
  --body: #b8c9dd;
  --label: #dce9ff;
  --border: rgba(186, 230, 253, .20);
  --soft: #071526;
  --success: #22c55e;
  --ruby: #60a5fa;
  --magenta: #7dd3fc;
  --white: #ffffff;
  --shadow: rgba(0,0,0,.38) 0 32px 80px -44px, rgba(56,189,248,.18) 0 0 54px -28px;
  --ambient: rgba(14,165,233,.22) 0 18px 42px -28px;
}

body {
  color: #eaf6ff;
  background:
    radial-gradient(circle at 14% 8%, rgba(56,189,248,.18), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(37,99,235,.22), transparent 28%),
    radial-gradient(circle at 50% 90%, rgba(14,165,233,.10), transparent 36%),
    linear-gradient(180deg, #030914 0%, #061426 42%, #071a30 100%);
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 22%, rgba(186,230,253,.22) 0 1px, transparent 1.8px),
    radial-gradient(circle at 80% 18%, rgba(125,211,252,.16) 0 1px, transparent 1.8px),
    linear-gradient(110deg, transparent 0 45%, rgba(56,189,248,.06) 45.2% 45.5%, transparent 46% 100%);
  background-size: 128px 128px, 96px 96px, 100% 100%;
  opacity: .72;
}

h1, h2, h3, summary, strong { color: #f8fbff; }
p, li, small { color: #b8c9dd; }
code { background: rgba(240,249,255,.08); color: #7dd3fc; border: 1px solid rgba(186,230,253,.14); }

.hero,
.system-notice,
.services-section,
.info-section,
.student-features,
.package-faq-section,
.privacy-section,
.packages-preview-section,
#packages,
.portal-strip,
.muted {
  background:
    radial-gradient(circle at 18% 10%, rgba(56,189,248,.14), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(37,99,235,.13), transparent 26%),
    linear-gradient(180deg, rgba(3,9,20,.82), rgba(7,21,42,.76));
  border-color: rgba(186,230,253,.14);
}
.hero::before,
.services-section::before,
.student-features::before,
#packages::before {
  opacity: .55;
}

.eyebrow, .step-kicker { color: #7dd3fc; font-weight: 700; }
.eyebrow.light { color: #bae6fd; }
.lead { color: #d3e6f7; }
.trust-row { color: #dce9ff; }
.trust-row span {
  background: rgba(240,249,255,.08);
  border: 1px solid rgba(186,230,253,.18);
  border-radius: 999px;
  padding: 8px 12px;
  box-shadow: inset rgba(255,255,255,.08) 0 1px 0, rgba(56,189,248,.12) 0 18px 36px -26px;
}

.portal-card,
.network-visual-card,
.hero-media-overlay,
.metric-pill,
.notice-card,
.services-hero > div:first-child,
.brand-promise-card,
.service-card,
.package-card,
.feature-suite-card,
.step-card,
.info-card,
.trust-info-list article,
.support-card,
details,
.privacy-panel,
.privacy-grid article,
.purchase-flow,
.hostel-panel,
.selected-hostel,
.package-toolbar,
.loader-card,
.ticket-drawer,
.visit-popup,
.popup-notice-grid article,
.stepper-list article,
.portal-login-card {
  background: linear-gradient(180deg, rgba(240,249,255,.105), rgba(125,211,252,.045));
  border-color: rgba(186,230,253,.18);
  box-shadow: rgba(0,0,0,.28) 0 28px 70px -42px, rgba(56,189,248,.14) 0 0 44px -28px, inset rgba(255,255,255,.08) 0 1px 0;
  backdrop-filter: blur(12px) saturate(130%);
}
.hero-media-card,
.investor-image-card {
  border-color: rgba(186,230,253,.24);
  background: #041327;
  box-shadow: rgba(0,0,0,.34) 0 34px 80px -36px, rgba(56,189,248,.22) 0 0 54px -28px;
}
.hero-media-card::after { background: linear-gradient(180deg, rgba(3,9,20,.05), rgba(3,9,20,.18) 38%, rgba(3,9,20,.78)); }
.hero-media-overlay strong,
.metric-pill strong,
.selected-hostel strong,
.loader-card strong,
.stepper-list strong,
.popup-notice-grid h3 { color: #ffffff; }
.hero-media-overlay p,
.metric-pill span,
.selected-hostel span,
.selected-hostel small,
.loader-card p,
.stepper-list p,
.popup-notice-grid p { color: #bfd3e8; }

.stats-strip,
.investor-story,
.dark-section,
.site-footer {
  background:
    radial-gradient(circle at 16% 0%, rgba(56,189,248,.22), transparent 26%),
    radial-gradient(circle at 92% 32%, rgba(37,99,235,.20), transparent 28%),
    linear-gradient(135deg, #030914 0%, #07152a 48%, #082b4d 100%);
  color: #ffffff;
  border-color: rgba(186,230,253,.16);
}
.stats-grid span,
.investor-copy p,
.investor-points span,
.dark-section p,
.site-footer p { color: rgba(220,233,255,.82); }
.investor-points article { background: rgba(240,249,255,.08); border-color: rgba(186,230,253,.16); }
.investor-image-card figcaption { background: rgba(3,9,20,.78); color: #eaf6ff; border: 1px solid rgba(186,230,253,.16); backdrop-filter: blur(12px); }

.btn-primary,
.service-icon,
.info-icon,
.feature-icon,
.step-card > span,
.stepper-list span,
.loader-progress span {
  background: linear-gradient(135deg, #0ea5e9, #2563eb 58%, #38bdf8);
  color: #ffffff;
  box-shadow: rgba(14,165,233,.32) 0 18px 34px -18px;
}
.btn-primary:hover { background: linear-gradient(135deg, #0284c7, #1d4ed8 58%, #0ea5e9); }
.btn-ghost, .btn-portal, .btn-light, .portal-google {
  background: rgba(240,249,255,.08);
  color: #eaf6ff;
  border: 1px solid rgba(186,230,253,.22);
  box-shadow: inset rgba(255,255,255,.08) 0 1px 0;
}
.btn-ghost:hover, .btn-portal:hover, .btn-light:hover, .portal-google:hover { background: rgba(125,211,252,.14); color: #ffffff; }

input, select, textarea {
  background: rgba(3,9,20,.62);
  color: #eaf6ff;
  border-color: rgba(186,230,253,.24);
}
input::placeholder, textarea::placeholder { color: rgba(220,233,255,.56); }
input:focus, select:focus, textarea:focus { outline-color: rgba(56,189,248,.28); border-color: #38bdf8; }
.ticket-form label, .hostel-control label, .portal-form label { color: #dce9ff; }

.badge,
.notice-status,
.hostel-panel::after,
.guide-pill {
  color: #eaf6ff;
  background: rgba(14,165,233,.18);
  border-color: rgba(125,211,252,.28);
}
.notice-active { background: linear-gradient(180deg, rgba(34,197,94,.13), rgba(14,165,233,.07)); border-color: rgba(34,197,94,.26); }
.notice-soft { color: #bae6fd; background: rgba(125,211,252,.12); }
.pulse-dot { background: #22c55e; box-shadow: 0 0 0 6px rgba(34,197,94,.14); }

.package-card.featured,
.service-card.featured-service,
.feature-suite-card.featured-ai,
.package-faq-list details[open] {
  border-color: rgba(56,189,248,.42);
  background: linear-gradient(180deg, rgba(56,189,248,.14), rgba(240,249,255,.06));
}
.package-card.featured::before { background: linear-gradient(90deg, #38bdf8, #2563eb); }
.service-card li,
.package-card li,
.feature-suite-card li,
.zone-list div { border-color: rgba(186,230,253,.14); }
.service-card ul,
.package-card ul,
.feature-suite-card ul,
.check-list,
.info-card ul,
.trust-info-list ul { color: #d3e6f7; }
.service-card li::before,
.feature-suite-card li::before,
.check-list li::before { color: #38bdf8; }

.footer-links { color: rgba(220,233,255,.86); }
.footer-links a:hover { color: #7dd3fc; }
.footer-link-icon,
.floating-icon {
  background: rgba(240,249,255,.10);
  border-color: rgba(186,230,253,.20);
  color: #7dd3fc;
}
.floating-support,
.floating-ticket {
  background: linear-gradient(135deg, rgba(3,9,20,.84), rgba(8,43,77,.78));
  color: #eaf6ff;
  border-color: rgba(186,230,253,.24);
  backdrop-filter: blur(12px);
}
.toast { background: #041327; border: 1px solid rgba(186,230,253,.18); }
.ticket-drawer-backdrop,
.visit-popup-backdrop { background: rgba(3,9,20,.72); backdrop-filter: blur(8px); }
.popup-close,
.ticket-close {
  background: rgba(240,249,255,.10);
  color: #eaf6ff;
  border-color: rgba(186,230,253,.20);
}
.privacy-note,
.feature-note,
.how-buy-highlight {
  background: rgba(240,249,255,.07);
  border-color: rgba(125,211,252,.22);
  color: #b8c9dd;
}

/* Premium homepage refinement: dark, catchy, campus-network style */
.home-cosmic .leo-hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 132px;
  padding-bottom: 82px;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 20%, rgba(56,189,248,.24), transparent 24%),
    radial-gradient(circle at 78% 28%, rgba(37,99,235,.28), transparent 31%),
    radial-gradient(circle at 50% 86%, rgba(14,165,233,.12), transparent 34%),
    linear-gradient(135deg, #02050c 0%, #061327 46%, #082b4d 100%);
}
.home-cosmic .leo-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(56,189,248,.08));
  z-index: 0;
}
.leo-starfield {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .75;
  background-image:
    radial-gradient(circle, rgba(226,246,255,.45) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(125,211,252,.28) 0 1px, transparent 1.7px),
    linear-gradient(115deg, transparent 0 42%, rgba(56,189,248,.08) 42.2% 42.55%, transparent 43% 100%);
  background-size: 132px 132px, 88px 88px, 100% 100%;
}
.home-cosmic .leo-hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .82fr);
  gap: clamp(34px, 6vw, 84px);
}
.home-cosmic .leo-hero-copy h1 {
  max-width: 920px;
  font-size: clamp(54px, 7.8vw, 104px);
  line-height: .88;
  letter-spacing: -.075em;
  text-transform: uppercase;
  text-wrap: balance;
  color: #ffffff;
  text-shadow: rgba(56,189,248,.25) 0 0 34px;
}
.home-cosmic .leo-hero-copy .lead {
  max-width: 720px;
  color: #dce9ff;
  font-size: clamp(19px, 2.1vw, 24px);
}
.leo-eyebrow {
  padding: 8px 12px;
  border: 1px solid rgba(125,211,252,.28);
  border-radius: 999px;
  background: rgba(240,249,255,.08);
  box-shadow: inset rgba(255,255,255,.08) 0 1px 0, rgba(56,189,248,.18) 0 18px 36px -26px;
}
.leo-proof-row span {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  color: #eff8ff;
}
.orbital-visual {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(186,230,253,.22);
  border-radius: 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(56,189,248,.20), transparent 25%),
    radial-gradient(circle at 80% 10%, rgba(34,197,94,.10), transparent 24%),
    linear-gradient(180deg, rgba(240,249,255,.09), rgba(8,43,77,.10));
  box-shadow: rgba(0,0,0,.40) 0 42px 100px -42px, rgba(56,189,248,.28) 0 0 70px -28px, inset rgba(255,255,255,.08) 0 1px 0;
  backdrop-filter: blur(14px) saturate(135%);
}
.orbital-visual::before {
  content: '';
  position: absolute;
  inset: 16px;
  border-radius: 28px;
  background-image: radial-gradient(rgba(186,230,253,.28) 1px, transparent 1.8px);
  background-size: 34px 34px;
  opacity: .36;
}
.orbit-ring {
  position: absolute;
  left: 50%;
  top: 48%;
  border: 1px solid rgba(125,211,252,.24);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
  box-shadow: rgba(56,189,248,.16) 0 0 34px;
}
.orbit-ring-one { width: 76%; height: 46%; }
.orbit-ring-two { width: 94%; height: 62%; transform: translate(-50%, -50%) rotate(17deg); }
.orbit-ring-three { width: 58%; height: 74%; transform: translate(-50%, -50%) rotate(55deg); }
.satellite-node {
  position: absolute;
  width: 54px;
  height: 28px;
  border: 1px solid rgba(186,230,253,.32);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(240,249,255,.20), rgba(56,189,248,.12));
  box-shadow: rgba(56,189,248,.34) 0 0 30px -10px;
}
.satellite-node span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #7dd3fc;
  transform: translate(-50%, -50%);
}
.satellite-one { left: 14%; top: 22%; transform: rotate(-22deg); }
.satellite-two { right: 13%; top: 20%; transform: rotate(18deg); }
.campus-hub {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 190px;
  min-height: 190px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 5px;
  padding: 24px;
  border: 1px solid rgba(186,230,253,.28);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125,211,252,.22), rgba(3,9,20,.86) 62%);
  box-shadow: rgba(56,189,248,.38) 0 0 70px -16px, inset rgba(255,255,255,.12) 0 1px 0;
  transform: translate(-50%, -50%);
}
.hub-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #03101f;
  background: linear-gradient(135deg, #ffffff, #7dd3fc);
  font-weight: 900;
}
.campus-hub strong { color: #ffffff; }
.campus-hub small { color: #bae6fd; }
.beam {
  position: absolute;
  width: 2px;
  height: 155px;
  left: 50%;
  top: 48%;
  transform-origin: top;
  background: linear-gradient(180deg, rgba(125,211,252,.70), transparent);
  opacity: .48;
}
.beam-one { transform: rotate(42deg); }
.beam-two { transform: rotate(-52deg); }
.terminal-card {
  position: absolute;
  display: grid;
  gap: 3px;
  min-width: 150px;
  padding: 14px 16px;
  border: 1px solid rgba(186,230,253,.22);
  border-radius: 18px;
  background: rgba(3,9,20,.68);
  box-shadow: rgba(0,0,0,.28) 0 20px 46px -26px, inset rgba(255,255,255,.08) 0 1px 0;
  backdrop-filter: blur(10px);
}
.terminal-card strong { color: #ffffff; }
.terminal-card span { color: #bae6fd; font-size: 13px; }
.terminal-main { left: 30px; bottom: 58px; }
.terminal-annex { right: 26px; bottom: 82px; }
.terminal-portal { left: 50%; bottom: 24px; transform: translateX(-50%); }
.leo-flow-strip {
  position: relative;
  padding: 22px 0;
  border-top: 1px solid rgba(186,230,253,.14);
  border-bottom: 1px solid rgba(186,230,253,.14);
}
.leo-flow-grid div {
  border: 1px solid rgba(186,230,253,.18);
  border-radius: 20px;
  padding: 20px;
  background: rgba(240,249,255,.08);
  box-shadow: inset rgba(255,255,255,.08) 0 1px 0;
}
.leo-flow-grid strong { color: #7dd3fc; font-size: 32px; }
.leo-flow-grid span { color: #eaf6ff; text-transform: uppercase; letter-spacing: .06em; font-size: 13px; }
.home-cosmic .services-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(56,189,248,.20), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(37,99,235,.16), transparent 30%),
    linear-gradient(180deg, #02050c, #07152a 58%, #061426);
}
.home-cosmic .services-hero > div:first-child,
.home-cosmic .brand-promise-card,
.home-cosmic .service-card {
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(240,249,255,.12), rgba(125,211,252,.055));
  border-color: rgba(186,230,253,.22);
}
.home-cosmic .service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(125,211,252,.38);
  box-shadow: rgba(0,0,0,.34) 0 34px 80px -42px, rgba(56,189,248,.24) 0 0 56px -28px, inset rgba(255,255,255,.10) 0 1px 0;
}
@media (max-width: 960px) {
  .home-cosmic .leo-hero-grid { grid-template-columns: 1fr; }
  .orbital-visual { min-height: 500px; }
}
@media (max-width: 720px) {
  .home-cosmic .leo-hero { min-height: auto; padding-top: 112px; padding-bottom: 50px; }
  .home-cosmic .leo-hero-copy h1 { font-size: clamp(44px, 14vw, 64px); }
  .orbital-visual { min-height: 430px; border-radius: 26px; }
  .campus-hub { width: 154px; min-height: 154px; }
  .terminal-card { min-width: 130px; padding: 11px 12px; }
  .terminal-main { left: 14px; bottom: 48px; }
  .terminal-annex { right: 14px; bottom: 74px; }
}

.payment-success-route {
  min-height: 100vh;
  padding-top: 132px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 6%, rgba(56,189,248,.24), transparent 26%),
    radial-gradient(circle at 88% 20%, rgba(37,99,235,.18), transparent 28%),
    linear-gradient(135deg, #030914 0%, #07152a 48%, #082b4d 100%);
}
.payment-success-route::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .32;
  pointer-events: none;
  background-image: radial-gradient(rgba(186,230,253,.34) 1px, transparent 1px);
  background-size: 34px 34px;
}
.payment-success-shell { position: relative; z-index: 1; display: grid; gap: 22px; }
.payment-success-hero-card,
.invoice-page-card {
  border: 1px solid rgba(186,230,253,.18);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(240,249,255,.105), rgba(125,211,252,.045));
  box-shadow: rgba(0,0,0,.34) 0 34px 82px -42px, rgba(56,189,248,.18) 0 0 56px -30px, inset rgba(255,255,255,.08) 0 1px 0;
  backdrop-filter: blur(14px) saturate(135%);
}
.payment-success-hero-card { padding: clamp(28px, 5vw, 48px); }
.payment-success-hero-card h1 { color: #ffffff; font-size: clamp(46px, 7vw, 78px); letter-spacing: -.06em; max-width: 820px; }
.payment-success-hero-card .lead { color: #d3e6f7; }
.success-status-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.success-status-row span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #dce9ff;
  border: 1px solid rgba(186,230,253,.20);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(240,249,255,.08);
}
.success-status-row strong { color: #bbf7d0; }
.invoice-page-card { overflow: hidden; position: relative; }
.real-invoice-card {
  color: #102033;
  background:
    radial-gradient(circle at 88% 4%, rgba(56,189,248,.16), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(239,246,255,.96));
  border-color: rgba(191,219,254,.72);
  box-shadow: rgba(2,6,23,.42) 0 36px 92px -42px, rgba(56,189,248,.30) 0 0 70px -34px;
}
.real-invoice-topbar { height: 12px; background: linear-gradient(90deg, #020617, #0369a1 54%, #22c55e); }
.invoice-watermark {
  position: absolute;
  right: clamp(10px, 4vw, 46px);
  bottom: 118px;
  color: rgba(34,197,94,.08);
  font-size: clamp(76px, 15vw, 170px);
  font-weight: 900;
  letter-spacing: -.08em;
  transform: rotate(-12deg);
  pointer-events: none;
  line-height: 1;
}
.real-invoice-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 22px;
  padding: clamp(24px, 5vw, 42px);
  border-bottom: 1px solid rgba(148,163,184,.22);
}
.invoice-kicker,
.invoice-section-label,
.invoice-meta-strip span {
  display: block;
  color: #0369a1;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.real-invoice-header h2 {
  margin: 0 0 10px;
  color: #020617;
  font-size: clamp(34px, 5.6vw, 62px);
  letter-spacing: -.06em;
  line-height: .96;
}
.real-invoice-header p,
.invoice-parties p,
.invoice-note-box span,
.invoice-line-table td span { color: #475569; }
.invoice-brand-box {
  min-width: 220px;
  padding: 18px;
  border-radius: 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at 100% 0%, rgba(125,211,252,.24), transparent 36%),
    linear-gradient(135deg, #020617, #082f49);
  box-shadow: rgba(2,6,23,.24) 0 22px 45px -28px, inset rgba(255,255,255,.12) 0 1px 0;
}
.invoice-brand-mark { margin-bottom: 12px; }
.invoice-brand-box strong,
.invoice-brand-box small { display: block; }
.invoice-brand-box small { color: #bae6fd; margin-top: 4px; }
.invoice-meta-strip {
  display: grid;
  grid-template-columns: 1.1fr .7fr 1fr;
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 42px);
  border: 1px solid rgba(191,219,254,.85);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(191,219,254,.85);
  transform: translateY(18px);
  box-shadow: rgba(15,23,42,.12) 0 16px 36px -22px;
}
.invoice-meta-strip div { padding: 16px 18px; background: rgba(248,251,255,.96); }
.invoice-meta-strip strong { color: #0f172a; font-size: 16px; }
.paid-stamp {
  display: inline-flex;
  width: max-content;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  color: #065f46 !important;
  background: #dcfce7;
  border: 1px solid #86efac;
  font-weight: 900;
  letter-spacing: .08em;
}
.invoice-parties {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: clamp(44px, 7vw, 58px) clamp(18px, 5vw, 42px) 24px;
}
.invoice-parties section {
  padding: 18px;
  border: 1px solid rgba(191,219,254,.82);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}
.invoice-parties h3 { margin: 4px 0 6px; color: #020617; font-size: 21px; }
.invoice-table-wrap { padding: 0 clamp(18px, 5vw, 42px); overflow-x: auto; }
.invoice-line-table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(191,219,254,.82);
  background: #ffffff;
}
.invoice-line-table th {
  padding: 15px 14px;
  color: #dff7ff;
  background: linear-gradient(135deg, #020617, #082f49);
  font-size: 11px;
  letter-spacing: .09em;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
}
.invoice-line-table td {
  padding: 18px 14px;
  color: #334155;
  border-top: 1px solid rgba(226,232,240,.95);
  vertical-align: top;
}
.invoice-line-table td strong { display: block; color: #020617; font-size: 18px; margin-bottom: 4px; }
.amount-col { text-align: right !important; white-space: nowrap; font-weight: 900; color: #0369a1 !important; }
.invoice-summary-block {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 360px);
  gap: 20px;
  align-items: stretch;
  padding: 24px clamp(18px, 5vw, 42px) clamp(24px, 5vw, 42px);
}
.invoice-note-box,
.invoice-totals-box {
  border: 1px solid rgba(191,219,254,.82);
  border-radius: 20px;
  background: #ffffff;
  overflow: hidden;
}
.invoice-note-box {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: linear-gradient(135deg, #eff6ff, #ffffff);
}
.invoice-note-box strong { color: #075985; }
.invoice-totals-box div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  color: #334155;
  border-bottom: 1px solid rgba(226,232,240,.95);
}
.invoice-totals-box div:last-child { border-bottom: 0; }
.invoice-totals-box strong { color: #0f172a; }
.invoice-totals-box .grand-total {
  color: #ffffff;
  background: linear-gradient(135deg, #020617, #082f49);
}
.invoice-totals-box .grand-total strong { color: #7dd3fc; font-size: clamp(26px, 3.2vw, 38px); }
.invoice-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; }
.invoice-page-grid div { padding: 18px 20px; border-top: 1px solid rgba(186,230,253,.12); border-right: 1px solid rgba(186,230,253,.10); }
.invoice-page-grid dt { color: #8ed8fb; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.invoice-page-grid dd { color: #ffffff; margin: 0; font-size: 18px; font-weight: 700; }
.invoice-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  color: #eaf6ff;
  background: linear-gradient(135deg, rgba(14,165,233,.18), rgba(34,197,94,.12));
  border-top: 1px solid rgba(125,211,252,.22);
}
.invoice-total-row strong { color: #7dd3fc; font-size: clamp(30px, 4vw, 46px); }
.page-next-steps { align-items: center; }
.page-actions { justify-content: flex-start; }
.payment-success-backdrop {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: radial-gradient(circle at 50% 0%, rgba(56,189,248,.28), transparent 34%), rgba(3,9,20,.76);
  backdrop-filter: blur(10px);
}
.payment-success-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 200;
  width: min(820px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  color: #eaf6ff;
  border: 1px solid rgba(125,211,252,.26);
  border-radius: 30px;
  padding: 34px;
  background:
    radial-gradient(circle at 16% 0%, rgba(56,189,248,.26), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(34,197,94,.16), transparent 25%),
    linear-gradient(135deg, rgba(3,9,20,.96), rgba(7,21,42,.94) 52%, rgba(8,43,77,.90));
  box-shadow: rgba(0,0,0,.50) 0 40px 100px -38px, rgba(56,189,248,.26) 0 0 70px -32px, inset rgba(255,255,255,.08) 0 1px 0;
  transform: translate(-50%, -46%) scale(.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.payment-success-modal.open { transform: translate(-50%, -50%) scale(1); opacity: 1; pointer-events: auto; }
.payment-success-open { overflow: hidden; }
.payment-success-close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(186,230,253,.22);
  border-radius: 999px;
  background: rgba(240,249,255,.09);
  color: #eaf6ff;
  cursor: pointer;
  font-size: 28px;
}
.success-orbit {
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34,197,94,.22), rgba(56,189,248,.08));
  border: 1px solid rgba(134,239,172,.34);
  box-shadow: rgba(34,197,94,.26) 0 0 44px -12px;
}
.success-orbit span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: inherit;
  color: #042f2e;
  background: linear-gradient(135deg, #bbf7d0, #22c55e);
  font-size: 34px;
  font-weight: 900;
}
.success-copy { padding-right: 42px; }
.success-copy h2 { margin: 10px 0; color: #ffffff; font-size: clamp(34px, 5vw, 58px); letter-spacing: -.05em; }
.success-copy p { max-width: 680px; color: #cfe4f7; }
.simple-success-alert {
  width: min(640px, calc(100% - 32px));
  padding: clamp(24px, 4vw, 38px);
}
.simple-success-copy { padding-right: 34px; }
.simple-success-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 22px 0;
}
.simple-success-summary div {
  padding: 14px 15px;
  border: 1px solid rgba(186,230,253,.18);
  border-radius: 16px;
  background: rgba(240,249,255,.08);
  box-shadow: inset rgba(255,255,255,.08) 0 1px 0;
}
.simple-success-summary span {
  display: block;
  margin-bottom: 5px;
  color: #8ed8fb;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.simple-success-summary strong {
  color: #ffffff;
  font-size: 17px;
}
.simple-success-actions { justify-content: flex-start; }
.invoice-preview {
  margin: 24px 0;
  border: 1px solid rgba(186,230,253,.20);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(240,249,255,.08);
  box-shadow: inset rgba(255,255,255,.08) 0 1px 0;
}
.invoice-preview-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  background: rgba(240,249,255,.08);
  border-bottom: 1px solid rgba(186,230,253,.16);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 800;
}
.invoice-preview-head strong {
  color: #bbf7d0;
  background: rgba(34,197,94,.16);
  border: 1px solid rgba(134,239,172,.34);
  border-radius: 999px;
  padding: 6px 10px;
}
.invoice-preview dl { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin: 0; }
.invoice-preview dl div { padding: 16px 18px; border-top: 1px solid rgba(186,230,253,.12); }
.invoice-preview dt { color: #8ed8fb; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.invoice-preview dd { margin: 0; color: #ffffff; font-weight: 700; }
.success-next-steps {
  display: flex;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(125,211,252,.22);
  border-radius: 16px;
  color: #d3e6f7;
  background: rgba(240,249,255,.07);
}
.success-next-steps strong { color: #7dd3fc; }
.payment-success-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; margin-top: 22px; }

@media (max-width: 720px) {
  .nav-menu { background: linear-gradient(180deg, rgba(3,9,20,.96), rgba(7,21,42,.94)); }
  .payment-success-modal { padding: 24px; border-radius: 24px; }
  .simple-success-summary { grid-template-columns: 1fr; }
  .payment-success-hero-card h1 { font-size: clamp(38px, 12vw, 54px); }
  .invoice-preview dl { grid-template-columns: 1fr; }
  .real-invoice-header,
  .invoice-summary-block,
  .invoice-parties { grid-template-columns: 1fr; }
  .real-invoice-header { flex-direction: column; }
  .invoice-brand-box { width: 100%; min-width: 0; }
  .invoice-meta-strip { grid-template-columns: 1fr; transform: none; margin-top: 18px; }
  .invoice-parties { padding-top: 24px; }
  .invoice-table-wrap { padding-inline: 14px; }
  .invoice-summary-block { padding-inline: 14px; }
  .invoice-watermark { bottom: 180px; opacity: .65; }
  .invoice-page-grid { grid-template-columns: 1fr; }
  .invoice-total-row { align-items: flex-start; flex-direction: column; }
  .payment-success-actions .btn { width: 100%; }
}

