/* =============================================================
   QUIK RUPEE - DESIGN SYSTEM
   quikrupee.in | CYBERTECH LLC
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  --bg-page: #F8FAFC;
  --bg-surface: #FFFFFF;
  --bg-card: #FFFFFF;

  --text-ink: #1A2B3B;
  --text-ink-muted: #5A6E82;
  --text-ink-faint: #8FA1B3;
  --text-white: #FFFFFF;

  --green-primary: #10B981;
  --green-hover: #059669;
  --green-soft: #ECFDF5;
  --green-border: #A7F3D0;
  --green-text: #065F46;

  --border-hairline: #E2E8F0;
  --border-card: #E5E9EE;

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 9999px;

  --shadow-subtle: 0 1px 3px rgba(26, 43, 59, 0.04);
  --shadow-card: 0 4px 16px rgba(26, 43, 59, 0.05);
  --shadow-elevated: 0 12px 32px rgba(26, 43, 59, 0.08);

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text-ink);
  background-color: var(--bg-page);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* -------------------------------------------------------------
   TYPOGRAPHY
------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-ink);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

p {
  color: var(--text-ink-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

p.lead {
  font-size: 19px;
  color: var(--text-ink-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Emphasis inside prose comes from colour, not from a heavy weight.
   700 inside muted body copy reads as blotchy on the policy pages,
   which are dense with <strong>. */
p strong,
li strong,
td strong {
  font-weight: 600;
  color: var(--text-ink);
}

a {
  color: var(--text-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--green-hover);
}

/* No eyebrows, kickers or section labels. The heading is the label. */

/* -------------------------------------------------------------
   HEADER
------------------------------------------------------------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 250, 252, 0.88);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border-hairline);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo-wrap {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.increase-logo-bars,
.logo-mark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
}

.logo-bar {
  width: 4px;
  background: var(--text-ink);
  border-radius: 1px;
  transition: height 0.3s var(--ease-out), background 0.3s ease;
}
.logo-bar.b1 { height: 9px; }
.logo-bar.b2 { height: 14px; }
.logo-bar.b3 { height: 18px; }

.site-logo-wrap:hover .logo-bar.b1 { height: 18px; }
.site-logo-wrap:hover .logo-bar.b2 { height: 9px; }
.site-logo-wrap:hover .logo-bar.b3 { height: 14px; background: var(--green-primary); }

.logo-text {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: var(--text-ink);
  letter-spacing: -0.03em;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

nav.main-nav a {
  position: relative;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-ink-muted);
  text-decoration: none;
  padding: 7px 12px;
  border-radius: var(--radius-xs);
  transition: color 0.15s ease;
}

nav.main-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 2px;
  height: 1.5px;
  background: var(--text-ink);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease-out);
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--text-ink);
}

nav.main-nav a:hover::after,
nav.main-nav a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-cta-btn {
  background: var(--text-ink);
  color: #FFFFFF !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 9px 18px !important;
  border-radius: var(--radius-xs);
  text-decoration: none !important;
  transition: transform 0.18s var(--ease-out), background 0.18s ease;
}

.nav-cta-btn:hover {
  background: #000000 !important;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-hairline);
  padding: 7px 14px;
  border-radius: var(--radius-xs);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-ink);
  cursor: pointer;
}

.mobile-menu-drawer {
  display: none;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-hairline);
  padding: 18px 24px 22px;
  box-shadow: var(--shadow-elevated);
}

.mobile-menu-drawer.open {
  display: block;
}

.mobile-menu-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-menu-drawer a {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-ink);
  text-decoration: none;
  display: block;
  padding: 11px 0;
  border-bottom: 1px solid var(--border-hairline);
}

/* -------------------------------------------------------------
   LAYOUT
------------------------------------------------------------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Element-agnostic: several pages use <main class="page-section"> rather
   than <section>, and a type selector silently gave them zero padding. */
.page-section {
  padding: 88px 0;
  border-bottom: 1px solid var(--border-hairline);
}

main.page-section {
  border-bottom: 0;
  padding-bottom: 96px;
}

.section-intro {
  max-width: 720px;
  margin-bottom: 44px;
}

/* -------------------------------------------------------------
   HERO
------------------------------------------------------------- */
.hero-increase {
  position: relative;
  padding: 76px 0 92px;
  border-bottom: 1px solid var(--border-hairline);
  overflow: hidden;
}

/* Faint grid confined to the hero, not the whole page. */
.hero-increase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#EEF2F7 1px, transparent 1px),
    linear-gradient(90deg, #EEF2F7 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 25%, transparent 78%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 25%, transparent 78%);
  pointer-events: none;
}

.hero-increase .container {
  position: relative;
  z-index: 1;
}

.hero-layout-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 56px;
  align-items: center;
}

.btn-increase-primary {
  background: var(--text-ink);
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius-xs);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--text-ink);
  transition: transform 0.18s var(--ease-out), background 0.18s ease;
}

.btn-increase-primary:hover {
  background: #000000;
  color: #FFFFFF;
  transform: translateY(-1px);
}

.btn-increase-primary .arrow {
  transition: transform 0.22s var(--ease-out);
}

.btn-increase-primary:hover .arrow {
  transform: translateX(3px);
}

.btn-increase-secondary {
  background: #FFFFFF;
  color: var(--text-ink);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: var(--radius-xs);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-hairline);
  box-shadow: var(--shadow-subtle);
  transition: transform 0.18s var(--ease-out), border-color 0.18s ease;
}

.btn-increase-secondary:hover {
  border-color: var(--text-ink);
  transform: translateY(-1px);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* -------------------------------------------------------------
   HERO DIAGRAM (abstract, no data, no product UI)
------------------------------------------------------------- */
.hero-diagram {
  width: 100%;
  height: auto;
  display: block;
  max-width: 520px;
  margin-left: auto;
}

.hd-frame {
  fill: #FFFFFF;
  stroke: var(--border-hairline);
}

.hd-option {
  fill: #FFFFFF;
  stroke: #DFE6EE;
  opacity: 0;
  animation: hdOptionIn 9s var(--ease-out) infinite;
}

.hd-option-bar {
  fill: #E2E8F0;
  opacity: 0;
  animation: hdOptionIn 9s var(--ease-out) infinite;
}

.hd-o1, .hd-o1 + .hd-option-bar { animation-delay: 0.1s; }
.hd-o2, .hd-o2 + .hd-option-bar { animation-delay: 0.3s; }
.hd-o3, .hd-o3 + .hd-option-bar { animation-delay: 0.5s; }
.hd-o4, .hd-o4 + .hd-option-bar { animation-delay: 0.7s; }
.hd-o5, .hd-o5 + .hd-option-bar { animation-delay: 0.9s; }

@keyframes hdOptionIn {
  0%   { opacity: 0; transform: translateX(-8px); }
  10%  { opacity: 1; transform: translateX(0); }
  86%  { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(-8px); }
}

.hd-path {
  fill: none;
  stroke: #D5DEE8;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: hdDraw 9s var(--ease-out) infinite;
}

.hd-p1 { animation-delay: 1.0s; }
.hd-p2 { animation-delay: 1.3s; }
.hd-p4 { animation-delay: 1.9s; }
.hd-p5 { animation-delay: 2.2s; }

.hd-path-match {
  stroke: var(--green-primary);
  stroke-width: 2;
  animation-delay: 1.6s;
}

@keyframes hdDraw {
  0%   { stroke-dashoffset: 300; }
  22%  { stroke-dashoffset: 300; }
  42%  { stroke-dashoffset: 0; }
  84%  { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}

.hd-result {
  fill: #FFFFFF;
  stroke: var(--green-primary);
  stroke-width: 1.5;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: hdResultIn 9s var(--ease-out) infinite;
  animation-delay: 2.6s;
}

.hd-result-bar {
  fill: var(--green-primary);
  opacity: 0;
  animation: hdResultIn 9s var(--ease-out) infinite;
  animation-delay: 2.8s;
}

.hd-result-bar-soft {
  fill: var(--green-border);
  opacity: 0;
  animation: hdResultIn 9s var(--ease-out) infinite;
  animation-delay: 3.0s;
}

@keyframes hdResultIn {
  0%   { opacity: 0; transform: scale(0.94); }
  8%   { opacity: 1; transform: scale(1); }
  78%  { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(0.98); }
}

.hd-scan {
  stroke: var(--green-primary);
  stroke-width: 1.5;
  stroke-linecap: round;
  opacity: 0.35;
  animation: hdScan 9s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

@keyframes hdScan {
  0%   { transform: translateY(0); opacity: 0; }
  6%   { opacity: 0.35; }
  20%  { transform: translateY(196px); opacity: 0.35; }
  26%  { transform: translateY(196px); opacity: 0; }
  100% { transform: translateY(196px); opacity: 0; }
}

/* -------------------------------------------------------------
   SCROLL REVEAL
------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* -------------------------------------------------------------
   CONTENT CARDS
------------------------------------------------------------- */
.bento-grid-4 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.bento-card {
  background: #FFFFFF;
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-subtle);
  transition: transform 0.28s var(--ease-out), border-color 0.28s ease, box-shadow 0.28s ease;
}

.bento-card:hover {
  border-color: #CBD5E1;
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

/* A card with no explicit span fills the row rather than collapsing
   to a single twelfth of the grid. Span rules follow, so they win. */
.bento-grid-4 > .bento-card { grid-column: span 12; }

.bento-grid-4 > .bento-span-3  { grid-column: span 3; }
.bento-grid-4 > .bento-span-4  { grid-column: span 4; }
.bento-grid-4 > .bento-span-5  { grid-column: span 5; }
.bento-grid-4 > .bento-span-6  { grid-column: span 6; }
.bento-grid-4 > .bento-span-7  { grid-column: span 7; }
.bento-grid-4 > .bento-span-8  { grid-column: span 8; }
.bento-grid-4 > .bento-span-9  { grid-column: span 9; }
.bento-grid-4 > .bento-span-12 { grid-column: span 12; }

@media (max-width: 1000px) {
  .bento-grid-4 > .bento-card { grid-column: span 12; }
}

/* Numbered process list, replaces icon-tile grids */
.process-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 8px 36px;
  counter-reset: step;
}

.process-list li {
  counter-increment: step;
  padding: 24px 0;
  border-top: 1px solid var(--border-hairline);
}

.process-list li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--green-hover);
  margin-bottom: 10px;
}

.process-list h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.process-list p {
  font-size: 15px;
  margin-bottom: 0;
}

/* -------------------------------------------------------------
   MODULES
   Recessed surface holding raised panels. The depth comes from the
   surface/panel contrast and from one panel overlapping another,
   not from shadows or gradients.
------------------------------------------------------------- */
.module-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.module {
  background: #EDF1F6;
  border: 1px solid #E4EAF1;
  border-radius: var(--radius-lg);
  padding: 34px 34px 38px;
  grid-column: span 12;
  min-width: 0;
}

.module-6 { grid-column: span 6; }
.module-7 { grid-column: span 7; }
.module-5 { grid-column: span 5; }

.module > h3 {
  font-size: clamp(22px, 2.1vw, 28px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 26px;
}

.module-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.module-panel {
  background: #FFFFFF;
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  min-width: 0;
}

.module-panel-dark {
  background: #101C28;
  border: 1px solid #22303F;
  border-radius: var(--radius-md);
  padding: 22px 24px;
  color: #C9D6E2;
  min-width: 0;
}

/* Overlap composition: a light panel sitting over a dark one */
.module-stack { position: relative; }

.module-stack .module-panel-dark { padding-bottom: 92px; }

.module-stack .module-panel {
  position: absolute;
  left: 26px;
  right: -14px;
  bottom: -18px;
  box-shadow: 0 10px 30px rgba(16, 28, 40, 0.13);
}

/* Named-item grid. Works because every label is a real noun. */
.rail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}

.rail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--text-ink);
  min-width: 0;
}

.rail-icon {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #FFFFFF;
  border: 1px solid var(--border-hairline);
  display: grid;
  place-items: center;
  color: var(--text-ink-muted);
}

.rail-icon svg { width: 17px; height: 17px; }

.rail-item.is-accent .rail-icon {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: #FFFFFF;
}

/* Field skeleton: shows a document's shape without asserting values */
.field-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 13.5px;
}

.field-row:last-child { border-bottom: 0; }

.field-row span { color: #96A7B8; }

.field-bar {
  height: 8px;
  border-radius: 4px;
  background: #2B3A4A;
  flex: none;
}

.field-row.is-key span { color: #FFFFFF; font-weight: 600; }
.field-row.is-key .field-bar { background: var(--green-primary); }

/* Checklist */
.checklist { display: grid; }

.checklist-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border-hairline);
  font-size: 15px;
  color: var(--text-ink);
}

.checklist-row:last-child { border-bottom: 0; }

.check-mark {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green-hover);
}

.check-mark svg { width: 11px; height: 11px; }

.checklist-row.is-pending { color: var(--text-ink-faint); }

.checklist-row.is-pending .check-mark {
  background: transparent;
  border: 1.5px dashed #C3CEDA;
}

.checklist-note {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--text-ink-muted);
  line-height: 1.6;
}

/* Comparison table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.compare-table th {
  text-align: left;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-ink-faint);
  padding: 0 0 11px;
  border-bottom: 1px solid var(--border-hairline);
}

.compare-table td {
  padding: 13px 0;
  border-bottom: 1px solid var(--border-hairline);
  vertical-align: top;
  color: var(--text-ink-muted);
}

.compare-table tr:last-child td { border-bottom: 0; }

.compare-table td:first-child {
  color: var(--text-ink-faint);
  padding-right: 20px;
  width: 44%;
}

.compare-table td.is-key {
  color: var(--text-ink);
  font-weight: 600;
}

@media (max-width: 1000px) {
  .module-6, .module-7, .module-5 { grid-column: span 12; }
}

@media (max-width: 760px) {
  .module { padding: 26px 22px 30px; }
  .module-split { grid-template-columns: 1fr; gap: 26px; }
  .rail-grid { grid-template-columns: 1fr; gap: 14px; }

  .module-stack .module-panel-dark { padding-bottom: 22px; }
  .module-stack .module-panel {
    position: static;
    margin-top: 14px;
    box-shadow: var(--shadow-card);
  }
}

/* -------------------------------------------------------------
   INACTIVE FORM
------------------------------------------------------------- */
.form-inactive-note {
  background: var(--bg-page);
  border: 1px solid var(--border-hairline);
  border-left: 3px solid var(--text-ink);
  border-radius: var(--radius-xs);
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-ink-muted);
}

.form-inactive-note strong {
  display: block;
  color: var(--text-ink);
  font-weight: 600;
  margin-bottom: 3px;
}

fieldset.form-disabled {
  border: 0;
  padding: 0;
  margin: 0;
  opacity: 0.5;
}

fieldset.form-disabled input,
fieldset.form-disabled select,
fieldset.form-disabled textarea,
fieldset.form-disabled button {
  cursor: not-allowed;
}

/* -------------------------------------------------------------
   POSITIONING NOTICE
------------------------------------------------------------- */
/* Positioning notice. Quiet by design: a hairline rule and muted text,
   not a coloured alert box. */
.regulatory-spec-box {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--border-hairline);
  border-radius: 0;
  padding: 18px 0 0;
  font-size: 14px;
  color: var(--text-ink-muted);
  line-height: 1.65;
  margin: 34px 0 0;
  max-width: 620px;
}

.regulatory-spec-box strong {
  color: var(--text-ink);
  font-weight: 600;
}

/* Persistent bottom disclaimer bar */
.positioning-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: var(--text-ink);
  color: #DCE5EE;
  font-size: 12.5px;
  line-height: 1.5;
  padding: 11px 24px;
  text-align: center;
}

.positioning-bar strong {
  color: #FFFFFF;
  font-weight: 600;
}

body { padding-bottom: 62px; }

@media (max-width: 700px) {
  body { padding-bottom: 96px; }
  .positioning-bar { font-size: 11.5px; text-align: left; }
}

/* -------------------------------------------------------------
   IDENTITY BLOCK (selectable text, no JS)
------------------------------------------------------------- */
.identity-spec-card {
  background: #FFFFFF;
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-md);
  padding: 28px 30px;
  box-shadow: var(--shadow-subtle);
}

.identity-spec-card-title {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-ink-muted);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-hairline);
}

.identity-item-row {
  font-size: 15px;
  color: var(--text-ink-muted);
  margin-bottom: 9px;
  line-height: 1.6;
}

.identity-item-row:last-child { margin-bottom: 0; }

.identity-item-row strong {
  color: var(--text-ink);
  font-weight: 600;
}

/* -------------------------------------------------------------
   TABLES
------------------------------------------------------------- */
.table-container {
  overflow-x: auto;
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  margin: 20px 0;
}

table.data-table-increase {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

table.data-table-increase th,
table.data-table-increase td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-hairline);
}

table.data-table-increase th {
  background: var(--bg-page);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-ink-muted);
}

table.data-table-increase tr:last-child td { border-bottom: none; }

/* -------------------------------------------------------------
   FAQ (static, always expanded - reviewers must see the answers)
------------------------------------------------------------- */
.faq-wrap {
  max-width: 820px;
  display: grid;
  gap: 0;
}

.faq-item {
  padding: 26px 0;
  border-top: 1px solid var(--border-hairline);
}

.faq-item:last-child { border-bottom: 1px solid var(--border-hairline); }

.faq-question {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-ink);
  margin-bottom: 10px;
}

.faq-answer {
  font-size: 15.5px;
  color: var(--text-ink-muted);
  line-height: 1.7;
}

/* -------------------------------------------------------------
   FOOTER
------------------------------------------------------------- */
footer.site-footer {
  background: #FFFFFF;
  border-top: 1px solid var(--border-hairline);
  padding: 64px 0 44px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border-hairline);
}

.footer-brand p {
  font-size: 14.5px;
  color: var(--text-ink-muted);
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-ink);
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--text-ink-muted);
  font-size: 14.5px;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--text-ink);
  text-decoration: underline;
}

.footer-identity-card {
  background: var(--bg-page);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-sm);
  padding: 24px 26px;
  margin-bottom: 26px;
}

.footer-disclaimer-text {
  font-size: 13px;
  color: var(--text-ink-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-ink-faint);
}

/* -------------------------------------------------------------
   RESPONSIVE
------------------------------------------------------------- */
@media (max-width: 960px) {
  .hero-layout-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .hero-diagram { margin: 0 auto; }
  .footer-top-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  nav.main-nav { display: none; }
  .menu-toggle { display: block; }
  .page-section { padding: 68px 0; }
  main.page-section { padding-bottom: 76px; }
}

@media (max-width: 600px) {
  .footer-top-grid { grid-template-columns: 1fr; }
  .hero-increase { padding: 52px 0 68px; }
  .btn-increase-primary,
  .btn-increase-secondary {
    width: 100%;
    justify-content: center;
  }
  .bento-card { padding: 24px; }
  .identity-spec-card { padding: 22px; }
  .footer-bottom-row { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* -------------------------------------------------------------
   REDUCED MOTION
------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .hd-option,
  .hd-option-bar,
  .hd-result,
  .hd-result-bar,
  .hd-result-bar-soft { opacity: 1; }

  .hd-path { stroke-dashoffset: 0; }

  .hd-scan { display: none; }
}
