/* ==========================================================
   CrediMonk v4 — Contemporary Vibrant Redesign
   Brand palette derived from CrediMonk logo (green + orange)
   ========================================================== */

:root {
  /* Brand */
  --brand-green: #0b5a33;
  --brand-green-600: #0d6d3e;
  --brand-green-700: #084527;
  --brand-green-900: #052818;
  --brand-orange: #f15a24;
  --brand-orange-500: #ff7444;
  --brand-orange-600: #d94a17;
  --brand-gold: #ffbd59;

  /* Neutrals */
  --ink: #0e1a13;
  --ink-2: #26362d;
  --muted: #5b6c62;
  --muted-2: #8a9891;
  --line: #e6eee9;
  --surface: #ffffff;
  --surface-2: #f5faf6;
  --surface-3: #eef6f0;
  --cream: #fbf7ef;

  /* Effects */
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --shadow-sm: 0 4px 14px rgba(11, 58, 35, .06);
  --shadow: 0 20px 60px -20px rgba(11, 58, 35, .18);
  --shadow-lg: 0 30px 80px -20px rgba(11, 58, 35, .28);
  --shadow-orange: 0 20px 50px -20px rgba(241, 90, 36, .55);
  --shadow-green: 0 20px 50px -20px rgba(11, 90, 51, .45);

  /* Gradients */
  --grad-brand: linear-gradient(135deg, #0b5a33 0%, #0f7a48 50%, #f15a24 130%);
  --grad-brand-soft: linear-gradient(135deg, #e6f4ec 0%, #fef1ea 100%);
  --grad-hero: radial-gradient(1200px 800px at 90% -10%, rgba(241, 90, 36, .35), transparent 50%),
               radial-gradient(1000px 700px at -10% 110%, rgba(255, 189, 89, .25), transparent 50%),
               linear-gradient(135deg, #052818 0%, #0b5a33 45%, #0d6d3e 100%);
  --grad-cta: linear-gradient(135deg, #f15a24 0%, #ff7444 100%);
  --grad-green: linear-gradient(135deg, #0b5a33 0%, #0f7a48 100%);
  --grad-warm: linear-gradient(135deg, #ff7444 0%, #ffbd59 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: var(--brand-orange); }

img { max-width: 100%; height: auto; display: block; }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); line-height: 1.05; }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); line-height: 1.1; }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.6rem); }
p { color: var(--muted); line-height: 1.7; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .95rem;
  border-radius: 999px;
  background: rgba(241, 90, 36, .10);
  color: var(--brand-orange);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-orange);
  box-shadow: 0 0 12px rgba(241, 90, 36, .8);
}
.eyebrow.light {
  background: rgba(255, 255, 255, .12);
  color: #ffd8c4;
  border: 1px solid rgba(255, 255, 255, .16);
}
.eyebrow.light::before { background: var(--brand-gold); box-shadow: 0 0 12px rgba(255, 189, 89, .9); }

.gradient-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.orange-text { color: var(--brand-orange); }
.green-text { color: var(--brand-green); }

/* Buttons */
.btn {
  border-radius: 14px;
  font-weight: 700;
  padding: .85rem 1.5rem;
  transition: all .25s ease;
  border: 0;
  letter-spacing: -.01em;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-lg { padding: 1.05rem 1.9rem; font-size: 1.02rem; }
.btn-sm { padding: .55rem 1rem; font-size: .88rem; border-radius: 12px; }

.btn-primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 26px 60px -18px rgba(241, 90, 36, .7); color: #fff; }

.btn-dark {
  background: var(--brand-green);
  color: #fff;
  box-shadow: var(--shadow-green);
}
.btn-dark:hover { background: var(--brand-green-700); color: #fff; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(11, 90, 51, .22);
  color: var(--brand-green);
}
.btn-outline:hover { background: var(--brand-green); border-color: var(--brand-green); color: #fff; }

.btn-outline-light {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .28);
  color: #fff;
}
.btn-outline-light:hover { background: #fff; color: var(--brand-green); }

.btn-white { background: #fff; color: var(--brand-green); }
.btn-white:hover { background: var(--brand-gold); color: var(--brand-green-900); }

.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { color: var(--brand-orange); }

/* Navigation */
.topbar {
  background: var(--brand-green-900);
  color: rgba(255, 255, 255, .82);
  font-size: .82rem;
  padding: .5rem 0;
}
.topbar a { color: rgba(255, 255, 255, .82); }
.topbar a:hover { color: var(--brand-gold); }
.topbar .divider { color: rgba(255, 255, 255, .2); margin: 0 .8rem; }

.navbar-modern {
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(11, 90, 51, .06);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar-modern .brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--ink);
}
.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--grad-green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-green);
}
.brand-logo::after {
  content: '';
  position: absolute;
  inset: auto -6px -6px auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-orange);
  box-shadow: 0 0 0 3px #fff;
}
.brand-name { line-height: 1; }
.brand-name small { display: block; font-size: .7rem; color: var(--muted); font-weight: 500; margin-top: 3px; letter-spacing: .04em; }
.brand-name .rupee { color: var(--brand-green); }
.brand-name .accent { color: var(--brand-orange); }

.navbar-modern .nav-link {
  color: var(--ink-2);
  font-weight: 600;
  padding: .55rem 1rem !important;
  border-radius: 12px;
  transition: all .2s;
}
.navbar-modern .nav-link:hover { color: var(--brand-green); background: rgba(11, 90, 51, .06); }
.navbar-modern .nav-link.active { color: var(--brand-green); background: rgba(11, 90, 51, .09); }

/* Container helpers */
.section { padding: 6rem 0; position: relative; }
.section-sm { padding: 4rem 0; }
.section-title-wrap { max-width: 760px; }

/* Hero */
.hero {
  position: relative;
  background: var(--grad-hero);
  color: #fff;
  padding: 5rem 0 7rem;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,.4), transparent),
    radial-gradient(2px 2px at 75% 70%, rgba(255,189,89,.6), transparent),
    radial-gradient(1px 1px at 55% 20%, rgba(255,255,255,.5), transparent),
    radial-gradient(2px 2px at 85% 30%, rgba(241,90,36,.5), transparent);
  z-index: -1;
  opacity: .55;
}
.hero h1 { color: #fff; }
.hero p.lead { color: rgba(255,255,255,.82); font-size: 1.15rem; max-width: 34em; }
.hero .rating-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: rgba(255,255,255,.78);
  font-size: .92rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.rating-row .stars { color: var(--brand-gold); }
.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,.55);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}
.hero-image-wrap img { width: 100%; }
.floating-card {
  position: absolute;
  background: rgba(255,255,255,.95);
  border-radius: 20px;
  padding: .95rem 1.15rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  box-shadow: 0 24px 50px -15px rgba(0,0,0,.35);
  backdrop-filter: blur(20px);
  animation: floaty 5s ease-in-out infinite;
}
.floating-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #fff;
  flex-shrink: 0;
}
.fc-green .icon { background: var(--grad-green); }
.fc-orange .icon { background: var(--grad-cta); }
.floating-card strong { display: block; font-size: 1.05rem; color: var(--ink); }
.floating-card small { color: var(--muted); font-size: .78rem; }
.fc-top-left { top: 8%; left: -8%; }
.fc-bottom-right { bottom: 8%; right: -8%; animation-delay: 1.5s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Marquee band under hero */
.marquee-band {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin: -3.5rem auto 0;
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow-lg);
  max-width: 1140px;
}
.marquee-band .stat h4 {
  font-size: 2rem;
  margin: 0;
  color: var(--brand-green);
}
.marquee-band .stat h4 .accent { color: var(--brand-orange); }
.marquee-band .stat p { margin: 0; font-size: .88rem; color: var(--muted); }
.marquee-band .stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--grad-brand-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-green);
  font-size: 1.25rem;
  margin-right: .8rem;
}

/* Feature cards (products / services) */
.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
  height: 100%;
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: auto -30% -60% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241,90,36,.14), transparent 65%);
  opacity: 0;
  transition: opacity .4s;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(11, 90, 51, .18);
}
.feature-card:hover::after { opacity: 1; }
.feature-card .card-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: var(--grad-brand-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--brand-green);
  margin-bottom: 1.3rem;
  position: relative;
  transition: all .3s;
}
.feature-card:hover .card-icon {
  background: var(--grad-green);
  color: #fff;
  transform: rotate(-6deg);
}
.feature-card h3 { margin-bottom: .6rem; }
.feature-card .amount-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .3rem .7rem;
  border-radius: 999px;
  background: rgba(11, 90, 51, .08);
  color: var(--brand-green);
  font-weight: 700;
  font-size: .78rem;
  margin-bottom: 1rem;
}
.feature-card .arrow-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--brand-orange);
  font-weight: 700;
  margin-top: 1rem;
  font-size: .95rem;
}
.feature-card .arrow-link i { transition: transform .2s; }
.feature-card:hover .arrow-link i { transform: translateX(4px); }

/* Product hero card (product detail pages) */
.product-hero-card {
  background: linear-gradient(135deg, #fff 0%, var(--surface-3) 100%);
  border-radius: var(--radius-xl);
  padding: 3rem;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.product-hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(241,90,36,.18), transparent 60%);
  border-radius: 50%;
}
.product-icon-xl {
  width: 90px;
  height: 90px;
  border-radius: 26px;
  background: var(--grad-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: #fff;
  box-shadow: var(--shadow-green);
  position: relative;
}
.product-icon-xl::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 26px;
  height: 26px;
  background: var(--grad-cta);
  border-radius: 50%;
  border: 3px solid #fff;
}
.perk-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1rem;
  background: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: .88rem;
  color: var(--ink-2);
  border: 1px solid var(--line);
  margin: .25rem;
}
.perk-pill i { color: var(--brand-orange); }

/* Number list steps (journey) */
.step-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--line);
  position: relative;
  height: 100%;
}
.step-num {
  position: absolute;
  top: -18px;
  left: 22px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--grad-cta);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: var(--shadow-orange);
}
.step-card h4 { margin-top: 1rem; }

/* Testimonial cards */
.tm-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--line);
  position: relative;
  height: 100%;
}
.tm-card::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  right: 24px;
  font-size: 7rem;
  line-height: 1;
  color: rgba(241, 90, 36, .1);
  font-family: Georgia;
  font-weight: 700;
}
.tm-card .stars { color: var(--brand-gold); margin-bottom: 1rem; }
.tm-card p.quote { color: var(--ink-2); font-size: 1.05rem; line-height: 1.65; }
.tm-author { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.tm-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
}
.tm-author strong { display: block; color: var(--ink); }
.tm-author small { color: var(--muted); }

/* FAQ accordion */
.faq-accordion .accordion-item {
  background: #fff;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  background: #fff;
  font-weight: 700;
  color: var(--ink);
  padding: 1.35rem 1.5rem;
  box-shadow: none !important;
  font-size: 1.02rem;
}
.faq-accordion .accordion-button:not(.collapsed) { color: var(--brand-green); background: rgba(11, 90, 51, .04); }
.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23f15a24' stroke-width='2' stroke-linecap='round' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
}
.faq-accordion .accordion-body { padding: 0 1.5rem 1.35rem; color: var(--muted); line-height: 1.75; }

/* CTA banner */
.cta-banner {
  background: var(--grad-hero);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(255,189,89,.28), transparent 60%);
  border-radius: 50%;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,.82); }

/* Footer */
.footer {
  background: var(--brand-green-900);
  color: rgba(255,255,255,.75);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(241,90,36,.18), transparent 60%);
  border-radius: 50%;
}
.footer h6 { color: #fff; font-weight: 800; margin-bottom: 1.25rem; letter-spacing: .04em; text-transform: uppercase; font-size: .82rem; }
.footer a { color: rgba(255,255,255,.75); }
.footer a:hover { color: var(--brand-gold); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: .7rem; }
.footer .brand-name, .footer .brand-name small { color: #fff; }
.footer .brand-name small { color: rgba(255,255,255,.6); }
.footer-newsletter {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 1.5rem;
}
.footer-newsletter .form-control {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  border-radius: 12px;
}
.footer-newsletter .form-control::placeholder { color: rgba(255,255,255,.5); }
.footer-newsletter .form-control:focus { background: rgba(255,255,255,.14); border-color: var(--brand-orange); box-shadow: none; color: #fff; }
.footer-socials { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1.25rem; }
.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all .2s;
}
.footer-socials a:hover { background: var(--brand-orange); border-color: var(--brand-orange); transform: translateY(-3px); }
.footer-app-btn {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .7rem 1.1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  color: #fff;
  transition: all .2s;
}
.footer-app-btn i { font-size: 1.6rem; }
.footer-app-btn strong { display: block; color: #fff; }
.footer-app-btn small { display: block; color: rgba(255,255,255,.6); font-size: .72rem; }
.footer-app-btn:hover { background: rgba(255,255,255,.12); color: #fff; }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.55);
  font-size: .88rem;
}

/* Page header (breadcrumb-style hero for interior pages) */
.page-header {
  background: var(--grad-hero);
  color: #fff;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-header h1 { color: #fff; font-size: clamp(2rem, 4vw, 3.4rem); }
.page-header p { color: rgba(255,255,255,.8); max-width: 40em; }
.breadcrumbs { color: rgba(255,255,255,.7); font-size: .92rem; }
.breadcrumbs a { color: rgba(255,255,255,.7); }
.breadcrumbs a:hover { color: var(--brand-gold); }
.breadcrumbs .sep { margin: 0 .5rem; opacity: .6; }

/* Auth pages */
.auth-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
}
.auth-visual {
  background: var(--grad-hero);
  color: #fff;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.auth-visual::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,189,89,.25), transparent 60%);
  border-radius: 50%;
}
.auth-visual::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(241,90,36,.28), transparent 60%);
  border-radius: 50%;
}
.auth-visual .content { position: relative; z-index: 2; }
.auth-visual h2 { color: #fff; font-size: 2.4rem; margin: 1.5rem 0 1rem; }
.auth-visual p { color: rgba(255,255,255,.8); font-size: 1.05rem; }
.auth-visual .visual-image { max-width: 380px; margin: 2rem auto; border-radius: var(--radius-lg); overflow: hidden; }
.auth-visual .stat-row { display: flex; gap: 2rem; margin-top: 2rem; position: relative; z-index: 2; }
.auth-visual .stat-row .stat h4 { color: var(--brand-gold); font-size: 2rem; margin: 0; }
.auth-visual .stat-row .stat p { color: rgba(255,255,255,.7); margin: 0; font-size: .88rem; }

.auth-form-side {
  padding: 3rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
  margin: 0 auto;
  width: 100%;
}
.auth-form-side .back-link {
  color: var(--muted);
  font-weight: 600;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: 2rem;
}
.auth-form-side .back-link:hover { color: var(--brand-orange); }
.auth-form-side h1 { font-size: 2.2rem; margin-bottom: .5rem; }
.auth-form-side .subtitle { color: var(--muted); margin-bottom: 2rem; }

.tab-pills {
  display: inline-flex;
  background: var(--surface-2);
  border-radius: 14px;
  padding: 5px;
  gap: 4px;
  margin-bottom: 2rem;
  width: 100%;
}
.tab-pills button {
  flex: 1;
  padding: .8rem 1rem;
  border: 0;
  background: transparent;
  border-radius: 10px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.tab-pills button.active {
  background: #fff;
  color: var(--brand-green);
  box-shadow: var(--shadow-sm);
}

.form-group-modern { margin-bottom: 1.25rem; }
.form-group-modern label {
  font-weight: 700;
  font-size: .88rem;
  color: var(--ink-2);
  margin-bottom: .5rem;
  display: block;
}
.form-group-modern .input-wrap {
  position: relative;
}
.form-group-modern .input-wrap i.lead-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 1.1rem;
}
.form-group-modern .form-control {
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: .95rem 1rem .95rem 3rem;
  height: 54px;
  font-size: 1rem;
  background: #fff;
  color: var(--ink);
  width: 100%;
  transition: all .2s;
}
.form-group-modern .form-control:focus {
  outline: 0;
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 4px rgba(241, 90, 36, .12);
}
.form-group-modern .form-control.no-icon { padding-left: 1rem; }
.form-group-modern .form-toggle-btn {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}
.form-group-modern .form-toggle-btn:hover { color: var(--brand-orange); }

.otp-inputs { display: grid; grid-template-columns: repeat(6, 1fr); gap: .6rem; }
.otp-inputs input {
  height: 60px;
  text-align: center;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand-green);
  background: #fff;
  transition: all .2s;
  width: 60px;
}
.otp-inputs input:focus { outline: 0; border-color: var(--brand-orange); box-shadow: 0 0 0 4px rgba(241, 90, 36, .12); }

.resend-line {
  text-align: center;
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: .92rem;
}
.resend-line a { color: var(--brand-orange); font-weight: 700; }

.form-links-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  font-size: .92rem;
}
.form-links-row a { color: var(--brand-orange); font-weight: 700; }
.form-check-modern input { accent-color: var(--brand-green); }

.divider-or {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: var(--muted);
  font-size: .82rem;
}
.divider-or::before,
.divider-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.social-btn {
  flex: 1;
  padding: .85rem;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: #fff;
  font-weight: 700;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: all .2s;
  cursor: pointer;
}
.social-btn:hover { border-color: var(--brand-green); background: var(--surface-2); }
.social-btn.g i { color: #ea4335; }
.social-btn.a i { color: #000; }

.auth-footer-cta { text-align: center; margin-top: 2rem; color: var(--muted); }
.auth-footer-cta a { color: var(--brand-orange); font-weight: 800; }

.password-strength {
  display: flex;
  gap: 4px;
  margin-top: .5rem;
}
.password-strength span {
  flex: 1;
  height: 5px;
  border-radius: 999px;
  background: var(--line);
}
.password-strength.weak span:nth-child(1) { background: #ff5252; }
.password-strength.medium span:nth-child(-n+2) { background: #ffb74d; }
.password-strength.strong span { background: #4caf50; }
.password-rules-list {
  margin-top: .8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .35rem;
  font-size: .82rem;
  color: var(--muted);
}
.password-rules-list span { display: inline-flex; align-items: center; gap: .35rem; }
.password-rules-list i { color: var(--brand-green); }

/* Team page */
.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--line);
  text-align: center;
  transition: all .3s;
  height: 100%;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-avatar-lg {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  background: var(--grad-brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 2rem;
  position: relative;
}
.team-avatar-lg::after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  background: var(--brand-orange);
  border: 3px solid #fff;
  border-radius: 50%;
}
.team-card h4 { margin-bottom: .25rem; }
.team-card .role { color: var(--brand-orange); font-weight: 700; font-size: .9rem; margin-bottom: .8rem; }
.team-card p { font-size: .92rem; }
.team-social { margin-top: 1.25rem; display: flex; justify-content: center; gap: .5rem; }
.team-social a {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--surface-2);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--brand-green);
  transition: all .2s;
}
.team-social a:hover { background: var(--brand-green); color: #fff; }

/* Contact page */
.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--line);
  text-align: center;
  height: 100%;
  transition: all .3s;
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.contact-card .card-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1rem;
  background: var(--grad-brand-soft);
  color: var(--brand-green);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.contact-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

/* Product sidebar (all-products page) */
.product-sidebar {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--line);
  position: sticky;
  top: 100px;
}
.product-sidebar a {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .85rem 1rem;
  border-radius: 12px;
  color: var(--ink-2);
  font-weight: 600;
  transition: all .2s;
  margin-bottom: .3rem;
}
.product-sidebar a i { color: var(--brand-green); }
.product-sidebar a:hover, .product-sidebar a.active {
  background: var(--surface-3);
  color: var(--brand-green);
}
.product-sidebar a:hover i, .product-sidebar a.active i { color: var(--brand-orange); }

/* Bootstrap navbar fixes */
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler { border: 1px solid var(--line); border-radius: 10px; padding: .35rem .55rem; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%230b5a33' stroke-width='2.5' stroke-linecap='round' d='M4 8h22M4 15h22M4 22h22'/%3E%3C/svg%3E");
}

/* Loan calculator on homepage */
.calc-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.calc-card .form-range { accent-color: var(--brand-orange); }
.calc-card .amount-display {
  background: var(--grad-brand-soft);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.calc-card .amount-display strong {
  color: var(--brand-green);
  font-size: 1.5rem;
}
.emi-result {
  background: var(--grad-green);
  color: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  margin-top: 1.5rem;
}
.emi-result small { color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .1em; font-size: .75rem; }
.emi-result h2 { color: #fff; margin: .3rem 0 0; font-size: 2.5rem; }

/* Search FAQ */
.search-shell-modern {
  background: #fff;
  border-radius: 999px;
  padding: .55rem .55rem .55rem 1.5rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: .8rem;
  max-width: 620px;
  margin: 0 auto 3rem;
}
.search-shell-modern i { color: var(--muted); font-size: 1.1rem; }
.search-shell-modern input {
  border: 0;
  outline: 0;
  flex: 1;
  padding: .5rem 0;
  font-size: 1rem;
  background: transparent;
  color: var(--ink);
}
.search-shell-modern .btn { border-radius: 999px; padding: .65rem 1.4rem; }

/* Trust bar / partner logos */
.trust-strip {
  padding: 2rem 0;
  background: var(--surface-2);
  border-block: 1px solid var(--line);
}
.trust-strip .label { color: var(--muted); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; }
.trust-strip .badge-item {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .6rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  color: var(--brand-green);
  font-size: .88rem;
}
.trust-strip .badge-item i { color: var(--brand-orange); }

/* Responsive */
@media (max-width: 991.98px) {
  .section { padding: 4rem 0; }
  .hero { padding: 3rem 0 5rem; text-align: center; }
  .hero p.lead { margin: 1rem auto 0; }
  .hero .rating-row { justify-content: center; }
  .hero-image-wrap { transform: none; margin-top: 3rem; }
  .fc-top-left, .fc-bottom-right { display: none; }
  .marquee-band { margin-top: -2rem; padding: 1.25rem; }
  .marquee-band .stat h4 { font-size: 1.5rem; }
  .auth-shell { grid-template-columns: 1fr; }
  .auth-visual { min-height: auto; padding: 2rem; text-align: center; }
  .auth-form-side { padding: 2rem 1.5rem; }
  .product-hero-card { padding: 2rem; }
  .cta-banner { padding: 2rem; }
  .password-rules-list { grid-template-columns: 1fr; }
  .product-sidebar { position: static; }
  .otp-inputs { grid-template-columns: repeat(6, 1fr); }
  .otp-inputs input { height: 50px; font-size: 1.2rem; width: 50px; }
}

@media (max-width: 575.98px) {
  .navbar-modern .brand-name span.full { display: none; }
  .cta-banner { padding: 1.5rem; }
  .auth-form-side { padding: 1.5rem 1rem; }
  .social-buttons-row { flex-direction: column; }
  .otp-inputs { grid-template-columns: repeat(6, 1fr); gap: .35rem; }
  .otp-inputs input { height: 46px; font-size: 1rem; width: 46px; }
}

/* FIX: horizontal navbar links (our .navbar-modern isn't a Bootstrap .navbar so navbar-nav defaults to column) */
.navbar-modern .navbar-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
  list-style: none;
  margin: 0;
}
@media (max-width: 991.98px) {
  .navbar-modern .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .navbar-modern .navbar-nav .nav-item { width: 100%; }
  .navbar-modern .navbar-nav .nav-link { display: block; }
  #navContent { padding-top: 1rem; }
}

/* Legal document pages */
.legal-doc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.75rem;
  box-shadow: var(--shadow);
}
.legal-doc h2 {
  font-size: 1.4rem;
  color: var(--brand-green);
  margin: 2rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-weight: 800;
  letter-spacing: -.01em;
}
.legal-doc h2:first-of-type { margin-top: 1rem; border-top: 0; padding-top: 0; }
.legal-doc p { color: var(--ink-2); line-height: 1.8; margin-bottom: 1rem; font-size: .98rem; }
.legal-doc ul { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.legal-doc ul li { color: var(--ink-2); line-height: 1.75; margin-bottom: .5rem; }
.legal-doc a { color: var(--brand-orange); font-weight: 600; }
.legal-doc a:hover { text-decoration: underline; }

.legal-intro {
  background: linear-gradient(135deg, var(--surface-3), #fef7f2);
  border-left: 4px solid var(--brand-orange);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}
.legal-intro p { margin-bottom: .75rem; color: var(--ink-2); }
.legal-intro p:last-child { margin-bottom: 0; }

.highlight-card {
  background: linear-gradient(135deg, #f7fbf8, #fdf5ee);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.highlight-card .check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem 1.25rem;
}
.highlight-card .check-list li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin: 0;
  color: var(--ink-2);
  font-size: .92rem;
  line-height: 1.55;
}
.highlight-card .check-list i {
  color: var(--brand-green);
  flex-shrink: 0;
  margin-top: .15rem;
  font-size: 1.05rem;
}

.legal-contact-card {
  margin-top: 2.5rem;
  background: linear-gradient(135deg, var(--surface-3), #fef1ea);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem;
}
.legal-contact-card strong {
  color: var(--brand-green);
  font-size: 1.05rem;
  display: block;
  margin-bottom: .15rem;
}

.rbi-info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem;
  height: 100%;
  transition: all .25s;
}
.rbi-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(11,90,51,.18); }
.rbi-info-card h5 { font-weight: 800; }
.rbi-info-card p { color: var(--muted); }

@media (max-width: 767.98px) {
  .legal-doc { padding: 1.5rem; }
  .highlight-card .check-list { grid-template-columns: 1fr; }
}

/* ==========================================================
   PALETTE OVERRIDE — pastel lavender → blue
   Source: https://www.color-hex.com/color-palette/30761
   #eebbff  #ddbbff  #ccbbff  #bbbbff  #aabbff
   Design/layout untouched — only colors are swapped.
   ========================================================== */

:root {
  /* Map the 5-swatch palette to brand roles */
  --brand-green: #7a5fd4;         /* primary — deeper anchor for readability */
  --brand-green-600: #8f7be0;
  --brand-green-700: #5b3fb8;
  --brand-green-900: #2f1f78;     /* darkest — used in hero / footer */
  --brand-orange: #6f8cff;        /* accent — from #aabbff/#bbbbff family */
  --brand-orange-500: #8ea6ff;
  --brand-orange-600: #5a78f0;
  --brand-gold: #eebbff;          /* highlight — softest swatch */

  /* Neutrals — cooler tones so cards sit with the lavender family */
  --ink: #1a1636;
  --ink-2: #2f2a55;
  --muted: #6c6890;
  --muted-2: #9a97b6;
  --line: #e6e3f5;
  --surface: #ffffff;
  --surface-2: #f7f5ff;
  --surface-3: #efeaff;
  --cream: #fbf7ff;

  /* Shadows recolored to lavender */
  --shadow-sm: 0 4px 14px rgba(47, 31, 120, .06);
  --shadow: 0 20px 60px -20px rgba(47, 31, 120, .22);
  --shadow-lg: 0 30px 80px -20px rgba(47, 31, 120, .32);
  --shadow-orange: 0 20px 50px -20px rgba(111, 140, 255, .55);
  --shadow-green: 0 20px 50px -20px rgba(122, 95, 212, .45);

  /* Gradients rebuilt from the exact palette */
  --grad-brand: linear-gradient(135deg, #aabbff 0%, #bbbbff 30%, #ccbbff 60%, #ddbbff 85%, #eebbff 100%);
  --grad-brand-soft: linear-gradient(135deg, #efeaff 0%, #fbf3ff 100%);
  --grad-hero:
    radial-gradient(1200px 800px at 90% -10%, rgba(238, 187, 255, .55), transparent 55%),
    radial-gradient(1000px 700px at -10% 110%, rgba(170, 187, 255, .55), transparent 55%),
    linear-gradient(135deg, #2f1f78 0%, #5b3fb8 45%, #7a5fd4 100%);
  --grad-cta: linear-gradient(135deg, #aabbff 0%, #ccbbff 100%);
  --grad-green: linear-gradient(135deg, #5b3fb8 0%, #7a5fd4 100%);
  --grad-warm: linear-gradient(135deg, #ddbbff 0%, #eebbff 100%);
}

/* Update the couple of places where a raw green/orange hex was hard-coded */
.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%236f8cff' stroke-width='2' stroke-linecap='round' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%237a5fd4' stroke-width='2.5' stroke-linecap='round' d='M4 8h22M4 15h22M4 22h22'/%3E%3C/svg%3E");
}

/* Buttons — keep same shape but shift to the accent hue */
.btn-primary {
  background: linear-gradient(135deg, #6f8cff 0%, #8ea6ff 100%);
  color: #1a1636;
}
.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #5a78f0 0%, #7a94ff 100%);
  color: #1a1636;
}
.btn-dark {
  background: var(--brand-green);
  color: #fff;
}
.btn-dark:hover { background: var(--brand-green-700); color: #fff; }

/* Elevate contrast for chips/eyebrows so they read on the pastel background */
.eyebrow {
  background: rgba(122, 95, 212, .10);
  color: var(--brand-green-700);
}
.eyebrow::before { background: var(--brand-green); box-shadow: 0 0 12px rgba(122, 95, 212, .7); }
.eyebrow.light { color: #eebbff; }
.eyebrow.light::before { background: #eebbff; box-shadow: 0 0 12px rgba(238, 187, 255, .9); }

.badge-soft, .amount-chip { background: rgba(122, 95, 212, .10); color: var(--brand-green-700); }

/* Feature card accents */
.feature-card::after {
  background: radial-gradient(circle, rgba(187, 187, 255, .35), transparent 65%);
}
.feature-card .card-icon,
.contact-card .card-icon,
.icon-chip {
  background: linear-gradient(135deg, rgba(122, 95, 212, .12), rgba(170, 187, 255, .22));
  color: var(--brand-green-700);
}
.feature-card:hover .card-icon { background: var(--grad-green); color: #fff; }

/* Hero highlights */
.p-h1 span,
.hero h1 span,
.hero-image-wrap { /* leave layout intact */ }
.hero h1 > span { color: #eebbff; }

/* Rating stars — swap gold to lavender-pink so we stay on-palette */
.rating-row .stars, .tm-card .stars { color: #eebbff; }
.emi-result small { color: rgba(255,255,255,.75); }

/* Marquee band stat numbers */
.marquee-band .stat h4 { color: var(--brand-green-700); }
.marquee-band .stat h4 .accent { color: var(--brand-orange-600); }

/* Text helpers */
.gradient-text {
  background: linear-gradient(135deg, #5b3fb8 0%, #7a5fd4 45%, #6f8cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.orange-text { color: var(--brand-orange-600); }
.green-text  { color: var(--brand-green-700); }

/* Product hero accent */
.product-hero-card::before {
  background: radial-gradient(circle, rgba(238, 187, 255, .35), transparent 60%);
}
.product-icon-xl::after { background: var(--grad-cta); }

/* Step / journey numbers */
.step-num { background: var(--grad-cta); color: #1a1636; box-shadow: var(--shadow-orange); }

/* Testimonial glyph tint */
.tm-card::before { color: rgba(170, 187, 255, .22); }
.tm-avatar { background: var(--grad-brand); color: #1a1636; }

/* Footer */
.footer {
  background: linear-gradient(180deg, #2f1f78 0%, #241a5f 100%);
}
.footer::before {
  background: radial-gradient(circle, rgba(204, 187, 255, .22), transparent 60%);
}
.footer a:hover { color: #eebbff; }
.footer-socials a:hover { background: var(--brand-orange); border-color: var(--brand-orange); color: #1a1636; }
.footer-newsletter .form-control:focus { border-color: #ccbbff; }

/* Top bar (thin utility band) */
.topbar { background: #241a5f; }
.topbar a:hover { color: #eebbff; }

/* Navbar underline for active */
.navbar-modern .nav-link.active {
  color: var(--brand-green-700);
  background: rgba(122, 95, 212, .10);
}
.navbar-modern .nav-link:hover { color: var(--brand-green-700); background: rgba(122, 95, 212, .08); }

/* Auth pages */
.auth-visual::before { background: radial-gradient(circle, rgba(238, 187, 255, .3), transparent 60%); }
.auth-visual::after  { background: radial-gradient(circle, rgba(170, 187, 255, .35), transparent 60%); }
.auth-l h5 { color: #eebbff; }
.auth-l-stat .s h5 { color: #eebbff; }
.tab-pills button.active { color: var(--brand-green-700); }
.form-group-modern .form-control:focus {
  border-color: #aabbff;
  box-shadow: 0 0 0 4px rgba(170, 187, 255, .22);
}
.otp-inputs input { color: var(--brand-green-700); }
.otp-inputs input:focus {
  border-color: #aabbff;
  box-shadow: 0 0 0 4px rgba(170, 187, 255, .22);
}
.social-btn:hover { border-color: var(--brand-green); background: var(--surface-2); }
.password-rules-list i { color: var(--brand-green-700); }
.password-strength.weak span:nth-child(1) { background: #d38aff; }
.password-strength.medium span:nth-child(-n+2) { background: #ccbbff; }
.password-strength.strong span { background: #aabbff; }

/* CTA banner keeps the deep gradient but with lavender radial */
.cta-banner::before { background: radial-gradient(circle, rgba(238, 187, 255, .28), transparent 60%); }

/* Brand mark tweaks */
.brand-logo { background: var(--grad-green); }
.brand-logo::after { background: var(--brand-orange); }
.brand-name .rupee { color: var(--brand-green-700); }
.brand-name .accent { color: var(--brand-orange-600); }

/* EMI result card / calc */
.calc-card .form-range { accent-color: var(--brand-orange-600); }
.emi-result { background: var(--grad-green); }

/* Trust strip */
.trust-strip .badge-item { color: var(--brand-green-700); }
.trust-strip .badge-item i { color: var(--brand-orange-600); }

/* Legal doc accents */
.legal-doc h2 { color: var(--brand-green-700); }
.legal-doc a  { color: var(--brand-orange-600); }
.legal-intro  { border-left-color: var(--brand-orange-600); background: linear-gradient(135deg, var(--surface-3), #f7ecff); }
.highlight-card { background: linear-gradient(135deg, #f4f0ff, #fbf1ff); }
.highlight-card .check-list i { color: var(--brand-green-700); }
.legal-contact-card { background: linear-gradient(135deg, var(--surface-3), #f6eaff); }
.legal-contact-card strong { color: var(--brand-green-700); }

/* Product sidebar */
.product-sidebar a:hover,
.product-sidebar a.active { background: var(--surface-3); color: var(--brand-green-700); }
.product-sidebar a:hover i,
.product-sidebar a.active i { color: var(--brand-orange-600); }
.product-sidebar a i { color: var(--brand-green-700); }

/* Team card accent */
.team-avatar-lg { background: var(--grad-brand); color: #1a1636; }
.team-avatar-lg::after { background: var(--brand-orange); }
.team-card .role { color: var(--brand-orange-600); }
.team-social a { background: var(--surface-2); color: var(--brand-green-700); }
.team-social a:hover { background: var(--brand-green); color: #fff; }

/* Contact section icon tinting */
.contact-card .card-icon i { color: var(--brand-green-700); }

/* Anchor color */
a:hover { color: var(--brand-orange-600); }

/* Hero span "for every payday." highlight */
.hero .p-h1 span,
.hero h1 span,
.p-h1 span { color: #eebbff; }

/* ==========================================================
   INFOGRAPHIC LAYER (homepage only)
   Light lavender background · wiam.group-inspired patterns
   ========================================================== */

.section-tight { padding: 2.25rem 0; position: relative; }

.headline-xl {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: var(--ink);
}
.grad-word {
  background: linear-gradient(135deg, #7a5fd4 0%, #aabbff 40%, #ccbbff 70%, #eebbff 100%);
  -webkit-background-clip: text; background-clip: text;
  font-style: italic;
}

/* Colored dot indicators before eyebrow labels */
.eyebrow-dot,
.dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-right: .55rem;
  vertical-align: middle;
}
.dot-lav  { background: #7a5fd4; box-shadow: 0 0 10px rgba(122,95,212,.6); }
.dot-blue { background: #6f8cff; box-shadow: 0 0 10px rgba(111,140,255,.6); }
.dot-pink { background: #eebbff; box-shadow: 0 0 10px rgba(238,187,255,.7); }

.micro-label {
  display: inline-flex; align-items: center;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted-2);
}

/* ---------- Scrolling marquee ticker ---------- */
.infographic-marquee-wrap { overflow: hidden; }
.scroll-marquee {
  position: relative;
  padding: 1.2rem 0;
  background: linear-gradient(90deg, #ffffff 0%, #f7f5ff 50%, #ffffff 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.scroll-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  animation: mqSlide 45s linear infinite;
  will-change: transform;
}
@keyframes mqSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.mq-item {
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
}
.mq-item.mq-alt {
  background: linear-gradient(135deg, #6f8cff, #aabbff);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mq-item.mq-alt2 {
  background: linear-gradient(135deg, #7a5fd4, #eebbff);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mq-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #7a5fd4;
  box-shadow: 0 0 10px rgba(122,95,212,.6);
}
.mq-dot.mq-dot-2 { background: #6f8cff; box-shadow: 0 0 10px rgba(111,140,255,.6); }
.mq-dot.mq-dot-3 { background: #eebbff; box-shadow: 0 0 10px rgba(238,187,255,.7); }

/* ---------- Stat rail (big display numbers row) ---------- */
.stat-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.75rem 0;
  background: linear-gradient(180deg, #ffffff, #faf8ff);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}
.stat-rail-cell {
  padding: 0 1.5rem;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: .45rem;
}
.stat-rail-cell:last-child { border-right: 0; }
.stat-rail-cell h3 {
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 800;
  color: var(--ink);
  margin: 0;
  letter-spacing: -.02em;
  line-height: 1;
}
.stat-rail-cell h3 .unit {
  background: linear-gradient(135deg, #7a5fd4, #eebbff);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: .7em;
  margin-left: 2px;
}
.stat-rail-cell h3 .arrow {
  color: #7a5fd4;
  margin: 0 .15em;
  font-weight: 400;
}

/* ---------- Info cards (split infographic) ---------- */
.info-card {
  background: linear-gradient(180deg, #ffffff, #faf8ff);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex; flex-direction: column;
}
.info-eyebrow {
  display: inline-flex; align-items: center;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 1rem;
}
.info-lead {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: -.01em;
  margin: 0 0 1.25rem;
}
.big-num-block { display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: end; margin-bottom: 1rem; }
.big-num {
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  font-weight: 800;
  line-height: 1;
  margin: 0;
  background: linear-gradient(135deg, #5b3fb8 0%, #7a5fd4 50%, #aabbff 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -.04em;
}
.big-num .big-plus {
  background: linear-gradient(135deg, #eebbff, #ccbbff);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.big-num-block p { font-size: .95rem; color: var(--muted); margin: 0; }

.info-visual {
  margin: .5rem 0 1.25rem;
  background: linear-gradient(180deg, #f7f5ff, #efeaff);
  border-radius: 16px;
  padding: 1rem;
  border: 1px solid var(--line);
  flex: 1;
  display: flex; align-items: center; justify-content: center;
}
.india-map-svg,
.wave-chart-svg {
  width: 100%;
  height: auto;
  max-height: 320px;
}
.city-marker circle:nth-child(1) { animation: pulseGlow 3s ease-in-out infinite; transform-origin: center; }
@keyframes pulseGlow {
  0%, 100% { opacity: .55; }
  50%      { opacity: 1; }
}

.info-substats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 1.15rem;
  margin-top: auto;
}
.info-substats > div {
  padding: 0 .85rem;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: .3rem;
}
.info-substats > div:first-child { padding-left: 0; }
.info-substats > div:last-child { border-right: 0; padding-right: 0; }
.info-substats strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -.02em;
}
.info-substats strong.grad-word {
  font-style: normal;
  background: linear-gradient(135deg, #7a5fd4, #aabbff);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Numbered platform stack ---------- */
.stack-grid { position: relative; }
.stack-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem 1.25rem;
  height: 100%;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.stack-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, #7a5fd4, #aabbff, #eebbff);
  opacity: 0;
  transition: opacity .25s;
}
.stack-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(122,95,212,.28);
}
.stack-item:hover::before { opacity: 1; }
.stack-num {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #7a5fd4;
}
.stack-item h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.01em;
  margin: .5rem 0;
}
.stack-item p {
  font-size: .88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* ---------- By the numbers grid ---------- */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #faf8ff);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.num-cell {
  padding: 1.5rem 1.25rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: .5rem;
  background: transparent;
  transition: background .2s ease;
}
.num-cell:hover { background: rgba(122,95,212,.04); }
.num-cell:nth-child(6n) { border-right: 0; }
.num-cell:nth-last-child(-n+6) { border-bottom: 0; }
.num-cell h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1;
  margin: 0;
}
.num-cell h3 .unit {
  background: linear-gradient(135deg, #7a5fd4, #eebbff);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: .7em;
  margin-left: 2px;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .stat-rail { grid-template-columns: repeat(2, 1fr); gap: 1rem 0; }
  .stat-rail-cell {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: .75rem 1rem;
  }
  .stat-rail-cell:nth-child(2n) { border-right: 0; }
  .stat-rail-cell:last-child { border-bottom: 0; }
  .info-substats { grid-template-columns: 1fr 1fr; }
  .info-substats > div { border-right: 0; padding: .5rem 0; }
  .info-substats > div:nth-child(2) { padding-right: 0; }
  .numbers-grid { grid-template-columns: repeat(3, 1fr); }
  .num-cell:nth-child(6n) { border-right: 1px solid var(--line); }
  .num-cell:nth-child(3n) { border-right: 0; }
  .num-cell:nth-last-child(-n+6) { border-bottom: 1px solid var(--line); }
  .num-cell:nth-last-child(-n+3) { border-bottom: 0; }
  .big-num-block { grid-template-columns: 1fr; gap: .75rem; }
}
@media (max-width: 575.98px) {
  .stat-rail { grid-template-columns: 1fr; }
  .stat-rail-cell { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat-rail-cell:last-child { border-bottom: 0; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .num-cell:nth-child(3n) { border-right: 1px solid var(--line); }
  .num-cell:nth-child(2n) { border-right: 0; }
  .num-cell:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .num-cell:nth-last-child(-n+2) { border-bottom: 0; }
}

/* ==========================================================
   Employer Sign Up + Dashboard
   ========================================================== */

/* Verify chip card + blocks */
.verify-chip-card {
  background: linear-gradient(135deg, var(--surface-3), #fbf1ff);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.25rem;
}
.verify-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad-green);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.verify-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem;
}
.verify-status {
  display: inline-flex;
  padding: .3rem .7rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  background: var(--surface-3);
  color: var(--muted);
}
.verify-status.filled {
  background: rgba(122, 95, 212, .12);
  color: var(--brand-green-700);
}

/* Employer dashboard */
.dash-hero {
  background: var(--grad-hero);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.dash-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(238,187,255,.3), transparent 60%);
  border-radius: 50%;
}
.dash-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.dash-check {
  display: flex; align-items: center; gap: .65rem;
  padding: .55rem 0;
  color: var(--muted);
  font-size: .92rem;
}
.dash-check i { color: var(--muted-2); }
.dash-check.done { color: var(--brand-green-700); font-weight: 700; }
.dash-check.done i { color: var(--brand-green-700); }
.dash-check.active { color: var(--ink); font-weight: 700; }
.dash-progress {
  height: 8px;
  background: var(--surface-3);
  border-radius: 999px;
  overflow: hidden;
}
.dash-progress span {
  display: block;
  height: 100%;
  background: var(--grad-green);
  border-radius: 999px;
}
.dash-table { font-size: .92rem; }
.dash-table thead th {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-2);
  border-bottom: 1px solid var(--line) !important;
  font-weight: 800;
}
.dash-table tbody tr { border-color: var(--line); }
.dash-table tbody td { padding: .8rem .5rem; border-bottom: 1px solid var(--line); }
.status-chip {
  display: inline-flex;
  padding: .3rem .7rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
}
.status-chip.approved { background: rgba(122,95,212,.12); color: var(--brand-green-700); }
.status-chip.pending  { background: rgba(111,140,255,.12); color: #3f56c8; }
.status-chip.review   { background: rgba(238,187,255,.28); color: #8a2fa8; }

.dash-action {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1rem;
  text-align: center;
  height: 100%;
  display: flex; flex-direction: column; gap: .35rem; align-items: center;
  transition: all .25s ease;
  cursor: pointer;
}
.dash-action:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(122,95,212,.28); }
.dash-action-ico {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(122,95,212,.12), rgba(170,187,255,.22));
  color: var(--brand-green-700);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: .4rem;
}
.dash-action strong { font-size: .95rem; color: var(--ink); }
.dash-action small { color: var(--muted); font-size: .82rem; }

/* Employer signup hero spacing tweak (auth pages have tighter grids) */
@media (max-width: 991.98px) {
  #empStep1 .pe-md-2, #empStep1 .ps-md-2 { padding-left: 0 !important; padding-right: 0 !important; }
}


/* ==========================================================
   Audience sections (v10)
   ========================================================== */
.audience-banner {
  background: linear-gradient(135deg, var(--surface-3), #fbf1ff);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}
.audience-banner h3 { font-weight: 800; margin: 0; }
.audience-banner p { margin: 0; color: var(--muted); }

.integration-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
  transition: all .25s ease;
}
.integration-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(122,95,212,.28); }
.integration-ico {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(122,95,212,.12), rgba(170,187,255,.22));
  color: var(--brand-green-700);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.integration-card h4 { font-weight: 800; margin: 0; color: var(--ink); }

@media (max-width: 767.98px) {
  .audience-banner { flex-direction: column; align-items: flex-start; }
}


/* v13: homepage hero h1 fixed at 50px */
body[data-page="solutions"] .hero h1,
body[data-page="home"] .hero h1,
.hero h1 { font-size: 50px; }


/* v16: anchor targets land below the sticky header */
section[id="for-business"],
section[id="for-individuals"],
section[id="for-partners"],
section[id="integrated-with"],
section[id] { scroll-margin-top: 110px; }


/* ==========================================================
   FAQ tabs (v17) — one category at a time
   ========================================================== */
.faq-tabs-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.faq-tabs {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}
.faq-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .8rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: all .25s ease;
}
.faq-tab-btn i { color: var(--brand-green-700); font-size: 1.05rem; }
.faq-tab-btn:hover {
  border-color: rgba(122,95,212,.4);
  color: var(--brand-green-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.faq-tab-btn.active {
  background: var(--grad-green);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-green);
}
.faq-tab-btn.active i { color: #eebbff; }

.faq-tab-pane { display: none; }
.faq-tab-pane.active { display: block; animation: faqPaneIn .3s ease; }
@keyframes faqPaneIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.faq-empty {
  text-align: center;
  padding: 3.5rem 1.5rem;
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: 20px;
}
.faq-empty i { font-size: 2.4rem; color: var(--muted-2); }
.faq-empty h4 { margin-top: 1rem; font-weight: 800; }
.faq-empty p { color: var(--muted); margin: 0; }

@media (max-width: 767.98px) {
  .faq-tab-btn { flex: 1 1 45%; justify-content: center; padding: .75rem .8rem; font-size: .88rem; }
}


/* ==========================================================
   v18 tweaks
   ========================================================== */
/* Testimonials slightly smaller */
.tm-card { padding: 1.4rem 1.5rem; }
.tm-card p.quote { font-size: .95rem; line-height: 1.6; }
.tm-card::before { font-size: 5.5rem; top: 4px; right: 18px; }
.tm-author { margin-top: 1rem; padding-top: .9rem; }
.tm-avatar { width: 44px; height: 44px; font-size: .95rem; }

/* Hero subheading alignment */
.hero .lead { max-width: 660px; }
body[data-page="home"] .hero .mx-auto .lead,
body .hero .mx-auto.lead { margin-inline: auto; }

/* ==========================================================
   Integrations page (v18)
   ========================================================== */
.int-api-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.75rem;
  height: 100%;
  display: flex; flex-direction: column;
  transition: all .25s ease;
}
.int-api-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(122,95,212,.28); }
.int-api-card .int-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.1rem;
}
.int-ico.i-lav { background: rgba(122,95,212,.12); color: var(--brand-green-700); }
.int-ico.i-blu { background: rgba(111,140,255,.14); color: #3f56c8; }
.int-ico.i-pnk { background: rgba(238,187,255,.25); color: #8a2fa8; }
.int-api-card h4 { font-weight: 800; margin-bottom: .4rem; }
.int-api-card p { color: var(--muted); font-size: .95rem; }
.int-api-card .api-chip {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .78rem; font-weight: 700;
  color: var(--brand-green-700);
}
.int-api-card .api-chip i { color: var(--brand-orange-600); }

/* How it connects flow */
.flow-steps {
  display: flex; align-items: center; justify-content: center;
  gap: .75rem; flex-wrap: wrap;
}
.flow-pill {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .8rem 1.4rem;
  font-weight: 700;
  color: var(--ink);
  font-size: .95rem;
  box-shadow: var(--shadow-sm);
}
.flow-arrow { color: var(--muted-2); font-size: 1.2rem; }
.badge-row { display: flex; justify-content: center; gap: 1.75rem; flex-wrap: wrap; margin-top: 2rem; }
.badge-row span {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: .92rem; color: var(--ink-2);
}
.badge-row span i { color: var(--brand-green-700); font-size: 1.1rem; }

/* Code block */
.code-block {
  background: linear-gradient(135deg, #2f1f78, #241a5f);
  border-radius: 18px;
  padding: 1.5rem 1.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.code-block::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(238,187,255,.22), transparent 60%);
  border-radius: 50%;
}
.code-block pre {
  margin: 0;
  color: #e9e4ff;
  font-family: 'JetBrains Mono', 'Fira Code', Consolas, monospace;
  font-size: .88rem;
  line-height: 1.75;
  white-space: pre-wrap;
  position: relative;
}
.code-block .ck { color: #ccbbff; }
.code-block .cv { color: #eebbff; }
.code-copy {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  border-radius: 10px;
  padding: .4rem .9rem;
  font-size: .8rem; font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  z-index: 2;
}
.code-copy:hover { background: rgba(255,255,255,.22); }
.code-copy.copied { background: rgba(122,95,212,.5); border-color: transparent; }

@media (max-width: 767.98px) {
  .flow-steps { flex-direction: column; }
  .flow-arrow { transform: rotate(90deg); }
}


/* ==========================================================
   v19 — Employee Wellness sub-products
   ========================================================== */
.subprod-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
}
.subprod-card::after {
  content: '';
  position: absolute;
  inset: auto -25% -55% auto;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(187,187,255,.22), transparent 65%);
  opacity: 0;
  transition: opacity .35s;
}
.subprod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(122,95,212,.28);
}
.subprod-card:hover::after { opacity: 1; }
.subprod-card .card-icon {
  background: linear-gradient(135deg, rgba(122,95,212,.12), rgba(170,187,255,.22));
  color: var(--brand-green-700);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.45rem;
  flex-shrink: 0;
  transition: all .3s;
}
.subprod-card:hover .card-icon {
  background: var(--grad-green);
  color: #fff;
  transform: rotate(-6deg);
}
.chip-tenure {
  background: rgba(111,140,255,.10);
  color: #3f56c8;
}
/***********Add by Jitender*******/
/* =========================================
   LOGIN TABS
========================================= */

.tab-pane-modern {
    display: none !important;
}

    .tab-pane-modern.active {
        display: block !important;
    }

.tab-pills {
    display: flex;
    width: 100%;
    gap: 4px;
    padding: 6px;
    margin-bottom: 30px;
    border-radius: 18px;
    background: #f5f2fc;
}

    .tab-pills button {
        flex: 1;
        border: 0;
        background: transparent;
        padding: 14px 18px;
        border-radius: 14px;
        font-size: 18px;
        font-weight: 600;
        color: #77718f;
        cursor: pointer;
        transition: all 0.25s ease;
    }

        .tab-pills button.active {
            background: #ffffff;
            color: #5940bd;
            box-shadow: 0 5px 18px rgba(89, 64, 189, 0.10);
        }
/* =========================================
   LOGIN FORM - NEW UI
========================================= */

.login-form-group {
    margin-bottom: 28px;
}

    .login-form-group .form-label-modern {
        display: block;
        margin-bottom: 9px;
        font-size: 18px;
        font-weight: 600;
        color: #34305f;
    }

.login-input-wrap {
    position: relative;
    width: 100%;
}

    .login-input-wrap .lead-icon {
        position: absolute;
        left: 23px;
        top: 50%;
        z-index: 3;
        transform: translateY(-50%);
        font-size: 22px;
        color: #73709a;
        pointer-events: none;
    }

.login-form-control {
    width: 100% !important;
    height: 64px !important;
    padding: 0 22px 0 72px !important;
    border: 1px solid #dddaf5 !important;
    border-radius: 18px !important;
    background: #edf3fc !important;
    color: #17172f !important;
    font-size: 20px !important;
    font-weight: 400;
    box-shadow: none !important;
    outline: none !important;
    transition: all 0.2s ease;
}

    .login-form-control:focus {
        border-color: #7893ff !important;
        background: #f7f9ff !important;
        box-shadow: 0 0 0 4px rgba(110, 135, 255, 0.10) !important;
    }

/* Password input needs room for eye icon */
.password-input {
    padding-right: 65px !important;
}

/* =========================================
   PASSWORD FIELD
========================================= */

.password-wrap {
    position: relative !important;
    width: 100% !important;
}

    /* Password input */
    .password-wrap .password-input {
        width: 100% !important;
        height: 64px !important;
        padding-left: 65px !important;
        padding-right: 65px !important;
        border-radius: 18px !important;
        box-sizing: border-box !important;
    }


    /* =========================================
   PASSWORD TOGGLE
========================================= */

    .password-wrap .password-toggle-modern {
        position: absolute !important;
        top: 50% !important;
        right: 12px !important;
        width: 44px !important;
        height: 44px !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transform: translateY(-50%) !important;
        border: none !important;
        outline: none !important;
        border-radius: 50% !important;
        background: transparent !important;
        color: #73709a !important;
        font-size: 20px !important;
        line-height: 1 !important;
        appearance: none !important;
        -webkit-appearance: none !important;
        box-shadow: none !important;
        cursor: pointer !important;
        z-index: 10 !important;
    }


        /* Eye icon */
        .password-wrap .password-toggle-modern i {
            margin: 0 !important;
            padding: 0 !important;
            font-size: 21px !important;
            line-height: 1 !important;
            color: #73709a !important;
        }


        /* Hover */
        .password-wrap .password-toggle-modern:hover {
            background: rgba(89, 64, 189, 0.08) !important;
            color: #5940bd !important;
        }


            /* Hover icon */
            .password-wrap .password-toggle-modern:hover i {
                color: #5940bd !important;
            }


        /* Focus */
        .password-wrap .password-toggle-modern:focus,
        .password-wrap .password-toggle-modern:focus-visible,
        .password-wrap .password-toggle-modern:active {
            border: none !important;
            outline: none !important;
            box-shadow: none !important;
        }

/* =========================================
   SIGN IN BUTTON
========================================= */

.login-submit-wrap {
    margin-top: 34px;
}

.login-submit-btn {
    width: 100% !important;
    height: 66px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    border: 0 !important;
    border-radius: 19px !important;
    background: #7895f5 !important;
    color: #151536 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    box-shadow: none !important;
    transition: all 0.2s ease;
}

    .login-submit-btn:hover {
        background: #6d89ef !important;
        transform: translateY(-1px);
    }

    .login-submit-btn i {
        font-size: 22px;
    }
/* =========================================
   CrediMonk Sign Up Dropdown
   ========================================= */

.dropdown-header {
    position: relative;
}

    .dropdown-header .dropdown-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        border-radius: 10px;
        padding: 9px 15px;
        font-weight: 700;
        white-space: nowrap;
        transition: all 0.2s ease;
    }

        .dropdown-header .dropdown-toggle::after {
            margin-left: 5px;
            transition: transform 0.2s ease;
        }

    .dropdown-header.show .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .dropdown-header .dropdown-menu {
        min-width: 220px;
        padding: 8px;
        margin-top: 10px !important;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 14px;
        background: #fff;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        z-index: 9999;
    }

    /* Dropdown item */
    .dropdown-header .dropdown-item {
        display: flex;
        align-items: center;
        gap: 4px;
        min-height: 44px;
        padding: 10px 12px;
        border-radius: 10px;
        color: #263238;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.2s ease;
    }

        /* Icon */
        .dropdown-header .dropdown-item i {
            width: 22px;
            font-size: 17px;
            color: var(--brand-green, #16a34a);
            transition: all 0.2s ease;
        }

        /* Hover */
        .dropdown-header .dropdown-item:hover,
        .dropdown-header .dropdown-item:focus {
            color: var(--brand-green, #16a34a);
            background: rgba(22, 163, 74, 0.08);
        }

            /* Icon hover */
            .dropdown-header .dropdown-item:hover i {
                transform: translateX(2px);
            }

        /* Active */
        .dropdown-header .dropdown-item:active {
            color: #fff;
            background: var(--brand-green, #16a34a);
        }

            .dropdown-header .dropdown-item:active i {
                color: #fff;
            }

    /* Divider */
    .dropdown-header .dropdown-divider {
        margin: 6px 4px;
    }

/* Mobile */
@media (max-width: 991.98px) {

    .dropdown-header {
        width: 100%;
    }

        .dropdown-header .dropdown-toggle {
            width: 100%;
            justify-content: center;
        }

        .dropdown-header .dropdown-menu {
            width: 100%;
            min-width: 100%;
            margin-top: 8px !important;
        }
}
/* =========================================
   INDIVIDUAL / BUSINESS LOGIN SWITCH
   ========================================= */

.login-type-switch {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 6px;
    margin-bottom: 18px;
    background: var(--surface-3);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
}


/* Individual / Business button */

.login-type-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 62px;
    padding: 9px 13px;
    color: var(--muted);
    text-decoration: none;
    border-radius: 12px;
    transition: all .25s ease;
}

    .login-type-btn:hover {
        color: var(--brand-green);
        background: rgba(255, 255, 255, .7);
        text-decoration: none;
    }


    /* Active */

    .login-type-btn.active {
        background: #fff;
        color: var(--brand-green);
        box-shadow: 0 5px 18px rgba(0, 0, 0, .08);
    }


/* Icon */

.login-type-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: rgba(0, 0, 0, .045);
    font-size: 1rem;
    transition: all .25s ease;
}

.login-type-btn.active .login-type-icon {
    background: var(--grad-cta);
    color: #fff;
}


/* Text */

.login-type-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    line-height: 1.2;
}

    .login-type-content strong {
        font-size: .9rem;
        font-weight: 800;
    }

    .login-type-content small {
        font-size: .7rem;
        color: var(--muted);
        font-weight: 500;
    }


/* Active indicator */

.login-type-btn.active::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-orange);
}


/* =========================================
   LOGIN METHOD TABS
   ========================================= */

.tab-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 5px;
    margin-bottom: 1.5rem;
    background: var(--surface-3);
    border-radius: 14px;
}

    .tab-pills button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        min-height: 44px;
        border: 0;
        border-radius: 10px;
        background: transparent;
        color: var(--muted);
        font-size: .84rem;
        font-weight: 700;
        cursor: pointer;
        transition: all .2s ease;
    }

        .tab-pills button:hover {
            color: var(--brand-green);
        }

        .tab-pills button.active {
            background: #fff;
            color: var(--brand-green);
            box-shadow: 0 3px 12px rgba(0, 0, 0, .07);
        }


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 575px) {

    .login-type-switch {
        gap: 5px;
        padding: 5px;
    }

    .login-type-btn {
        min-height: 55px;
        padding: 8px;
        gap: 8px;
    }

    .login-type-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: .9rem;
    }

    .login-type-content strong {
        font-size: .8rem;
    }

    .login-type-content small {
        font-size: .63rem;
    }

    .login-type-btn.active::after {
        display: none;
    }
}
/* =========================================================
   EMPLOYEE OTP LOGIN - CREDIMONK MODERN UI
========================================================= */

.auth-heading {
    margin-bottom: 24px;
}

.auth-benefits {
    margin-top: 28px;
}

    .auth-benefits .benefit-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        border-radius: 10px;
        background: rgba(255, 255, 255, .14);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #ffc107;
        font-size: 18px;
    }

.otp-sent-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 16px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 14px;
    background: #f8faf9;
}

.otp-sent-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: rgba(15, 157, 88, .10);
    color: #0f9d58;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.otp-sent-label {
    display: block;
    font-size: 12px;
    color: #777;
    margin-bottom: 2px;
}

.otp-sent-card strong {
    font-size: 14px;
    letter-spacing: .7px;
}

.otp-field {
    letter-spacing: 7px;
    font-weight: 700;
}

.auth-message {
    min-height: 20px;
    font-size: 14px;
}

    .auth-message.success {
        color: #198754 !important;
    }

    .auth-message.error {
        color: #dc3545 !important;
    }

.last-link {
    color: #0f9d58;
    font-weight: 600;
    text-decoration: none;
    margin-left: 5px;
}

    .last-link:hover {
        text-decoration: underline;
    }


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .otp-sent-card {
        padding: 13px;
    }

    .otp-field {
        letter-spacing: 5px;
    }
}
/* =========================================================
   SIMPLE MAINTENANCE PAGE
========================================================= */

.maintenance-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: radial-gradient( circle at top right, rgba(255, 189, 89, .12), transparent 35% ), radial-gradient( circle at bottom left, rgba(241, 90, 36, .08), transparent 35% ), #f8fafb;
}


/* =========================================================
   CARD
========================================================= */

.maintenance-card {
    width: 100%;
    max-width: 560px;
    padding: 3rem 2.5rem;
    text-align: center;
    background: #ffffff;
    border: 1px solid #edf0f3;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, .08);
    position: relative;
    overflow: hidden;
}

    .maintenance-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient( 90deg, var(--brand-orange), var(--brand-gold) );
    }


/* =========================================================
   ICON
========================================================= */

.maintenance-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(241, 90, 36, .10);
    color: var(--brand-orange);
    box-shadow: 0 8px 25px rgba(241, 90, 36, .10);
}

    .maintenance-icon i {
        font-size: 1.8rem;
    }


/* =========================================================
   BADGE
========================================================= */

.maintenance-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .45rem .8rem;
    margin-bottom: 1rem;
    border-radius: 50px;
    background: #fff7f2;
    color: var(--brand-orange);
    font-size: .75rem;
    font-weight: 700;
}

    .maintenance-badge i {
        font-size: .8rem;
    }


/* =========================================================
   HEADING
========================================================= */

.maintenance-card h1 {
    margin: 0 0 .75rem;
    color: #172033;
    font-size: 2.15rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -.03em;
}

    .maintenance-card h1 span {
        color: var(--brand-orange);
    }


/* =========================================================
   DESCRIPTION
========================================================= */

.maintenance-description {
    max-width: 450px;
    margin: 0 auto;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.7;
}


/* =========================================================
   INFORMATION
========================================================= */

.maintenance-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-top: 1.75rem;
}

.maintenance-info-item {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    padding: 1rem;
    text-align: left;
    background: #fafbfc;
    border: 1px solid #edf0f3;
    border-radius: 14px;
}

.maintenance-info-icon {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(241, 90, 36, .09);
    color: var(--brand-orange);
}

    .maintenance-info-icon i {
        font-size: .95rem;
    }

.maintenance-info-item strong {
    display: block;
    margin-bottom: .2rem;
    color: #344054;
    font-size: .78rem;
}

.maintenance-info-item small {
    display: block;
    color: #98a2b3;
    font-size: .7rem;
    line-height: 1.4;
}


/* =========================================================
   ACTIONS
========================================================= */

.maintenance-actions {
    display: flex;
    gap: .75rem;
    margin-top: 1.75rem;
}

.maintenance-btn {
    flex: 1;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .7rem 1rem;
    border-radius: 12px;
    font-size: .85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s ease;
}


/* Primary */

.maintenance-btn-primary {
    background: var(--brand-orange);
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(241, 90, 36, .18);
}

    .maintenance-btn-primary:hover {
        color: #fff !important;
        transform: translateY(-2px);
        box-shadow: 0 12px 25px rgba(241, 90, 36, .25);
    }


/* Outline */

.maintenance-btn-outline {
    background: #fff;
    color: #344054 !important;
    border: 1px solid #e1e5ea;
}

    .maintenance-btn-outline:hover {
        color: var(--brand-orange) !important;
        border-color: var(--brand-orange);
        background: #fff8f4;
        transform: translateY(-2px);
    }


/* =========================================================
   FOOTER
========================================================= */

.maintenance-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid #edf0f3;
}

.maintenance-brand {
    display: flex;
    align-items: center;
    gap: .4rem;
    color: #344054;
    font-size: .8rem;
}

    .maintenance-brand strong span {
        color: var(--brand-orange);
    }

.maintenance-brand-logo {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--brand-orange);
    color: #fff;
    font-size: .55rem;
    font-weight: 800;
}

.maintenance-footer-text {
    color: #98a2b3;
    font-size: .7rem;
}

    .maintenance-footer-text::before {
        content: "";
        display: inline-block;
        width: 1px;
        height: 16px;
        margin-right: .75rem;
        vertical-align: middle;
        background: #e4e7ec;
    }


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .maintenance-page {
        padding: 1rem;
    }

    .maintenance-card {
        padding: 2.25rem 1.25rem 1.5rem;
        border-radius: 20px;
    }

    .maintenance-icon {
        width: 62px;
        height: 62px;
    }

    .maintenance-card h1 {
        font-size: 1.75rem;
    }

    .maintenance-description {
        font-size: .85rem;
    }

    .maintenance-info {
        grid-template-columns: 1fr;
    }

    .maintenance-actions {
        flex-direction: column;
    }

    .maintenance-footer {
        flex-direction: column;
        gap: .6rem;
    }

    .maintenance-footer-text::before {
        display: none;
    }
}