:root {
  --bg: #080914;
  --bg-2: #111324;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.24);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.66);
  --soft: rgba(255, 255, 255, 0.46);
  --pink: #ec4899;
  --violet: #7c3aed;
  --amber: #f59e0b;
  --cyan: #22d3ee;
  --green: #22c55e;
  --red: #fb7185;
  --dark-text: #101828;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  --radius-lg: 14px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(145deg, #05020d 0%, #150926 44%, #0b1020 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(236, 72, 153, 0.08), transparent 32%, rgba(34, 211, 238, 0.07) 70%, rgba(245, 158, 11, 0.08)),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(34, 211, 238, 0.36);
  outline-offset: 2px;
}

.is-hidden {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 14px clamp(16px, 4vw, 44px);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 9, 20, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--amber), var(--pink) 45%, var(--violet) 78%, var(--cyan));
  box-shadow: 0 10px 34px rgba(236, 72, 153, 0.22);
}

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

.brand-mark svg {
  width: 20px;
  height: 20px;
}

.brand-mark.large svg {
  width: 28px;
  height: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--violet));
  color: #fff;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 16px 38px rgba(236, 72, 153, 0.24);
  white-space: nowrap;
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(36px, 7vw, 78px) 0 44px;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.hero-copy h1 span {
  display: block;
  background: linear-gradient(90deg, #d8b4fe 0%, #f9a8d4 46%, #fed7aa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  max-width: 100%;
}

.trust-list {
  display: grid;
  gap: 9px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.55;
}

.trust-list p {
  margin: 0;
}

.trust-list strong:nth-child(1) {
  color: #f9a8d4;
}

.notice-row,
.latest-note,
.payment-warning {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
}

.notice-row {
  max-width: 650px;
  margin-top: 20px;
  padding: 13px 15px;
}

.notice-row svg,
.latest-note svg,
.payment-warning svg {
  width: 19px;
  height: 19px;
  color: var(--amber);
  flex: 0 0 auto;
}

.deal-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  max-width: 760px;
  margin-top: 26px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(105deg, rgba(124, 58, 237, 0.95), rgba(236, 72, 153, 0.9), rgba(245, 158, 11, 0.9));
  box-shadow: 0 22px 70px rgba(236, 72, 153, 0.26);
}

.deal-panel h2,
.deal-panel p {
  margin: 0;
}

.deal-panel h2 {
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.1;
}

.deal-panel p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.countdown {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 8px;
  align-items: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 24px;
  font-weight: 950;
}

.countdown span {
  min-width: 56px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  text-align: center;
}

.countdown small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.72);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.start-card,
.feature-card,
.profile-strip,
.locked-state,
.package-card,
.review-grid article,
.faq-list details,
.legal-card,
.payment-card,
.exit-card,
.support-panel,
.admin-card,
.admin-section {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.start-card {
  display: grid;
  gap: 12px;
  max-width: 650px;
  margin-top: 28px;
  padding: 20px;
}

.form-title {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 850;
}

.input-wrap {
  position: relative;
  display: block;
}

.input-wrap svg,
.phone-wrap span {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.78);
}

.input-wrap svg {
  width: 20px;
  height: 20px;
}

.phone-wrap span {
  font-size: 14px;
  font-weight: 900;
}

.input-wrap input,
.support-panel input,
.support-panel textarea,
.paid-form input,
.admin-input,
.admin-select,
.admin-textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  padding: 0 14px;
}

.input-wrap input {
  padding-left: 48px;
}

.phone-wrap input {
  padding-left: 58px;
}

.support-panel textarea,
.admin-textarea {
  min-height: 110px;
  padding-top: 12px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.form-error {
  min-height: 18px;
  margin: 0;
  color: #fecdd3;
  font-size: 13px;
  font-weight: 800;
}

.primary-btn,
.success-btn,
.light-btn,
.ghost-btn,
.close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 950;
}

.primary-btn {
  background: linear-gradient(90deg, var(--pink), var(--violet));
  color: #fff;
  box-shadow: 0 16px 40px rgba(236, 72, 153, 0.28);
}

.primary-btn:hover,
.success-btn:hover,
.light-btn:hover {
  transform: translateY(-1px);
}

.primary-btn svg,
.success-btn svg,
.light-btn svg,
.ghost-btn svg {
  width: 18px;
  height: 18px;
}

.success-btn {
  background: linear-gradient(90deg, #16a34a, #22c55e);
  color: #fff;
}

.light-btn {
  padding: 0 20px;
  background: #fff;
  color: #5b21b6;
}

.ghost-btn {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  padding: 0 18px;
}

.start-card small {
  color: var(--soft);
  font-weight: 700;
}

.social-proof {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 850;
}

.social-proof svg {
  width: 19px;
  height: 19px;
}

.social-proof svg:nth-child(1) {
  color: #86efac;
}

.social-proof svg:nth-child(2) {
  color: #fde68a;
}

.social-proof svg:nth-child(3) {
  color: #93c5fd;
}

.feature-card {
  position: relative;
  padding: 24px;
}

.feature-card::before,
.payment-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.4), rgba(236, 72, 153, 0.42), rgba(34, 211, 238, 0.34));
  opacity: 0.42;
}

.feature-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feature-card-head h2,
.feature-card-head p {
  margin: 0;
}

.feature-card-head h2 {
  font-size: 24px;
}

.feature-card-head p {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.mini-grid article,
.feature-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
}

.mini-grid article {
  min-height: 116px;
  padding: 15px;
}

.mini-grid svg,
.feature-grid svg {
  width: 24px;
  height: 24px;
  color: var(--cyan);
}

.mini-grid strong {
  display: block;
  margin-top: 14px;
  font-size: 14px;
}

.offers-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 52px;
  margin-top: 24px;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  padding: 16px 0 0;
  text-align: left;
  font-weight: 800;
}

.offers-toggle strong {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 999px;
  background: rgba(236, 72, 153, 0.2);
  color: #fff;
  padding: 7px 10px;
  font-size: 12px;
}

.offers-toggle svg {
  width: 14px;
  height: 14px;
}

.offers-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.offers-list div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
  color: var(--muted);
  padding: 11px 12px;
  font-size: 14px;
  font-weight: 750;
}

.profile-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  padding: 16px;
}

.profile-avatar {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--violet), var(--cyan));
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-avatar svg {
  width: 28px;
  height: 28px;
}

.profile-main {
  min-width: 0;
  flex: 1;
}

.profile-main p,
.profile-main h2,
.profile-main span {
  margin: 0;
}

.profile-main p {
  color: var(--soft);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.profile-main h2 {
  margin-top: 2px;
  overflow-wrap: anywhere;
  font-size: 24px;
}

.profile-main span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.profile-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.profile-stats span {
  display: inline-flex;
  min-width: 88px;
  flex-direction: column;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  padding: 9px 11px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.profile-stats strong {
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p {
  max-width: 670px;
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

#features,
#reviews,
.faq-shell {
  padding: 72px 0 0;
}

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

.feature-grid article,
.review-grid article {
  padding: 20px;
}

.feature-grid h3,
.feature-grid p,
.review-grid p,
.review-grid strong {
  margin: 0;
}

.feature-grid h3 {
  margin-top: 18px;
  font-size: 18px;
}

.feature-grid p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.packages-section {
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  padding: 64px 0;
}

.latest-note {
  max-width: 320px;
  padding: 12px 14px;
  color: var(--muted);
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -6px 0 18px;
}

.service-tabs button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  padding: 0 16px;
  font-size: 14px;
  font-weight: 950;
}

.service-tabs button.active,
.service-tabs button:hover {
  border-color: rgba(236, 72, 153, 0.6);
  background: linear-gradient(90deg, rgba(236, 72, 153, 0.24), rgba(124, 58, 237, 0.24));
  color: #fff;
}

.purchase-ticker {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 38px;
  margin-bottom: 18px;
  border: 1px solid rgba(34, 197, 94, 0.28);
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.11);
  color: #bbf7d0;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 900;
}

.locked-state {
  display: grid;
  place-items: center;
  min-height: 230px;
  padding: 32px;
  text-align: center;
}

.locked-state svg {
  width: 42px;
  height: 42px;
  color: var(--amber);
}

.locked-state h3,
.locked-state p {
  margin: 0;
}

.locked-state h3 {
  margin-top: 14px;
  font-size: 24px;
}

.locked-state p {
  margin-top: 8px;
  color: var(--muted);
}

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

.package-card {
  position: relative;
  display: flex;
  min-height: 285px;
  flex-direction: column;
  padding: 18px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.package-card:hover {
  transform: translateY(-5px);
  border-color: rgba(236, 72, 153, 0.6);
  background: var(--panel-strong);
}

.popular-pill {
  align-self: flex-start;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.16);
  color: #fde68a;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.package-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-top: 14px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--pink), var(--violet), var(--cyan));
}

.package-icon svg {
  width: 22px;
  height: 22px;
}

.package-card h3,
.package-card p {
  margin: 0;
}

.package-card h3 {
  margin-top: 16px;
  font-size: 19px;
  line-height: 1.2;
}

.package-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
}

.price-row strong {
  font-size: 31px;
  line-height: 1;
}

.price-row del {
  color: var(--soft);
  font-weight: 800;
}

.package-card button {
  width: 100%;
  margin-top: 16px;
}

.stars {
  color: #fbbf24;
  letter-spacing: 2px;
  font-weight: 950;
}

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

.review-grid p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.review-grid strong {
  display: block;
  margin-top: 18px;
}

.faq-shell {
  padding-bottom: 70px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-size: 17px;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 0 20px 18px;
  line-height: 1.55;
}

.loading-overlay,
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(18px);
}

.loading-card {
  width: min(390px, 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #140a21;
  padding: 30px;
  text-align: center;
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.58);
}

.loading-card h2,
.loading-card p {
  margin: 0;
}

.loading-card h2 {
  margin-top: 18px;
  font-size: 22px;
}

.loading-card p {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

.progress-track {
  height: 8px;
  overflow: hidden;
  margin-top: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--pink), var(--violet), var(--cyan));
  transition: width 0.35s ease;
}

.loading-steps {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  text-align: left;
}

.loading-step {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--soft);
  font-size: 14px;
  font-weight: 800;
}

.loading-step span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: inherit;
  font-size: 12px;
}

.loading-step.active {
  color: #fff;
}

.loading-step.done {
  color: #86efac;
}

.payment-card {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  background: #101322;
  padding: 22px;
}

.close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  min-height: 38px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0;
}

.close-btn svg {
  width: 18px;
  height: 18px;
}

.payment-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  padding-right: 32px;
}

.payment-head p,
.payment-head h2,
.payment-head span {
  margin: 0;
}

.payment-head p {
  color: var(--soft);
  font-weight: 850;
}

.payment-head h2 {
  margin-top: 4px;
  font-size: 24px;
  line-height: 1.16;
}

.payment-head span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 800;
}

.payment-head strong {
  color: #fff;
  font-size: 34px;
  line-height: 1;
  white-space: nowrap;
}

.payment-warning {
  margin-top: 18px;
  padding: 12px;
}

.qr-box {
  display: grid;
  width: min(320px, 100%);
  margin: 20px auto 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  padding: 12px;
}

.qr-box img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.payment-timer {
  margin-top: 12px;
  color: var(--muted);
  text-align: center;
  font-weight: 850;
}

.payment-timer span {
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.upi-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.2);
  padding: 10px;
}

.upi-copy span {
  min-width: 0;
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 850;
}

.upi-copy button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  padding: 0 12px;
  font-weight: 900;
}

.upi-copy svg {
  width: 15px;
  height: 15px;
}

.payment-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.upi-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

.upi-apps span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 850;
}

.paid-form {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.paid-form label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.paid-form p {
  min-height: 18px;
  margin: 0;
  color: #fde68a;
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.exit-card {
  width: min(420px, 100%);
  background: #101322;
  padding: 24px;
  text-align: center;
}

.exit-card h2,
.exit-card p {
  margin: 0;
}

.exit-card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.exit-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.support-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 55;
}

.support-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(90deg, #0f172a, #701a75);
  color: #fff;
  padding: 0 16px;
  font-weight: 950;
  box-shadow: var(--shadow);
}

.support-button svg {
  width: 18px;
  height: 18px;
}

.support-panel {
  position: absolute;
  right: 0;
  bottom: 58px;
  display: grid;
  width: min(340px, calc(100vw - 36px));
  gap: 10px;
  padding: 14px;
  background: #101322;
}

.support-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.support-head button {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.support-head svg {
  width: 16px;
  height: 16px;
}

.support-panel p {
  min-height: 18px;
  margin: 0;
  color: #86efac;
  font-size: 13px;
  font-weight: 850;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 24px clamp(16px, 4vw, 44px);
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  font-size: 14px;
  font-weight: 800;
}

.footer-note {
  flex-basis: 100%;
  margin: -4px 0 0;
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.site-footer a:hover {
  color: #fff;
}

.legal-page {
  display: grid;
  min-height: calc(100vh - 145px);
  place-items: start center;
  padding: 70px 16px;
}

.legal-card {
  width: min(820px, 100%);
  padding: clamp(22px, 4vw, 38px);
}

.legal-card h1 {
  margin: 18px 0 0;
  font-size: clamp(34px, 5vw, 54px);
}

.legal-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f9a8d4;
  font-weight: 900;
}

.back-link svg {
  width: 17px;
  height: 17px;
}

.admin-body {
  background: #f6f7fb;
  color: #101828;
}

.admin-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  border-right: 1px solid #e4e7ec;
  background: #0f172a;
  color: #fff;
  padding: 22px;
}

.admin-sidebar .brand {
  margin-bottom: 24px;
}

.admin-tabs {
  display: grid;
  gap: 8px;
}

.admin-tabs button {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  padding: 0 12px;
  text-align: left;
  font-weight: 850;
}

.admin-tabs button.active,
.admin-tabs button:hover {
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
}

.admin-tabs svg {
  width: 18px;
  height: 18px;
}

.admin-main {
  min-width: 0;
  padding: 26px;
}

.admin-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.admin-top h1,
.admin-top p {
  margin: 0;
}

.admin-top p {
  color: #667085;
  font-weight: 800;
}

.admin-top h1 {
  margin-top: 4px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

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

.admin-card,
.admin-section {
  border-color: #e4e7ec;
  background: #fff;
  box-shadow: 0 14px 40px rgba(16, 24, 40, 0.08);
}

.admin-card {
  padding: 18px;
}

.admin-card p,
.admin-card strong {
  display: block;
  margin: 0;
}

.admin-card p {
  color: #667085;
  font-weight: 850;
}

.admin-card strong {
  margin-top: 8px;
  color: #101828;
  font-size: 28px;
  line-height: 1;
}

.admin-section {
  margin-top: 18px;
  padding: 18px;
}

.admin-section h2 {
  margin: 0 0 16px;
}

.admin-tools,
.admin-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 180px auto;
  gap: 10px;
  align-items: center;
}

.admin-form-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
}

.admin-input,
.admin-select,
.admin-textarea {
  border-color: #d0d5dd;
  background: #fff;
  color: #101828;
}

.admin-input::placeholder,
.admin-textarea::placeholder {
  color: #98a2b3;
}

.admin-label {
  display: grid;
  gap: 7px;
  color: #475467;
  font-size: 13px;
  font-weight: 850;
}

.admin-table-wrap {
  margin-top: 14px;
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 1050px;
  border-collapse: collapse;
  font-size: 14px;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid #eef2f6;
  padding: 13px 12px;
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  background: #f8fafc;
  color: #475467;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.admin-table td {
  color: #344054;
}

.admin-table strong {
  color: #101828;
}

.status-pill {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 9px;
  background: #fef3c7;
  color: #92400e;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.status-pill.paid,
.status-pill.completed {
  background: #dcfce7;
  color: #166534;
}

.status-pill.failed,
.status-pill.refunded,
.status-pill.cancelled {
  background: #fee2e2;
  color: #991b1b;
}

.admin-btn,
.danger-btn,
.dark-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid #d0d5dd;
  border-radius: var(--radius);
  background: #fff;
  color: #101828;
  padding: 0 14px;
  font-weight: 900;
}

.dark-btn {
  border-color: #101828;
  background: #101828;
  color: #fff;
}

.danger-btn {
  border-color: #fecdd3;
  background: #fff1f2;
  color: #be123c;
}

.admin-login {
  display: grid;
  min-height: 100vh;
  place-items: center;
  background: linear-gradient(145deg, #080914, #111324);
  color: #fff;
  padding: 16px;
}

.login-card {
  width: min(420px, 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  padding: 24px;
  box-shadow: var(--shadow);
}

.login-card h1,
.login-card p {
  margin: 0;
}

.login-card p {
  margin-top: 8px;
  color: var(--muted);
}

.login-card form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.warning-box {
  border: 1px solid #fed7aa;
  border-radius: var(--radius);
  background: #fff7ed;
  color: #9a3412;
  padding: 12px;
  font-weight: 850;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .feature-card {
    max-width: 760px;
  }

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

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

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .deal-panel,
  .section-heading.split,
  .site-footer,
  .payment-head,
  .admin-top {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .deal-panel {
    display: grid;
  }

  .light-btn {
    width: 100%;
  }

  .section-heading.split {
    display: flex;
  }

  .latest-note {
    max-width: none;
  }

  .payment-actions,
  .exit-actions,
  .admin-tools,
  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
  }

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

@media (max-width: 620px) {
  .section-shell {
    width: min(calc(100% - 24px), 1180px);
  }

  .hero {
    padding-top: 28px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.05;
  }

  .site-header {
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand span:last-child {
    overflow-wrap: anywhere;
  }

  .nav-cta {
    padding: 0 14px;
  }

  .trust-list {
    font-size: 15px;
  }

  .trust-list p {
    overflow-wrap: anywhere;
  }

  .start-card,
  .feature-card,
  .profile-strip,
  .payment-card {
    border-radius: 12px;
  }

  .mini-grid,
  .feature-grid,
  .review-grid,
  .package-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .profile-strip {
    align-items: flex-start;
  }

  .profile-avatar {
    width: 54px;
    height: 54px;
  }

  .countdown {
    justify-content: flex-start;
  }

  .payment-head {
    padding-right: 42px;
  }

  .payment-head strong {
    font-size: 30px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .footer-note {
    text-align: left;
  }

  .support-widget {
    right: 12px;
    bottom: 12px;
  }

  .admin-main {
    padding: 16px;
  }

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