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

/* =================== Paisa24 — STRIPE-INSPIRED LIGHT THEME =================== */
:root {
  /* Brand */
  --primary: #06A89A;        /* Stripe-ish indigo as primary */
  --primary-dark: #057E68;
  --primary-light: #E2F4EF;
  --indigo: #06A89A;
  --blue: #2563EB;
  --pink: #18B26B;
  --coral: #FF7AAF;
  --violet: #2BB8A3;
  --cyan: #00D4FF;
  --mint: #00D4B8;
  --green: #00B89C;
  --amber: #FFB547;
  --orange: #F97316;

  /* Ink + surfaces */
  --ink: #0A2540;            /* Stripe deep ink */
  --ink-2: #425466;
  --ink-3: #697386;
  --line: #E5E9F0;
  --line-2: #EEF1F6;
  --bg: #FFFFFF;
  --bg-soft: #F6F9FC;        /* Stripe page bg */
  --bg-tint: #FAFBFD;
  --success: #00B89C;
  --success-bg: #E6FAF5;
  --danger: #E54B4B;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.04);
  --shadow: 0 6px 22px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 30px 60px -20px rgba(10, 37, 64, 0.18), 0 18px 36px -18px rgba(10, 37, 64, 0.12);
  --shadow-xl: 0 50px 100px -20px rgba(50, 50, 93, 0.25), 0 30px 60px -30px rgba(0, 0, 0, 0.30);
  --r-sm: 8px;
  --r: 12px;
  --r-lg: 18px;
  --r-xl: 28px;
  --grad-mesh: conic-gradient(from 215deg at 40% 30%,
      #8FE9CF 0deg, #06A89A 60deg, #2BB8A3 120deg,
      #18B26B 180deg, #FFB547 240deg, #8FE9CF 360deg);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body {
  margin: 0; padding: 0;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-feature-settings: 'cv11', 'ss01', 'cv02';
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--primary); color: #fff; }

/* ============ TYPE ============ */
h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', sans-serif; letter-spacing: -0.025em; line-height: 1.1; margin: 0; font-weight: 700; }
.display-1 { font-size: clamp(44px, 6.6vw, 84px); font-weight: 720; letter-spacing: -0.04em; line-height: 1.02; }
.display-2 { font-size: clamp(34px, 4.4vw, 56px); font-weight: 700; letter-spacing: -0.035em; line-height: 1.05; }
.display-3 { font-size: clamp(22px, 2.6vw, 32px); font-weight: 700; letter-spacing: -0.02em; }
.eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  font-size: 12px; font-weight: 500; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--primary);
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: '//'; opacity: 0.55; }
.lead { font-size: clamp(16px, 1.4vw, 19px); color: var(--ink-2); line-height: 1.6; }
.mono { font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace; }

/* Gradient text — Stripe pulls a vivid sweep across the headline */
.grad-text {
  background: linear-gradient(95deg, #06A89A 0%, #00D4FF 35%, #18B26B 70%, #FFB547 100%);
  background-size: 220% 100%; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradSlide 12s ease-in-out infinite;
}
@keyframes gradSlide { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* ============ LAYOUT ============ */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-wide { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 24px; }
section { padding: 110px 0; position: relative; }
@media (max-width: 768px) { section { padding: 72px 0; } }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head .display-2 { margin-bottom: 18px; }
.section-head .lead { max-width: 620px; margin: 0 auto; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(229, 233, 240, 0.55);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 32px; }
.nav-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
.nav-logo {
  width: 32px; height: 32px; border-radius: 9px;
  background: linear-gradient(135deg, var(--primary), var(--pink));
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 15px;
  box-shadow: 0 4px 12px rgba(99, 91, 255, 0.35), inset 0 1px 0 rgba(255,255,255,0.3);
}
.nav-menu { display: flex; gap: 4px; align-items: center; }
.nav-menu > a {
  padding: 8px 14px; font-size: 14px; font-weight: 500;
  color: var(--ink-2); border-radius: 8px; transition: color .12s;
}
.nav-menu > a:hover { color: var(--primary); }
.nav-cta { display: flex; gap: 10px; align-items: center; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 10px 18px; font-size: 14px; font-weight: 600;
  border-radius: 999px; transition: all .15s ease;
  cursor: pointer; border: none; white-space: nowrap; font-family: inherit;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--primary); transform: translateY(-1px); }
.btn-accent {
  background: linear-gradient(135deg, var(--primary), var(--pink));
  color: #fff; box-shadow: 0 6px 18px rgba(99, 91, 255, 0.35);
}
.btn-accent:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(99, 91, 255, 0.45); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { color: var(--primary); }
.btn-outline { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn-outline:hover { border-color: var(--ink); }
.btn-lg { padding: 13px 26px; font-size: 15px; }
.btn-arrow svg { transition: transform .2s; }
.btn-arrow:hover svg { transform: translateX(3px); }
.nav-burger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--ink); }
@media (max-width: 880px) {
  .nav-menu, .nav-cta .btn-ghost { display: none; }
  .nav-burger { display: block; }
}

/* ============ HERO with animated mesh ============ */
.hero {
  position: relative; overflow: hidden;
  padding: 130px 0 100px;
  background: #fff;
}
.hero-mesh {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  background: var(--grad-mesh);
  filter: blur(80px) saturate(140%);
  opacity: 0.55;
  transform: scale(1.6) translateY(-20%);
  animation: meshDrift 24s ease-in-out infinite;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 100%);
}
@keyframes meshDrift {
  0%, 100% { transform: scale(1.6) translate(-2%, -22%) rotate(0deg); }
  50% { transform: scale(1.75) translate(3%, -18%) rotate(8deg); }
}
.hero.no-mesh .hero-mesh { display: none; }
.hero-mesh-overlay {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255,255,255,0) 0%, #fff 60%),
    linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 30%, #fff 100%);
}
.hero-inner { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1fr 0.92fr; gap: 56px; align-items: center; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 6px 6px 14px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  font-size: 13px; font-weight: 500; color: var(--ink-2); margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.hero-badge .pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--primary), var(--pink));
  color: #fff; font-size: 11px; font-weight: 600; letter-spacing: 0.02em;
  padding: 4px 10px; border-radius: 999px;
}
.hero-badge .dot { width: 6px; height: 6px; background: #fff; border-radius: 50%; box-shadow: 0 0 0 3px rgba(255,255,255,0.3); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-title { margin-bottom: 24px; }
.hero-sub { max-width: 540px; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-meta { margin-top: 44px; display: flex; gap: 36px; flex-wrap: wrap; }
.hero-meta-num { font-size: 22px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; line-height: 1; margin-bottom: 6px; }
.hero-meta-label { font-size: 12.5px; color: var(--ink-3); font-weight: 500; }

/* Hero visual */
.hero-visual { position: relative; perspective: 1400px; }
.hero-card {
  background: #fff; border-radius: var(--r-lg); padding: 26px;
  box-shadow: var(--shadow-xl);
  position: relative; overflow: hidden;
  transform: rotate3d(1, -0.2, 0, 4deg) translateZ(0);
  border: 1px solid rgba(255,255,255,0.6);
}
.hero-card::before {
  content: ''; position: absolute; inset: -1px;
  background: linear-gradient(135deg, var(--primary), var(--pink), transparent 60%);
  z-index: -1; border-radius: var(--r-lg); padding: 1px;
  -webkit-mask: linear-gradient(#000,#000) content-box, linear-gradient(#000,#000);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0.5;
}
.hc-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.hc-step {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 12px; background: var(--primary-light); border-radius: 999px;
  font-size: 11.5px; font-weight: 600; color: var(--primary-dark);
}
.hc-step-num { width: 16px; height: 16px; background: var(--primary); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: 10px; }
.hc-amount-label { font-size: 12px; color: var(--ink-3); margin-bottom: 4px; font-weight: 500; }
.hc-amount { font-size: 40px; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 18px; color: var(--ink); }
.hc-slider-track { height: 6px; background: var(--line-2); border-radius: 3px; position: relative; margin: 10px 0 22px; }
.hc-slider-fill { position: absolute; left: 0; top: 0; bottom: 0; width: 45%; background: linear-gradient(90deg, var(--primary), var(--pink)); border-radius: 3px; }
.hc-slider-thumb { position: absolute; left: 45%; top: 50%; transform: translate(-50%, -50%); width: 16px; height: 16px; background: #fff; border: 2px solid var(--primary); border-radius: 50%; box-shadow: 0 4px 10px rgba(6,168,154,0.4); }
.hc-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 13px; color: var(--ink-2); }
.hc-row:last-child { border-bottom: 0; }
.hc-row b { color: var(--ink); font-weight: 600; }
.hc-row .pos { color: var(--success); }
.hc-confirm {
  margin-top: 18px; padding: 12px 14px; background: var(--success-bg);
  border-radius: 10px; display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; color: #00604F; font-weight: 500;
}
.hc-check { width: 20px; height: 20px; background: var(--success); border-radius: 50%; display: grid; place-items: center; color: #fff; flex-shrink: 0; }

.float-chip {
  position: absolute; background: #fff; border-radius: 14px; padding: 11px 14px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 600; color: var(--ink);
  animation: floaty 7s ease-in-out infinite;
  z-index: 2;
}
.float-chip-1 { top: -4%; left: -10%; }
.float-chip-2 { bottom: 8%; right: -8%; animation-delay: -3.5s; }
.float-chip .ico { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; flex-shrink: 0; }
.float-chip small { display: block; font-size: 10.5px; color: var(--ink-3); font-weight: 500; margin-top: 1px; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (max-width: 980px) { .float-chip-1, .float-chip-2 { display: none; } }

/* ============ LOGOBAR ============ */
.logobar { padding: 56px 0 24px; background: #fff; border-bottom: 1px solid var(--line-2); }
.logobar-title { text-align: center; font-size: 12px; color: var(--ink-3); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 28px; font-family: 'JetBrains Mono', monospace; }
.logobar-grid { display: flex; gap: 52px; justify-content: center; align-items: center; flex-wrap: wrap; }
.logobar-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-3); font-weight: 600; }
.logobar-item .shield-svg { width: 18px; height: 18px; stroke: var(--ink-3); fill: none; stroke-width: 2; }

/* ============ STATS ============ */
.stats { background: var(--bg-soft); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
@media (max-width: 880px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-card { padding: 32px 28px; background: #fff; text-align: left; }
.stat-num { font-size: clamp(30px, 3.4vw, 40px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; margin-bottom: 10px; color: var(--ink); }
.stat-num.g1 { background: linear-gradient(95deg, var(--primary), var(--pink)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-num.g2 { background: linear-gradient(95deg, var(--orange), var(--pink)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-num.g3 { background: linear-gradient(95deg, var(--mint), var(--blue)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-num.g4 { background: linear-gradient(95deg, var(--violet), var(--cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { font-size: 13px; color: var(--ink-3); font-weight: 500; }

/* ============ JOURNEY THEATER ============ */
.theater { padding: 100px 0 0; background: var(--bg); position: relative; }
.theater + .theater { padding-top: 60px; }
.theater-head { text-align: center; max-width: 760px; margin: 0 auto 56px; padding: 0 24px; }
.theater-head .eyebrow { margin-bottom: 16px; }
.theater-head .display-2 { margin-bottom: 16px; }

.theater-scroll {
  /* this is the tall scroll container — height is set per-section */
  position: relative;
}
.theater-sticky {
  position: sticky; top: 0;
  height: 100vh;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 60px; align-items: center;
  max-width: 1260px; margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 980px) {
  .theater-sticky { grid-template-columns: 1fr; gap: 28px; padding: 0 20px; height: auto; min-height: 100vh; padding-top: 40px; padding-bottom: 40px; }
}

/* Step list (left side) */
.theater-steps { position: relative; }
.theater-rail {
  position: absolute; left: 19px; top: 8px; bottom: 8px; width: 2px;
  background: var(--line); border-radius: 1px;
}
.theater-rail-fill {
  position: absolute; left: 0; top: 0; width: 100%;
  background: linear-gradient(180deg, var(--primary), var(--pink));
  border-radius: 1px; transition: height .35s ease;
}
.theater-step {
  position: relative; padding: 14px 0 14px 56px;
  cursor: pointer; transition: opacity .3s;
  opacity: 0.42;
}
.theater-step.active, .theater-step.passed { opacity: 1; }
.theater-step-dot {
  position: absolute; left: 9px; top: 18px;
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff; border: 2px solid var(--line);
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700; color: var(--ink-3);
  z-index: 2; transition: all .3s;
}
.theater-step.active .theater-step-dot {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--pink));
  color: #fff;
  box-shadow: 0 0 0 6px rgba(99, 91, 255, 0.15);
  transform: scale(1.08);
}
.theater-step.passed .theater-step-dot {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}
.theater-step-title { font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 4px; letter-spacing: -0.01em; }
.theater-step-desc { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }
.theater-step-meta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--primary);
  background: var(--primary-light);
  padding: 3px 9px; border-radius: 999px;
  font-weight: 500;
}

/* Theater stage (right side) — holds the device + screens */
.theater-stage {
  position: relative;
  height: min(640px, 78vh);
  display: grid; place-items: center;
}
.theater-stage::before {
  /* soft halo */
  content: ''; position: absolute; inset: -10% -10%;
  background:
    radial-gradient(circle at 30% 40%, rgba(6,168,154,0.18), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(24,178,107,0.16), transparent 55%);
  filter: blur(40px); z-index: 0; pointer-events: none;
}
.phone {
  position: relative; z-index: 1;
  width: 300px; height: 612px;
  border-radius: 44px;
  background: linear-gradient(180deg, #1A1F36 0%, #0A2540 100%);
  padding: 10px;
  box-shadow:
    0 60px 100px -30px rgba(10, 37, 64, 0.4),
    0 30px 60px -30px rgba(10, 37, 64, 0.3),
    inset 0 0 0 1px rgba(255,255,255,0.06);
}
.phone::before {
  content: ''; position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 24px; background: #000; border-radius: 14px; z-index: 5;
}
.phone-screen-wrap {
  width: 100%; height: 100%; border-radius: 34px; overflow: hidden;
  background: #fff; position: relative;
}
.theater-screen {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(16px) scale(0.985);
  transition: opacity .5s ease, transform .5s ease;
  display: flex; flex-direction: column;
  background: #F6F9FC;
}
.theater-screen.active { opacity: 1; transform: translateY(0) scale(1); }

/* Phone screen frame parts */
.ph-statusbar {
  flex-shrink: 0; padding: 18px 22px 8px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; font-weight: 600; color: var(--ink);
}
.ph-statusbar-icons { display: flex; gap: 4px; align-items: center; }
.ph-statusbar-icons svg { width: 14px; height: 14px; }
.ph-header {
  flex-shrink: 0; padding: 6px 18px 14px;
  display: flex; justify-content: space-between; align-items: center;
}
.ph-back { width: 28px; height: 28px; border-radius: 50%; background: #fff; display: grid; place-items: center; color: var(--ink); border: 1px solid var(--line); }
.ph-title { font-size: 13px; font-weight: 600; color: var(--ink); }
.ph-body { flex: 1; padding: 4px 18px 18px; overflow: hidden; }
.ph-progress {
  display: flex; gap: 4px; padding: 0 18px 12px;
}
.ph-progress span { flex: 1; height: 3px; background: var(--line); border-radius: 2px; }
.ph-progress span.active { background: var(--primary); }

/* Floating annotation chips around the device */
.stage-anno {
  position: absolute; background: #fff;
  border-radius: 12px; padding: 10px 14px;
  box-shadow: var(--shadow-lg);
  font-size: 12px; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; gap: 10px;
  z-index: 3;
  opacity: 0; transform: translateY(8px) scale(0.96);
  transition: all .4s ease;
  pointer-events: none;
  white-space: nowrap;
}
.stage-anno.show { opacity: 1; transform: translateY(0) scale(1); }
.stage-anno small { display: block; font-size: 10.5px; color: var(--ink-3); font-weight: 500; margin-top: 1px; }
.stage-anno .ico { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; flex-shrink: 0; }
.stage-anno-tl { top: 8%; left: -8%; }
.stage-anno-br { bottom: 12%; right: -10%; }
.stage-anno-tr { top: 18%; right: -16%; }
.stage-anno-bl { bottom: 6%; left: -12%; }
@media (max-width: 980px) { .stage-anno { display: none; } }

/* Theater for management — uses dashboard instead of phone */
.theater-dash {
  position: relative; z-index: 1;
  width: min(640px, 100%);
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}
.theater-dash::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 32px;
  background: linear-gradient(180deg, #F6F9FC 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
}
.theater-dash::after {
  content: ''; position: absolute; top: 10px; left: 14px;
  width: 8px; height: 8px; border-radius: 50%;
  background: #FF6058;
  box-shadow: 14px 0 0 #FFBD2E, 28px 0 0 #28C940;
  z-index: 1;
}
.dash-screen {
  position: absolute; inset: 32px 0 0;
  opacity: 0; transition: opacity .5s ease;
  display: flex; flex-direction: column;
}
.dash-screen.active { opacity: 1; }

/* ============ PRODUCTS — bento ============ */
.products { background: var(--bg-soft); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 18px;
}
.product-card {
  background: #fff; border-radius: var(--r-lg);
  padding: 28px; border: 1px solid var(--line);
  position: relative; overflow: hidden;
  transition: all .25s ease;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.product-card.p1 { grid-column: span 3; }
.product-card.p2 { grid-column: span 3; }
.product-card.p3 { grid-column: span 2; }
.product-card.p4 { grid-column: span 2; }
.product-card.p5 { grid-column: span 2; }
@media (max-width: 880px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-card.p1, .product-card.p2, .product-card.p3, .product-card.p4, .product-card.p5 { grid-column: span 1; }
}
.product-card-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; gap: 12px; }
.product-icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; }
.product-icon svg { width: 22px; height: 22px; }
.product-card.p1 .product-icon { background: var(--primary-light); }
.product-card.p1 .product-icon svg { color: var(--primary); }
.product-card.p2 .product-icon { background: #E3F6EF; }
.product-card.p2 .product-icon svg { color: var(--pink); }
.product-card.p3 .product-icon { background: #E6FAF5; }
.product-card.p3 .product-icon svg { color: var(--mint); }
.product-card.p4 .product-icon { background: #E1F4EC; }
.product-card.p4 .product-icon svg { color: var(--violet); }
.product-card.p5 .product-icon { background: #FFF4E0; }
.product-card.p5 .product-icon svg { color: var(--orange); }
.product-tag {
  font-size: 10.5px; padding: 4px 10px; background: var(--bg-soft);
  border-radius: 999px; font-weight: 600; color: var(--ink-3);
  font-family: 'JetBrains Mono', monospace; letter-spacing: 0.02em;
  border: 1px solid var(--line);
}
.product-name { font-size: 20px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.02em; color: var(--ink); }
.product-desc { color: var(--ink-2); font-size: 14px; margin-bottom: 18px; line-height: 1.55; }
.product-features { list-style: none; padding: 0; margin: 0 0 18px; }
.product-features li { display: flex; align-items: center; gap: 8px; padding: 4px 0; font-size: 13px; color: var(--ink-2); }
.product-features li::before {
  content: ''; width: 14px; height: 14px; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%2306A89A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M3 8.5l3 3 7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.product-cta {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); font-weight: 600; font-size: 13.5px;
  margin-top: auto;
}
.product-cta:hover { gap: 10px; }
.product-cta::after { content: '→'; transition: transform .2s; }
.product-cta:hover::after { transform: translateX(3px); }
.product-card .product-illu {
  position: absolute; right: -20px; bottom: -20px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, currentColor 0%, transparent 70%);
  opacity: 0.06; pointer-events: none;
}

/* ============ CALCULATOR ============ */
.calc { background: var(--bg); position: relative; overflow: hidden; }
.calc-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px; align-items: stretch; }
@media (max-width: 880px) { .calc-grid { grid-template-columns: 1fr; gap: 18px; } }
.calc-panel {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 38px;
  box-shadow: var(--shadow-sm);
}
.calc-label { font-size: 13px; color: var(--ink-3); font-weight: 500; margin-bottom: 12px; display: flex; justify-content: space-between; }
.calc-label span:last-child { color: var(--ink-2); font-family: 'JetBrains Mono', monospace; font-size: 11.5px; }
.calc-value { font-size: 36px; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 12px; color: var(--ink); }
.calc-value small { color: var(--ink-3); font-size: 16px; font-weight: 600; margin-left: 4px; }
.calc-slider { width: 100%; height: 6px; border-radius: 3px; -webkit-appearance: none; appearance: none; background: var(--line-2); outline: none; margin: 0 0 8px; cursor: pointer; }
.calc-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: #fff; cursor: pointer; box-shadow: 0 4px 12px rgba(6,168,154,0.4); border: 3px solid var(--primary); }
.calc-slider::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #fff; cursor: pointer; border: 3px solid var(--primary); }
.calc-range { display: flex; justify-content: space-between; font-size: 11px; color: var(--ink-3); margin-bottom: 28px; font-family: 'JetBrains Mono', monospace; }
.calc-trust { margin-top: 8px; padding-top: 22px; border-top: 1px dashed var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.calc-trust > div { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--ink-2); }
.calc-trust svg { color: var(--success); }

.calc-result {
  background: linear-gradient(160deg, #0A2540 0%, #1A1F36 100%);
  border-radius: var(--r-xl); padding: 38px; color: #fff;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.calc-result::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 80% 0%, rgba(6,168,154,0.45), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(24,178,107,0.30), transparent 50%);
}
.calc-result-label { font-size: 11px; color: rgba(255,255,255,0.7); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; position: relative; z-index: 1; font-family: 'JetBrains Mono', monospace; }
.calc-result-amount { font-size: clamp(38px, 5vw, 56px); font-weight: 700; letter-spacing: -0.035em; line-height: 1; margin-bottom: 24px; position: relative; z-index: 1; }
.calc-result-amount .grad-text { background: linear-gradient(95deg, #fff 0%, #8FE9CF 50%, #18B26B 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.calc-result-rows { position: relative; z-index: 1; margin-bottom: 24px; }
.calc-result-row { display: flex; justify-content: space-between; padding: 9px 0; font-size: 13.5px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.calc-result-row:last-child { border-bottom: 0; }
.calc-result-row span { color: rgba(255,255,255,0.75); }
.calc-result-row b { font-weight: 600; color: #fff; }
.calc-result .btn { width: 100%; background: #fff; color: var(--ink); position: relative; z-index: 1; }
.calc-result .btn:hover { background: var(--primary); color: #fff; }
.calc-disclaimer { font-size: 11.5px; color: rgba(255,255,255,0.55); margin-top: 12px; text-align: center; position: relative; z-index: 1; }

/* ============ FEATURES ============ */
.features { background: var(--bg-soft); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 880px) { .features-grid { grid-template-columns: 1fr; } }
.feature-card {
  padding: 30px; border-radius: var(--r-lg); background: #fff;
  border: 1px solid var(--line); transition: all .25s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.feature-icon { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; margin-bottom: 18px; background: var(--primary-light); }
.feature-icon svg { width: 20px; height: 20px; color: var(--primary); }
.feature-card.f2 .feature-icon { background: #E3F6EF; } .feature-card.f2 .feature-icon svg { color: var(--pink); }
.feature-card.f3 .feature-icon { background: #E6FAF5; } .feature-card.f3 .feature-icon svg { color: var(--mint); }
.feature-card.f4 .feature-icon { background: #E1F4EC; } .feature-card.f4 .feature-icon svg { color: var(--violet); }
.feature-card.f5 .feature-icon { background: #FFF4E0; } .feature-card.f5 .feature-icon svg { color: var(--orange); }
.feature-card.f6 .feature-icon { background: #DEF3EB; } .feature-card.f6 .feature-icon svg { color: var(--blue); }
.feature-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.feature-text { font-size: 14px; color: var(--ink-2); line-height: 1.55; }

/* ============ APP SECTION ============ */
.appsec { background: #fff; }
.appsec-card {
  background: linear-gradient(135deg, #F6F9FC 0%, #FFFFFF 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 64px;
  display: grid; grid-template-columns: 1fr 0.85fr; gap: 48px; align-items: center;
  position: relative; overflow: hidden;
}
.appsec-card::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(6,168,154,0.15), transparent 60%);
  pointer-events: none;
}
@media (max-width: 880px) { .appsec-card { grid-template-columns: 1fr; gap: 32px; padding: 40px; } }
.appsec h2 { margin-bottom: 16px; }
.appsec p { color: var(--ink-2); margin-bottom: 28px; font-size: 16px; max-width: 480px; }
.app-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.app-badge { display: inline-flex; align-items: center; gap: 12px; padding: 12px 22px; background: var(--ink); color: #fff; border-radius: 14px; font-weight: 600; font-size: 14px; transition: all .15s; }
.app-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.app-badge svg { width: 22px; height: 22px; }
.app-badge small { display: block; font-size: 10.5px; font-weight: 400; color: rgba(255,255,255,0.65); margin-bottom: 1px; }
.app-phone { display: flex; justify-content: center; position: relative; z-index: 1; }

/* ============ FAQ ============ */
.faq { background: var(--bg); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff; border-radius: var(--r);
  margin-bottom: 8px; border: 1px solid var(--line);
  overflow: hidden; transition: all .15s;
}
.faq-item:hover { border-color: rgba(6,168,154,0.4); }
.faq-q { padding: 22px 26px; font-weight: 600; font-size: 15px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--ink); }
.faq-q::after {
  content: ''; width: 20px; height: 20px; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23697386' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  transition: transform .25s;
}
.faq-item.open .faq-q::after { transform: rotate(-180deg); }
.faq-a { padding: 0 26px; max-height: 0; overflow: hidden; transition: max-height .3s, padding .3s; color: var(--ink-2); font-size: 14px; line-height: 1.6; }
.faq-item.open .faq-a { padding: 0 26px 22px; max-height: 360px; }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(135deg, #0A2540 0%, #1A1F36 50%, #2A1F4E 100%);
  color: #fff; text-align: center;
  padding: 100px 24px;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(6,168,154,0.4), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(24,178,107,0.3), transparent 50%);
}
.cta-banner h2 { color: #fff; max-width: 820px; margin: 0 auto 16px; position: relative; z-index: 1; }
.cta-banner h2 .grad-text { background: linear-gradient(95deg, #fff, #8FE9CF, #18B26B); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cta-banner p { color: rgba(255,255,255,0.78); max-width: 580px; margin: 0 auto 32px; font-size: 17px; position: relative; z-index: 1; }
.cta-banner .btn { position: relative; z-index: 1; padding: 14px 30px; font-size: 15px; }

/* ============ FOOTER ============ */
footer { background: var(--ink); color: rgba(255,255,255,0.72); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.4fr; gap: 48px; margin-bottom: 56px; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } .footer-brand-col { grid-column: 1 / -1; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand-name { color: #fff; font-size: 20px; font-weight: 700; }
.footer-tagline { font-size: 14px; line-height: 1.7; margin-bottom: 22px; max-width: 360px; }
.footer-rbi { padding: 12px 16px; background: rgba(255,255,255,0.04); border-radius: 12px; border: 1px solid rgba(255,255,255,0.08); display: inline-flex; align-items: center; gap: 12px; font-size: 12.5px; max-width: 360px; }
.footer-rbi-ico { width: 32px; height: 32px; border-radius: 8px; background: var(--success); display: grid; place-items: center; flex-shrink: 0; color: #fff; }
.footer-rbi b { color: #fff; display: block; }
.footer-col-title { color: #fff; font-weight: 700; font-size: 13px; margin-bottom: 18px; letter-spacing: -0.005em; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color .15s; }
.footer-links a:hover { color: #fff; }
.footer-contact { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.6); }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: #fff; }
.footer-social { display: flex; gap: 8px; margin-top: 20px; }
.footer-social a { width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,0.05); display: grid; place-items: center; transition: all .15s; }
.footer-social a:hover { background: var(--primary); transform: translateY(-2px); }
.footer-social svg { width: 14px; height: 14px; color: #fff; }
.footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 12.5px; }
.footer-bottom .madein { display: flex; align-items: center; gap: 8px; }
.india-flag { width: 22px; height: 14px; background: linear-gradient(180deg, #FF9933 0 33%, white 33% 66%, #138808 66% 100%); border-radius: 2px; position: relative; }
.india-flag::after { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 5px; height: 5px; border: 1.2px solid #000080; border-radius: 50%; }

/* ============ FLOATING WHATSAPP ============ */
.whatsapp-float { position: fixed; bottom: 20px; right: 20px; z-index: 90; background: #25D366; color: #fff; padding: 12px 16px; border-radius: 999px; font-weight: 600; font-size: 13.5px; display: flex; align-items: center; gap: 9px; box-shadow: 0 10px 28px rgba(37,211,102,0.4); cursor: pointer; transition: all .15s; }
.whatsapp-float:hover { transform: scale(1.05); }
.whatsapp-float svg { width: 20px; height: 20px; }
@media (max-width: 560px) { .whatsapp-float span { display: none; } .whatsapp-float { padding: 12px; } }

/* =================== JOURNEY THEATER SCREENS =================== */
/* Phone-app screen content shared between origination & management */

/* shared */
.scr { padding: 0; height: 100%; display: flex; flex-direction: column; }
.scr-h1 { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); padding: 0 18px; margin: 4px 0 12px; }
.scr-sub { font-size: 12px; color: var(--ink-3); padding: 0 18px; margin-bottom: 16px; line-height: 1.5; }
.scr-input {
  background: #fff; border: 1px solid var(--line);
  border-radius: 10px; padding: 12px 14px; margin: 0 18px 10px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--ink); font-weight: 500;
}
.scr-input .lbl { font-size: 10.5px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; }
.scr-input input { border: 0; outline: 0; background: transparent; font: inherit; flex: 1; color: var(--ink); }
.scr-input.focused { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(6,168,154,0.12); }
.scr-input-stack { display: flex; flex-direction: column; flex: 1; gap: 2px; }
.scr-cta {
  margin: auto 18px 18px; padding: 13px;
  background: linear-gradient(135deg, var(--primary), var(--pink));
  color: #fff; border-radius: 12px;
  font-size: 13.5px; font-weight: 600; text-align: center;
  box-shadow: 0 8px 18px rgba(6,168,154,0.35);
}
.scr-row { display: flex; justify-content: space-between; padding: 9px 18px; font-size: 12px; color: var(--ink-2); }
.scr-row b { color: var(--ink); font-weight: 600; }
.scr-divider { height: 1px; background: var(--line); margin: 8px 18px; }

/* --- 1) Apply: PAN + Mobile --- */
.scr-otp-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; padding: 0 18px; margin-bottom: 14px; }
.scr-otp-cell {
  aspect-ratio: 1; border: 1.5px solid var(--line);
  border-radius: 8px; display: grid; place-items: center;
  font-size: 17px; font-weight: 700; color: var(--ink); background: #fff;
}
.scr-otp-cell.filled { border-color: var(--primary); background: var(--primary-light); }
.scr-otp-cell.cursor { border-color: var(--primary); position: relative; }
.scr-otp-cell.cursor::after {
  content: ''; position: absolute; width: 2px; height: 60%;
  background: var(--primary); animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* --- 2) Aadhaar e-KYC --- */
.scr-kyc-card {
  margin: 8px 18px 14px; padding: 14px;
  background: linear-gradient(135deg, #FFFDF6 0%, #FFF8E0 100%);
  border: 1px solid #F0DFAE; border-radius: 12px;
  position: relative; overflow: hidden;
}
.scr-kyc-card::before { content: ''; position: absolute; top: -30px; right: -30px; width: 100px; height: 100px; background: radial-gradient(circle, rgba(255,181,71,0.3), transparent); }
.scr-kyc-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.scr-kyc-emblem { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, #FF9933, #138808); display: grid; place-items: center; color: #fff; font-size: 11px; font-weight: 700; }
.scr-kyc-name { font-size: 13px; font-weight: 700; color: var(--ink); }
.scr-kyc-meta { font-size: 10.5px; color: var(--ink-3); }
.scr-kyc-num { font-family: 'JetBrains Mono', monospace; font-size: 13.5px; letter-spacing: 0.08em; color: var(--ink); font-weight: 600; margin-top: 6px; }
.scr-kyc-row { display: flex; justify-content: space-between; font-size: 11px; color: var(--ink-2); margin-top: 8px; }

.scr-otp-toast {
  margin: 0 18px 12px; padding: 10px 12px;
  background: var(--primary-light); border: 1px solid rgba(6,168,154,0.2);
  border-radius: 10px; display: flex; align-items: center; gap: 10px;
  font-size: 11.5px; color: var(--ink); font-weight: 500;
}
.scr-otp-toast .ico { width: 24px; height: 24px; border-radius: 6px; background: var(--primary); display: grid; place-items: center; color: #fff; flex-shrink: 0; }

/* --- 3) Bank via AA --- */
.scr-aa-bank {
  margin: 0 18px 8px; padding: 12px 14px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  display: flex; align-items: center; gap: 12px;
}
.scr-aa-bank-logo {
  width: 36px; height: 36px; border-radius: 8px;
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 12px;
}
.scr-aa-bank-logo.b1 { background: linear-gradient(135deg, #004C8F, #0066B3); }
.scr-aa-bank-logo.b2 { background: linear-gradient(135deg, #ED1C24, #C8102E); }
.scr-aa-bank-logo.b3 { background: linear-gradient(135deg, #1F4E79, #2E75B6); }
.scr-aa-bank-name { font-size: 12.5px; font-weight: 600; color: var(--ink); flex: 1; }
.scr-aa-bank-status { font-size: 10px; color: var(--success); font-weight: 600; display: flex; align-items: center; gap: 4px; }
.scr-aa-bank-status::before { content: ''; width: 6px; height: 6px; background: var(--success); border-radius: 50%; }
.scr-aa-chip {
  margin: 8px 18px; padding: 10px 12px;
  background: var(--success-bg); border-radius: 8px;
  font-size: 11px; color: #00604F; font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}
.scr-aa-chip .ico { width: 18px; height: 18px; border-radius: 50%; background: var(--success); display: grid; place-items: center; color: #fff; flex-shrink: 0; }

/* --- 4) AI decisioning --- */
.scr-ai-orb {
  margin: 18px auto 14px; width: 110px; height: 110px;
  border-radius: 50%; position: relative;
  background: radial-gradient(circle at 30% 30%, rgba(6,168,154,0.4), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(24,178,107,0.4), transparent 60%);
  display: grid; place-items: center;
}
.scr-ai-orb::before, .scr-ai-orb::after {
  content: ''; position: absolute; inset: -8px;
  border-radius: 50%; border: 1.5px dashed rgba(6,168,154,0.4);
  animation: spin 8s linear infinite;
}
.scr-ai-orb::after { inset: 6px; border-color: rgba(24,178,107,0.5); animation-duration: 5s; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.scr-ai-orb-inner {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--pink));
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(6,168,154,0.4);
}
.scr-ai-orb-inner svg { width: 26px; height: 26px; color: #fff; }
.scr-ai-list { padding: 0 18px; }
.scr-ai-line {
  display: flex; align-items: center; gap: 10px;
  font-size: 11.5px; color: var(--ink-2); padding: 6px 0;
  border-bottom: 1px dashed var(--line);
}
.scr-ai-line:last-child { border-bottom: 0; }
.scr-ai-line .dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--success); display: grid; place-items: center; color: #fff; flex-shrink: 0;
}
.scr-ai-line.pending .dot { background: var(--line); }
.scr-ai-line.pending .dot::before { content: ''; width: 6px; height: 6px; border: 1.5px solid var(--ink-3); border-radius: 50%; border-top-color: transparent; animation: spin 0.8s linear infinite; }
.scr-ai-line b { color: var(--ink); font-weight: 600; margin-left: auto; }

/* --- 5) Offer + KFS --- */
.scr-offer {
  margin: 4px 18px 14px; padding: 18px 16px 16px;
  background: linear-gradient(135deg, #0A2540, #1A1F36);
  border-radius: 14px; color: #fff;
  position: relative; overflow: hidden;
}
.scr-offer::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(6,168,154,0.5), transparent 50%);
}
.scr-offer-label { font-size: 10px; color: rgba(255,255,255,0.6); letter-spacing: 0.06em; text-transform: uppercase; position: relative; z-index: 1; font-family: 'JetBrains Mono', monospace; }
.scr-offer-amount { font-size: 28px; font-weight: 700; letter-spacing: -0.025em; margin: 4px 0 14px; position: relative; z-index: 1; }
.scr-offer-rows { position: relative; z-index: 1; }
.scr-offer-row { display: flex; justify-content: space-between; font-size: 11px; padding: 4px 0; }
.scr-offer-row span { color: rgba(255,255,255,0.7); }
.scr-offer-row b { color: #fff; }
.scr-kfs { padding: 0 18px; margin-bottom: 12px; }
.scr-kfs-row { display: flex; justify-content: space-between; font-size: 11px; padding: 5px 0; color: var(--ink-2); border-bottom: 1px dashed var(--line); }
.scr-kfs-row:last-child { border-bottom: 0; }
.scr-kfs-row b { color: var(--ink); font-weight: 600; }

/* --- 6) e-Sign + e-NACH --- */
.scr-sign-pad {
  margin: 6px 18px 12px; padding: 26px 14px;
  background: #fff; border: 1.5px dashed var(--primary);
  border-radius: 12px; text-align: center;
  position: relative;
}
.scr-sign-line {
  display: block; height: 1px; background: var(--line); margin-top: 36px;
}
.scr-sign-script {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -55%);
  font-family: 'Caveat', 'Brush Script MT', cursive;
  font-size: 28px; color: var(--primary); font-weight: 600;
  letter-spacing: -0.02em;
}
.scr-sign-label { font-size: 10.5px; color: var(--ink-3); margin-top: 8px; font-weight: 500; }
.scr-nach {
  margin: 6px 18px 12px; padding: 12px 14px;
  background: var(--primary-light); border-radius: 10px;
  display: flex; gap: 12px; align-items: center;
}
.scr-nach-ico { width: 32px; height: 32px; border-radius: 8px; background: #fff; display: grid; place-items: center; color: var(--primary); flex-shrink: 0; }
.scr-nach-title { font-size: 12px; font-weight: 600; color: var(--ink); }
.scr-nach-sub { font-size: 10.5px; color: var(--ink-2); margin-top: 1px; }

/* --- 7) Disbursal --- */
.scr-success {
  text-align: center; padding: 18px 18px 0;
  display: flex; flex-direction: column; align-items: center;
}
.scr-success-burst {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--success); display: grid; place-items: center; color: #fff;
  box-shadow: 0 10px 30px rgba(0,184,156,0.4);
  margin-bottom: 16px; position: relative;
}
.scr-success-burst::before, .scr-success-burst::after {
  content: ''; position: absolute; inset: -6px;
  border-radius: 50%; border: 2px solid var(--success);
  opacity: 0.2;
}
.scr-success-burst::after { inset: -14px; opacity: 0.1; }
.scr-success-burst svg { width: 36px; height: 36px; }
.scr-success h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.scr-success p { font-size: 11.5px; color: var(--ink-2); max-width: 220px; margin: 0 auto 12px; line-height: 1.5; }
.scr-utr {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px; background: var(--bg-soft); border-radius: 999px;
  font-family: 'JetBrains Mono', monospace; font-size: 10.5px; color: var(--ink-2);
  margin-bottom: 12px;
}
.scr-credited {
  margin: 0 18px 14px; padding: 12px 14px;
  background: linear-gradient(135deg, #E6FAF5, #FFF);
  border: 1px solid #B7EBDB; border-radius: 12px;
  display: flex; align-items: center; gap: 12px;
}
.scr-credited-amt { font-size: 17px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.scr-credited-sub { font-size: 10.5px; color: var(--ink-3); margin-top: 1px; }

/* ============ MANAGEMENT THEATER — DASHBOARD SCREENS ============ */
.dash-pad { padding: 20px 24px; flex: 1; overflow: hidden; }
.dash-h { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.dash-title { font-size: 14px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.dash-sub { font-size: 11px; color: var(--ink-3); margin-top: 2px; }
.dash-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 9px; background: var(--success-bg); color: #00604F;
  border-radius: 999px; font-size: 10px; font-weight: 600;
}
.dash-pill::before { content: ''; width: 5px; height: 5px; background: var(--success); border-radius: 50%; }
.dash-pill.warn { background: #FFF4E0; color: #8A5500; }
.dash-pill.warn::before { background: var(--orange); }

.dash-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 10px; padding: 14px;
}
.dash-card.tint { background: linear-gradient(135deg, #F6F9FC, #FFF); }

.dash-amount { font-size: 26px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; line-height: 1; }
.dash-amount small { font-size: 12px; color: var(--ink-3); font-weight: 500; margin-left: 6px; }
.dash-bar-track { height: 6px; background: var(--line-2); border-radius: 3px; margin: 12px 0 6px; overflow: hidden; }
.dash-bar-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--pink)); border-radius: 3px; }
.dash-bar-meta { display: flex; justify-content: space-between; font-size: 10.5px; color: var(--ink-3); }
.dash-row { display: flex; justify-content: space-between; font-size: 12px; color: var(--ink-2); padding: 5px 0; }
.dash-row b { color: var(--ink); font-weight: 600; }

.dash-grid-2 { display: grid; grid-template-columns: 1.2fr 1fr; gap: 12px; }
.dash-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }

.dash-mini {
  padding: 12px; background: #fff; border: 1px solid var(--line); border-radius: 10px;
}
.dash-mini-label { font-size: 10px; color: var(--ink-3); font-weight: 500; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.04em; }
.dash-mini-val { font-size: 17px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; line-height: 1; }
.dash-mini-sub { font-size: 10px; color: var(--success); font-weight: 600; margin-top: 4px; }

/* Reminders timeline */
.dash-tl {
  display: flex; flex-direction: column; gap: 0; position: relative;
}
.dash-tl::before { content: ''; position: absolute; left: 8px; top: 8px; bottom: 8px; width: 1.5px; background: var(--line); }
.dash-tl-item { position: relative; padding: 8px 0 8px 26px; font-size: 11.5px; color: var(--ink-2); }
.dash-tl-item::before {
  content: ''; position: absolute; left: 4px; top: 12px;
  width: 11px; height: 11px; border-radius: 50%; background: #fff;
  border: 2px solid var(--line);
}
.dash-tl-item.done::before { background: var(--success); border-color: var(--success); }
.dash-tl-item.now::before { background: var(--primary); border-color: var(--primary); box-shadow: 0 0 0 4px rgba(6,168,154,0.18); }
.dash-tl-item b { color: var(--ink); font-weight: 600; }
.dash-tl-item small { display: block; font-size: 10px; color: var(--ink-3); margin-top: 1px; }

/* Pay screen */
.dash-pay-tabs { display: flex; gap: 4px; padding: 4px; background: var(--bg-soft); border-radius: 10px; margin-bottom: 14px; border: 1px solid var(--line); }
.dash-pay-tabs > div { flex: 1; text-align: center; font-size: 11.5px; font-weight: 600; padding: 8px; border-radius: 8px; color: var(--ink-3); cursor: pointer; }
.dash-pay-tabs > div.active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.dash-pay-amount {
  text-align: center; padding: 18px 0;
  background: linear-gradient(135deg, var(--primary-light), #fff);
  border-radius: 12px; margin-bottom: 12px;
}
.dash-pay-amount .v { font-size: 32px; font-weight: 700; color: var(--ink); letter-spacing: -0.03em; }
.dash-pay-amount .l { font-size: 11px; color: var(--ink-3); font-weight: 500; margin-bottom: 4px; }
.dash-upi-list { display: flex; flex-direction: column; gap: 6px; }
.dash-upi-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  font-size: 12px; font-weight: 500; color: var(--ink);
}
.dash-upi-item.active { border-color: var(--primary); background: var(--primary-light); }
.dash-upi-logo { width: 26px; height: 26px; border-radius: 6px; display: grid; place-items: center; color: #fff; font-size: 10px; font-weight: 700; }
.dash-upi-logo.gpay { background: #4285F4; }
.dash-upi-logo.phpe { background: #5F259F; }
.dash-upi-logo.pytm { background: #00BAF2; }
.dash-upi-radio { width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--line); margin-left: auto; }
.dash-upi-item.active .dash-upi-radio { border-color: var(--primary); background: var(--primary); box-shadow: inset 0 0 0 3px #fff; }

/* Foreclosure quote */
.dash-fc-summary {
  background: linear-gradient(135deg, #FFF4E0, #FFFBF0);
  border: 1px solid #F0DFAE;
  border-radius: 10px; padding: 14px;
}
.dash-fc-save {
  margin-top: 10px; padding: 8px 12px;
  background: var(--success-bg); border-radius: 8px;
  font-size: 11px; color: #00604F; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}

/* NOC */
.dash-noc {
  position: relative; background: #fff;
  border: 1px solid var(--line); border-radius: 10px;
  padding: 14px; overflow: hidden;
}
.dash-noc::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--primary), var(--pink));
}
.dash-noc-stamp {
  position: absolute; bottom: 10px; right: 10px;
  width: 64px; height: 64px; border-radius: 50%;
  border: 2px dashed var(--success); display: grid; place-items: center;
  color: var(--success); font-size: 9px; font-weight: 800; text-transform: uppercase;
  transform: rotate(-12deg); opacity: 0.85; line-height: 1.1; text-align: center;
  letter-spacing: 0.04em;
}
.dash-noc-title { font-size: 13px; font-weight: 700; color: var(--ink); }
.dash-noc-sub { font-size: 10.5px; color: var(--ink-3); margin-top: 2px; margin-bottom: 10px; }
.dash-noc-row { display: flex; justify-content: space-between; font-size: 11px; padding: 3px 0; color: var(--ink-2); }
.dash-noc-row b { color: var(--ink); font-weight: 600; }

/* Topup */
.dash-topup-chart {
  display: flex; align-items: flex-end; gap: 8px; height: 100px;
  padding: 10px 0; border-bottom: 1px solid var(--line);
}
.dash-topup-bar {
  flex: 1; background: linear-gradient(180deg, var(--primary-light), var(--primary));
  border-radius: 4px 4px 0 0; position: relative;
}
.dash-topup-bar.hi { background: linear-gradient(180deg, var(--pink), var(--primary)); }
.dash-topup-bar span { position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); font-size: 9px; color: var(--ink-3); }
.dash-topup-offer {
  margin-top: 18px; padding: 14px;
  background: linear-gradient(135deg, var(--primary), var(--pink));
  border-radius: 12px; color: #fff; position: relative; overflow: hidden;
}
.dash-topup-offer-label { font-size: 10px; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.05em; font-family: 'JetBrains Mono', monospace; }
.dash-topup-offer-amt { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin: 4px 0 8px; }
.dash-topup-offer-cta { display: inline-flex; align-items: center; gap: 4px; padding: 6px 12px; background: #fff; color: var(--primary); border-radius: 999px; font-size: 11px; font-weight: 600; }

/* =================== TWEAKS PANEL =================== */
#rh-tweaks {
  position: fixed; top: 50%; right: 24px; transform: translateY(-50%) translateX(calc(100% + 40px));
  width: 320px; background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 30px 60px -20px rgba(10,37,64,0.25), 0 18px 36px -18px rgba(10,37,64,0.18);
  z-index: 200;
  transition: transform .3s ease;
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow: hidden;
}
#rh-tweaks.open { transform: translateY(-50%) translateX(0); }
.tweaks-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; border-bottom: 1px solid var(--line-2);
  background: linear-gradient(135deg, var(--primary-light), #fff);
}
.tweaks-title { font-weight: 700; font-size: 14px; color: var(--ink); letter-spacing: -0.01em; display: flex; align-items: center; gap: 8px; }
.tweaks-title::before { content: '⚡'; font-size: 14px; color: var(--primary); }
.tweaks-close {
  width: 24px; height: 24px; border-radius: 6px;
  background: rgba(0,0,0,0.05); border: 0; cursor: pointer;
  color: var(--ink-2); font-size: 16px; line-height: 1; display: grid; place-items: center;
}
.tweaks-close:hover { background: rgba(0,0,0,0.1); }
.tweaks-body { padding: 18px; max-height: 70vh; overflow-y: auto; }
.tweaks-group + .tweaks-group { margin-top: 18px; padding-top: 18px; border-top: 1px dashed var(--line); }
.tweaks-label { font-size: 12px; font-weight: 600; color: var(--ink-2); margin-bottom: 10px; }
.tweaks-row { display: flex; justify-content: space-between; align-items: center; }
.tweaks-row .tweaks-label { margin-bottom: 0; }
.tweaks-hint { font-size: 11px; color: var(--ink-3); margin-top: 8px; line-height: 1.5; }

.tweaks-swatches { display: flex; gap: 10px; }
.tweaks-swatch {
  position: relative; width: 56px; height: 36px; border: 1.5px solid var(--line);
  border-radius: 10px; background: #fff; cursor: pointer; padding: 0;
  display: flex; overflow: hidden;
}
.tweaks-swatch:hover { border-color: var(--ink-3); }
.tweaks-swatch.active { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(6,168,154,0.15); }
.tweaks-swatch span { flex: 1; display: block; }

.tweaks-toggle {
  width: 36px; height: 22px; border-radius: 999px; padding: 0;
  background: var(--line); border: 0; cursor: pointer; position: relative;
  transition: background .2s;
}
.tweaks-toggle span {
  position: absolute; top: 2px; left: 2px;
  width: 18px; height: 18px; background: #fff; border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  transition: left .2s;
}
.tweaks-toggle.on { background: var(--primary); }
.tweaks-toggle.on span { left: 16px; }

.tweaks-text {
  width: 100%; padding: 10px 12px;
  border: 1px solid var(--line); border-radius: 8px;
  font-family: inherit; font-size: 13px; color: var(--ink);
  resize: vertical; outline: none;
}
.tweaks-text:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(6,168,154,0.12); }

:root{
  --primary:#06A89A; --primary-dark:#057E68; --primary-light:#E2F4EF;
  --pink:#18B26B; --indigo:#06A89A; --blue:#0E9C84; --violet:#2BB8A3; --cyan:#34D6B8;
  --mint:#10C9A6; --green:#0FB893; --success:#0FA77F; --success-bg:#E3F7EF;
  --ink:#08293F; --ink-2:#41566A; --ink-3:#6A8093;
  --grad-mesh: conic-gradient(from 210deg at 40% 30%,
     #8FE9CF 0deg, #06A89A 70deg, #18B26B 140deg, #0FB5A8 205deg, #34D6B8 285deg, #8FE9CF 360deg);
}
.grad-text{ background:linear-gradient(95deg,#06A89A 0%,#18B26B 42%,#0FB5A8 78%,#34D6B8 100%);
  background-size:220% 100%; -webkit-background-clip:text; background-clip:text; color:transparent; }
.stat-num.g1{ background:linear-gradient(95deg,#06A89A,#18B26B); -webkit-background-clip:text;background-clip:text;color:transparent; }
.stat-num.g2{ background:linear-gradient(95deg,#0FB5A8,#06A89A); -webkit-background-clip:text;background-clip:text;color:transparent; }
.stat-num.g3{ background:linear-gradient(95deg,#18B26B,#0FA77F); -webkit-background-clip:text;background-clip:text;color:transparent; }
.stat-num.g4{ background:linear-gradient(95deg,#34D6B8,#06A89A); -webkit-background-clip:text;background-clip:text;color:transparent; }
.cta-banner{ background:linear-gradient(135deg,#08293F 0%,#0B3A4E 52%,#0E5A48 100%); }
.cta-banner::before{ background:
  radial-gradient(circle at 20% 30%, rgba(6,168,154,0.42), transparent 50%),
  radial-gradient(circle at 80% 70%, rgba(24,178,107,0.32), transparent 50%); }
.cta-banner h2 .grad-text{ background:linear-gradient(95deg,#fff,#8FE9CF,#18B26B); -webkit-background-clip:text;background-clip:text;color:transparent; }
.calc-result{ background:linear-gradient(160deg,#08293F 0%,#0E3B4E 100%); }
.calc-result::before{ background:
  radial-gradient(circle at 80% 0%, rgba(6,168,154,0.45), transparent 50%),
  radial-gradient(circle at 0% 100%, rgba(24,178,107,0.30), transparent 50%); }
.calc-result-amount .grad-text{ background:linear-gradient(95deg,#fff,#8FE9CF,#18B26B); -webkit-background-clip:text;background-clip:text;color:transparent; }
.scr-offer{ background:linear-gradient(135deg,#08293F,#0E3B4E); }
.dash-noc-stamp{ border-color:var(--success); color:var(--success); }
/* brand logo placements */
.nav-wordmark{ height:30px; width:auto; display:block; }
.footer-logo-badge{ display:inline-flex; align-items:center; background:#fff; padding:9px 15px; border-radius:13px; box-shadow:0 6px 18px rgba(0,0,0,0.18); }
.footer-logo-badge img{ height:26px; width:auto; display:block; }

/* =================== CARE POPUP =================== */
.care-modal{ position:fixed; inset:0; z-index:300; display:none; align-items:center; justify-content:center; padding:24px; }
.care-modal.open{ display:flex; }
.care-overlay{ position:absolute; inset:0; background:rgba(8,41,63,0.55); backdrop-filter:blur(4px); -webkit-backdrop-filter:blur(4px); opacity:0; transition:opacity .3s ease; }
.care-modal.open .care-overlay{ opacity:1; }
.care-dialog{
  position:relative; z-index:1; width:100%; max-width:620px; max-height:88vh; overflow-y:auto;
  background:#fff; border-radius:24px; padding:42px 44px 36px;
  box-shadow:0 50px 100px -20px rgba(8,41,63,0.45);
  transform:translateY(20px) scale(0.96); opacity:0;
  transition:transform .4s cubic-bezier(.2,.8,.2,1), opacity .35s ease;
}
.care-dialog::before{
  content:''; position:absolute; top:0; left:0; right:0; height:5px;
  background:linear-gradient(90deg,#06A89A,#18B26B); border-radius:24px 24px 0 0;
}
.care-modal.open .care-dialog{ transform:translateY(0) scale(1); opacity:1; }
.care-close{
  position:absolute; top:18px; right:18px; width:36px; height:36px; border-radius:50%;
  border:1.5px solid var(--line); background:#fff; color:var(--ink-3); font-size:20px; line-height:1;
  cursor:pointer; display:grid; place-items:center; transition:all .15s;
}
.care-close:hover{ border-color:var(--primary); color:var(--primary); background:var(--primary-light); }
.care-badge{
  display:inline-flex; align-items:center; gap:8px; padding:6px 13px; border-radius:999px;
  background:var(--primary-light); color:var(--primary-dark);
  font:600 11.5px/1 'JetBrains Mono',monospace; letter-spacing:.06em; text-transform:uppercase; margin-bottom:18px;
}
.care-badge .dot{ width:7px; height:7px; border-radius:50%; background:var(--primary); box-shadow:0 0 0 3px rgba(6,168,154,.2); }
.care-title{ font-size:clamp(28px,4vw,38px); font-weight:800; letter-spacing:-.03em; color:var(--ink); margin-bottom:14px; }
.care-title span{ color:var(--primary); }
.care-lead{ font-size:15.5px; line-height:1.6; color:var(--ink-2); margin-bottom:24px; }
.care-lead b{ color:var(--ink); font-weight:700; }
.care-rules-title{ font:700 13px/1 'Plus Jakarta Sans',sans-serif; color:var(--ink); letter-spacing:-.01em; margin-bottom:14px; display:flex; align-items:center; gap:9px; }
.care-rules-title::before{ content:''; width:22px; height:2px; background:var(--primary); border-radius:2px; }
.care-rules{ list-style:none; margin:0 0 28px; padding:0; display:flex; flex-direction:column; gap:11px; }
.care-rules li{ position:relative; padding-left:32px; font-size:14.5px; line-height:1.5; color:var(--ink-2); }
.care-rules li::before{
  content:''; position:absolute; left:0; top:1px; width:20px; height:20px; border-radius:50%;
  background:var(--success-bg);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230FA77F' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:center;
}
.care-rules li a{ color:var(--primary-dark); font-weight:600; text-decoration:underline; text-underline-offset:2px; }
.care-ok{ width:100%; }
@media (max-width:560px){ .care-dialog{ padding:34px 24px 28px; border-radius:20px; } .care-rules li{ font-size:13.5px; } }

/* ===== CRED-style dark product cards ===== */
.products{ background:#04121A; position:relative; overflow:hidden; }
.products::before{ content:''; position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(78% 46% at 50% -8%, rgba(8,168,154,.12), transparent 62%); }
.products .container{ position:relative; z-index:1; }
.products .section-head .eyebrow{ color:#34D6B8; }
.products .section-head .display-2{ color:#fff; }
.products .section-head .lead{ color:rgba(255,255,255,.6); }

.pcred-rail{ display:flex; gap:20px; overflow-x:auto; scroll-snap-type:x mandatory;
  padding:8px 24px 24px; margin:0 -24px; scrollbar-width:none; -webkit-overflow-scrolling:touch; }
.pcred-rail::-webkit-scrollbar{ display:none; }
.pcred{ scroll-snap-align:start; flex:0 0 300px; height:548px; position:relative; overflow:hidden;
  border-radius:26px; background:linear-gradient(180deg,#0C212C 0%,#05121A 72%);
  border:1px solid rgba(255,255,255,.07); display:flex; flex-direction:column; padding:30px 28px;
  box-shadow:0 36px 70px -34px rgba(0,0,0,.85), inset 0 1px 0 rgba(255,255,255,.05);
  --c1:#13D9B2; --c2:#0A8E72; }
.pcred-glow{ position:absolute; left:50%; bottom:-8%; width:360px; height:360px; transform:translateX(-50%);
  background:radial-gradient(circle at 50% 50%, color-mix(in srgb,var(--c1) 82%, transparent),
    color-mix(in srgb,var(--c2) 34%, transparent) 40%, transparent 66%);
  filter:blur(10px); opacity:.5; pointer-events:none; transition:opacity .3s; }
.pcred:hover .pcred-glow{ opacity:.72; }
.pcred-eyebrow{ display:inline-flex; align-items:center; gap:9px; font:600 12px/1 'JetBrains Mono',monospace;
  letter-spacing:.11em; text-transform:uppercase; color:rgba(255,255,255,.82); position:relative; z-index:2; }
.pcred-eyebrow svg{ width:18px; height:18px; color:var(--c1); flex-shrink:0; }
.pcred-title{ font-size:30px; font-weight:800; letter-spacing:-.03em; line-height:1.04; color:#fff;
  margin:18px 0 11px; position:relative; z-index:2; }
.pcred-sub{ font-size:13px; color:rgba(255,255,255,.58); line-height:1.5; margin-bottom:20px; max-width:228px; position:relative; z-index:2; }
.pcred-btn{ display:inline-flex; align-items:center; gap:10px; align-self:flex-start; position:relative; z-index:2;
  padding:11px 18px; border-radius:12px; border:1px solid rgba(255,255,255,.18);
  font:700 11.5px/1 'JetBrains Mono',monospace; letter-spacing:.1em; text-transform:uppercase; color:#fff;
  background:rgba(255,255,255,.05); transition:all .18s; }
.pcred-btn span{ transition:transform .2s; }
.pcred-btn:hover{ border-color:var(--c1); background:color-mix(in srgb,var(--c1) 18%, transparent); }
.pcred-btn:hover span{ transform:translateX(3px); }
.pcred-art{ position:relative; flex:1; display:grid; place-items:center; z-index:1; }
@media (prefers-reduced-motion:no-preference){ .pcred-obj{ animation:pcredFloat 6.5s ease-in-out infinite; } }
@keyframes pcredFloat{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-10px); } }

/* --- coin --- */
.coin{ position:relative; width:122px; height:122px; }
.coin-edge,.coin-face{ position:absolute; border-radius:50%; }
.coin-edge{ inset:7px 0 -11px 0;
  background:linear-gradient(180deg, color-mix(in srgb,var(--c2) 82%,#000), #04110c);
  box-shadow:0 26px 50px -10px color-mix(in srgb,var(--c1) 78%, transparent); }
.coin-face{ inset:0; border:1px solid color-mix(in srgb,var(--c1) 55%,#fff);
  background:
   radial-gradient(58% 50% at 33% 25%, rgba(255,255,255,.9), transparent 56%),
   linear-gradient(150deg, color-mix(in srgb,var(--c1) 90%,#fff), var(--c1) 40%, color-mix(in srgb,var(--c2) 86%,#000));
  box-shadow: inset 0 -11px 18px rgba(0,0,0,.42), inset 0 8px 14px rgba(255,255,255,.5); }
.coin-face::after{ content:'₹'; position:absolute; inset:0; display:grid; place-items:center;
  font:800 56px/1 'Plus Jakarta Sans',sans-serif; color:color-mix(in srgb,var(--c2) 62%,#021);
  text-shadow:0 2px 0 rgba(255,255,255,.42), 0 -1px 1px rgba(0,0,0,.25); }
.coin.s{ width:58px; height:58px; }
.coin.s .coin-face::after{ font-size:27px; }
.coin.s .coin-edge{ inset:4px 0 -6px 0; }
.coin-stack{ position:relative; width:144px; height:170px; }
.coin-stack .coin{ position:absolute; left:11px; }
.coin-stack .coin:nth-child(1){ top:48px; z-index:1; }
.coin-stack .coin:nth-child(2){ top:24px; z-index:2; }
.coin-stack .coin:nth-child(3){ top:0; z-index:3; }
.coin-duo{ position:relative; width:150px; height:140px; }
.coin-duo .coin{ position:absolute; top:14px; left:8px; }
.coin-duo .coin.s{ top:-2px; left:96px; }

/* --- premium card --- */
.pcard{ position:relative; width:210px; height:132px; border-radius:16px; transform:rotate(-8deg);
  background:linear-gradient(135deg, color-mix(in srgb,var(--c1) 86%,#000) 0%, color-mix(in srgb,var(--c2) 88%,#000) 100%);
  border:1px solid color-mix(in srgb,var(--c1) 50%,#fff); overflow:hidden;
  box-shadow:0 30px 56px -14px color-mix(in srgb,var(--c1) 70%, transparent), inset 0 1px 0 rgba(255,255,255,.45); }
.pcard::before{ content:''; position:absolute; inset:0;
  background:linear-gradient(118deg, transparent 32%, rgba(255,255,255,.32) 46%, transparent 56%); }
.pcard .chip{ position:absolute; top:46px; left:20px; width:36px; height:27px; border-radius:6px;
  background:linear-gradient(135deg,#FFE9A8,#D9A93C); box-shadow:inset 0 0 0 1px rgba(0,0,0,.18); }
.pcard .num{ position:absolute; bottom:24px; left:20px; right:18px; font:700 12.5px/1 'JetBrains Mono',monospace;
  color:rgba(255,255,255,.9); letter-spacing:.1em; }
.pcard .brand{ position:absolute; top:18px; left:20px; font:800 14px/1 'Plus Jakarta Sans',sans-serif; color:#fff; letter-spacing:-.01em; }
.pcard .badge{ position:absolute; top:14px; right:14px; width:30px; height:30px; border-radius:50%;
  background:#fff; color:var(--c2); display:grid; place-items:center; font:800 20px/1 'Plus Jakarta Sans'; }
.pcard-stack{ position:relative; width:222px; height:150px; }
.pcard-stack .pcard{ position:absolute; top:10px; left:0; }
.pcard-stack .pcard.back{ transform:rotate(-16deg) translate(-14px,8px); opacity:.5; filter:saturate(.7); height:128px; width:200px; }

/* --- growth graph --- */
.pgraph{ position:relative; width:174px; height:134px; }
.pgraph .bars{ position:absolute; inset:0; display:flex; align-items:flex-end; gap:12px; }
.pgraph .bars i{ flex:1; border-radius:7px 7px 0 0; display:block;
  background:linear-gradient(180deg, color-mix(in srgb,var(--c1) 95%,#fff), color-mix(in srgb,var(--c2) 76%,#000));
  box-shadow:0 0 24px color-mix(in srgb,var(--c1) 55%, transparent), inset 0 1px 0 rgba(255,255,255,.4); }
.pgraph .pg-arrow{ position:absolute; top:-14px; right:-12px; width:42px; height:42px; border-radius:50%;
  background:color-mix(in srgb,var(--c1) 22%, #04121A); border:1px solid color-mix(in srgb,var(--c1) 55%, transparent);
  display:grid; place-items:center; color:var(--c1); box-shadow:0 0 22px color-mix(in srgb,var(--c1) 55%, transparent); }
.pgraph .pg-arrow svg{ width:20px; height:20px; }

@media (max-width:560px){ .pcred{ flex-basis:80vw; height:520px; } }

/* ===== Minimalist 3D glassmorphism graphics for product cards ===== */
#products .product-card-head{ align-items:flex-start; min-height:96px; margin-bottom:26px; }
#products .product-name{ position:relative; z-index:2; }
.g3d{ position:relative; width:108px; height:92px; flex-shrink:0; --g:#06A89A; --g2:#18B26B; }
.product-card.p2 .g3d{ --g:#0FB36E; --g2:#17C780; }
.product-card.p3 .g3d{ --g:#0E8C8A; --g2:#1FB7A0; }
.product-card.p4 .g3d{ --g:#10C0A0; --g2:#37D7BB; }
.product-card.p5 .g3d{ --g:#0FB893; --g2:#12C2A8; }
.g3d-glow{ position:absolute; left:50%; top:44%; width:118px; height:118px; transform:translate(-50%,-50%); border-radius:50%;
  background:radial-gradient(circle, color-mix(in srgb,var(--g) 56%, transparent), transparent 68%); filter:blur(13px); opacity:.6; pointer-events:none; }
.g3d-stage{ position:absolute; inset:0; perspective:580px; transform-style:preserve-3d; }
.g3d-plate{ position:absolute; left:50%; top:44%; width:72px; height:72px; border-radius:22px;
  transform:translate(-50%,-50%) rotateX(21deg) rotateZ(-14deg); transform-style:preserve-3d; }
.g3d-plate.back{ width:64px; height:64px;
  transform:translate(-50%,-50%) rotateX(21deg) rotateZ(-14deg) translate(14px,16px);
  background:linear-gradient(145deg, color-mix(in srgb,var(--g) 62%, #fff), color-mix(in srgb,var(--g2) 60%, transparent));
  box-shadow:0 16px 26px -12px color-mix(in srgb,var(--g) 60%, transparent); opacity:.82; }
.g3d-plate.front{
  background:linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,255,255,.36) 45%, rgba(255,255,255,.14));
  border:1px solid rgba(255,255,255,.85);
  box-shadow:0 22px 32px -13px color-mix(in srgb,var(--g) 55%, transparent), inset 0 2px 2px rgba(255,255,255,.95), inset 0 -13px 24px -10px color-mix(in srgb,var(--g) 38%, transparent);
  backdrop-filter:blur(7px) saturate(150%); -webkit-backdrop-filter:blur(7px) saturate(150%);
  display:grid; place-items:center; z-index:2; }
.g3d-plate.front svg{ width:32px; height:32px; color:var(--g); filter:drop-shadow(0 4px 5px color-mix(in srgb,var(--g) 45%, transparent)); }
.g3d-bead{ position:absolute; left:13%; top:12%; width:17px; height:17px; border-radius:50%; z-index:3;
  background:radial-gradient(circle at 32% 28%, #fff, color-mix(in srgb,var(--g2) 70%, #fff) 58%, var(--g));
  box-shadow:0 6px 13px -3px color-mix(in srgb,var(--g) 60%, transparent), inset 0 1px 1px rgba(255,255,255,.9); }
@media (prefers-reduced-motion: no-preference){
  .g3d-plate.front{ animation:g3dFloat 6s ease-in-out infinite; }
  .g3d-bead{ animation:g3dFloat 6s ease-in-out infinite .9s; }
}
@keyframes g3dFloat{ 0%,100%{ translate:0 0; } 50%{ translate:0 -6px; } }

/* glassy sheen on feature icons */
.features .feature-icon{ position:relative; border:1px solid rgba(255,255,255,.75);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.9), 0 9px 18px -11px rgba(8,41,63,.28); }
.features .feature-icon::after{ content:''; position:absolute; inset:0; border-radius:inherit; pointer-events:none;
  background:linear-gradient(145deg, rgba(255,255,255,.55), transparent 55%); }
.features .feature-icon svg{ position:relative; z-index:1; }

/* ===== Alternating light / dark section rhythm =====
   Hero(L) · Stats(D) · How-it-works(L) · Products(D) · Management(L)
   · Calculator(D) · Features(L) · App(D) · FAQ(L) · CTA(D) · Footer(D) */
.stats{ background:radial-gradient(80% 55% at 50% -12%, rgba(8,168,154,.12), transparent 60%), #05161F; }
.stats .stats-grid{ background:rgba(255,255,255,.07); box-shadow:none; }
.stats .stat-card{ background:#08202C; }
.stats .stat-label{ color:rgba(255,255,255,.55); }

.calc{ background:radial-gradient(80% 50% at 50% -10%, rgba(8,168,154,.10), transparent 60%), #05161F; }
.calc .section-head .eyebrow{ color:#34D6B8; }
.calc .section-head .display-2{ color:#fff; }
.calc .section-head .lead{ color:rgba(255,255,255,.6); }
.calc-panel{ background:#08202C; border-color:rgba(255,255,255,.08); box-shadow:none; }
.calc-label{ color:rgba(255,255,255,.55); }
.calc-label span:last-child{ color:rgba(255,255,255,.5); }
.calc-value{ color:#fff; }
.calc-slider{ background:rgba(255,255,255,.14); }
.calc-range{ color:rgba(255,255,255,.45); }
.calc-trust{ border-top-color:rgba(255,255,255,.12); }
.calc-trust > div{ color:rgba(255,255,255,.66); }
.calc-result{ border:1px solid rgba(255,255,255,.08); }

.appsec{ background:radial-gradient(80% 55% at 50% -12%, rgba(8,168,154,.10), transparent 60%), #05161F; }
.appsec-card{ background:linear-gradient(135deg,#08202C 0%,#061A24 100%); border-color:rgba(255,255,255,.08); }
.appsec-card::before{ background:radial-gradient(circle, rgba(8,168,154,.20), transparent 60%); }
.appsec-card .eyebrow{ color:#34D6B8; }
.appsec-card h2{ color:#fff; }
.appsec-card p{ color:rgba(255,255,255,.62); }
.appsec .app-badge{ background:#fff; color:#08293F; }
.appsec .app-badge small{ color:#5A6B7A; }

/* Keep all step titles visible on any viewport height: reveal desc/meta only for the active step */
.theater-step{ padding-top:11px; padding-bottom:11px; }
.theater-step-desc{ max-height:0; opacity:0; overflow:hidden; margin-top:0;
  transition:max-height .45s ease, opacity .3s ease, margin-top .3s ease; }
.theater-step-meta{ max-height:0; opacity:0; overflow:hidden; margin-top:0; padding-top:0; padding-bottom:0;
  transition:max-height .45s ease, opacity .3s ease, margin-top .3s ease, padding .3s ease; }
.theater-step.active .theater-step-desc{ max-height:170px; opacity:1; margin-top:5px; }
.theater-step.active .theater-step-meta{ max-height:42px; opacity:1; margin-top:9px; padding-top:3px; padding-bottom:3px; }
