:root {
      --orange: #f97316;
      --gold: #facc15;
      --dark1: #111827;
      --dark2: #1a2233;
      --dark3: #1f2937;
      --dark4: #374151;
      --muted: #9ca3af;
      --white: #ffffff;
      --green: #22c55e;
      --red: #ef4444;
    }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    overflow-x: clip;
    width: 100%;
      font-family: 'Hind Siliguri', sans-serif;
      background: var(--dark1);
      color: #e5e7eb;
      font-size: 1rem;
      line-height: 1.75;
      overflow-x: hidden;
    }

/* READING PROGRESS */
    #readingProgress {
      position: fixed;
      top: 0; left: 0;
      height: 3px;
      width: 0%;
      background: linear-gradient(90deg, var(--orange), var(--gold));
      z-index: 9999;
      transition: width 0.1s linear;
    }

.nav-cta {
      background: linear-gradient(135deg, var(--orange), #ea580c) !important;
      color: #fff !important;
      padding: 0.45rem 1.1rem !important;
      border-radius: 8px;
      font-weight: 700;
    }

.nav-cta:hover {
      background: linear-gradient(135deg, #fb923c, var(--orange)) !important;
      color: #fff !important;
    }

/* BREADCRUMB */
    .breadcrumb-bar {
      background: var(--dark2);
      border-bottom: 1px solid rgba(249,115,22,0.1);
      padding: 0.65rem 0;
    }

.breadcrumb { margin: 0; background: none; padding: 0; }

.breadcrumb-item a {
      color: var(--orange);
      text-decoration: none;
      font-size: 0.82rem;
    }

.breadcrumb-item.active {
      color: var(--muted);
      font-size: 0.82rem;
    }

.breadcrumb-item + .breadcrumb-item::before {
      color: var(--muted);
      content: "›";
    }

/* HERO */
    .page-hero {
      background: linear-gradient(135deg, #0f172a 0%, #1a2233 50%, #111827 100%);
      padding: 5rem 0 4rem;
      position: relative;
      overflow: hidden;
    }

.page-hero::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 420px; height: 420px;
      background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

.page-hero::after {
      content: '';
      position: absolute;
      bottom: -60px; left: -60px;
      width: 320px; height: 320px;
      background: radial-gradient(circle, rgba(250,204,21,0.07) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

.hero-badge {
      display: inline-flex;
      align-items: center;
      background: rgba(249,115,22,0.12);
      border: 1px solid rgba(249,115,22,0.3);
      color: var(--orange);
      font-size: 0.78rem;
      font-weight: 700;
      padding: 0.35rem 1rem;
      border-radius: 50px;
      margin-bottom: 1.2rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

.page-hero h1 {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.25;
      margin-bottom: 1rem;
    }

.page-hero h1 span {
      background: linear-gradient(90deg, var(--orange), var(--gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

.page-hero .lead {
      color: #9ca3af;
      font-size: 1.02rem;
      margin-bottom: 2rem;
      max-width: 540px;
    }

.hero-badges-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin-top: 0.5rem;
    }

.hbadge {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      color: #d1d5db;
      font-size: 0.78rem;
      font-weight: 600;
      padding: 0.3rem 0.8rem;
      border-radius: 50px;
      display: flex;
      align-items: center;
      gap: 0.35rem;
    }

.hbadge i { color: var(--gold); }

/* REGISTER FORM CARD */
    .reg-card {
      background: var(--dark3);
      border: 1px solid rgba(249,115,22,0.18);
      border-radius: 20px;
      padding: 2.2rem 2rem;
      position: relative;
      overflow: hidden;
      box-shadow: 0 8px 40px rgba(0,0,0,0.35);
    }

.reg-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--gold), var(--orange));
    }

.reg-card-title {
      font-size: 1.25rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.3rem;
      text-align: center;
    }

.reg-card-sub {
      font-size: 0.83rem;
      color: var(--muted);
      text-align: center;
      margin-bottom: 1.5rem;
    }

.form-label {
      font-size: 0.83rem;
      font-weight: 700;
      color: #d1d5db;
      margin-bottom: 0.4rem;
    }

.form-control, .form-select {
      background: var(--dark2);
      border: 1px solid rgba(255,255,255,0.1);
      color: #e5e7eb;
      border-radius: 10px;
      padding: 0.65rem 1rem;
      font-family: 'Hind Siliguri', sans-serif;
      font-size: 0.9rem;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

.form-control:focus, .form-select:focus {
      background: var(--dark2);
      border-color: var(--orange);
      color: #e5e7eb;
      box-shadow: 0 0 0 3px rgba(249,115,22,0.15);
      outline: none;
    }

.form-control::placeholder { color: #6b7280; }

.form-select option { background: var(--dark2); }

.input-group-text {
      background: var(--dark2);
      border: 1px solid rgba(255,255,255,0.1);
      border-right: none;
      color: var(--muted);
      border-radius: 10px 0 0 10px;
    }

.input-group .form-control {
      border-left: none;
      border-radius: 0 10px 10px 0;
    }

.input-group .form-control:focus { box-shadow: none; border-color: var(--orange); }

.input-group:focus-within .input-group-text {
      border-color: var(--orange);
    }

.btn-register {
      background: linear-gradient(135deg, var(--orange), #ea580c);
      border: none;
      color: #fff;
      font-weight: 800;
      font-size: 1rem;
      padding: 0.85rem;
      border-radius: 12px;
      width: 100%;
      cursor: pointer;
      transition: all 0.25s;
      font-family: 'Hind Siliguri', sans-serif;
      letter-spacing: 0.02em;
      box-shadow: 0 4px 20px rgba(249,115,22,0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }

.btn-register:hover {
      background: linear-gradient(135deg, #fb923c, var(--orange));
      transform: translateY(-2px);
      box-shadow: 0 6px 28px rgba(249,115,22,0.45);
    }

.divider-or {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin: 1.2rem 0;
      color: var(--muted);
      font-size: 0.78rem;
    }

.divider-or::before, .divider-or::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(255,255,255,0.07);
    }

.login-link-row {
      text-align: center;
      font-size: 0.83rem;
      color: var(--muted);
      margin-top: 1rem;
    }

.login-link-row a {
      color: var(--orange);
      text-decoration: none;
      font-weight: 700;
    }

.login-link-row a:hover { text-decoration: underline; }

.form-check-input:checked {
      background-color: var(--orange);
      border-color: var(--orange);
    }

.form-check-label {
      font-size: 0.8rem;
      color: var(--muted);
    }

.form-check-label a {
      color: var(--orange);
      text-decoration: none;
    }

.pass-toggle {
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: var(--muted);
      cursor: pointer;
      font-size: 0.85rem;
      padding: 0;
      z-index: 5;
    }

.pass-wrap { position: relative; }

.pass-wrap .form-control { padding-right: 2.5rem; }

/* BONUS BANNER */
    .bonus-banner {
      background: linear-gradient(135deg, rgba(249,115,22,0.15), rgba(250,204,21,0.08));
      border: 1px solid rgba(250,204,21,0.25);
      border-radius: 14px;
      padding: 1rem 1.2rem;
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.9rem;
    }

.bonus-icon {
      font-size: 2rem;
      flex-shrink: 0;
    }

.bonus-text strong {
      color: var(--gold);
      font-size: 0.9rem;
      display: block;
      font-weight: 800;
    }

.bonus-text span {
      font-size: 0.78rem;
      color: #d1d5db;
    }

/* STEPS */
    .section-pad { padding: 5rem 0; }

.section-title {
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 800;
      color: #fff;
    }

.section-title .hl {
      background: linear-gradient(90deg, var(--orange), var(--gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

.divider-line {
      width: 50px;
      height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--gold));
      border-radius: 3px;
      margin-bottom: 1rem;
    }

.step-card {
      background: var(--dark3);
      border: 1px solid rgba(249,115,22,0.1);
      border-radius: 16px;
      padding: 2rem 1.5rem;
      height: 100%;
      position: relative;
      transition: border-color 0.25s, transform 0.25s;
      overflow: hidden;
    }

.step-card:hover {
      border-color: rgba(249,115,22,0.35);
      transform: translateY(-4px);
    }

.step-num-badge {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, var(--orange), #ea580c);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      font-weight: 900;
      color: #fff;
      margin-bottom: 1rem;
      box-shadow: 0 4px 16px rgba(249,115,22,0.3);
    }

.step-card h5 {
      font-size: 1.02rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.5rem;
    }

.step-card p {
      font-size: 0.87rem;
      color: #9ca3af;
      margin: 0;
      line-height: 1.65;
    }

/* FEATURE CARDS */
    .feat-card {
      background: var(--dark3);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 18px;
      padding: 2rem 1.6rem;
      height: 100%;
      transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    }

.feat-card:hover {
      border-color: rgba(249,115,22,0.3);
      transform: translateY(-5px);
      box-shadow: 0 12px 40px rgba(249,115,22,0.08);
    }

.feat-icon {
      font-size: 2.4rem;
      margin-bottom: 1rem;
    }

.feat-title {
      font-size: 1.05rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.55rem;
    }

.feat-text {
      font-size: 0.87rem;
      color: #9ca3af;
      line-height: 1.7;
    }

/* PROSE SECTION */
    .bg-dark2 { background: var(--dark2); }

.prose-wrap {
      max-width: 820px;
      margin: 0 auto;
    }

.prose-wrap h2 {
      font-size: 1.5rem;
      font-weight: 800;
      color: #fff;
      margin-top: 2.5rem;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

.prose-wrap h2 .h2-icon {
      width: 36px; height: 36px;
      background: rgba(249,115,22,0.12);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--orange);
      font-size: 0.9rem;
      flex-shrink: 0;
    }

.prose-wrap p {
      font-size: 0.95rem;
      color: #9ca3af;
      margin-bottom: 1rem;
      line-height: 1.85;
    }

.prose-wrap ul {
      padding-left: 1.2rem;
      margin-bottom: 1rem;
    }

.prose-wrap ul li {
      font-size: 0.9rem;
      color: #9ca3af;
      margin-bottom: 0.5rem;
      line-height: 1.7;
    }

.prose-wrap strong { color: #e5e7eb; }

.info-strip {
      background: rgba(249,115,22,0.07);
      border-left: 3px solid var(--orange);
      border-radius: 0 10px 10px 0;
      padding: 1rem 1.2rem;
      margin: 1.5rem 0;
    }

.info-strip p { margin: 0; font-size: 0.88rem; color: #d1d5db; }

/* PAYMENT GRID */
    .payment-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: 1rem;
    }

.pay-badge {
      background: var(--dark3);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 10px;
      padding: 0.6rem 1.1rem;
      font-size: 0.82rem;
      font-weight: 700;
      color: #e5e7eb;
      display: flex;
      align-items: center;
      gap: 0.45rem;
    }

.pay-badge .dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--green);
    }

/* BONUS TABLE */
    .bonus-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 1rem;
      font-size: 0.88rem;
    }

.bonus-table th {
      background: rgba(249,115,22,0.12);
      color: var(--orange);
      font-weight: 700;
      padding: 0.75rem 1rem;
      text-align: left;
      border-bottom: 1px solid rgba(249,115,22,0.2);
    }

.bonus-table td {
      padding: 0.75rem 1rem;
      color: #9ca3af;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

.bonus-table tr:last-child td { border-bottom: none; }

.bonus-table tr:hover td { background: rgba(249,115,22,0.04); }

.td-hl { color: var(--gold); font-weight: 700; }

/* FAQ */
    .accordion-item {
      background: var(--dark3);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 12px !important;
      margin-bottom: 0.6rem;
      overflow: hidden;
    }

.accordion-button {
      background: var(--dark3);
      color: #e5e7eb;
      font-weight: 700;
      font-family: 'Hind Siliguri', sans-serif;
      font-size: 0.92rem;
      border-radius: 12px !important;
    }

.accordion-button:not(.collapsed) {
      background: rgba(249,115,22,0.08);
      color: var(--orange);
      box-shadow: none;
    }

.accordion-button::after {
      filter: invert(60%) sepia(80%) saturate(500%) hue-rotate(10deg);
    }

.accordion-button:focus { box-shadow: none; }

.accordion-body {
    overflow-x: clip;
    width: 100%;
      background: var(--dark3);
      color: #9ca3af;
      font-size: 0.88rem;
      line-height: 1.75;
    }

/* CTA STRIP */
    .cta-strip {
      background: linear-gradient(135deg, #1a1000 0%, #2d1200 50%, #1a0a00 100%);
      border-top: 1px solid rgba(249,115,22,0.2);
      border-bottom: 1px solid rgba(249,115,22,0.2);
      padding: 4rem 0;
      position: relative;
      overflow: hidden;
    }

.cta-strip::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 600px; height: 300px;
      background: radial-gradient(ellipse, rgba(249,115,22,0.1) 0%, transparent 70%);
      pointer-events: none;
    }

.cta-inner { text-align: center; position: relative; z-index: 1; }

.cta-inner h3 {
      font-size: clamp(1.5rem, 3vw, 2.1rem);
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.8rem;
    }

.cta-inner h3 span {
      background: linear-gradient(90deg, var(--orange), var(--gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

.cta-inner p {
      color: #9ca3af;
      font-size: 0.95rem;
      max-width: 520px;
      margin: 0 auto 2rem;
    }

.btn-fire {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: linear-gradient(135deg, var(--orange), #ea580c);
      color: #fff;
      font-weight: 800;
      font-size: 0.95rem;
      padding: 0.85rem 2rem;
      border-radius: 12px;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(249,115,22,0.35);
      transition: all 0.25s;
      font-family: 'Hind Siliguri', sans-serif;
    }

.btn-fire:hover {
      background: linear-gradient(135deg, #fb923c, var(--orange));
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(249,115,22,0.45);
      color: #fff;
    }

.btn-outline-o {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: transparent;
      color: var(--orange);
      font-weight: 800;
      font-size: 0.95rem;
      padding: 0.85rem 2rem;
      border-radius: 12px;
      text-decoration: none;
      border: 2px solid rgba(249,115,22,0.4);
      transition: all 0.25s;
      margin-left: 0.75rem;
      font-family: 'Hind Siliguri', sans-serif;
    }

.btn-outline-o:hover {
      background: rgba(249,115,22,0.08);
      border-color: var(--orange);
      color: var(--orange);
      transform: translateY(-2px);
    }

.cta-trust {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.2rem;
      margin-top: 1.8rem;
    }

.cta-trust span {
      color: #9ca3af;
      font-size: 0.8rem;
      display: flex;
      align-items: center;
      gap: 0.35rem;
    }

.cta-trust span i { color: var(--green); }

/* RESPONSIVE */
    @media (max-width: 768px) {
.page-hero { padding: 3rem 0 2.5rem; }

.btn-outline-o { margin-left: 0; margin-top: 0.5rem; }

.reg-card { padding: 1.5rem 1rem; }

.bonus-table { font-size: 0.78rem; }

.bonus-table th, .bonus-table td { padding: 0.55rem 0.65rem; }
}
