:root {
      --orange:  #f97316;
      --gold:    #facc15;
      --dark:    #111827;
      --dark2:   #1a2234;
      --dark3:   #1f2937;
      --dark4:   #0d1420;
      --muted:   #9ca3af;
      --text:    #e5e7eb;
    }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    overflow-x: clip;
    width: 100%;
      background: var(--dark);
      color: var(--text);
      font-family: 'Hind Siliguri', 'Inter', sans-serif;
      line-height: 1.75;
      overflow-x: hidden;
    }

.nav-cta { background: var(--orange) !important; color: #fff !important; padding: 0.45rem 1.1rem !important; border-radius: 6px; }

.nav-cta:hover { background: #ea580c !important; color: #fff !important; }

/* ── BREADCRUMB ── */
    .breadcrumb-bar {
      background: var(--dark2);
      border-bottom: 1px solid rgba(249,115,22,0.12);
      padding: 0.65rem 0;
    }

.breadcrumb { margin: 0; background: transparent; padding: 0; }

.breadcrumb-item a { color: var(--orange); text-decoration: none; font-size: 0.83rem; }

.breadcrumb-item.active { color: var(--muted); font-size: 0.83rem; }

.breadcrumb-item + .breadcrumb-item::before { color: var(--muted); }

/* ── PAGE HERO ── */
    .page-hero {
      background: linear-gradient(135deg, #0d1420 0%, #1a2234 50%, #0f1a10 100%);
      padding: 4.5rem 0 3.5rem;
      position: relative;
      overflow: hidden;
    }

.page-hero::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(circle at 15% 50%, rgba(249,115,22,0.13), transparent 45%),
        radial-gradient(circle at 85% 25%, rgba(250,204,21,0.09), transparent 40%);
    }

.page-hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(249,115,22,0.4), transparent);
    }

.hero-badge {
      display: inline-flex;
      align-items: center;
      background: rgba(249,115,22,0.15);
      border: 1px solid rgba(249,115,22,0.35);
      color: var(--orange);
      font-size: 0.82rem;
      font-weight: 700;
      padding: 0.4rem 1rem;
      border-radius: 50px;
      margin-bottom: 1.2rem;
      letter-spacing: 0.04em;
    }

.page-hero h1 {
      font-size: clamp(1.7rem, 3.5vw, 2.6rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.3;
      margin-bottom: 1rem;
    }

.page-hero h1 span { color: var(--orange); }

.page-hero .lead { color: #d1d5db; font-size: 0.98rem; max-width: 580px; }

.hero-meta {
      display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 1.8rem;
    }

.hero-meta-item {
      display: flex; align-items: center; gap: 0.45rem;
      font-size: 0.83rem; color: var(--muted);
    }

.hero-meta-item i { color: var(--orange); }

.hero-shield {
      font-size: 7rem;
      line-height: 1;
      filter: drop-shadow(0 0 30px rgba(249,115,22,0.3));
      animation: floatShield 3s ease-in-out infinite;
    }

@keyframes floatShield {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

/* ── SECTION COMMON ── */
    .section-pad { padding: 5rem 0; }

.bg-dark2 { background: var(--dark2); }

.divider-line {
      width: 48px; height: 4px;
      background: linear-gradient(90deg, var(--orange), var(--gold));
      border-radius: 2px; margin-bottom: 1rem;
    }

.section-title { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; color: #fff; }

.section-title .hl { color: var(--orange); }

/* ── FEATURE CARDS ── */
    .feat-card {
      background: var(--dark2);
      border: 1px solid rgba(249,115,22,0.12);
      border-radius: 16px;
      padding: 2rem 1.6rem;
      height: 100%;
      transition: all 0.35s;
      position: relative;
      overflow: hidden;
    }

.feat-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--gold));
      opacity: 0;
      transition: opacity 0.3s;
    }

.feat-card:hover {
      border-color: rgba(249,115,22,0.35);
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(249,115,22,0.13);
    }

.feat-card:hover::after { opacity: 1; }

.feat-icon {
      width: 58px; height: 58px;
      background: linear-gradient(135deg, rgba(249,115,22,0.2), rgba(250,204,21,0.1));
      border: 1px solid rgba(249,115,22,0.25);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; margin-bottom: 1.2rem;
    }

.feat-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.55rem; }

.feat-text { color: var(--muted); font-size: 0.86rem; line-height: 1.75; }

/* ── TOC SIDEBAR ── */
    .toc-card {
      background: var(--dark2);
      border: 1px solid rgba(249,115,22,0.18);
      border-radius: 14px;
      padding: 1.6rem;
      position: sticky;
      top: 80px;
    }

.toc-title {
      font-size: 0.88rem; font-weight: 800;
      color: var(--orange); text-transform: uppercase;
      letter-spacing: 0.06em; margin-bottom: 1rem;
      display: flex; align-items: center; gap: 0.5rem;
    }

.toc-list { list-style: none; padding: 0; margin: 0; }

.toc-list li { margin-bottom: 0.35rem; }

.toc-list a {
      color: var(--muted); text-decoration: none;
      font-size: 0.82rem; font-weight: 500;
      display: flex; align-items: center; gap: 0.5rem;
      padding: 0.35rem 0.5rem; border-radius: 6px; transition: all 0.2s;
    }

.toc-list a:hover, .toc-list a.toc-active { color: var(--orange); background: rgba(249,115,22,0.08); }

.toc-list a::before {
      content: ''; width: 6px; height: 6px;
      border-radius: 50%; background: rgba(249,115,22,0.35);
      flex-shrink: 0; transition: background 0.2s;
    }

.toc-list a:hover::before, .toc-list a.toc-active::before { background: var(--orange); }

/* ── PRIVACY CONTENT ── */
    .privacy-wrap { padding: 4rem 0; }

.priv-section {
      margin-bottom: 3rem;
      scroll-margin-top: 90px;
    }

.priv-section-header {
      display: flex; align-items: center; gap: 0.8rem;
      margin-bottom: 1.3rem; padding-bottom: 0.9rem;
      border-bottom: 1px solid rgba(249,115,22,0.15);
    }

.priv-num {
      width: 38px; height: 38px;
      background: linear-gradient(135deg, var(--orange), #ea580c);
      border-radius: 9px;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.85rem; font-weight: 800; color: #fff; flex-shrink: 0;
    }

.priv-section h2 { font-size: 1.15rem; font-weight: 800; color: #fff; margin: 0; }

.priv-section p {
      color: #d1d5db; font-size: 0.92rem; line-height: 1.88; margin-bottom: 0.9rem;
    }

.priv-section p:last-child { margin-bottom: 0; }

.priv-section ul { list-style: none; padding: 0; margin: 0.6rem 0 1rem; }

.priv-section ul li {
      color: #d1d5db; font-size: 0.92rem;
      line-height: 1.8; padding: 0.3rem 0 0.3rem 1.5rem; position: relative;
    }

.priv-section ul li::before {
      content: '▸'; position: absolute; left: 0;
      color: var(--orange); font-size: 0.8rem; top: 0.4rem;
    }

/* ── INFO / WARNING BOXES ── */
    .info-box {
      background: rgba(249,115,22,0.08);
      border: 1px solid rgba(249,115,22,0.25);
      border-left: 4px solid var(--orange);
      border-radius: 0 10px 10px 0;
      padding: 1.2rem 1.4rem; margin: 1.2rem 0;
    }

.info-box .ib-title {
      font-weight: 800; color: var(--orange); font-size: 0.87rem;
      text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem;
    }

.info-box p { color: #e5e7eb; font-size: 0.9rem; margin: 0; }

.gold-box {
      background: rgba(250,204,21,0.07);
      border: 1px solid rgba(250,204,21,0.22);
      border-left: 4px solid var(--gold);
      border-radius: 0 10px 10px 0;
      padding: 1.2rem 1.4rem; margin: 1.2rem 0;
    }

.gold-box .gb-title {
      font-weight: 800; color: var(--gold); font-size: 0.87rem;
      text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem;
    }

.gold-box p { color: #e5e7eb; font-size: 0.9rem; margin: 0; }

/* ── DATA TABLE ── */
    .data-table {
      width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem;
      font-size: 0.87rem;
    }

.data-table th {
      background: rgba(249,115,22,0.15);
      color: var(--orange); font-weight: 700;
      padding: 0.7rem 1rem; text-align: left;
      border: 1px solid rgba(249,115,22,0.2);
    }

.data-table td {
      color: #d1d5db; padding: 0.65rem 1rem;
      border: 1px solid rgba(255,255,255,0.06);
    }

.data-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

.data-table tr:hover td { background: rgba(249,115,22,0.05); }

/* ── LAST UPDATED ── */
    .last-updated {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(250,204,21,0.1);
      border: 1px solid rgba(250,204,21,0.25);
      color: var(--gold); font-size: 0.8rem; font-weight: 700;
      padding: 0.35rem 0.9rem; border-radius: 50px; margin-bottom: 2rem;
    }

/* ── RIGHTS GRID ── */
    .rights-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; margin: 1rem 0; }

.right-item {
      background: rgba(249,115,22,0.07);
      border: 1px solid rgba(249,115,22,0.18);
      border-radius: 10px; padding: 1rem 1rem;
      display: flex; align-items: flex-start; gap: 0.7rem;
    }

.right-item i { color: var(--orange); font-size: 1rem; margin-top: 0.15rem; flex-shrink: 0; }

.right-item span { color: #e5e7eb; font-size: 0.84rem; line-height: 1.6; }

/* ── CTA STRIP ── */
    .cta-strip {
      background: var(--dark4);
      border-top: 1px solid rgba(249,115,22,0.15);
      border-bottom: 1px solid rgba(249,115,22,0.15);
      padding: 4.5rem 0; text-align: center;
    }

.cta-inner { max-width: 640px; margin: 0 auto; }

.cta-strip h3 { color: #fff; font-weight: 800; font-size: 1.7rem; margin-bottom: 0.7rem; }

.cta-strip h3 span { color: var(--orange); }

.cta-strip p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.8rem; }

.btn-fire {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: linear-gradient(135deg, var(--orange), #ea580c);
      color: #fff !important; font-weight: 800; font-size: 1rem;
      padding: 0.85rem 2.2rem; border-radius: 8px; text-decoration: none;
      transition: all 0.3s; box-shadow: 0 4px 20px rgba(249,115,22,0.35); margin: 0.3rem;
    }

.btn-fire:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(249,115,22,0.5); }

.btn-outline-o {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: transparent; color: var(--orange) !important;
      border: 2px solid var(--orange); font-weight: 700; font-size: 1rem;
      padding: 0.82rem 2rem; border-radius: 8px; text-decoration: none;
      transition: all 0.3s; margin: 0.3rem;
    }

.btn-outline-o:hover { background: rgba(249,115,22,0.1); transform: translateY(-2px); }

.cta-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 1.6rem; }

.cta-trust span { color: var(--muted); font-size: 0.82rem; display: flex; align-items: center; gap: 0.4rem; }

.cta-trust i { color: var(--orange); }

/* ── READING PROGRESS ── */
    #readingProgress {
      position: fixed; top: 0; left: 0; height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--gold));
      z-index: 9999; width: 0%; transition: width 0.1s;
    }

@media (max-width: 991px) {
.toc-card { position: static; margin-bottom: 2rem; }

.privacy-wrap { padding: 2.5rem 0; }

.section-pad { padding: 3rem 0; }
}

@media (max-width: 576px) {
.page-hero { padding: 3rem 0 2.5rem; }

.data-table { font-size: 0.78rem; }

.data-table th, .data-table td { padding: 0.5rem 0.6rem; }
}
