
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --tata-blue:       #1E5FA8;
  --tata-blue-dark:  #003087;
  --tata-blue-light: #EEF4FB;
  --orange:          #E87722;
  --ink:             #1a1a1a;
  --ink-light:       #4a4a4a;
  --ink-muted:       #7a7a7a;
  --rule:            #dde3ed;
  --bg:              #F5F7FA;
  --paper:           #FFFFFF;
  --gold:            #B8960C;
  --gold-light:      #FDF4DC;
}

html { scroll-behavior: smooth; }

body {
  
  color: var(--ink);
  font-size: 15px;
  line-height: 1.75;
}

/* ─── TOPBAR ─── */
.topbar {
  background: var(--tata-blue-dark);
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.topbar-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-block {
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo-tata {
  
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}
.logo-xcelion {
  font-family: 'EB Garamond', serif;
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
}
.logo-xcelion span { color: var(--orange); }
.logo-tagline {
  font-size: 9px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  margin-top: 2px;
}
.last-updated {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
}

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, var(--tata-blue-dark) 0%, var(--tata-blue) 100%);
  padding: 52px 0 44px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: -60px; bottom: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 48px solid rgba(255,255,255,0.05);
  pointer-events: none;
}
.hero-inner {
      width: 96%;
    max-width: 1050px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.hero h1 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  max-width: 680px;
}
.hero h1 em { font-style: normal; color: #a8c8f0; }
.hero-sub {
  margin-top: 14px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
}

/* ─── LAYOUT ─── */
.page_privacy {
      width: 96%;
    max-width: 1050px;
  margin: 0 auto;
  padding: 0 0 80px;
}

/* ─── TOC ─── */
.toc-bar {
  background: var(--gold-light);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid #e0d5a8;
  padding: 30px 0 26px;
  margin-bottom: 40px;
}
.toc-bar .page { padding-bottom: 0; }
.toc-bar h3 {
  font-family: 'EB Garamond', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--tata-blue-dark);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.toc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
  list-style: none;
}
.toc-grid li a {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--tata-blue-dark);
  font-size: 13.5px;
  font-weight: 500;
  transition: color 0.15s;
}
.toc-grid li a:hover { color: var(--orange); }
.toc-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--tata-blue);
  flex-shrink: 0;
}

/* ─── SECTION ─── */
.doc-section {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 32px 36px;
  margin-bottom: 28px;
  scroll-margin-top: 104px;
  box-shadow: 0 1px 4px rgba(0,48,135,0.05);
}
.doc-section:first-child { margin-top: 40px; }

.section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--tata-blue-light);
}
.section-heading h2 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--tata-blue);
  line-height: 1.2;
}
.section-icon {
  width: 36px; height: 36px;
  background: var(--tata-blue-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

/* ─── PROSE ─── */
p {
  color: var(--ink);
  margin-bottom: 14px;
  font-size: 14.5px;
  line-height: 1.78;
}
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; color: var(--ink); }
em { font-style: italic; }
a { color: var(--tata-blue); }
a:hover { color: var(--orange); }

/* ─── LISTS ─── */
ul.doc-list {
  margin: 10px 0 14px 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
ul.doc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-light);
  line-height: 1.65;
}
ul.doc-list li::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--tata-blue);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ─── RIGHTS CARDS ─── */
.rights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 18px 0;
}
.right-card {
  background: var(--tata-blue-light);
  border: 1px solid #c5d9ef;
  border-radius: 8px;
  padding: 18px 20px;
}
.right-card .right-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tata-blue);
  margin-bottom: 6px;
}
.right-card h4 {
  
  font-weight: 700;
  font-size: 14px;
  color: var(--tata-blue-dark);
  margin-bottom: 8px;
}
.right-card p { font-size: 13px; color: var(--ink-light); margin-bottom: 0; }

/* ─── PROCESSING TABLE ─── */
.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
  border: 1px solid var(--rule);
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  margin: 18px 0;
}
.proc-table {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
}
.proc-table thead th {
  background: var(--tata-blue-dark);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 14px;
  border: none;
  white-space: nowrap;
  position: sticky;
  top: 0;
}
.proc-table thead th:first-child { border-radius: 8px 0 0 0; width: 44px; text-align: center; }
.proc-table thead th:last-child  { border-radius: 0 8px 0 0; }
.proc-table tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  vertical-align: top;
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.6;
}
.proc-table tbody td:last-child { border-right: none; }
.proc-table tbody tr:last-child td { border-bottom: none; }
.proc-table tbody tr:nth-child(even) td { background: #f7fafd; }
.proc-table tbody tr:hover td { background: #eef4fb; transition: background 0.15s; }
.proc-table td:first-child { text-align: center; font-weight: 700; color: var(--tata-blue); font-size: 14px; }
.proc-table td strong { color: var(--tata-blue-dark); font-weight: 600; display: block; margin-bottom: 3px; }
.proc-table td ul { margin: 4px 0 0 12px; padding: 0; }
.proc-table td ul li { font-size: 13px; color: var(--ink-light); margin-bottom: 3px; line-height: 1.55; }

.basis-tag {
  display: inline-block;
  background: #e8f5ee;
  color: #1a7a4a;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 11.5px;
  font-weight: 600;
  white-space: nowrap;
}
.basis-tag.legitimate {
  background: #fff3ec;
  color: #b85a10;
}

/* ─── INFO BOXES ─── */
.info-box {
  background: var(--tata-blue-light);
  border-left: 4px solid var(--tata-blue);
  border-radius: 0 6px 6px 0;
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 14px;
}
.info-box.orange {
  background: #fff3ec;
  border-left-color: var(--orange);
}
.info-box p { margin-bottom: 0; font-size: 14px; color: var(--ink-light); }

/* ─── SAFEGUARDS ─── */
.safeguard-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0;
}
.safeguard-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--tata-blue-light);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 13.5px;
  color: var(--ink-light);
}
.safeguard-item::before {
  content: '✓';
  font-weight: 700;
  color: var(--tata-blue);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── DISCLAIMER BOX ─── */
.disclaimer-box {
  background: #fff8e6;
  border: 1px solid #f0d98a;
  border-radius: 8px;
  padding: 20px 24px;
  margin-top: 8px;
}
.disclaimer-box h4 {
  font-weight: 700;
  font-size: 14px;
  color: #8a6000;
  margin-bottom: 8px;
}
.disclaimer-box p { font-size: 13.5px; color: #6a5000; margin-bottom: 0; }

/* ─── CONTACT BLOCK ─── */
.contact-block {
  background: var(--tata-blue-dark);
  color: #fff;
  border-radius: 8px;
  padding: 24px 28px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.contact-block .icon { font-size: 28px; }
.contact-block h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.contact-block a { color: #a8d4f8; }
.contact-block p { color: rgba(255,255,255,0.75); font-size: 13.5px; margin: 0; }

/* ─── SUB HEADING ─── */
h3.sub {
  
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  margin: 20px 0 8px;
}
h3.sub:first-child { margin-top: 0; }

/* ─── FOOTER ─── */
.doc-footer {
  background: var(--tata-blue-dark);
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 20px 0;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.doc-footer strong { color: rgba(255,255,255,0.75); }

/* ─── RESPONSIVE ─── */
@media (max-width: 640px) {
  .doc-section { padding: 22px 18px; }
  .toc-grid { grid-template-columns: 1fr; }
  .rights-grid { grid-template-columns: 1fr; }
  .topbar-inner { flex-direction: column; gap: 6px; text-align: center; }
  .contact-block { flex-direction: column; text-align: center; gap: 10px; }
}
