body {
  margin: 0;
  font-family: 'Poppins', 'Inter', 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, #eef5fb 0%, #e4eef6 36%, #d4e2ec 72%, #c4d4e0 100%);
  /* background-attachment: fixed removed — broken on iOS Safari */
  min-height: 100vh;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
}

/* Fonts imported in public/index.html */

:root {
  --primary: #0a0a0a;
  --primary-dark: #050505;
  --primary-darker: #000000;
  --primary-light: #20262d;
  --primary-lighter: #36424f;

  --secondary: #0f1419;
  --secondary-dark: #050709;

  --accent-gold: #0a0a0a;
  --accent-gold-dark: #000000;

  --text-strong: #0f1720;
  --text-muted: #5b6773;

  --surface: #f7fbfe;
  --surface-alt: #edf4f9;
  --surface-soft: #e7f0f6;
  --surface-dark: #0f1419;

  --border-soft: rgba(73, 98, 124, 0.14);
  --border-strong: rgba(40, 57, 74, 0.2);

  --shadow-soft: 0 24px 60px rgba(30, 44, 58, 0.12);
  --shadow-gold: 0 20px 50px rgba(112, 145, 173, 0.22);

  --gradient-background: linear-gradient(135deg,
      #eef5fb 0%,
      #e4eef6 36%,
      #d4e2ec 72%,
      #c4d4e0 100%);

  --gradient-hero: linear-gradient(135deg,
      rgba(244, 249, 253, 0.92) 0%,
      rgba(231, 240, 247, 0.9) 52%,
      rgba(214, 227, 237, 0.88) 100%);

  --gradient-primary: linear-gradient(135deg,
      #0a0a0a 0%,
      #10161c 55%,
      #161f27 100%);

  --gradient-accent: linear-gradient(120deg,
      #f7fbfe 0%,
      #e8f1f7 45%,
      #d6e4ee 100%);

  --gradient-dark: linear-gradient(135deg,
      #0a0a0a 0%,
      #101418 50%,
      #171d24 100%);

  --gradient-glow: radial-gradient(circle at top right,
      rgba(196, 214, 228, 0.45) 0%,
      rgba(214, 228, 238, 0.18) 42%,
      rgba(214, 228, 238, 0) 72%);

  --gradient-mesh: linear-gradient(135deg,
      rgba(213, 227, 237, 0.2) 0%,
      rgba(255, 255, 255, 0) 35%,
      rgba(190, 208, 223, 0.16) 68%,
      rgba(255, 255, 255, 0) 100%);

  --gradient-button-hover: linear-gradient(135deg,
      #171d24 0%,
      #0f1419 55%,
      #050709 100%);

  --gradient-card: linear-gradient(135deg,
      #f7fbfe 0%,
      #edf4f9 50%,
      #dce9f2 100%);

  --gradient-overlay: linear-gradient(180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(203, 218, 230, 0.12) 50%,
      rgba(255, 255, 255, 0) 100%);

  /* Typography - Poppins as primary font (matching Unity Bank) */
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #0f1720;
  color: var(--text-strong);
}

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

/* ===== Global responsive utilities ===== */
html,
body,
.App {
  overflow-x: hidden;
}

img,
picture,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* prevent very long words or unbroken content from causing horizontal scroll */
* {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* ===== Generic card/grid/container fixes (improve mobile layout) ===== */
.container,
.page,
.footer-inner,
.header-shell,
.main-content {
  box-sizing: border-box;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.card,
.value-card,
.stat-card-new,
.document-card,
.feature-bento-card,
.product-card,
.office-card,
.step-card,
.calc-side-card,
.feature-bento-business {
  width: 100% !important;
  max-width: 100% !important;
}

/* make common grids more fluid by default */
[class*="-grid"],
.grid,
[class*="grid-"],
.grid,
.cards-grid,
.feature-grid,
.offering-grid,
.testimonial-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

/* Modals and overlays should be responsive */
.modal,
.dialog,
.drawer {
  max-width: 95vw;
}

/* Inputs - prevent iOS zoom and ensure legible size */
input,
textarea,
select,
button {
  font-size: 16px;
  box-sizing: border-box;
  max-width: 100%;
}

input,
textarea,
select {
  width: 100%;
}

/* small screens: ensure stacked layout for complex grids */
@media (max-width: 900px) {

  [class*="-grid"],
  .grid,
  [class*="grid-"],
  .grid,
  .form-grid {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .header-shell,
  .footer-inner {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}


html {
  background: linear-gradient(135deg,
      #eef5fb 0%,
      #e4eef6 36%,
      #d4e2ec 72%,
      #c4d4e0 100%);
  background: var(--gradient-background);
  /* background-attachment: fixed is removed — broken on iOS Safari */
  min-height: 100vh;
}

body {
  margin: 0;
  font-family: inherit;
  color: #0f1720;
  color: var(--text-strong);
  background: linear-gradient(135deg,
      #eef5fb 0%,
      #e4eef6 36%,
      #d4e2ec 72%,
      #c4d4e0 100%);
  background: var(--gradient-background);
  /* background-attachment: fixed is removed — broken on iOS Safari */
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Performance optimizations */
  text-rendering: optimizeSpeed;
  -webkit-tap-highlight-color: transparent;
}

/* iOS-safe scroll lock — position:fixed added in Header.css */
body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.App {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg,
      #eef5fb 0%,
      #e4eef6 36%,
      #d4e2ec 72%,
      #c4d4e0 100%);
  background: var(--gradient-background);
}

.main-content {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
}

@media (max-width: 640px) {
  .main-content {
    padding-top: 70px;
  }
}

.page {
  /* Full width background like footer */
  width: 100%;
  max-width: none;
  margin: 0;
  padding-bottom: 0;
  background: linear-gradient(135deg,
      #eef5fb 0%,
      #e4eef6 36%,
      #d4e2ec 72%,
      #c4d4e0 100%);
  background: var(--gradient-background);
  /* background-attachment: fixed is removed — broken on iOS Safari */
  min-height: calc(100vh - 80px);
}

/* Center content inside pages */
.page>section,
.page>div:not(.hero-block):not(.admin-dashboard-layout) {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5vw;
  padding-right: 5vw;
}

.fibe-home {
  padding-top: 1.5rem;
  min-height: 100vh;
  background: linear-gradient(135deg,
      #eef5fb 0%,
      #e4eef6 36%,
      #d4e2ec 72%,
      #c4d4e0 100%);
  background: var(--gradient-background);
  /* background-attachment: fixed is removed — broken on iOS Safari */
  /* Override .page width to extend full width like footer */
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding-bottom: 0 !important;
  /* Remove bottom padding to eliminate gap with footer */
}

/* Container for centered content inside fibe-home */
.fibe-home>section,
.fibe-home>.hero-block {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5vw;
  padding-right: 5vw;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  font-weight: 600;
  color: #050505;
  color: var(--primary-dark);
}

.primary-btn,
.ghost-btn {
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.primary-btn {
  background: linear-gradient(135deg,
      #0a0a0a 0%,
      #10161c 55%,
      #161f27 100%);
  background: var(--gradient-primary);
  color: #f6fbff;
  box-shadow: 0 20px 50px rgba(112, 145, 173, 0.22);
  box-shadow: var(--shadow-gold);
  text-decoration: none;
}

.primary-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg,
      #171d24 0%,
      #0f1419 55%,
      #050709 100%);
  background: var(--gradient-button-hover);
  box-shadow: 0 25px 60px rgba(31, 45, 58, 0.3);
}

.ghost-btn {
  background: rgba(247, 251, 254, 0.45);
  color: #0f1419;
  color: var(--secondary);
  border: 2px solid rgba(88, 111, 133, 0.24);
  text-decoration: none;
}

.ghost-btn:hover {
  transform: translateY(-2px);
  background: rgba(223, 234, 242, 0.65);
  border-color: #0a0a0a;
  border-color: var(--primary);
}

.primary-link {
  color: #050505;
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: none;
}

.hero-block {
  margin-top: 2rem;
  padding: 3rem;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 26px 80px rgba(15, 23, 42, 0.12);
  background: linear-gradient(135deg,
      #eef5fb 0%,
      #e4eef6 36%,
      #d4e2ec 72%,
      #c4d4e0 100%);
  background: var(--gradient-background);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 3rem;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 0.4rem 0 1rem;
}

.hero-content h1 span {
  color: #050505;
  color: var(--primary-dark);
}

.hero-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5b6773;
  color: var(--text-muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.hero-form {
  background: rgba(247, 251, 254, 0.68);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
}

.hero-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.hero-form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-form input {
  flex: 1 1;
  min-width: 200px;
  border-radius: 16px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 0.9rem 1.1rem;
  font-size: 1rem;
}

.hero-form button {
  background: #0f1419;
  background: var(--secondary);
  color: #0a0a0a;
  color: var(--primary);
  border: 1px solid #050505;
  border: 1px solid var(--primary-dark);
  border-radius: 16px;
  padding: 0.9rem 1.5rem;
  font-weight: 600;
}

.form-success {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  color: #0f9d58;
}

.hero-badges {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-weight: 600;
  color: #5b6773;
  color: var(--text-muted);
}

.hero-visual {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-carousel {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 24px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
}

.landing-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.landing-carousel-slide.active {
  opacity: 1;
}

.landing-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 24px;
}

.landing-carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.landing-carousel-dots .dot {
  width: 12px;
  height: 12px;
  min-width: 12px;
  min-height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 auto;
}

.landing-carousel-dots .dot.active {
  background: #ffffff;
  width: 14px;
  height: 14px;
  min-width: 14px;
  min-height: 14px;
}

.landing-carousel-dots .dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

.hero-insight {
  background: rgba(243, 249, 253, 0.55);
  border-radius: 32px;
  padding: 1.75rem;
  box-shadow: 0 35px 65px rgba(15, 23, 42, 0.12);
  position: relative;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.hero-insight.primary {
  background: rgba(237, 245, 250, 0.72);
}

.hero-pill {
  display: inline-flex;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(216, 228, 237, 0.95);
  color: #0f1419;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-snapshot h3 {
  font-size: 2.2rem;
  margin: 0.4rem 0 1rem;
}

.hero-snapshot ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #5b6773;
  color: var(--text-muted);
  line-height: 1.8;
}

.hero-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #5b6773;
  color: var(--text-muted);
}

.hero-mini-cards {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
  gap: 1rem;
}

.hero-mini-cards div {
  background: rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 18px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 0.9rem 1.1rem;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.hero-mini-cards span {
  color: #5b6773;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.stats-bar {
  margin: 3rem 0;
  background: linear-gradient(135deg,
      #eef5fb 0%,
      #e4eef6 36%,
      #d4e2ec 72%,
      #c4d4e0 100%);
  background: var(--gradient-background);
  border-radius: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  text-align: center;
  padding: 1.5rem;
  grid-gap: 1rem;
  gap: 1rem;
}

.stats-bar strong {
  display: block;
  font-size: 1.8rem;
}

.section-block {
  margin: 4rem 0;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.section-heading h2 {
  margin: 0.75rem 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.section-heading p {
  color: #5b6773;
  color: var(--text-muted);
  margin: 0 auto;
  line-height: 1.7;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.product-card {
  background: linear-gradient(135deg,
      #f7fbfe 0%,
      #edf4f9 50%,
      #dce9f2 100%);
  background: var(--gradient-card);
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid transparent;
  text-decoration: none;
  color: inherit;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at top right,
      rgba(196, 214, 228, 0.45) 0%,
      rgba(214, 228, 238, 0.18) 42%,
      rgba(214, 228, 238, 0) 72%);
  background: var(--gradient-glow);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.product-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.product-card:hover {
  border-color: rgba(96, 121, 145, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card p {
  color: #5b6773;
  color: var(--text-muted);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.steps-grid article {
  background: #fff;
  padding: 1.75rem;
  border-radius: 24px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  position: relative;
}

.step-index {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(96, 121, 145, 0.18);
  color: #0f1419;
  color: var(--secondary);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.calculator-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 2.5rem;
  gap: 2.5rem;
  align-items: flex-start;
}

.calculator-copy {
  background: #fff;
  border-radius: 28px;
  padding: 2rem;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
}

.calculator-tools {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.tool-card {
  background: #e7f0f6;
  background: var(--surface-soft);
  border-radius: 18px;
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.tool-card:hover {
  border-color: rgba(96, 121, 145, 0.45);
  transform: translateY(-3px);
}

.tool-card p {
  color: #5b6773;
  color: var(--text-muted);
}

.tool-card span {
  color: #050505;
  color: var(--primary-dark);
  font-weight: 600;
}

.calculator-widget .loan-calculator {
  background: #fff;
  border-radius: 32px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
}

.loan-calculator {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
}

.loan-calculator__inputs {
  flex: 1.4 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 260px;
}

.slider-field {
  padding: 1.25rem 1.5rem;
  border-radius: 22px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  background: #e7f0f6;
  background: var(--surface-soft);
}

.slider-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.slider-heading label {
  font-weight: 600;
  font-size: 1rem;
}

.value-chip {
  background: #fff;
  border-radius: 12px;
  padding: 0.4rem 0.95rem;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  font-weight: 600;
  font-size: 0.95rem;
}

.slider-field input[type='range'] {
  width: 100%;
  accent-color: #0a0a0a;
  accent-color: var(--primary);
}

.range-extents {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #5b6773;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.loan-calculator__summary {
  flex: 1 1;
  min-width: 260px;
  border-radius: 28px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 2rem;
  background: linear-gradient(180deg, #f7fbfe 0%, #eaf2f8 100%);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.emi-highlight {
  background: #0f1419;
  background: var(--secondary);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  color: #0a0a0a;
  color: var(--primary);
}

.emi-highlight p {
  margin: 0 0 0.4rem;
  font-weight: 600;
  color: #fff;
}

.emi-highlight strong {
  font-size: 2rem;
  color: #fff;
}

.summary-grid {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  color: #5b6773;
  color: var(--text-muted);
}

.summary-row strong {
  font-size: 1.1rem;
  color: #0f1720;
  color: var(--text-strong);
}

.summary-row.total {
  border-top: 1px dashed rgba(73, 98, 124, 0.14);
  border-top: 1px dashed var(--border-soft);
  padding-top: 0.85rem;
  margin-top: 0.3rem;
  font-weight: 600;
  color: #0f1720;
  color: var(--text-strong);
}

.loan-calculator__summary .primary-btn {
  width: 100%;
  justify-content: center;
}

.card-footnote {
  font-size: 0.82rem;
  color: #5b6773;
  color: var(--text-muted);
  margin: 0;
}

/* Loan calculator - responsive tweaks */
@media (max-width: 900px) {
  .loan-calculator {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .loan-calculator__inputs,
  .loan-calculator__summary {
    min-width: 0;
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
  }

  .slider-field {
    padding: 0.9rem 1rem;
    border-radius: 14px;
    width: 100%;
    box-sizing: border-box;
  }

  .slider-heading label {
    font-size: 0.95rem;
  }

  .emi-highlight strong {
    font-size: 1.6rem;
  }

  .loan-calculator__summary {
    border-radius: 18px;
  }

  .loan-calculator__summary .primary-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .loan-calculator {
    padding: 0.75rem;
  }

  .slider-heading label {
    font-size: 0.9rem;
  }

  .emi-highlight strong {
    font-size: 1.4rem;
  }
}

.offerings-block {
  background: linear-gradient(135deg,
      #eef5fb 0%,
      #e4eef6 36%,
      #d4e2ec 72%,
      #c4d4e0 100%);
  background: var(--gradient-background);
  border-radius: 34px;
  padding: 3rem;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
}

.offering-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 1.25rem;
  gap: 1.25rem;
}

.offering-card {
  padding: 1.5rem;
  border-radius: 20px;
  background: #e7f0f6;
  background: var(--surface-soft);
  border: 1px solid transparent;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.offering-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.offering-card:hover {
  border-color: rgba(96, 121, 145, 0.4);
  transform: translateY(-2px);
}

.offering-card span {
  display: inline-block;
  margin-top: 0.5rem;
  color: #050505;
  color: var(--primary-dark);
  font-weight: 600;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.why-grid article {
  padding: 1.75rem;
  border-radius: 24px;
  background: linear-gradient(135deg,
      #eef5fb 0%,
      #e4eef6 36%,
      #d4e2ec 72%,
      #c4d4e0 100%);
  background: var(--gradient-background);
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  min-height: 200px;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.awards-grid article {
  padding: 1.5rem;
  border-radius: 24px;
  background: #e7f0f6;
  background: var(--surface-soft);
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
}

.why-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
  margin: 1rem 0 1.25rem;
}

.why-metrics div {
  background: linear-gradient(135deg, #f7fbfe, #eaf2f8);
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.why-metrics strong {
  display: block;
  font-size: 1.2rem;
}

.why-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 0.85rem;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff, #edf4f9);
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #e7f0f6;
  background: var(--surface-soft);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
}

.testimonials-block blockquote {
  background: #fff;
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 260px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 1.25rem;
  gap: 1.25rem;
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.testimonials-carousel-track {
  position: relative;
  min-height: 280px;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.6s ease-in-out;
  background: linear-gradient(135deg,
      #eef5fb 0%,
      #e4eef6 36%,
      #d4e2ec 72%,
      #c4d4e0 100%);
  background: var(--gradient-background);
  border-radius: 24px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 1.5rem;
  gap: 1.5rem;
  align-items: start;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.testimonials-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
}

.testimonials-carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(96, 121, 145, 0.3);
  border: 2px solid rgba(96, 121, 145, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.testimonials-carousel-dots .dot.active {
  background: #050505;
  background: var(--primary-dark);
  border-color: #050505;
  border-color: var(--primary-dark);
  width: 14px;
  height: 14px;
  box-shadow: 0 4px 12px rgba(96, 121, 145, 0.4);
}

.testimonials-carousel-dots .dot:hover {
  background: rgba(96, 121, 145, 0.6);
  transform: scale(1.15);
}

.testimonial-avatar {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  overflow: hidden;
  background: #e7f0f6;
  background: var(--surface-soft);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.testimonial-avatar.round {
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.8);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.testimonial-text p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #0f1720;
  color: var(--text-strong);
}

.testimonial-meta {
  display: grid;
  grid-gap: 0.25rem;
  gap: 0.25rem;
  color: #5b6773;
  color: var(--text-muted);
}

.testimonial-meta strong {
  color: #0f1720;
  color: var(--text-strong);
  font-size: 1rem;
}

.testimonial-meta span {
  font-size: 0.9rem;
}

.quote-tag {
  font-size: 0.85rem;
  font-weight: 700;
  color: #050505;
  color: var(--primary-dark);
  text-transform: uppercase;
}

blockquote p {
  margin: 0;
  color: #0f1720;
  color: var(--text-strong);
  line-height: 1.6;
}

blockquote cite {
  font-style: normal;
  color: #5b6773;
  color: var(--text-muted);
}

.download-block {
  margin-top: 5rem;
}

.download-card {
  padding: 3rem;
  border-radius: 36px;
  background: linear-gradient(120deg, #ffffff, #fff7da);
  color: #0f1419;
  color: var(--secondary);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.download-card .store-badge {
  border: 1px solid rgba(17, 17, 17, 0.12);
}

.store-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: none;
}

.store-badge img {
  width: 140px;
  height: auto;
  display: block;
  border-radius: 8px;
}

.store-badge img {
  width: 135px;
  height: auto;
  display: block;
}

.hero-store-badges {
  margin-top: 1rem;
}

.download-card .store-badges {
  justify-content: flex-start;
}

/* Modern Homepage Styles */
.highlight-text {
  background: linear-gradient(135deg,
      #0a0a0a 0%,
      #10161c 55%,
      #161f27 100%);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-stats-card {
  background: linear-gradient(135deg, #ffffff, #fff7da);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(96, 121, 145, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-item-hero {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  border: 1px solid rgba(96, 121, 145, 0.15);
}

.stat-icon {
  font-size: 2rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
      #0a0a0a 0%,
      #10161c 55%,
      #161f27 100%);
  background: var(--gradient-primary);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(96, 121, 145, 0.3);
}

.stat-item-hero strong {
  font-size: 1.8rem;
  color: #0f1419;
  color: var(--secondary);
  display: block;
  line-height: 1;
}

.stat-item-hero p {
  margin: 0.3rem 0 0;
  color: #5b6773;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
}

.hero-form-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
  color: #0f1419;
  color: var(--secondary);
}

.hero-form-card>p {
  margin: 0 0 1.5rem;
  color: #5b6773;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.store-badges-inline {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(73, 98, 124, 0.14);
  border-top: 1px solid var(--border-soft);
}

.store-badges-inline .store-badge img {
  width: 120px;
}

/* Why Choose Us Section */
.why-choose-section {
  background: linear-gradient(135deg, #fff7da, #ffffff);
  border-radius: 40px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(17, 17, 17, 0.08);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.why-card {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
  border-color: rgba(96, 121, 145, 0.3);
}

.why-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.why-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: #0f1419;
  color: var(--secondary);
}

.why-card p {
  margin: 0;
  color: #5b6773;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Modern Product Cards */
.product-card.modern {
  position: relative;
  overflow: hidden;
}

.product-content {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: linear-gradient(135deg,
      #0a0a0a 0%,
      #10161c 55%,
      #161f27 100%);
  background: var(--gradient-primary);
  color: #0f1419;
  color: var(--secondary);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  width: -webkit-fit-content;
  width: fit-content;
}

.product-arrow {
  color: #050505;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.product-card.modern:hover .product-arrow {
  transform: translateX(4px);
  display: inline-block;
  transition: transform 0.3s ease;
}

/* CTA Section */
.cta-section {
  margin: 4rem 0 2rem;
  background: linear-gradient(135deg,
      #eef5fb 0%,
      #e4eef6 36%,
      #d4e2ec 72%,
      #c4d4e0 100%);
  background: var(--gradient-background);
  border-radius: 40px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(96, 121, 145, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  color: #000000 !important;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1rem;
  font-weight: 800;
}

.cta-section p {
  color: #000000 !important;
  font-size: 1.2rem;
  margin: 0 0 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .primary-btn,
.primary-btn.large {
  color: #f6fbff !important;
}

.ghost-btn.large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.ghost-btn.large {
  background: rgba(255, 255, 255, 0.15);
  color: #000000 !important;
  border-color: rgba(0, 0, 0, 0.3);
}

.ghost-btn.large:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: #000000;
  color: #000000 !important;
}



.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.blog-grid article {
  background: #fff;
  border-radius: 24px;
  padding: 1.75rem;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #5b6773;
  color: var(--text-muted);
}

.blog-grid h3 {
  margin: 0;
}

.blogs-page {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 3rem;
}

.blogs-hero {
  background:
    radial-gradient(circle at 0% 0% 0%, rgba(96, 121, 145, 0.18), transparent 50%),
    radial-gradient(circle at 90% 10% 0%, rgba(232, 169, 26, 0.18), transparent 50%),
    linear-gradient(120deg, #ffffff, #fff8e0);
  color: #0f1419;
  color: var(--secondary);
  border-radius: 32px;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
  align-items: start;
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
}

.blogs-hero__copy {
  display: grid;
  grid-gap: 0.75rem;
  gap: 0.75rem;
}

.blogs-hero__copy p {
  margin: 0;
  color: #5b6773;
  color: var(--text-muted);
  line-height: 1.6;
}

.blogs-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blogs-hero__meta span {
  border-radius: 999px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 0.35rem 0.75rem;
  background: #f7fbfe;
  background: var(--surface);
  font-weight: 700;
  font-size: 0.9rem;
}

.blogs-filters {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.blogs-filters button {
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  background: rgba(0, 0, 0, 0.02);
  color: #0f1419;
  color: var(--secondary);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  font-weight: 700;
}

.blogs-filters button.selected {
  background: linear-gradient(135deg, #0a0a0a, #050505);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: transparent;
  color: #0f1419;
  color: var(--secondary);
  box-shadow: 0 12px 26px rgba(17, 17, 17, 0.12);
}

.blogs-featured {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  padding: 1.4rem;
  display: grid;
  grid-gap: 0.5rem;
  gap: 0.5rem;
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
}

.blogs-featured__badge {
  align-self: flex-start;
  padding: 0.35rem 0.8rem;
  background: linear-gradient(135deg, #0a0a0a, #050505);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #0f1419;
  color: var(--secondary);
  border-radius: 12px;
  font-weight: 800;
  width: -webkit-fit-content;
  width: fit-content;
}

.blogs-featured h2 {
  margin: 0.25rem 0 0.25rem;
}

.blog-meta-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  color: #5b6773;
  color: var(--text-muted);
  font-weight: 700;
}

.blogs-featured .ghost-btn {
  justify-self: flex-start;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.blog-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1.25rem;
  display: grid;
  grid-gap: 0.5rem;
  gap: 0.5rem;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.blog-card__badge {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  border-radius: 12px;
  background: #e7f0f6;
  background: var(--surface-soft);
  font-weight: 800;
  color: #0f1419;
  color: var(--secondary);
  width: -webkit-fit-content;
  width: fit-content;
}

.blog-card h3 {
  margin: 0;
}

.blog-card p {
  margin: 0;
  color: #5b6773;
  color: var(--text-muted);
}

.blog-card .blog-meta-row {
  color: #5b6773;
  color: var(--text-muted);
}

.calculator-page {
  padding-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.calculator-hero {
  background: linear-gradient(135deg, #eef5fb, #e9ffff, #edf4f9);
  border-radius: 36px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.calculator-hero.enhanced {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  background: radial-gradient(circle at 0% 0% 0%, rgba(96, 121, 145, 0.18), transparent 50%),
    radial-gradient(circle at 80% 20% 0%, rgba(196, 214, 228, 0.2), transparent 45%),
    linear-gradient(120deg, #ffffff, #edf4f9);
  color: #0f1419;
  color: var(--secondary);
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.calculator-hero.enhanced::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

.calc-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.calc-hero-copy h1 {
  margin: 0.25rem 0;
}

.calc-hero-copy p {
  margin: 0;
  color: #5b6773;
  color: var(--text-muted);
  line-height: 1.6;
}

.calc-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.calc-chip {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.65rem 0.9rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.06);
  min-width: 150px;
}

.calc-chip strong {
  font-size: 1.1rem;
}

.calc-chip small {
  color: #5b6773;
  color: var(--text-muted);
}

.calc-hero-panel {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  padding: 1.5rem;
  display: grid;
  grid-gap: 1rem;
  gap: 1rem;
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
}

.calc-hero-stat p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #5b6773;
  color: var(--text-muted);
}

.calc-hero-stat strong {
  display: block;
  font-size: 1.4rem;
}

.calc-hero-stat span {
  color: #5b6773;
  color: var(--text-muted);
}

.calc-hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-gap: 0.6rem;
  gap: 0.6rem;
  color: #5b6773;
  color: var(--text-muted);
}

.calc-hero-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.support-page {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 3rem;
}

.contact-stack {
  background: linear-gradient(135deg, #ffffff, #edf4f9);
  border-radius: 32px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 1.25rem;
  gap: 1.25rem;
  align-items: start;
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
}

.contact-stack__left,
.contact-stack__right {
  display: grid;
  grid-gap: 1rem;
  gap: 1rem;
}

.contact-stack-head h2 {
  margin: 0.25rem 0 0.3rem;
}

.contact-stack-lead {
  margin: 0;
  color: #5b6773;
  color: var(--text-muted);
}

.contact-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.contact-assurance span {
  border-radius: 14px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 0.55rem 0.85rem;
  background: #fff;
  font-weight: 700;
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
}

.contact-hero {
  background:
    radial-gradient(circle at 0% 0% 0%, rgba(96, 121, 145, 0.2), transparent 45%),
    radial-gradient(circle at 80% 20% 0%, rgba(17, 17, 17, 0.12), transparent 55%),
    linear-gradient(120deg, #ffffff, #edf4f9);
  color: #0f1419;
  color: var(--secondary);
  border-radius: 36px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
  align-items: center;
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.contact-hero-copy h1 {
  margin: 0.2rem 0 0.4rem;
}

.contact-hero-copy p {
  margin: 0;
  color: #5b6773;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 0.5rem;
}

.contact-badges span {
  border-radius: 14px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  background: #f7fbfe;
  background: var(--surface);
  padding: 0.6rem 0.85rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 130px;
}

.contact-badges strong {
  font-size: 1.05rem;
}

.contact-badges small {
  color: #5b6773;
  color: var(--text-muted);
}

.contact-quick {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.contact-hero-visual {
  position: relative;
  display: grid;
  grid-gap: 0.75rem;
  gap: 0.75rem;
  justify-items: center;
}

.contact-hero-card {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  padding: 1.4rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
}

.contact-hero-card h3 {
  margin: 0.3rem 0 0.35rem;
}

.contact-hero-note {
  margin: 0 0 0.65rem;
  color: #5b6773;
  color: var(--text-muted);
}

.support-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.support-highlight-card {
  background: linear-gradient(135deg, #ffffff, #f5f8ff);
  border-radius: 20px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1.2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 0.75rem;
  gap: 0.75rem;
  align-items: center;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.support-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.support-info-card {
  border-radius: 22px;
  padding: 1.4rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 0.8rem;
  gap: 0.8rem;
  align-items: start;
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
  color: #0f1419;
  color: var(--secondary);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff, #edf4f9);
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
}

.support-info-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 15% 0%, rgba(255, 255, 255, 0.12), transparent 55%);
  pointer-events: none;
}

.support-info-card.blue {
  background: linear-gradient(135deg, #ffffff, #edf4f9);
}

.support-info-card.teal {
  background: linear-gradient(135deg, #ffffff, #edf4f9);
}

.support-info-card.amber {
  background: linear-gradient(135deg, #ffffff, #edf4f9);
}

.support-info-card ul {
  margin: 0.2rem 0 0;
  padding-left: 1.1rem;
  color: #5b6773;
  color: var(--text-muted);
  display: grid;
  grid-gap: 0.35rem;
  gap: 0.35rem;
}

.support-info-card h3 {
  margin: 0;
}

.support-faqs {
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1.5rem;
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-gap: 1rem;
  gap: 1rem;
}

.faq-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-gap: 0.75rem;
  gap: 0.75rem;
}

.faq-card {
  background: #e7f0f6;
  background: var(--surface-soft);
  border-radius: 16px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 0.9rem 1rem;
}

.faq-card summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-card p {
  margin: 0.5rem 0 0;
  color: #5b6773;
  color: var(--text-muted);
}

.calculator-hero.eligibility-hero {
  background:
    radial-gradient(circle at 0% 0% 0%, rgba(96, 121, 145, 0.2), transparent 50%),
    radial-gradient(circle at 80% 20% 0%, rgba(196, 214, 228, 0.22), transparent 55%),
    linear-gradient(120deg, #ffffff, #edf4f9);
  color: #0f1419;
  color: var(--secondary);
  position: relative;
  overflow: hidden;
}

.calculator-hero.credit-hero {
  background:
    radial-gradient(circle at 0% 0% 0%, rgba(96, 121, 145, 0.2), transparent 55%),
    radial-gradient(circle at 80% 20% 0%, rgba(17, 17, 17, 0.12), transparent 55%),
    linear-gradient(120deg, #ffffff, #edf4f9);
  color: #0f1419;
  color: var(--secondary);
  position: relative;
  overflow: hidden;
}

.eligibility-hero-card {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  padding: 1.5rem;
  display: grid;
  grid-gap: 0.65rem;
  gap: 0.65rem;
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.eligibility-hero-card h3 {
  margin: 0.2rem 0 0.1rem;
}

.credit-hero-card {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  padding: 1.5rem;
  display: grid;
  grid-gap: 0.65rem;
  gap: 0.65rem;
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.credit-hero-card h3 {
  margin: 0.2rem 0 0.1rem;
}

.doodle-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bubble.mini {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 121, 145, 0.26), transparent 70%);
  top: 12%;
  right: 18%;
}

.sparkle {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17, 17, 17, 0.12), transparent 65%);
  bottom: 10%;
  left: 10%;
}

.calculator-hero.two-wheeler-hero {
  background:
    radial-gradient(circle at 0% 0%, rgba(96, 121, 145, 0.22) 0%, transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(17, 17, 17, 0.12) 0%, transparent 50%),
    linear-gradient(120deg, #ffffff, #edf4f9);
  color: #0f1419;
  color: var(--secondary);
  overflow: hidden;
  position: relative;
}

.two-wheeler-hero-visual {
  position: relative;
  min-height: 260px;
  display: grid;
  place-items: center;
}

.two-wheeler-hero-card {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 1.6rem;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 1;
}

.two-wheeler-hero-card h3 {
  margin: 0.35rem 0 0.25rem;
}

.calc-hero-note {
  margin: 0 0 0.75rem;
  color: #5b6773;
  color: var(--text-muted);
}

.hero-mini-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  grid-gap: 0.5rem;
  gap: 0.5rem;
}

.hero-mini-stats div {
  background: rgba(0, 0, 0, 0.04);
  border-radius: 14px;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  text-align: center;
}

.doodle-bubble {
  position: absolute;
  border-radius: 50%;
  filter: blur(0);
  z-index: 0;
}

.bubble-a {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(96, 121, 145, 0.26), transparent 70%);
  top: 10%;
  right: 12%;
}

.bubble-b {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(17, 17, 17, 0.12), transparent 70%);
  bottom: 5%;
  left: 5%;
}

.hero-facts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.hero-facts li {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-facts.compact {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.calculator-body {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
  grid-gap: 2rem;
  gap: 2rem;
}

.calculator-body.modern {
  background: #fff;
  border-radius: 32px;
  padding: 1.5rem;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
  align-items: start;
}

.calculator-main-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
  border-radius: 24px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1.25rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.calculator-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.calculator-subhead {
  margin: 0.35rem 0 0;
  color: #5b6773;
  color: var(--text-muted);
}

.calculator-meta-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.calculator-meta-tags span {
  border-radius: 999px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 0.35rem 0.75rem;
  background: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.calculator-aside {
  display: grid;
  grid-gap: 1rem;
  gap: 1rem;
}

.calculator-body.stacked {
  grid-template-columns: 1fr;
}

.calc-side-card {
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.calc-side-card ul,
.calc-side-card ol {
  margin: 0;
  padding-left: 1.2rem;
  color: #5b6773;
  color: var(--text-muted);
}

.calc-side-card .note {
  margin: 0;
  font-size: 0.9rem;
  color: #5b6773;
  color: var(--text-muted);
}

.calculator-visual-shell {
  background: #fff;
  border-radius: 28px;
  padding: 1.25rem;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-gap: 0.75rem;
  gap: 0.75rem;
  position: relative;
}

.calculator-carousel {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  background: #e7f0f6;
  background: var(--surface-soft);
  position: relative;
}

.calculator-carousel__track {
  display: flex;
  transition: transform 0.4s ease;
}

.calculator-carousel__slide {
  min-width: 100%;
}

.calculator-carousel__slide img {
  width: 100%;
  display: block;
}

.compact-carousel .calculator-carousel {
  max-height: 360px;
}

.compact-carousel .calculator-carousel__slide img {
  max-height: 320px;
  object-fit: cover;
}

.calculator-carousel__dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.9);
}

.calculator-carousel__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.calculator-carousel__dot.is-active {
  background: #0f1419;
  background: var(--secondary);
  border-color: #0f1419;
  border-color: var(--secondary);
  transform: scale(1.05);
}

.carousel-tags {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.carousel-tags span {
  border-radius: 999px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 0.35rem 0.8rem;
  background: #e7f0f6;
  background: var(--surface-soft);
  font-weight: 700;
  font-size: 0.9rem;
}

.carousel-doodle .doodle-dot,
.carousel-doodle .doodle-line {
  position: absolute;
  display: inline-block;
  background: linear-gradient(135deg, rgba(96, 121, 145, 0.28), rgba(17, 17, 17, 0.12));
  filter: blur(0);
  opacity: 0.8;
}

.carousel-doodle .doodle-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  top: 6%;
  right: 10%;
}

.carousel-doodle .doodle-line {
  width: 120px;
  height: 10px;
  border-radius: 999px;
  bottom: 8%;
  left: 6%;
}

.calc-side-card.tinted {
  background: linear-gradient(180deg, #f7fbfe, #ffffff);
}

.calc-side-card.compact ul {
  padding-left: 1.1rem;
  margin: 0;
  display: grid;
  grid-gap: 0.35rem;
  gap: 0.35rem;
  color: #5b6773;
  color: var(--text-muted);
}

.calc-bullet-list {
  list-style: disc;
}

.calc-side-card ol {
  display: grid;
  grid-gap: 0.6rem;
  gap: 0.6rem;
  padding-left: 1.2rem;
}

.calc-side-card ol strong {
  display: block;
}

.calc-grid-section {
  display: grid;
  grid-gap: 1.25rem;
  gap: 1.25rem;
}

.calc-scenario-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.calc-scenario-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1.25rem;
  display: grid;
  grid-gap: 0.75rem;
  gap: 0.75rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.calc-scenario-card h3 {
  margin: 0.35rem 0;
}

.calc-scenario-card p {
  margin: 0;
  color: #5b6773;
  color: var(--text-muted);
}

.calc-scenario-card .ghost-btn {
  width: -webkit-fit-content;
  width: fit-content;
}

.calc-scenario-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  font-weight: 700;
  color: #050505;
  color: var(--primary-dark);
  margin: 0;
}

.apply-page {
  padding-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.apply-hero {
  background: linear-gradient(120deg, #f7f3ff, #fff2e1);
  border-radius: 36px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.apply-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.apply-highlights div {
  background: #fff;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
}

.apply-highlights span {
  display: block;
  font-size: 0.85rem;
  color: #5b6773;
  color: var(--text-muted);
}

.apply-highlights strong {
  font-size: 1.2rem;
}

.apply-content {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(260px, 1fr);
  grid-gap: 2rem;
  gap: 2rem;
}

.apply-form {
  background: #fff;
  border-radius: 32px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  grid-gap: 1.25rem;
  gap: 1.25rem;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
}

.form-grid input,
.form-grid select {
  border-radius: 14px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.slider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 1.25rem;
  gap: 1.25rem;
}

.slider-grid>div {
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 1rem 1.25rem;
  background: #e7f0f6;
  background: var(--surface-soft);
}

.slider-heading {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.slider-grid input[type='range'] {
  width: 100%;
  accent-color: #0a0a0a;
  accent-color: var(--primary);
}

.apply-form .primary-btn {
  width: max(240px, 40%);
}

.form-note {
  font-size: 0.9rem;
  color: #5b6773;
  color: var(--text-muted);
  margin: 0;
}

.form-note.success {
  color: #0f9d58;
  font-weight: 600;
}

.apply-summary {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.summary-card,
.contact-card {
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1.75rem;
}

.summary-card h2 {
  margin-top: 0;
}

.summary-card div {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

.summary-card div strong {
  color: #0f1720;
  color: var(--text-strong);
}

.contact-card a {
  display: block;
  color: #0f1419;
  color: var(--secondary);
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.35rem;
}

.company-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.company-card {
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 2rem;
}

.fact-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fact-grid div {
  border-radius: 20px;
  border: 1px dashed rgba(73, 98, 124, 0.14);
  border: 1px dashed var(--border-soft);
  padding: 1rem 1.25rem;
  background: #e7f0f6;
  background: var(--surface-soft);
}

.mission-list {
  list-style: disc;
  padding-left: 1.2rem;
  color: #5b6773;
  color: var(--text-muted);
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-gap: 1.25rem;
  gap: 1.25rem;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-strip div {
  flex: 1 1;
  min-width: 200px;
  border-radius: 20px;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #ffffff, #fff7da);
  color: #0f1419;
  color: var(--secondary);
}

.contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.contact-channel {
  border-radius: 22px;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 0.8rem;
  gap: 0.8rem;
  align-items: start;
  position: relative;
  overflow: hidden;
  color: #0f1419;
  color: var(--secondary);
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
}

.contact-channel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 10% 0%, rgba(255, 255, 255, 0.12), transparent 55%);
  pointer-events: none;
}

.contact-channel:nth-child(1) {
  background: linear-gradient(135deg, #ffffff, #fff7da);
}

.contact-channel:nth-child(2) {
  background: linear-gradient(135deg, #ffffff, #fff7da);
}

.contact-channel:nth-child(3) {
  background: linear-gradient(135deg, #ffffff, #fff7da);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
}

.contact-channel h3 {
  margin: 0;
}

.contact-channel p {
  margin: 0.35rem 0 0.5rem;
  color: #5b6773;
  color: var(--text-muted);
}

.contact-channel .primary-link {
  color: #050505;
  color: var(--primary-dark);
  font-weight: 700;
}

.careers-page,
.newsroom-page {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 3rem;
}

.benefit-card {
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1.5rem;
}

.roles-section .roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 1.25rem;
  gap: 1.25rem;
}

.role-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tag-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag-row span {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: #e7f0f6;
  background: var(--surface-soft);
  font-size: 0.85rem;
}

.roles-section .ghost-btn {
  align-self: flex-start;
}

.career-form-card {
  margin-top: 1.5rem;
  margin-bottom: 4rem;
  display: grid;
  grid-gap: 0.75rem;
  gap: 0.75rem;
  max-width: 800px;
  margin-inline: auto;
  width: 100%;
}

.career-form {
  display: grid;
  grid-gap: 1rem;
  gap: 1rem;
}

.career-form .form-grid label,
.career-message {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: #0f1720;
  color: var(--text-strong);
}

.career-form input,
.career-form textarea {
  border-radius: 14px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 0.75rem 0.95rem;
  font-size: 0.95rem;
  font-family: inherit;
  background: #f7fbfe;
  background: var(--surface);
}

.career-form input[type='file'] {
  padding: 0.6rem;
}

.career-form textarea {
  resize: vertical;
}

.section-note {
  text-align: center;
  color: #5b6773;
  color: var(--text-muted);
  margin-top: 1rem;
}

.newsroom-page .press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 1.25rem;
  gap: 1.25rem;
}

.press-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.media-kit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.tag-row.wrap {
  flex-wrap: wrap;
}

.timeline-section {
  background: #fff;
  border-radius: 32px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 2.5rem;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-gap: 1.25rem;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.timeline-grid article {
  border-radius: 24px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1.25rem;
  background: #e7f0f6;
  background: var(--surface-soft);
}

.testimonials-section .testimonial-grid.wide {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.contact-cta {
  background: linear-gradient(135deg, #ffffff, #fff7da);
  border-radius: 32px;
  padding: 2.5rem;
  color: #0f1419;
  color: var(--secondary);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-cta .ghost-btn {
  border-color: rgba(96, 121, 145, 0.5);
  color: #0f1419;
  color: var(--secondary);
}

.contact-form-shell {
  background: linear-gradient(135deg, #f5f7ff, #fff7ef);
  border-radius: 32px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-gap: 1.25rem;
  gap: 1.25rem;
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
}

.contact-form-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
  border-radius: 26px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1.25rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.contact-form-card h2 {
  margin: 0.35rem 0 0.75rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-gap: 0.9rem 1rem;
  gap: 0.9rem 1rem;
}

.contact-form-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
}

.contact-form-grid input,
.contact-form-grid select,
.contact-form-grid textarea {
  border-radius: 14px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 0.75rem 0.95rem;
  font-size: 0.95rem;
  font-family: inherit;
}

.contact-form-grid textarea {
  resize: vertical;
}

.contact-form-grid .span-2 {
  grid-column: 1 / -1;
}

.contact-info-card {
  background: linear-gradient(135deg, #ffffff, #fff7da);
  border-radius: 24px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1.25rem;
  display: grid;
  grid-gap: 0.8rem;
  gap: 0.8rem;
  color: #0f1419;
  color: var(--secondary);
}

.contact-info-card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: #5b6773;
  color: var(--text-muted);
  display: grid;
  grid-gap: 0.35rem;
  gap: 0.35rem;
}

.contact-quick-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.contact-info-card .ghost-btn,
.support-cta-band .ghost-btn {
  border-color: rgba(96, 121, 145, 0.5);
  color: #0f1419;
  color: var(--secondary);
}

.contact-info-card .primary-link {
  color: #050505;
  color: var(--primary-dark);
  font-weight: 700;
}

.support-cta-band {
  background: linear-gradient(120deg, #ffffff, #fff7da);
  color: #0f1419;
  color: var(--secondary);
  border-radius: 28px;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 1.25rem;
  gap: 1.25rem;
  align-items: center;
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
}

.support-cta-band p {
  margin: 0.4rem 0 0.75rem;
  color: #5b6773;
  color: var(--text-muted);
}

.support-cta-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.support-info-cards+.branch-locator {
  margin-top: 1rem;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.branch-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1.1rem;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  display: grid;
  grid-gap: 0.4rem;
  gap: 0.4rem;
}

.branch-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: #e7f0f6;
  background: var(--surface-soft);
  font-weight: 700;
}

.policy-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.policy-card {
  background: linear-gradient(135deg, #ffffff, #fff7da);
  color: #0f1419;
  color: var(--secondary);
  border-radius: 20px;
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
}

.policy-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20% 0%, rgba(255, 255, 255, 0.1), transparent 55%);
  pointer-events: none;
}

.policy-card h3 {
  margin: 0.35rem 0 0.25rem;
}

.policy-card p {
  margin: 0;
  color: #5b6773;
  color: var(--text-muted);
}

.policy-tag {
  display: inline-flex;
  padding: 0.3rem 0.75rem;
  border-radius: 12px;
  background: rgba(96, 121, 145, 0.16);
  border: 1px solid rgba(17, 17, 17, 0.08);
  font-weight: 700;
  font-size: 0.85rem;
}

.support-timeline {
  background: linear-gradient(135deg, #f7f9ff, #fff8ef);
  border-radius: 28px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1.75rem;
  display: grid;
  grid-gap: 1.1rem;
  gap: 1.1rem;
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
}

.timeline-head h2 {
  margin: 0.35rem 0 0.25rem;
}

.timeline-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
  position: relative;
}

.timeline-node {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1.1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 0.8rem;
  gap: 0.8rem;
  align-items: start;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.timeline-connector {
  display: none;
}

.timeline-node h3 {
  margin: 0 0 0.35rem;
}

.timeline-node p {
  margin: 0;
  color: #5b6773;
  color: var(--text-muted);
}

.timeline-node .step-number {
  background: #0a0a0a;
  background: var(--primary);
  color: #0f1419;
  color: var(--secondary);
  border-radius: 12px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(96, 121, 145, 0.35);
}

@media (min-width: 900px) {
  .timeline-flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .timeline-connector {
    display: block;
    height: 2px;
    background: linear-gradient(90deg, rgba(6, 148, 254, 0.25), rgba(246, 130, 31, 0.25));
    align-self: center;
  }
}

.eligibility-calculator {
  background: #fff;
  border-radius: 32px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.eligibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 1.25rem;
  gap: 1.25rem;
}

.eligibility-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
}

.eligibility-grid input[type='number'],
.eligibility-grid input[type='date'],
.eligibility-grid input[type='text'] {
  border-radius: 14px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.eligibility-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
  background: #e7f0f6;
  background: var(--surface-soft);
  border-radius: 24px;
  padding: 1.5rem;
}

.eligibility-summary div {
  background: #fff;
  border-radius: 20px;
  padding: 1rem;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
}

.eligibility-summary p {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.9rem;
  color: #5b6773;
  color: var(--text-muted);
}

.credit-score-widget {
  background: #fff;
  border-radius: 32px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
}

.credit-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.credit-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
}

.credit-form input {
  border-radius: 14px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 0.75rem 1rem;
}

.credit-form button {
  grid-column: 1 / -1;
  width: 100%;
  justify-content: center;
}

.credit-score-result {
  background: linear-gradient(165deg, #ffffff, #fff7da);
  color: #0f1419;
  color: var(--secondary);
  border-radius: 28px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.score-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 6px solid rgba(96, 121, 145, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.score-circle span {
  font-size: 1rem;
}

.success-banner {
  background: rgba(96, 121, 145, 0.2);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}


.info-page {
  padding-top: 3rem;
}

.info-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-gap: 2.5rem;
  gap: 2.5rem;
  align-items: stretch;
  margin-bottom: 2.5rem;
}

.info-copy {
  border-radius: 32px;
  padding: 2.5rem;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  background: #fff;
}

.info-hero-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff4e7 0%, #eef4ff 100%);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
}

.info-hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20% 0%, rgba(246, 130, 31, 0.16), transparent 50%);
  pointer-events: none;
}

.info-hero-card h1 {
  margin: 0.35rem 0 0.75rem;
}

.info-hero-card p {
  margin: 0;
  color: #5b6773;
  color: var(--text-muted);
  line-height: 1.7;
}

.info-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(6, 148, 254, 0.1);
  color: #0f1419;
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.info-highlight-chips {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.info-highlight-chips span {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-weight: 700;
  color: #0f1720;
  color: var(--text-strong);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.info-speed-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-gap: 0.6rem;
  gap: 0.6rem;
  margin-top: 1rem;
}

.info-speed-row div {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 0.65rem 0.9rem;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.info-speed-row strong {
  display: block;
  font-size: 1.05rem;
}

.info-speed-row span {
  color: #5b6773;
  color: var(--text-muted);
  font-weight: 600;
}

.info-helper {
  margin: 0.9rem 0 0;
  color: #5b6773;
  color: var(--text-muted);
  font-weight: 600;
}

.info-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.info-visual {
  display: flex;
}

.info-hero-visual {
  position: relative;
}

.info-visual-card {
  background: linear-gradient(145deg, #ffffff, #fff7da);
  border-radius: 28px;
  padding: 1.75rem;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.info-visual-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.info-visual img {
  width: 100%;
  max-width: 320px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.25));
}

.info-hero.theme-cash .info-hero-card {
  background: linear-gradient(135deg, #fffdf5, #fff7da);
  border: 1px solid rgba(96, 121, 145, 0.35);
}

.info-hero.theme-cash .info-visual-card {
  background: linear-gradient(145deg, #ffffff, #fff7da);
  border-color: rgba(73, 98, 124, 0.14);
  border-color: var(--border-soft);
}

.info-hero.theme-cash .info-speed-row div {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(96, 121, 145, 0.35);
}

.info-visual-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  grid-gap: 0.75rem;
  gap: 0.75rem;
  width: 100%;
}

.info-visual-stats div {
  background: #f7fbfe;
  background: var(--surface);
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  text-align: center;
  color: #0f1419;
  color: var(--secondary);
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
}

.info-visual-stats strong {
  display: block;
  color: #0f1419;
  color: var(--secondary);
  font-size: 1.4rem;
}

.info-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
  background: linear-gradient(135deg, #f7f9ff, #fff7ef);
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
}

.info-stats div {
  text-align: center;
}

.info-stats strong {
  display: block;
  font-size: 1.6rem;
  color: #0f1720;
  color: var(--text-strong);
}

.info-section {
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.info-action-card {
  background: linear-gradient(135deg, #ffffff, #f7f9ff);
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 1.1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 0.75rem;
  gap: 0.75rem;
  align-items: start;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.info-action-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #e7f0f6;
  background: var(--surface-soft);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
}

.info-value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.info-value-card {
  background: #fff;
  border-radius: 22px;
  padding: 1.5rem;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.info-value-index {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: #0f1419;
  color: var(--secondary);
  font-weight: 800;
}

.info-value-card h3 {
  margin: 0;
}

.info-value-card p {
  margin: 0;
  color: #5b6773;
  color: var(--text-muted);
}

.info-step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.info-step {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  border-radius: 20px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  padding: 1.3rem 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0a0a0a;
  background: var(--primary);
  color: #0f1419;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(96, 121, 145, 0.35);
}

.info-step h3 {
  margin: 0 0 0.35rem;
}

.info-step p {
  margin: 0;
  color: #5b6773;
  color: var(--text-muted);
}

.info-guardrail {
  background: linear-gradient(135deg, #ffffff, #fff7da);
  color: #0f1419;
  color: var(--secondary);
  border-radius: 26px;
  padding: 1.75rem;
  display: grid;
  grid-gap: 1rem;
  gap: 1rem;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
}

.info-guardrail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.info-guardrail-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
}

.info-bullet-dot {
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #0a0a0a, #050505);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: inline-flex;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.info-guardrail-item strong {
  display: block;
  margin-bottom: 0.25rem;
}

.info-guardrail-item p {
  margin: 0;
  color: #5b6773;
  color: var(--text-muted);
}

.info-faq .faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.faq-grid details {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1rem 1.15rem;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-grid p {
  margin: 0.6rem 0 0;
  color: #5b6773;
  color: var(--text-muted);
}

.site-footer {
  margin-top: 0;
  /* Remove gap above footer */
  background: linear-gradient(135deg,
      #eef5fb 0%,
      #e4eef6 36%,
      #d4e2ec 72%,
      #c4d4e0 100%);
  background: var(--gradient-background);
  color: #0f1720;
  color: var(--text-strong, #0b0b0b);
  padding: clamp(3rem, 8vw, 4.5rem) clamp(1.5rem, 8vw, 5rem);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg,
      #0a0a0a 0%,
      #10161c 55%,
      #161f27 100%);
  background: var(--gradient-primary);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 2.5vw, 3rem);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-brand .brand {
  font-size: 1.35rem;
}

.footer-brand img {
  height: 100px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transform: scale(1.1);
  transform-origin: left center;
}

.footer-brand p {
  margin: 0;
  color: #5b6773;
  color: var(--text-muted, #4a4a4a);
  line-height: 1.6;
}

.footer-brand,
.footer-links,
.footer-visit {
  flex: 1 1 240px;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(96, 121, 145, 0.1);
  border: 1px solid rgba(96, 121, 145, 0.3);
  transition: transform 0.2s ease, background 0.2s ease;
  text-decoration: none;
  font-size: 1.1rem;
}

.footer-social img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer-social a:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg,
      #0a0a0a 0%,
      #10161c 55%,
      #161f27 100%);
  background: var(--gradient-primary);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  grid-gap: 1rem 1.5rem;
  gap: 1rem 1.5rem;
}

.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links-title {
  margin: 0;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #0f1419;
  color: var(--secondary, #111);
  font-weight: 700;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: #5b6773;
  color: var(--text-muted, #4a4a4a);
  padding: 0.2rem 0;
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-link:hover,
.footer-link.active {
  color: #050505;
  color: var(--primary-dark, #36424f);
}

.footer-location-picker {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  grid-gap: clamp(1rem, 2vw, 1.4rem);
  gap: clamp(1rem, 2vw, 1.4rem);
  align-items: stretch;
  width: 100%;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  border-radius: 8px;
  background: rgba(247, 251, 254, 0.72);
  border: 1px solid rgba(96, 121, 145, 0.22);
  box-shadow: 0 24px 60px rgba(31, 45, 58, 0.12);
}

.footer-location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.55rem;
  min-width: 0;
}

.footer-location-eyebrow,
.footer-location-type {
  color: #0f1419;
  color: var(--secondary, #111);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-location-copy h2 {
  margin: 0;
  color: #0f1419;
  color: var(--secondary, #111);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.12;
  letter-spacing: 0;
  white-space: nowrap;
}

.footer-location-copy p {
  margin: 0;
  color: #5b6773;
  color: var(--text-muted, #4a4a4a);
  line-height: 1.6;
}

.footer-location-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 0.85rem;
  gap: 0.85rem;
  min-width: 0;
}

.footer-location-card {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: clamp(1rem, 2vw, 1.2rem);
  padding-top: 3rem;
  border-radius: 8px;
  color: #0f1720;
  color: var(--text-strong, #0b0b0b);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(96, 121, 145, 0.2);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.footer-location-card:hover {
  transform: translateY(-3px);
  border-color: rgba(17, 17, 17, 0.32);
  box-shadow: 0 18px 36px rgba(31, 45, 58, 0.14);
}

.footer-location-icon {
  position: absolute;
  top: 0.95rem;
  left: 0.95rem;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #f6fbff !important;
  background: linear-gradient(135deg,
      #0a0a0a 0%,
      #10161c 55%,
      #161f27 100%);
  background: var(--gradient-primary);
  box-shadow: 0 10px 22px rgba(31, 45, 58, 0.2);
  font-size: 1.05rem;
  line-height: 1;
}

.footer-location-card strong {
  color: #0f1419;
  color: var(--secondary, #111);
  font-size: 1.08rem;
  line-height: 1.25;
}

.footer-location-card span {
  color: #5b6773;
  color: var(--text-muted, #4a4a4a);
  line-height: 1.45;
}

.footer-location-card .footer-location-type {
  color: #0f1720;
  color: var(--text-strong, #0b0b0b);
  line-height: 1.2;
}

.footer-location-action {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  width: -webkit-fit-content;
  width: fit-content;
  color: #0f1419 !important;
  color: var(--secondary, #111) !important;
  font-weight: 800;
}

.footer-visit {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-visit h3 {
  margin: 0;
  font-size: 1.6rem;
  color: #0f1419;
  color: var(--secondary, #111);
}

.footer-visit p {
  margin: 0;
  color: #5b6773;
  color: var(--text-muted, #4a4a4a);
}

.footer-address-divider {
  display: block;
  width: 100%;
  margin: 1rem 0;
  border-top: 1px solid rgba(96, 121, 145, 0.28);
}

.footer-address-secondary {
  margin-top: 1.25rem !important;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(96, 121, 145, 0.2);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 600;
  color: #0f1419;
  color: var(--secondary, #111);
}

.footer-cta {
  margin-top: 0.75rem;
  align-self: flex-start;
  padding: 0.65rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg,
      #0a0a0a 0%,
      #10161c 55%,
      #161f27 100%);
  background: var(--gradient-primary);
  color: #f6fbff;
  font-weight: 700;
  box-shadow: 0 16px 36px rgba(31, 45, 58, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(31, 45, 58, 0.3);
}

.footer-bottom {
  margin-top: clamp(2rem, 5vw, 2.75rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #5b6773;
  color: var(--text-muted, #4a4a4a);
  position: relative;
  z-index: 1;
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: #5b6773;
  color: var(--text-muted, #4a4a4a);
  font-size: 0.9rem;
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: #050505;
  color: var(--primary-dark, #36424f);
}

/* Responsive */
@media (max-width: 768px) {

  .footer-location-picker,
  .footer-location-options {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-brand,
  .footer-links,
  .footer-visit {
    flex: 1 1 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}


.solutions-page {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 2.5rem;
}

.solutions-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
  align-items: center;
  padding: 2.5rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 10% 0%, rgba(245, 180, 0, 0.22), transparent 45%),
    linear-gradient(135deg, #ffffff, #fff7da);
  color: #0f1419;
  color: var(--secondary);
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
}

.solutions-hero__content h1 {
  margin: 0.25rem 0 0.75rem;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.solutions-hero__content p {
  margin: 0 0 1rem;
  color: #5b6773;
  color: var(--text-muted);
  line-height: 1.6;
}

.audience-pills {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.audience-pills button {
  border-radius: 999px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  background: rgba(0, 0, 0, 0.03);
  color: #0f1419;
  color: var(--secondary);
  padding: 0.45rem 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.audience-pills button.selected {
  border-color: rgba(96, 121, 145, 0.6);
  background: linear-gradient(135deg, #0a0a0a, #050505);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #0f1419;
  color: var(--secondary);
  font-weight: 700;
}

.solution-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  grid-gap: 0.75rem;
  gap: 0.75rem;
  margin-top: 1rem;
}

.solution-metrics div {
  background: #f7fbfe;
  background: var(--surface);
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  display: grid;
  grid-gap: 0.25rem;
  gap: 0.25rem;
  text-align: left;
}

.solutions-hero__visual {
  position: relative;
  display: grid;
  grid-gap: 0.75rem;
  gap: 0.75rem;
  justify-items: center;
}

.solutions-hero__tile {
  width: 100%;
  max-width: 320px;
  border-radius: 14px;
  padding: 1rem;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  background: #f7fbfe;
  background: var(--surface);
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
}

.solutions-hero__tile strong {
  font-size: 1.8rem;
}

.solutions-section {
  padding: 1rem 0 0;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.solution-card {
  background: linear-gradient(135deg, #ffffff, #fff7da);
  color: #0f1419;
  color: var(--secondary);
  border-radius: 20px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1.25rem;
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-gap: 0.6rem;
  gap: 0.6rem;
}

.solution-card__meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #5b6773;
  color: var(--text-muted);
}

.solution-card ul {
  margin: 0.25rem 0 0;
  padding-left: 1rem;
  color: #5b6773;
  color: var(--text-muted);
  display: grid;
  grid-gap: 0.25rem;
  gap: 0.25rem;
}

.solution-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.4rem;
  color: #050505;
  color: var(--primary-dark);
}

.industry-grid,
.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.industry-card,
.journey-grid article {
  background: #fff;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 14px 35px rgba(13, 15, 20, 0.08);
}

.journey-grid article span {
  display: inline-block;
  background: #e7f0f6;
  background: var(--surface-soft);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-weight: 700;
}

.journey-grid article ul {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
  color: #5b6773;
  color: var(--text-muted);
  display: grid;
  grid-gap: 0.25rem;
  gap: 0.25rem;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.partner-grid strong {
  display: block;
  margin-bottom: 0.35rem;
}

.partner-grid span {
  display: inline-block;
  margin: 0.15rem 0.35rem 0.15rem 0;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: #e7f0f6;
  background: var(--surface-soft);
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .solutions-hero {
    padding: 1.75rem;
  }

  .solution-card {
    padding: 1rem;
  }
}

.footer-map-col {
  justify-self: end;
  align-self: start;
  max-width: 400px;
  width: 100%;
  display: grid;
  grid-gap: 0.75rem;
  gap: 0.75rem;
}

.footer-links-grid h4 {
  margin: 0 0 0.8rem;
}

.footer-links-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-links-grid a {
  color: #5b6773;
  color: var(--text-muted);
  text-decoration: none;
}


@media (max-width: 768px) {
  .hero-block {
    padding: 2rem;
    margin-top: 1.5rem;
  }

  .hero-form-row {
    flex-direction: column;
  }

  .calculator-block {
    grid-template-columns: 1fr;
  }

  .download-card {
    padding: 2.5rem;
  }

  .offerings-block {
    padding: 2rem;
  }

  .apply-content {
    grid-template-columns: 1fr;
  }

  .apply-form {
    padding: 1.75rem;
  }

  .apply-hero {
    padding: 2rem;
  }

  .calculator-body {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    grid-template-columns: 1fr;
  }

  .calculator-hero {
    padding: 2rem;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .calculator-hero.credit-hero {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    border-radius: 24px;
  }

  .calc-hero-copy {
    order: 1;
  }

  .credit-hero-card {
    width: 100%;
    max-width: 100%;
    order: 2;
    margin: 0;
    box-sizing: border-box;
  }

  .hero-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0.75rem;
    gap: 0.75rem;
  }

  .credit-score-widget {
    padding: 1.75rem;
  }

  .contact-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .carousel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .hero-grid {
    gap: 1rem;
  }

  .hero-block {
    padding: 1rem 0.75rem 1.5rem;
    border-radius: 24px;
  }

  .hero-visual {
    width: 100%;
    margin-top: 0.25rem;
  }

  .landing-carousel {
    width: min(100%, 94vw);
    max-width: 100%;
    border-radius: 24px;
  }

  .landing-carousel-slide img {
    border-radius: 24px;
  }

  .landing-carousel-dots {
    bottom: 10px;
    gap: 6px;
  }

  .landing-carousel-dots .dot {
    width: 7px;
    height: 7px;
    min-width: 7px;
    min-height: 7px;
    border-width: 1px;
  }

  .landing-carousel-dots .dot.active {
    width: 9px;
    height: 9px;
    min-width: 9px;
    min-height: 9px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid article,
  .why-grid article,
  .product-card,
  .offering-card,
  .tool-card,
  .blog-grid article {
    padding: 1.25rem;
  }

  .apply-form .primary-btn {
    width: 100%;
  }

  .calculator-hero,
  .calc-side-card,
  .eligibility-calculator {
    padding: 1.5rem;
  }

  .calculator-hero.credit-hero {
    padding: 1.25rem;
  }

  .credit-hero-card {
    padding: 1.25rem;
  }

  .calc-hero-copy {
    gap: 0.5rem;
  }

  .calc-chip-row {
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .calc-chip {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: calc(50% - 0.5rem);
    min-width: calc(50% - 0.5rem);
  }

  .credit-form {
    grid-template-columns: 1fr;
  }

  .contact-buttons {
    width: 100%;
    flex-direction: column;
  }

  .contact-buttons .primary-btn,
  .contact-buttons .ghost-btn {
    width: 100%;
    justify-content: center;
  }
}

.about-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  padding: 3rem;
  border-radius: 36px;
  background: linear-gradient(120deg, #e9ffff, #fff2e1, #fef0f4);
  align-items: center;
}

.about-hero-illustration {
  justify-self: center;
}

.hero-stat-grid {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.hero-stat-grid li {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1.25rem;
}

.hero-stat-grid strong {
  display: block;
  font-size: 1.4rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
  margin-top: 1.25rem;
}

.pillar-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1.1rem;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.pillar-card h3 {
  margin: 0 0 0.35rem;
}

.pillar-card p {
  margin: 0;
  color: #5b6773;
  color: var(--text-muted);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.insight-card {
  background: #e7f0f6;
  background: var(--surface-soft);
  border-radius: 28px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1.75rem;
}

.insight-card ul {
  padding-left: 1.2rem;
  color: #5b6773;
  color: var(--text-muted);
}

.mission-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.mission-card {
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1.75rem;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
  margin: 1rem 0 2rem;
}

.impact-grid article {
  background: linear-gradient(135deg, #f7f9ff, #fff7ef);
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.impact-grid strong {
  display: block;
  font-size: 1.4rem;
}

.leadership-grid {
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1.5rem;
  display: grid;
  grid-gap: 1rem;
  gap: 1rem;
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
}

.leadership-head h2 {
  margin: 0.3rem 0 0.2rem;
}

.leader-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 0.9rem;
  gap: 0.9rem;
}

.leader-card {
  background: #e7f0f6;
  background: var(--surface-soft);
  border-radius: 18px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 0.8rem;
  gap: 0.8rem;
  align-items: center;
}

.leader-avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0a0a0a, #050505);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #0f1419;
  color: var(--secondary);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.leader-card h3 {
  margin: 0;
}

.leader-card p {
  margin: 0;
  font-weight: 700;
}

.leader-card span {
  color: #5b6773;
  color: var(--text-muted);
}

.quiz-page {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 3rem;
}

.quiz-hero {
  background:
    radial-gradient(circle at 0% 0% 0%, rgba(96, 121, 145, 0.18), transparent 50%),
    radial-gradient(circle at 90% 10% 0%, rgba(232, 169, 26, 0.16), transparent 50%),
    linear-gradient(120deg, #ffffff, #fff8e0);
  color: #0f1419;
  color: var(--secondary);
  border-radius: 32px;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
  align-items: start;
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
}

.quiz-hero__copy {
  display: grid;
  grid-gap: 0.75rem;
  gap: 0.75rem;
}

.quiz-hero__copy p {
  margin: 0;
  color: #5b6773;
  color: var(--text-muted);
  line-height: 1.6;
}

.quiz-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.quiz-badges span {
  background: #f7fbfe;
  background: var(--surface);
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 0.55rem 0.85rem;
  border-radius: 14px;
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
}

.quiz-hero__card {
  background: #f7fbfe;
  background: var(--surface);
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 1.25rem;
  display: grid;
  grid-gap: 0.75rem;
  gap: 0.75rem;
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
}

.quiz-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  grid-gap: 0.6rem;
  gap: 0.6rem;
}

.quiz-stats-row div {
  background: #f7fbfe;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 0.65rem 0.8rem;
  text-align: center;
}

.quiz-note {
  margin: 0;
  color: #5b6773;
  color: var(--text-muted);
}

.quiz-body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 1.25rem;
  gap: 1.25rem;
}

.quiz-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1.5rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
  display: grid;
  grid-gap: 1rem;
  gap: 1rem;
}

.quiz-questions {
  display: grid;
  grid-gap: 1rem;
  gap: 1rem;
}

.quiz-question {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 0.8rem;
  gap: 0.8rem;
  align-items: start;
}

.quiz-question__index {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #0a0a0a;
  background: var(--primary);
  color: #0f1419;
  color: var(--secondary);
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(96, 121, 145, 0.35);
}

.quiz-options {
  display: grid;
  grid-gap: 0.55rem;
  gap: 0.55rem;
}

.quiz-option {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 0.55rem;
  gap: 0.55rem;
  align-items: center;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 0.65rem 0.8rem;
  background: #e7f0f6;
  background: var(--surface-soft);
}

.quiz-option.selected {
  border-color: #0f1419;
  border-color: var(--secondary);
  background: #eef6ff;
}

.quiz-option input {
  accent-color: #0f1419;
  accent-color: var(--secondary);
}

.quiz-aside {
  display: grid;
  grid-gap: 0.9rem;
  gap: 0.9rem;
}

.quiz-tip-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1.1rem;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.quiz-tip-card ul {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
  color: #5b6773;
  color: var(--text-muted);
  display: grid;
  grid-gap: 0.35rem;
  gap: 0.35rem;
}

.reach-section .office-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1.5rem;
}

.partner-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
  align-items: stretch;
  background: #fff;
  border-radius: 32px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 2rem;
}

.ally-hero {
  background: linear-gradient(135deg, rgba(233, 255, 255, 0.7), rgba(255, 242, 225, 0.7));
  border-radius: 28px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ally-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.ally-list li {
  background: #e7f0f6;
  background: var(--surface-soft);
  border-radius: 20px;
  padding: 1rem;
  flex: 1 1;
  min-width: 140px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.ally-carousel {
  border-radius: 24px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1rem;
  background: #fefefe;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.carousel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 1.4fr);
  grid-gap: 1.25rem;
  gap: 1.25rem;
  align-items: stretch;
}

.carousel-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.carousel-slide {
  border-radius: 24px;
  height: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f1419;
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.25);
  animation: pulseBackground 6s ease-in-out infinite;
}

.about-cta {
  background: linear-gradient(135deg, #ffffff, #fff7da);
  color: #0f1419;
  color: var(--secondary);
  border-radius: 28px;
  padding: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
}

.about-cta p {
  margin: 0.25rem 0;
  color: #5b6773;
  color: var(--text-muted);
}

.about-cta-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

@keyframes pulseBackground {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
  }
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: #0f1720;
  color: var(--text-strong);
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
  transition: transform 0.2s ease;
}

.carousel-control:hover {
  transform: translateY(-50%) scale(1.05);
}

.carousel-control.prev {
  left: 1rem;
}

.carousel-control.next {
  right: 1rem;
}

.carousel-content {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.carousel-content ul {
  margin: 0;
  padding-left: 1.2rem;
  color: #5b6773;
  color: var(--text-muted);
}

.carousel-dots {
  grid-column: 1 / -1;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 23, 42, 0.2);
}

.carousel-dots button.active {
  background: #0f1419;
  background: var(--secondary);
}

.value-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-gap: 1.25rem;
  gap: 1.25rem;
}

.value-blocks article {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1.5rem;
  position: relative;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.value-blocks article .eyebrow {
  margin-bottom: 0.35rem;
}

.testimonial-showcase {
  background: #fff;
  border-radius: 32px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-header {
  max-width: 720px;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-gap: 1.25rem;
  gap: 1.25rem;
}

.testimonial-cards article {
  background: #e7f0f6;
  background: var(--surface-soft);
  border-radius: 24px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1.25rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.inclusion-section {
  background: linear-gradient(135deg, #fef6ee, #e9ffff);
  border-radius: 32px;
  padding: 2.5rem;
  display: grid;
  grid-gap: 2rem;
  gap: 2rem;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.impact-grid .impact-card {
  padding: 1.5rem;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #fff;
  text-align: center;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.governance-section {
  background: #fff;
  border-radius: 32px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.governance-section .journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.governance-section .journey-grid article {
  padding: 1.5rem;
  border-radius: 24px;
  background: #e7f0f6;
  background: var(--surface-soft);
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.insight-card {
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1.75rem;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
}

.mission-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.mission-card {
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1.75rem;
}

.reach-section {
  background: #fff;
  border-radius: 32px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 2.5rem;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.office-card {
  background: #e7f0f6;
  background: var(--surface-soft);
  border-radius: 24px;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  padding: 1.5rem;
}

/* ===== Personal Loan Page Styles ===== */
.personal-loan-page {
  padding-top: 0;
  background: #fff;
}

/* Hero Section */
.personal-loan-hero {
  background: linear-gradient(135deg, #f7fbfe 0%, #edf4f9 50%, #ffffff 100%);
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.personal-loan-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(96, 121, 145, 0.12) 0%, transparent 60%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-20px, 20px) scale(1.05);
  }
}

.hero-content-wrapper {
  width: min(1240px, 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-gap: 5rem;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, #0f1419, #d6e4ee);
  color: #0f1419;
  color: var(--secondary);
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(96, 121, 145, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  margin: 0 0 1.5rem;
  color: #0f1419;
  color: var(--secondary);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-features {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.5rem;
  background: #fff;
  border: 2px solid rgba(96, 121, 145, 0.25);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #0f1419;
  color: var(--secondary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.feature-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(96, 121, 145, 0.2);
  border-color: #0a0a0a;
  border-color: var(--primary);
}

.feature-pill .icon {
  font-size: 1.3rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.loan-highlight-card {
  background: linear-gradient(135deg, #fff 0%, #fffdf5 100%);
  padding: 3rem 2.5rem;
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  border: 2px solid rgba(96, 121, 145, 0.15);
  position: relative;
  overflow: hidden;
}

.loan-highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg,
      #0a0a0a 0%,
      #10161c 55%,
      #161f27 100%);
  background: var(--gradient-primary);
}

.highlight-amount {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #0f1419, #b8cddd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.highlight-label {
  color: #666;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.highlight-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(96, 121, 145, 0.2);
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(96, 121, 145, 0.05);
  border-radius: 12px;
}

.stat-item strong {
  display: block;
  font-size: 1.75rem;
  color: #0f1419;
  color: var(--secondary);
  margin-bottom: 0.35rem;
  font-weight: 800;
}

.stat-item span {
  color: #666;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Section Block Base */
.section-block {
  padding: 5rem 0;
}

.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #0f1419;
  color: var(--secondary);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.section-heading p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Eligibility Section */
.eligibility-section {
  background: linear-gradient(to bottom, #fff 0%, #f7fbfe 100%);
}

.eligibility-grid {
  width: min(1240px, 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 1.75rem;
  gap: 1.75rem;
}

.eligibility-card {
  padding: 2rem 1.75rem;
  background: #fff;
  border-radius: 20px;
  border: 2px solid rgba(96, 121, 145, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.eligibility-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg,
      #0a0a0a 0%,
      #10161c 55%,
      #161f27 100%);
  background: var(--gradient-primary);
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.eligibility-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(96, 121, 145, 0.15);
  border-color: #0a0a0a;
  border-color: var(--primary);
}

.eligibility-card:hover::before {
  opacity: 1;
}

.eligibility-label {
  font-size: 0.8rem;
  font-weight: 800;
  color: #050505;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.eligibility-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f1419;
  color: var(--secondary);
  line-height: 1.6;
}

/* Documents Section */
.documents-section {
  background: linear-gradient(135deg, #f7fbfe 0%, #edf4f9 100%);
}

.documents-grid {
  width: min(1240px, 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
}

.document-card {
  padding: 2.25rem 2rem;
  background: #fff;
  border-radius: 20px;
  border: 2px solid rgba(17, 17, 17, 0.06);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.document-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: rgba(96, 121, 145, 0.3);
}

.document-icon {
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.document-card h3 {
  font-size: 1.15rem;
  margin: 0 0 1.25rem;
  color: #0f1419;
  color: var(--secondary);
  font-weight: 800;
}

.document-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.document-card li {
  padding: 0.65rem 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  font-weight: 500;
}

.document-card li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.document-card li::before {
  content: '✓';
  color: #050505;
  color: var(--primary-dark);
  font-weight: bold;
  margin-right: 0.75rem;
}

/* Fees Section */
.fees-section {
  background: #fff;
}

.fees-table-wrapper {
  width: min(1240px, 94vw);
  margin: 0 auto;
  overflow-x: auto;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(96, 121, 145, 0.15);
}

.fees-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.fees-table thead {
  background: linear-gradient(135deg, #0f1419, #d6e4ee);
}

.fees-table th {
  padding: 1.5rem 1.75rem;
  text-align: left;
  font-weight: 800;
  color: #0f1419;
  color: var(--secondary);
  font-size: 1rem;
  letter-spacing: 0.3px;
}

.fees-table td {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.fees-table tbody tr:last-child td {
  border-bottom: none;
}

.fee-type {
  font-weight: 700;
  color: #0f1419;
  color: var(--secondary);
  width: 35%;
  font-size: 0.95rem;
}

.fee-charge {
  color: #555;
  line-height: 1.7;
  font-size: 0.95rem;
}

.fees-table tbody tr {
  transition: background 0.2s ease;
}

.fees-table tbody tr:hover {
  background: rgba(96, 121, 145, 0.04);
}

/* Apply Steps Section */
.apply-steps-section {
  background: linear-gradient(to bottom, #f7fbfe 0%, #fff 100%);
}

.steps-timeline {
  width: min(1240px, 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-gap: 2.5rem;
  gap: 2.5rem;
}

.step-card {
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: 20px;
  border: 2px solid rgba(96, 121, 145, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(96, 121, 145, 0.2);
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0f1419, #d6e4ee);
  color: #0f1419;
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 20px rgba(96, 121, 145, 0.3);
}

.step-card h3 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  color: #0f1419;
  color: var(--secondary);
  font-weight: 800;
}

.step-card p {
  margin: 0;
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
}

/* CTA Section */
.personal-loan-cta {
  background: linear-gradient(135deg, #f7fbfe 0%, #edf4f9 50%, #ffffff 100%);
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.personal-loan-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(96, 121, 145, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1rem;
  font-weight: 800;
  color: #0f1419;
}

.cta-content p {
  font-size: 1.2rem;
  color: #0f1419;
  margin: 0 0 2.5rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Button size variants */
.primary-btn.large,
.ghost-btn.large {
  padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(96, 121, 145, 0.25);
  transition: all 0.3s ease;
}

.primary-btn.large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(96, 121, 145, 0.35);
}

.ghost-btn.large:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .loan-highlight-card {
    max-width: 450px;
    margin: 0 auto;
  }

  .section-block {
    padding: 4rem 0;
  }
}

@media (max-width: 768px) {
  .personal-loan-hero {
    padding: 3rem 0 4rem;
  }

  .hero-text h1 {
    font-size: 2.25rem;
  }

  .hero-description {
    font-size: 1.05rem;
  }

  .eligibility-grid,
  .documents-grid,
  .steps-timeline {
    grid-template-columns: 1fr;
  }

  .fees-table-wrapper {
    font-size: 0.9rem;
    border-radius: 12px;
  }

  .fees-table th,
  .fees-table td {
    padding: 1rem;
  }

  .hero-actions,
  .cta-buttons {
    flex-direction: column;
  }

  .hero-actions .primary-btn,
  .hero-actions .ghost-btn,
  .cta-buttons .primary-btn,
  .cta-buttons .ghost-btn {
    width: 100%;
  }

  .section-heading h2 {
    font-size: 1.75rem;
  }

  .section-block {
    padding: 3.5rem 0;
  }
}

*/ .personal-loan-page {
  padding-top: 0;
}

/* Hero Section */
.personal-loan-hero {
  background: linear-gradient(135deg, #fff6d6, #fffbea, #ffffff);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.personal-loan-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(96, 121, 145, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content-wrapper {
  width: min(1240px, 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-gap: 4rem;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg,
      #0a0a0a 0%,
      #10161c 55%,
      #161f27 100%);
  background: var(--gradient-primary);
  color: #0f1419;
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin: 0 0 1.5rem;
  color: #0f1419;
  color: var(--secondary);
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #5b6773;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-features {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: rgba(96, 121, 145, 0.1);
  border: 1px solid rgba(96, 121, 145, 0.3);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.feature-pill .icon {
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.loan-highlight-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(96, 121, 145, 0.2);
}

.highlight-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #050505;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.highlight-label {
  color: #5b6773;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.highlight-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1.5rem;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.stat-item {
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 1.5rem;
  color: #0f1419;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.stat-item span {
  color: #5b6773;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Eligibility Section */
.eligibility-section {
  background: #fff;
}

.eligibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.eligibility-card {
  padding: 1.75rem;
  background: linear-gradient(135deg, #ffffff, #fff7da);
  border-radius: 16px;
  border: 1px solid rgba(96, 121, 145, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eligibility-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.eligibility-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #050505;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.eligibility-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f1419;
  color: var(--secondary);
  line-height: 1.5;
}

/* Documents Section */
.documents-section {
  background: linear-gradient(135deg, #fffdf5, #fff7da);
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.document-card {
  padding: 2rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.document-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.document-card h3 {
  font-size: 1.1rem;
  margin: 0 0 1rem;
  color: #0f1419;
  color: var(--secondary);
}

.document-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.document-card li {
  padding: 0.5rem 0;
  color: #5b6773;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
}

.document-card li:last-child {
  border-bottom: none;
}

/* Fees Section */
.fees-section {
  background: #fff;
}

.fees-table-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.fees-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.fees-table thead {
  background: linear-gradient(135deg,
      #0a0a0a 0%,
      #10161c 55%,
      #161f27 100%);
  background: var(--gradient-primary);
}

.fees-table th {
  padding: 1.25rem;
  text-align: left;
  font-weight: 700;
  color: #0f1419;
  color: var(--secondary);
  font-size: 1rem;
}

.fees-table td {
  padding: 1.25rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
}

.fees-table tbody tr:last-child td {
  border-bottom: none;
}

.fee-type {
  font-weight: 600;
  color: #0f1419;
  color: var(--secondary);
  width: 30%;
}

.fee-charge {
  color: #5b6773;
  color: var(--text-muted);
  line-height: 1.6;
}

.fees-table tbody tr:hover {
  background: rgba(96, 121, 145, 0.05);
}

/* Apply Steps Section */
.apply-steps-section {
  background: linear-gradient(135deg, #fff6d6, #fffbea);
}

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
}

.step-card {
  padding: 2rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(96, 121, 145, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg,
      #0a0a0a 0%,
      #10161c 55%,
      #161f27 100%);
  background: var(--gradient-primary);
  color: #0f1419;
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.step-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  color: #0f1419;
  color: var(--secondary);
}

.step-card p {
  margin: 0;
  color: #5b6773;
  color: var(--text-muted);
  line-height: 1.6;
}

/* CTA Section */
.personal-loan-cta {
  background: linear-gradient(135deg, #ffffff, #fff7da);
  text-align: center;
  padding: 4rem 2rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .loan-highlight-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .personal-loan-hero {
    padding: 3rem 0;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .eligibility-grid,
  .documents-grid,
  .steps-timeline {
    grid-template-columns: 1fr;
  }

  .fees-table-wrapper {
    font-size: 0.9rem;
  }

  .fees-table th,
  .fees-table td {
    padding: 0.875rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .primary-btn,
  .hero-actions .ghost-btn {
    width: 100%;
  }
}

/* Button size variants */
.primary-btn.large,
.ghost-btn.large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin: 0 0 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  color: #0f1419;
  margin: 0 0 2rem;
}

/* Additional Visual Enhancements for Personal Loan Page */
.card-icon {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 8px rgba(96, 121, 145, 0.3));
  animation: float-icon 3s ease-in-out infinite;
}

@keyframes float-icon {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.stat-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.trust-badges {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(96, 121, 145, 0.2);
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f1419;
  color: var(--secondary);
}

.badge-icon {
  font-size: 1.2rem;
}

.section-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 8px rgba(96, 121, 145, 0.2));
}

.card-number {
  position: absolute;
  top: -15px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0f1419, #d6e4ee);
  color: #0f1419;
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(96, 121, 145, 0.4);
}

/* Improve fees table visual */
.fees-table thead th:first-child {
  border-radius: 20px 0 0 0;
}

.fees-table thead th:last-child {
  border-radius: 0 20px 0 0;
}

/* Add more visual appeal */
.loan-highlight-card {
  animation: card-float 6s ease-in-out infinite;
}

@keyframes card-float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

/* Illustration Styles */
.hero-illustration {
  margin-bottom: 1.5rem;
  text-align: center;
}

.hero-illustration img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(96, 121, 145, 0.2);
  animation: float-illustration 4s ease-in-out infinite;
}

@keyframes float-illustration {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.section-illustration {
  margin-bottom: 2rem;
  text-align: center;
}

.section-illustration img {
  width: 100%;
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(96, 121, 145, 0.15));
  animation: subtle-float 6s ease-in-out infinite;
}

@keyframes subtle-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 768px) {
  .hero-illustration img {
    max-width: 300px;
  }

  .section-illustration img {
    max-width: 200px;
  }
}

/* ==========================================
   About Page Styles - Modern & Clean
   ========================================== */

/* About Hero Section */
.about-hero-modern {
  margin-top: 2rem;
  padding: 4rem 3rem;
  border-radius: 40px;
  background: linear-gradient(135deg,
      rgba(244, 249, 253, 0.95) 0%,
      rgba(233, 241, 247, 0.85) 50%,
      rgba(220, 232, 241, 0.75) 100%);
  box-shadow: 0 26px 80px rgba(15, 23, 42, 0.12);
  position: relative;
  overflow: hidden;
}

.about-hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(96, 121, 145, 0.2);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #0f1419;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.about-hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.15;
  margin: 0 0 1.5rem;
  color: #0f1720;
  color: var(--text-strong);
}

.about-hero-content .gradient-text {
  background: linear-gradient(135deg,
      #0a0a0a 0%,
      #10161c 55%,
      #161f27 100%);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-content .hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #5b6773;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
  margin-top: 3rem;
}

.stat-card {
  background: rgba(244, 249, 253, 0.84);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  border: 1px solid rgba(96, 121, 145, 0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #050505;
  color: var(--primary-dark);
  white-space: nowrap;
}

.stat-label {
  font-size: 0.9rem;
  color: #5b6773;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

/* Values Section */
.values-section {
  margin-top: 5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
}

.value-card {
  background: rgba(247, 251, 254, 0.92);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at top right,
      rgba(196, 214, 228, 0.45) 0%,
      rgba(214, 228, 238, 0.18) 42%,
      rgba(214, 228, 238, 0) 72%);
  background: var(--gradient-glow);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
  border-color: rgba(84, 108, 131, 0.26);
}

.value-card:hover::before {
  opacity: 1;
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.value-card h3 {
  font-size: 1.4rem;
  margin: 0 0 0.75rem;
  color: #0f1720;
  color: var(--text-strong);
}

.value-card p {
  color: #5b6773;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Journey Timeline Section */
.journey-section {
  margin-top: 5rem;
}

.journey-timeline {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 30px 1fr;
  grid-gap: 1.5rem;
  gap: 1.5rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-marker {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg,
      #0a0a0a 0%,
      #10161c 55%,
      #161f27 100%);
  background: var(--gradient-primary);
  border: 4px solid rgba(179, 198, 214, 0.4);
  z-index: 2;
  flex-shrink: 0;
}

.timeline-line {
  position: absolute;
  top: 24px;
  bottom: -3rem;
  width: 2px;
  background: linear-gradient(to bottom, rgba(153, 177, 197, 0.6), rgba(153, 177, 197, 0.12));
  z-index: 1;
}

.timeline-content {
  background: rgba(247, 251, 254, 0.94);
  border-radius: 20px;
  padding: 1.75rem 2rem;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
  transform: translateX(6px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.timeline-year {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: linear-gradient(135deg,
      #0a0a0a 0%,
      #10161c 55%,
      #161f27 100%);
  background: var(--gradient-primary);
  color: #f6fbff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.timeline-content h3 {
  font-size: 1.4rem;
  margin: 0 0 0.75rem;
  color: #0f1720;
  color: var(--text-strong);
}

.timeline-content p {
  color: #5b6773;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Mission & Vision Section */
.mission-vision-section {
  margin-top: 5rem;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  grid-gap: 2.5rem;
  gap: 2.5rem;
}

.mission-card.modern,
.vision-card.modern {
  background: linear-gradient(135deg, #f9fcff 0%, #eaf2f8 100%);
  border-radius: 32px;
  padding: 3rem 2.5rem;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card.modern:hover,
.vision-card.modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.15);
}

.mission-card .card-badge,
.vision-card .card-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(216, 228, 237, 0.95);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  color: #0f1419;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mission-card h2,
.vision-card h2 {
  font-size: 1.9rem;
  margin: 0 0 1.25rem;
  color: #0f1720;
  color: var(--text-strong);
}

.mission-card p,
.vision-card p {
  color: #5b6773;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
  font-size: 1.05rem;
}

/* Leadership Team Section */
.leadership-section {
  margin-top: 5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
}

.team-card {
  background: rgba(247, 251, 254, 0.94);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
  border-color: rgba(84, 108, 131, 0.26);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg,
      #0a0a0a 0%,
      #10161c 55%,
      #161f27 100%);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: #f6fbff;
  flex-shrink: 0;
}

.team-info {
  flex: 1 1;
  min-width: 0;
}

.team-info h3 {
  font-size: 1.3rem;
  margin: 0 0 0.35rem;
  color: #0f1720;
  color: var(--text-strong);
  white-space: nowrap;
}

.team-role {
  color: #050505;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0 0 0.5rem;
}

.team-focus {
  color: #5b6773;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Legal & Compliance Section */
.legal-section {
  margin-top: 5rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
}

.legal-card {
  background: rgba(247, 251, 254, 0.94);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.legal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
}

.legal-card h3 {
  font-size: 1.5rem;
  margin: 0 0 1.5rem;
  color: #0f1720;
  color: var(--text-strong);
}

.legal-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(73, 98, 124, 0.14);
  border-bottom: 1px solid var(--border-soft);
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  color: #5b6773;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.info-value {
  color: #0f1720;
  color: var(--text-strong);
  font-weight: 600;
  text-align: right;
}

.certification-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.certification-list li {
  padding: 0.75rem 0;
  color: #5b6773;
  color: var(--text-muted);
  font-size: 1rem;
  border-bottom: 1px solid rgba(73, 98, 124, 0.14);
  border-bottom: 1px solid var(--border-soft);
}

.certification-list li:last-child {
  border-bottom: none;
}

/* Office Locations Section */
.office-section {
  margin-top: 5rem;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  margin-bottom: 3rem;
}

.office-card.modern {
  background: rgba(247, 251, 254, 0.94);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.office-card.modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(30, 44, 58, 0.12);
  box-shadow: var(--shadow-soft);
  border-color: rgba(84, 108, 131, 0.26);
}

.office-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.office-card h3 {
  font-size: 1.3rem;
  margin: 0 0 1rem;
  color: #0f1720;
  color: var(--text-strong);
}

.office-address {
  color: #5b6773;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 0.5rem;
}

.office-city {
  color: #0f1720;
  color: var(--text-strong);
  font-weight: 600;
  margin: 0;
}

.contact-info-section {
  background: linear-gradient(135deg, #fff 0%, #f7fbfe 100%);
  border-radius: 24px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  border: 1px solid rgba(73, 98, 124, 0.14);
  border: 1px solid var(--border-soft);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.contact-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-item>div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-label {
  font-size: 0.85rem;
  color: #5b6773;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-value {
  font-size: 1.1rem;
  color: #0f1720;
  color: var(--text-strong);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-value:hover {
  color: #050505;
  color: var(--primary-dark);
}

/* About Page CTA */
.page.about-page .cta-section.about-cta {
  margin-top: 5rem;
  padding: 4rem 3rem;
  background: linear-gradient(135deg,
      #0a0a0a 0%,
      #101418 50%,
      #171d24 100%);
  background: var(--gradient-dark);
  border-radius: 40px;
  text-align: center;
  color: #ffffff;
}

.page.about-page .cta-section.about-cta .cta-content {
  color: #ffffff;
}

.page.about-page .cta-section.about-cta h2,
.page.about-page .cta-section.about-cta .cta-content h2 {
  color: #ffffff !important;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.page.about-page .cta-section.about-cta p,
.page.about-page .cta-section.about-cta .cta-content p {
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.page.about-page .cta-section.about-cta .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.page.about-page .cta-section.about-cta .ghost-btn.large {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.35);
}

.page.about-page .cta-section.about-cta .ghost-btn.large:hover {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.55);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-hero-modern {
    padding: 2.5rem 1.5rem;
  }

  .about-hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 60px 1fr;
    gap: 1rem;
  }

  .team-card {
    flex-direction: column;
    text-align: center;
  }

  .contact-info-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .about-hero-stats {
    grid-template-columns: 1fr;
  }

  .stat-value {
    font-size: 2rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .primary-btn,
  .hero-cta-group .ghost-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ============================================ */

/* Mobile-First Product Card Background Fix */
.product-card {
  background: rgba(255, 255, 255, 0.95) !important;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}

.product-card.modern {
  background: rgba(255, 255, 255, 0.98) !important;
}

/* Section Block Mobile Optimization */
@media (max-width: 1024px) {
  .section-block {
    margin: 3rem 0;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
  }

  .page {
    width: min(1240px, 92vw);
  }
}

/* Tablet Responsive Styles */
@media (max-width: 768px) {

  /* Hero Section */
  .hero-block {
    margin-top: 1rem;
    padding: 2rem 1.5rem;
    border-radius: 32px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-cta .primary-btn,
  .hero-cta .ghost-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
  }

  .landing-carousel {
    width: min(100%, 420px);
    margin: 0 auto;
  }

  .landing-carousel-dots {
    bottom: 14px;
    gap: 8px;
  }

  .landing-carousel-dots .dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    min-height: 10px;
    padding: 0 !important;
    border-width: 1.5px;
  }

  .landing-carousel-dots .dot.active {
    width: 12px;
    height: 12px;
    min-width: 12px;
    min-height: 12px;
  }

  /* Section Headings */
  .section-heading {
    max-width: 100%;
    margin: 0 auto 2rem;
  }

  .section-heading h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
  }

  .section-heading p {
    font-size: 0.95rem;
  }

  .eyebrow {
    font-size: 0.7rem;
  }

  /* Product Grid */
  .product-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .product-card {
    min-height: 180px;
    padding: 1.25rem;
    border-radius: 20px;
  }

  .product-card img {
    width: 56px;
    height: 56px;
  }

  .product-card h3 {
    font-size: 1.1rem;
  }

  .product-card p {
    font-size: 0.9rem;
  }

  .product-badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.7rem;
  }

  /* Stats Bar */
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.25rem;
    gap: 0.75rem;
    margin: 2rem 0;
  }

  .stats-bar strong {
    font-size: 1.5rem;
  }

  /* Calculator Block */
  .calculator-block {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .loan-calculator {
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .loan-calculator__inputs,
  .loan-calculator__summary {
    min-width: 100%;
  }

  /* Steps Grid */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .steps-grid article {
    padding: 1.5rem;
  }

  /* Offerings */
  .offerings-block {
    padding: 2rem 1.5rem;
    border-radius: 28px;
  }

  .offering-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }

  /* CTA Section */
  .cta-section {
    padding: 2rem 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .cta-buttons .primary-btn,
  .cta-buttons .ghost-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
  }

  /* Testimonials */
  .testimonials-carousel {
    padding: 1rem;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
    text-align: center;
  }

  .testimonial-avatar {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }

  .testimonials-carousel-track {
    min-height: 320px;
  }
}

/* Mobile Phone Responsive Styles */
@media (max-width: 480px) {

  /* Page Container */
  .page {
    width: min(1240px, 90vw);
    padding-bottom: 3rem;
  }

  .fibe-home {
    padding-top: 1rem;
  }

  /* Hero Section */
  .hero-block {
    padding: 2.5rem 1.25rem;
    border-radius: 24px;
    margin-top: 0.5rem;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 8vw, 2.22rem);
    line-height: 1.25;
    margin-bottom: 1.25rem;
    text-align: center;
  }

  .hero-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    width: 100%;
    justify-content: center;
    gap: 0.75rem;
    display: flex;
    flex-direction: column;
  }

  .hero-badges {
    justify-content: center;
    width: 100%;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .hero-carousel {
    height: 240px;
    border-radius: 20px;
    margin-top: 2rem;
  }

  /* Buttons */
  .primary-btn,
  .ghost-btn {
    font-size: 0.95rem;
    padding: 0.85rem 1.75rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .primary-btn.large,
  .ghost-btn.large {
    font-size: 1rem;
    padding: 1rem 2rem;
  }

  /* Section Headings */
  .section-block {
    margin: 2.5rem 0;
  }

  .section-heading {
    margin: 0 auto 1.5rem;
  }

  .section-heading h2 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
  }

  .section-heading p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
  }

  /* Product Cards */
  .product-grid {
    gap: 1.25rem;
    grid-template-columns: 1fr;
  }

  .product-card {
    padding: 2rem 1.5rem;
    min-height: auto;
    border-radius: 24px;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 100% !important;
    background: linear-gradient(135deg,
      #f7fbfe 0%,
      #edf4f9 50%,
      #dce9f2 100%);
    background: var(--gradient-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .product-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .product-card img {
    width: 64px;
    height: 64px;
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  }

  .product-card h3 {
    font-size: 1.25rem;
    margin: 0.75rem 0;
    font-weight: 700;
  }

  .product-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #5b6773;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    max-width: 280px;
  }

  .product-badge {
    font-size: 0.8rem;
    padding: 0.35rem 0.85rem;
    margin: 0 auto 0.75rem;
    background: rgba(96, 121, 145, 0.2);
    color: #1a1a1a;
    width: -webkit-fit-content;
    width: fit-content;
  }

  .product-arrow {
    margin-top: auto;
    font-weight: 700;
    color: #050505;
    color: var(--primary-dark);
    font-size: 0.95rem;
    padding: 0.65rem 1.25rem;
    border: 1.5px solid rgba(96, 121, 145, 0.3);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
    width: 100%;
    text-align: center;
  }

  /* Stats Bar */
  .stats-bar {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 0.5rem;
    border-radius: 20px;
    margin: 1.5rem 0;
  }

  .stats-bar strong {
    font-size: 1.35rem;
  }

  .stats-bar span {
    font-size: 0.85rem;
  }

  /* CTA Section */
  .cta-section {
    padding: 1.5rem 1rem;
    margin: 2rem 0;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .cta-content p {
    font-size: 0.9rem;
  }
}

/* Product Content Improvements */
.product-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1 1;
}

.product-content h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f1720;
  color: var(--text-strong);
}

.product-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #5b6773;
  color: var(--text-muted);
}

.product-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: rgba(96, 121, 145, 0.15);
  color: #0f1419;
  color: var(--secondary);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  width: -webkit-fit-content;
  width: fit-content;
}

.product-arrow {
  margin-top: 1rem;
  font-weight: 600;
  color: #050505;
  color: var(--primary-dark);
  font-size: 0.9rem;
}

/* Prevent horizontal scroll */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .App {
    overflow-x: hidden;
  }

  .page {
    overflow-x: hidden;
    padding-top: 90px !important;
    /* Ensure space for fixed header */
  }

  .hero-grid,
  .product-grid,
  .stats-bar,
  .calculator-block,
  .steps-grid,
  .offering-grid {
    width: 100%;
    max-width: 100%;
  }
}

/* ============================================
   MOBILE PAGE SYNC & OPTIMIZATION
   ============================================ */

/* Ensure all pages have proper spacing for fixed header */
.page {
  padding-top: 100px;
  min-height: 100vh;
}

@media (max-width: 900px) {
  .page {
    padding-top: 90px;
  }
}

@media (max-width: 640px) {
  .page {
    padding-top: 85px;
  }
}

/* Global mobile card & background sync */
@media (max-width: 768px) {

  /* Ensure all hero sections have consistent styling */
  [class*="-hero"],
  [class*="hero-"] {
    margin: 1rem 0 2rem !important;
    padding: 2rem 1.5rem !important;
    border-radius: 24px !important;
  }

  /* Ensure all section cards are consistent */
  [class*="-section"],
  [class*="section-"] {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }

  /* Ensure all content cards are consistent */
  [class*="-card"],
  [class*="card-"] {
    border-radius: 18px !important;
  }

  /* Full width buttons on mobile */
  .hero-cta .primary-btn,
  .hero-cta .ghost-btn,
  [class*="cta"] .primary-btn,
  [class*="cta"] .ghost-btn {
    width: 100%;
    justify-content: center;
    display: flex;
  }

  /* Consistent section heading sizes */
  .section-heading h2,
  [class*="-section"] h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem) !important;
  }

  /* Consistent eyebrow sizes */
  .eyebrow,
  [class*="eyebrow"] {
    font-size: 0.75rem !important;
  }

  /* Grid mobile optimization */
  [class*="-grid"],
  .grid,
  [class*="grid-"],
  [class*="grid-"] {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  /* Ensure no overflow on any container */
  * {
    max-width: 100%;
  }

  img {
    max-width: 100%;
    height: auto;
  }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
  .page {
    width: 100% !important;
    padding-top: 80px;
  }

  [class*="-hero"],
  [class*="hero-"] {
    padding: 1.5rem 1rem !important;
    border-radius: 20px !important;
  }

  .section-heading h2,
  [class*="-section"] h2 {
    font-size: 1.5rem !important;
  }

  .primary-btn,
  .ghost-btn {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
  }
}

/* Ensure proper background colors everywhere */
@media (max-width: 768px) {
  body {
    background: linear-gradient(135deg,
        rgba(244, 249, 253, 0.4) 0%,
        rgba(233, 241, 247, 0.3) 25%,
        rgba(220, 232, 241, 0.2) 50%,
        rgba(212, 226, 236, 0.3) 75%,
        rgba(206, 221, 233, 0.4) 100%) !important;
  }
}

/* ============================================
   COMPREHENSIVE DEVICE OPTIMIZATION
   ============================================ */

/* Tablet Specific (iPad, tablets) */
@media (min-width: 769px) and (max-width: 1024px) {
  .page {
    width: min(1280px, 92vw);
  }

  /* Optimize grids for tablet */
  [class*="-grid"]:not(.form-grid),
  [class*="grid-"]:not(.form-grid) {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Form grids stay single column on tablet for better UX */
  .form-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Large Mobile / Small Tablet (iPhone Pro Max, small tablets) */
@media (min-width: 481px) and (max-width: 768px) {
  .page {
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  /* Ensure touch targets are at least 44px */
  button,
  a,
  input,
  select,
  textarea {
    min-height: 44px;
  }
}

/* Small Mobile (iPhone SE, small phones) */
@media (max-width: 480px) {
  .page {
    width: 100% !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    padding-top: 80px;
  }

  /* Reduce font sizes slightly for small screens */
  html {
    font-size: 15px;
  }

  /* Adjust Hero Spacing */
  [class*="-hero"],
  [class*="hero-"] {
    padding: 1.5rem 1rem !important;
    border-radius: 20px !important;
  }

  .hero-content h1 {
    font-size: 2rem !important;
  }

  /* Ensure buttons are easily tappable */
  .primary-btn,
  .ghost-btn,
  button {
    min-height: 48px;
    padding: 0.875rem 1.5rem;
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
  }

  /* Full width tables with scroll */
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* Landscape Mode Optimization */
@media (max-height: 500px) and (orientation: landscape) {
  .page {
    padding-top: 70px;
  }

  [class*="-hero"],
  [class*="hero-"] {
    padding: 1.5rem 2rem !important;
  }

  /* Reduce vertical spacing in landscape */
  section {
    margin: 2rem 0;
  }
}

/* High DPI / Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

  /* Ensure images are sharp on retina displays */
  img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Touch Device Optimization */
@media (hover: none) and (pointer: coarse) {

  /* Larger touch targets for interactive elements — but NOT all elements
     to avoid breaking small icons/spans/dots */
  .primary-btn,
  .ghost-btn,
  .nav-link,
  .mega-card {
    min-height: 44px;
  }

  /* Prevent sticky hover states on touch devices */
  .product-card:hover,
  .offering-card:hover,
  .tool-card:hover,
  .why-card:hover {
    transform: none;
    box-shadow: none;
  }

  /* Keep active feedback */
  .primary-btn:active,
  .ghost-btn:active,
  .mega-card:active {
    opacity: 0.85;
  }
}

/* Safe Area for Devices with Notches (iPhone X, etc.) */
@supports (padding: max(0px)) {
  .page {
    padding-left: max(1rem, env(safe-area-inset-left)) !important;
    padding-right: max(1rem, env(safe-area-inset-right)) !important;
  }

  .fibe-header {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }
}

/* ===== Carousel & Hero - Mobile responsive adjustments ===== */
@media (max-width: 768px) {
  .hero-visual {
    display: flex !important;
    width: 100%;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
  }

  .hero-carousel {
    display: block !important;
    width: 100% !important;
    height: 300px !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.5);
  }

  .carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .carousel-track {
    width: 100%;
    height: 100%;
  }
}

/* ===== Landing hero - responsive adjustments ===== */
@media (max-width: 900px) {
  .hero-block {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
    align-items: start;
  }

  .hero-content h1 {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
    line-height: 1.15;
    margin-bottom: 0.75rem;
  }

  .hero-content p {
    font-size: 0.98rem;
  }

  .hero-visual {
    order: 2;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-carousel {
    height: auto !important;
    min-height: 180px;
  }

  .carousel-image {
    max-width: 420px;
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-badges {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .hero-block {
    padding: 1rem;
    border-radius: 14px;
  }

  .hero-content h1 {
    font-size: clamp(1.4rem, 7.5vw, 1.9rem);
  }

  .carousel-image {
    max-width: 320px;
  }
}

/* Prevent zoom on input focus (iOS) */
@media (max-width: 768px) {

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  input[type="date"],
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* Ensure smooth scrolling on all devices */
html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  background: linear-gradient(135deg,
      #eef5fb 0%,
      #e4eef6 36%,
      #d4e2ec 72%,
      #c4d4e0 100%);
  background: var(--gradient-background);
  min-height: 100vh;
}

/* Optimize for print */
@media print {

  .fibe-header,
  .site-footer,
  .primary-btn,
  .ghost-btn,
  nav,
  [class*="cta"] {
    display: none !important;
  }

  .page {
    padding-top: 0 !important;
  }

  * {
    background: white !important;
    color: black !important;
  }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Final Overflow Prevention */
* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

.page,
section,
div {
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Ensure all images are responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure iframes are responsive */
iframe {
  max-width: 100%;
}

/* ============================================
   GLOBAL MOBILE FORM & CARD OVERFLOW FIXES
   ============================================ */
@media (max-width: 768px) {

  /* Prevent any container from exceeding viewport width */
  .page,
  .fibe-home,
  .container,
  .main-content {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  /* Force all forms and grids to collapse and fit */
  form,
  .form-grid,
  .contact-form-main,
  .support-form,
  .career-form,
  .eligibility-grid,
  .credit-form {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 1.25rem !important;
  }

  /* Ensure all inputs and textareas stay within their cards */
  input,
  textarea,
  select {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Fix background cards (containers for forms) */
  .contact-form-card-main,
  .contact-form-card-modern,
  .career-form-card,
  .calculator-main-card,
  .credit-score-widget,
  .waitlist-form,
  .company-card {
    padding: 1.25rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 20px !important;
  }

  /* Handle specific overlapping elements */
  .hero-form-row {
    flex-direction: column !important;
  }

  .hero-form input {
    width: 100% !important;
    margin-bottom: 0.75rem !important;
  }

  /* Prevent long placeholders or text from stretching containers */
  /* Note: removed catch-all * { max-width: 100% } — it breaks flex/grid children */
}

/* ============================================
   MOBILE PERFECT ALIGNMENT OVERRIDES 
   ============================================ */
@media (max-width: 480px) {
  .hero-block {
    text-align: center !important;
    padding: 2.5rem 1.25rem !important;
  }

  .hero-content {
    align-items: center !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .hero-content h1,
  .hero-content p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
  }

  .hero-cta {
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
  }

  .product-card {
    text-align: center !important;
    align-items: center !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 2rem 1.5rem !important;
  }

  .product-content {
    align-items: center !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }

  .product-card img {
    margin: 0 auto 1.25rem !important;
  }

  .product-card h3,
  .product-card p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .product-arrow {
    text-align: center !important;
    width: 100% !important;
    display: block !important;
    margin-top: 1rem !important;
  }
}

/* CSS Marquee animation for Coming Soon banner */
.css-marquee-content {
  display: inline-block;
  white-space: nowrap;
  /* Increased duration from 15s to 35s to slow it down */
  animation: marquee-scroll 35s linear infinite;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(100vw);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Mobile Alternative: Stop the marquee, just center one 'Coming Soon' text */
@media (max-width: 768px) {
  .css-marquee-content {
    animation: none;
    display: flex;
    justify-content: center;
    width: 100%;
    transform: none !important;
  }

  .css-marquee-content span {
    margin: 0 !important;
  }

  .css-marquee-content span:not(:first-child) {
    display: none;
  }
}
/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================ */

/* Image optimization for all images */
img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Enable GPU acceleration for smoother rendering */
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Optimize animations and transitions */
* {
    /* Enable GPU acceleration for transforms and opacity */
    will-change: auto;
}

/* Specific will-change for interactive elements */
.primary-btn,
.ghost-btn,
.product-card,
.testimonial-item,
.hero-block,
a:hover,
button:hover {
    will-change: transform, opacity, background;
}

/* Remove will-change after animation completes */
.primary-btn:not(:hover),
.ghost-btn:not(:hover),
.product-card:not(:hover),
a:not(:hover),
button:not(:hover) {
    will-change: auto;
}

/* Optimize scrolling performance */
.testimonial-marquee,
.carousel-track {
    -webkit-overflow-scrolling: touch;
    transform: translateZ(0);
}

/* Reduce animation complexity on mobile */
@media (max-width: 768px) {
    * {
        animation-duration: 0.5s !important;
        transition-duration: 0.2s !important;
    }

    /* Disable complex animations on mobile for better performance */
    .carousel-track {
        animation: none !important;
    }

    /* Simplify box shadows on mobile */
    .hero-block,
    .product-card,
    .testimonial-item {
        box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08) !important;
    }
}

/* Optimize font loading */
@media screen and (prefers-reduced-data: reduce) {

    /* Reduce gradient complexity for low data mode */
    body,
    html,
    .page,
    .fibe-home {
        background: #dce9f2 !important;
        background-attachment: scroll !important;
    }
}

/* Improve perceived performance with skeleton loading */
.lazy-loading {
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0.1) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Mobile viewport optimization */
@media (max-width: 640px) {

    /* Reduce padding on mobile for more content visibility */
    .page>section,
    .page>div:not(.hero-block):not(.admin-dashboard-layout),
    .fibe-home>section,
    .fibe-home>.hero-block {
        padding-left: 4vw;
        padding-right: 4vw;
    }

    /* Optimize touch targets for mobile */
    .primary-btn,
    .ghost-btn,
    button,
    a {
        min-height: 44px;
        min-width: 44px;
    }

    /* Reduce font size slightly on mobile for better readability */
    html {
        font-size: 15px;
    }
}

/* Tablet optimization */
@media (min-width: 641px) and (max-width: 1024px) {

    .page>section,
    .page>div:not(.hero-block):not(.admin-dashboard-layout),
    .fibe-home>section,
    .fibe-home>.hero-block {
        padding-left: 4vw;
        padding-right: 4vw;
    }
}

/* Reduce motion for accessibility and performance */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print optimization */
@media print {

    body,
    .page,
    .fibe-home {
        background: white !important;
    }

    .primary-btn,
    .ghost-btn {
        border: 1px solid #000 !important;
    }
}

/* Content visibility optimization for better performance */
.testimonial-item,
.product-card,
.offering-card {
    content-visibility: auto;
    contain-intrinsic-size: 0 300px;
}
/* =============================================
   HEADER - MODERN LIGHT THEME
   ============================================= */

.fibe-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(244, 249, 253, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(96, 121, 145, 0.14);
  transition: box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.fibe-header.has-shadow {
  background: rgba(244, 249, 253, 1);
  box-shadow: 0 4px 30px rgba(143, 167, 189, 0.14), 0 2px 10px rgba(17, 24, 39, 0.05);
  border-bottom-color: rgba(96, 121, 145, 0.18);
}

/* =============================================
   HEADER SHELL
   ============================================= */

.header-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* =============================================
   LOGO
   ============================================= */

.brand-mark {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.brand-logo,
.brand-mark img {
  height: 140px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  transform: scale(1.15);
  transform-origin: left center;
}

/* =============================================
   HAMBURGER TOGGLE — Mobile only
   ============================================= */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1003;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #111;
  background: var(--secondary, #111);
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  pointer-events: none; /* prevent span from capturing touch events */
}

/* X animation when active */
.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* =============================================
   DESKTOP PRIMARY NAV
   ============================================= */

.primary-nav {
  flex: 1 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.primary-nav li {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 1.25rem;
  color: #111;
  color: var(--secondary, #111);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 12px;
  transition: background 0.2s ease, color 0.2s ease;
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #0f1419, #36424f);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #0f1419;
  color: var(--primary-dark, #0f1419);
  background: rgba(216, 228, 237, 0.55);
}

.nav-link:hover::after {
  width: 40%;
}

/* Chevron arrow */
.nav-link .chevron {
  border: solid currentColor;
  border-width: 0 1.5px 1.5px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  margin-left: 0.25rem;
  pointer-events: none;
}

.primary-nav li.expanded .chevron {
  transform: rotate(-135deg);
}

/* =============================================
   DESKTOP MEGA MENU
   ============================================= */

.mega-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 0.5rem;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 18px;
  background: rgba(247, 251, 254, 0.98);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  width: 600px;
  max-width: 90vw;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  border: 1px solid rgba(96, 121, 145, 0.16);
  z-index: 200;
}

@media (max-width: 1200px) {
  .mega-menu {
    width: 500px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.mega-menu.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* =============================================
   MEGA CARD (menu item)
   ============================================= */

.mega-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 0.75rem;
  border-radius: 14px;
  text-decoration: none;
  color: #111;
  color: var(--secondary, #111);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(239, 247, 252, 0.72);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  text-align: left;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.mega-card:hover {
  border-color: rgba(96, 121, 145, 0.24);
  background: rgba(223, 234, 242, 0.72);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.mega-card .card-text h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
  color: var(--secondary, #111);
}

.mega-card .card-text p {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  line-height: 1.4;
  color: #4a4a4a;
  color: var(--text-muted, #4a4a4a);
}

.mega-card > span {
  font-size: 1.25rem;
  color: #0f1419;
  color: var(--primary-dark, #0f1419);
  flex-shrink: 0;
}

/* =============================================
   DESKTOP ACTION BUTTONS
   ============================================= */

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Hidden by default — shown in mobile drawer */
.drawer-actions {
  display: none;
}

/* Hidden by default — shown in mobile drawer */
.nav-drawer-close {
  display: none;
}

.ghost-btn,
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.ghost-btn {
  color: #111;
  color: var(--secondary, #111);
  background: transparent;
  border: 2px solid rgba(96, 121, 145, 0.3);
}

.ghost-btn:hover {
  background: rgba(96, 121, 145, 0.1);
  border-color: #0f1419;
  border-color: var(--primary, #0f1419);
}

.primary-btn {
  background: linear-gradient(135deg, #0f1419, #36424f);
  background: var(--gradient-primary, linear-gradient(135deg, #0f1419, #36424f));
  color: #f6fbff;
  border: 2px solid transparent;
  box-shadow: 0 8px 25px rgba(31, 45, 58, 0.22);
}

.primary-btn:hover {
  box-shadow: 0 8px 25px rgba(31, 45, 58, 0.35);
}

/* =============================================
   OVERLAY — dims page when menu open
   ============================================= */

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 25, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 998;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.nav-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* =============================================
   TABLET (max-width: 1024px)
   ============================================= */

@media (max-width: 1024px) {
  .header-shell {
    padding: 0 1.5rem;
  }

  .primary-nav ul {
    gap: 0;
  }

  .nav-link {
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
  }
}

/* =============================================
   MOBILE MENU (max-width: 900px)
   Slide-in drawer from right
   ============================================= */

@media (max-width: 900px) {
  /* Show hamburger */
  .nav-toggle {
    display: flex;
  }

  /* Hide desktop action buttons */
  .nav-actions {
    display: none;
  }

  /* ── DRAWER ─────────────────────────────── */
  .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    /* Use dvh with px fallback for iOS Safari */
    height: 100vh;
    height: 100dvh;
    width: min(360px, calc(100vw - 20px));
    max-width: calc(100vw - 8px);
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    /* Top padding = header height (~80px) + safe area + a bit of breathing room */
    padding-top: calc(80px + env(safe-area-inset-top, 0px) + 0.75rem);
    padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
    padding-left: 1.1rem;
    padding-right: 1.1rem;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.18);
    /* Start off-screen */
    transform: translateX(110%);
    -webkit-transform: translateX(110%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition: -webkit-transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    border-left: 1px solid rgba(96, 121, 145, 0.15);
    border-radius: 24px 0 0 24px;
    z-index: 1001;
    will-change: transform;
    box-sizing: border-box;
  }

  /* Slide in */
  .primary-nav.is-visible {
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }

  /* ── NAV LIST ────────────────────────────── */
  .primary-nav ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .primary-nav li {
    display: block;
    width: 100%;
  }

  /* ── NAV LINK (section header) ───────────── */
  .nav-link {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    min-height: 52px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:active {
    background: rgba(96, 121, 145, 0.12);
  }

  /* ── MOBILE DROPDOWN ─────────────────────── */
  /*
   * IMPORTANT: On mobile we use the `expanded` class on <li>
   * to show/hide the mega-menu. The desktop `.mega-menu.show` CSS
   * is OVERRIDDEN here so it does not conflict.
   */
  .mega-menu {
    /* Reset all desktop absolute positioning */
    position: static !important;
    transform: none !important;
    -webkit-transform: none !important;
    min-width: 0 !important;
    min-width: initial !important;
    width: 100%;

    /* Hidden state */
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 0.4rem;
    gap: 0.4rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    padding: 0;
    margin: 0;
    box-shadow: none;
    background: rgba(96, 121, 145, 0.05);
    border: none;
    border-radius: 12px;
    transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.25s ease;
  }

  /* Also override the desktop .mega-menu.show on mobile */
  .mega-menu.show {
    transform: none !important;
    -webkit-transform: none !important;
  }

  /* Show when parent li has .expanded */
  .primary-nav li.expanded .mega-menu {
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 0.4rem;
    margin-top: 0.25rem;
    overflow: visible;
  }

  /* ── MEGA CARDS in mobile ─────────────────── */
  .mega-card {
    padding: 0.85rem 1rem;
    border-radius: 12px;
    min-height: 52px;
    align-items: center;
  }

  .mega-card .card-text h4 {
    font-size: 0.92rem;
  }

  .mega-card .card-text p {
    font-size: 0.82rem;
  }

  /* ── DRAWER ACTION BUTTONS ───────────────── */
  .drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: auto;
    padding-top: 1.5rem;
    padding-bottom: 0.25rem;
    width: 100%;
    flex-shrink: 0;
    border-top: 1px solid rgba(96, 121, 145, 0.12);
  }

  .drawer-actions .ghost-btn,
  .drawer-actions .primary-btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
}

/* =============================================
   SMALL MOBILE (max-width: 640px)
   ============================================= */

@media (max-width: 640px) {
  .header-shell {
    padding: 0 1rem;
    height: 64px;
  }

  .brand-logo,
  .brand-mark img {
    height: 52px;
    max-width: 150px;
    transform: scale(1.05);
  }

  .primary-nav {
    width: min(320px, calc(100vw - 12px));
    max-width: calc(100vw - 4px);
    padding-top: calc(72px + env(safe-area-inset-top, 0px) + 0.5rem);
    padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    padding-left: 0.9rem;
    padding-right: 0.9rem;
    border-radius: 20px 0 0 20px;
  }

  .nav-link {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
  }

  .primary-nav li.expanded .mega-menu {
    padding: 0.35rem;
  }

  .mega-card {
    padding: 0.8rem 0.9rem;
  }

  /* Hide description text on very small screens */
  .mega-card .card-text p {
    display: none;
  }

  .drawer-actions {
    gap: 0.75rem;
    padding-top: 1.25rem;
  }
}

/* =============================================
   iOS SCROLL LOCK
   overflow:hidden alone doesn't work on iOS Safari.
   We save scroll position in JS (Header.js) and restore on close.
   position:fixed was removed because it breaks dvh calculation
   inside the drawer — use the JS-based approach instead.
   ============================================= */

body.nav-open {
  overflow: hidden;
  /* Prevent rubber-band scroll on iOS */
  overscroll-behavior: none;
  -webkit-overflow-scrolling: auto;
}

/* =============================================
   COMING SOON badge animation
   ============================================= */

.coming-soon-animated {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ff5722;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse-coming-soon 3s infinite;
}

@keyframes pulse-coming-soon {
  0%   { opacity: 0.7; transform: scale(1); }
  50%  { opacity: 1;   transform: scale(1.05); }
  100% { opacity: 0.7; transform: scale(1); }
}

/* =============================================
   ISO BADGE
   ============================================= */

.iso-badge-circle {
  position: absolute;
  right: 15px;
  top: 50%;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: #fff;
  color: #d32f2f;
  border: 3px double #d32f2f;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 10px rgba(211, 47, 47, 0.2);
  animation: blink-iso 2s infinite;
  flex-shrink: 0;
}

.iso-badge-circle .iso-top {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.iso-badge-circle .iso-mid {
  font-size: 8px;
  font-weight: 900;
  margin: 1px 0;
}

.iso-badge-circle .iso-bot {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

@keyframes blink-iso {
  0%   { opacity: 1;   transform: translateY(-50%) scale(1); }
  50%  { opacity: 0.2; transform: translateY(-50%) scale(0.95); }
  100% { opacity: 1;   transform: translateY(-50%) scale(1); }
}

.iso-badge-circle.footer-badge {
  position: relative;
  right: auto;
  top: auto;
  margin: 2rem 0 1rem 1rem;
  transform: scale(1.6);
  transform-origin: left center;
  animation: blink-iso-footer 2s infinite;
}

@keyframes blink-iso-footer {
  0%   { opacity: 1;   transform: scale(1.6); }
  50%  { opacity: 0.2; transform: scale(1.55); }
  100% { opacity: 1;   transform: scale(1.6); }
}

/* ========================================
   PERSONAL LOAN PAGE - MODERN DESIGN
   ======================================== */

/* Hero Section */
.personal-hero-modern {
    background: linear-gradient(135deg,
            rgba(244, 249, 253, 0.95) 0%,
            rgba(233, 241, 247, 0.85) 25%,
            rgba(220, 232, 241, 0.75) 50%,
            rgba(212, 226, 236, 0.65) 75%,
            rgba(206, 221, 233, 0.5) 100%);
    border-radius: 40px;
    padding: 4rem 3rem;
    margin: 2rem 0 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.12);
}

.personal-hero-modern::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(96, 121, 145, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.personal-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-gap: 3rem;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.personal-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.personal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(96, 121, 145, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-strong);
    width: -webkit-fit-content;
    width: fit-content;
    box-shadow: 0 8px 24px rgba(96, 121, 145, 0.15);
}

.personal-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin: 0;
    font-weight: 700;
    color: var(--text-strong);
}

.personal-hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

.personal-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    grid-gap: 1rem;
    gap: 1rem;
    margin: 1rem 0;
}

.highlight-chip-personal {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(96, 121, 145, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.highlight-chip-personal:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(96, 121, 145, 0.2);
    border-color: rgba(96, 121, 145, 0.4);
}

.chip-icon-personal {
    font-size: 2rem;
    line-height: 1;
}

.chip-content {
    display: flex;
    flex-direction: column;
}

.chip-content strong {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-strong);
    white-space: nowrap;
}

.chip-content span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.personal-hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.personal-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Hero Visual */
.personal-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.personal-visual-card {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.personal-hero-image {
    width: 100%;
    height: auto;
    border-radius: 32px;
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.15);
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(96, 121, 145, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    animation: floatBadge 3s ease-in-out infinite;
    text-align: center;
}

.floating-badge strong {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
}

.floating-badge span {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1;
}

.badge-1 {
    top: 5%;
    left: -5%;
    animation-delay: 0s;
}

.badge-2 {
    top: 45%;
    right: -8%;
    animation-delay: 1s;
}

.badge-3 {
    bottom: 15%;
    left: 0%;
    animation-delay: 2s;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Use Cases Section */
.use-cases-section {
    margin: 5rem 0;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(96, 121, 145, 0.15);
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(96, 121, 145, 0.2);
    border-color: rgba(96, 121, 145, 0.3);
}

.use-case-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.use-case-card h3 {
    margin: 0 0 0.75rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-strong);
}

.use-case-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Features Section - Bento Grid */
.personal-features-section {
    margin: 5rem 0;
    padding: 4rem 3rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 40px;
}

.personal-features-bento {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem;
}

.feature-bento-card {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 2rem;
    border: 1px solid rgba(96, 121, 145, 0.15);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.feature-bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(96, 121, 145, 0.2);
    border-color: rgba(96, 121, 145, 0.3);
}

.feature-bento-card.large {
    grid-column: span 2;
    background: linear-gradient(135deg, #f7fbfe 0%, #FFF8E6 100%);
}

.feature-bento-card.accent {
    background: linear-gradient(135deg, rgba(96, 121, 145, 0.1) 0%, rgba(96, 121, 145, 0.05) 100%);
}

.feature-icon {
    font-size: 3rem;
    line-height: 1;
}

.feature-icon-large {
    font-size: 4rem;
    line-height: 1;
}

.feature-bento-card h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-strong);
}

.feature-bento-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.feature-checklist {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-checklist li {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Eligibility Section */
.personal-eligibility-modern {
    margin: 5rem 0;
}

.eligibility-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.eligibility-modern-card {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(96, 121, 145, 0.15);
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.eligibility-modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(96, 121, 145, 0.2);
    border-color: rgba(96, 121, 145, 0.3);
}

.eligibility-modern-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.eligibility-modern-card h4 {
    margin: 0 0 0.75rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-strong);
}

.eligibility-modern-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 0.95rem;
}

.eligibility-cta {
    text-align: center;
}

/* Documents Section */
.personal-documents-section {
    margin: 5rem 0;
}

.personal-documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 2rem;
    gap: 2rem;
}

.document-category-modern {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 2rem;
    border: 1px solid rgba(96, 121, 145, 0.15);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
}

.document-category-modern:hover {
    box-shadow: 0 20px 50px rgba(96, 121, 145, 0.15);
}

.document-category-modern.highlight {
    background: linear-gradient(135deg, #f7fbfe 0%, #FFF8E6 100%);
    border-color: rgba(96, 121, 145, 0.3);
}

.doc-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(96, 121, 145, 0.15);
}

.doc-category-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.doc-category-header h3 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-strong);
}

.doc-list-modern {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.doc-item-modern {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.doc-bullet {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #0f1419 0%, #36424f 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.doc-item-modern strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-strong);
    font-size: 0.95rem;
}

.doc-item-modern p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* How It Works Section */
.how-it-works-section {
    margin: 5rem 0;
    padding: 4rem 3rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 40px;
}

.steps-modern-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    grid-gap: 2rem;
    gap: 2rem;
    align-items: center;
}

/* Mobile: collapse to single column */
@media (max-width: 900px) {
    .steps-modern-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .step-connector {
        display: none;
    }
}

.step-modern-card {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(96, 121, 145, 0.15);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.step-modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(96, 121, 145, 0.2);
    border-color: rgba(96, 121, 145, 0.3);
}

.step-number-modern {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0f1419 0%, #36424f 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(96, 121, 145, 0.3);
}

.step-icon-modern {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.step-modern-card h3 {
    margin: 0 0 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-strong);
}

.step-modern-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 0.95rem;
}

.step-connector {
    font-size: 2rem;
    color: var(--primary-dark);
    font-weight: 700;
}

/* Fees Section */
.personal-fees-section {
    margin: 5rem 0;
}

.personal-fees-table {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(96, 121, 145, 0.15);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.fees-row-modern {
    display: grid;
    grid-template-columns: 2fr 1fr;
    padding: 1.75rem 2rem;
    border-bottom: 1px solid rgba(96, 121, 145, 0.1);
    grid-gap: 2rem;
    gap: 2rem;
    align-items: center;
    transition: background 0.2s ease;
    box-sizing: border-box;
    width: 100%;
}

.fees-row-modern:hover {
    background: rgba(96, 121, 145, 0.04);
}

.fees-row-modern:last-child {
    border-bottom: none;
}

.fees-header-modern {
    background: linear-gradient(135deg, #0f1419 0%, #36424f 100%);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.fees-header-modern:hover {
    background: linear-gradient(135deg, #0f1419 0%, #36424f 100%);
}

.fees-label-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fees-icon-modern {
    font-size: 2rem;
    line-height: 1;
}

.fees-label-modern strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-strong);
    font-size: 1.05rem;
}

.fees-header-modern .fees-label-modern strong,
.fees-header-modern .fees-value-modern {
    color: white;
}

.fees-label-modern p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.3;
}

.fees-value-modern {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.fees-value-modern strong {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-strong);
}

.fees-value-modern span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.highlight-value {
    color: #0f9d58 !important;
}

.fees-note-modern {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: rgba(96, 121, 145, 0.08);
    border-left: 4px solid var(--primary-dark);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA Section */
.personal-cta-section {
    margin: 5rem 0 3rem;
}

.personal-cta-card {
    background: linear-gradient(135deg,
            rgba(96, 121, 145, 0.1) 0%,
            rgba(96, 121, 145, 0.05) 100%);
    border-radius: 40px;
    padding: 4rem 3rem;
    text-align: center;
    border: 2px solid rgba(96, 121, 145, 0.2);
    box-shadow: 0 20px 60px rgba(96, 121, 145, 0.15);
}

.personal-cta-card h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0 0 1rem;
    color: var(--text-strong);
}

.personal-cta-card p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.personal-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.cta-features-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .personal-hero-modern {
        padding: 3rem 2rem;
        border-radius: 32px;
    }

    .personal-hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .personal-features-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-bento-card.large {
        grid-column: span 2;
    }

    .steps-modern-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step-connector {
        display: none;
    }

    .floating-badge {
        padding: 0.75rem 1rem;
    }

    .floating-badge strong {
        font-size: 1.1rem;
    }

    .badge-1,
    .badge-2,
    .badge-3 {
        position: static;
        margin-top: 1rem;
        animation: none;
    }

    .personal-visual-card {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .fees-row-modern {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .fees-value-modern {
        text-align: left;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .personal-hero-modern {
        padding: 2rem 1.5rem;
        border-radius: 28px;
        margin: 1rem 0 3rem;
    }

    .personal-hero-content h1 {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .personal-hero-description {
        font-size: 1rem;
    }

    .personal-highlights-grid {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .highlight-chip-personal {
        padding: 1rem 1.25rem;
    }

    .personal-hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .personal-hero-cta .primary-btn,
    .personal-hero-cta .ghost-btn {
        width: 100%;
        justify-content: center;
        display: flex;
    }

    .personal-trust-badges {
        flex-direction: column;
        gap: 0.75rem;
        font-size: 0.85rem;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .use-case-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .use-case-icon {
        font-size: 3rem;
    }

    .personal-features-section {
        padding: 3rem 2rem;
        border-radius: 32px;
    }

    .personal-features-bento {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .feature-bento-card.large {
        grid-column: span 1;
    }

    .feature-bento-card {
        padding: 1.5rem;
        border-radius: 24px;
    }

    .feature-icon,
    .feature-icon-large {
        font-size: 2.5rem;
    }

    .feature-bento-card h3 {
        font-size: 1.2rem;
    }

    .eligibility-modern-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .eligibility-modern-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .eligibility-modern-icon {
        font-size: 3rem;
    }

    .personal-documents-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .document-category-modern {
        padding: 1.5rem;
        border-radius: 24px;
    }

    .doc-category-icon {
        font-size: 2rem;
    }

    .doc-category-header h3 {
        font-size: 1.2rem;
    }

    .how-it-works-section {
        padding: 3rem 2rem;
        border-radius: 32px;
    }

    .step-modern-card {
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }

    .step-icon-modern {
        font-size: 3rem;
    }

    .fees-row-modern {
        padding: 1.5rem 1.5rem;
    }

    .fees-icon-modern {
        font-size: 1.75rem;
    }

    .fees-label-modern strong {
        font-size: 0.95rem;
    }

    .fees-value-modern strong {
        font-size: 1rem;
    }

    .personal-cta-card {
        padding: 3rem 2rem;
        border-radius: 32px;
    }

    .personal-cta-card h2 {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    .personal-cta-card p {
        font-size: 1rem;
    }

    .personal-cta-buttons {
        flex-direction: column;
        gap: 0.875rem;
    }

    .personal-cta-buttons .primary-btn,
    .personal-cta-buttons .ghost-btn {
        width: 100%;
        justify-content: center;
        display: flex;
    }

    .cta-features-list {
        flex-direction: column;
        gap: 0.75rem;
        font-size: 0.85rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .personal-hero-modern {
        padding: 1.5rem 1rem;
        border-radius: 24px;
    }

    .personal-hero-content h1 {
        font-size: 1.75rem;
    }

    .personal-hero-description {
        font-size: 0.9rem;
    }

    .chip-content strong {
        font-size: 1.1rem;
    }

    .chip-content span {
        font-size: 0.75rem;
    }

    .highlight-chip-personal {
        padding: 0.875rem 1rem;
    }

    .personal-features-section,
    .how-it-works-section {
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }

    .feature-bento-card,
    .use-case-card,
    .eligibility-modern-card,
    .document-category-modern {
        padding: 1.25rem;
        border-radius: 18px;
    }

    .step-modern-card {
        padding: 1.75rem 1.25rem;
        border-radius: 20px;
    }

    .fees-row-modern {
        padding: 1.25rem 1.25rem;
    }

    .personal-cta-card {
        padding: 2rem 1.5rem;
        border-radius: 28px;
    }

    .cta-icon-large {
        font-size: 3.5rem;
    }
}

/* Prevent horizontal overflow */
@media (max-width: 768px) {
    .personal-loan-page-modern {
        overflow-x: hidden;
    }

    .personal-hero-grid,
    .personal-features-bento,
    .use-cases-grid,
    .eligibility-modern-grid,
    .personal-documents-grid,
    .steps-modern-grid {
        width: 100%;
        max-width: 100%;
    }
}
.brand-carousel {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 0.75rem 0;
}

.brand-carousel-track {
  display: flex;
  width: -webkit-max-content;
  width: max-content;
  max-width: none;
  gap: 1rem;
  animation: brandCarouselScroll 28s linear infinite;
  will-change: transform;
}

.brand-carousel:hover .brand-carousel-track {
  animation-play-state: paused;
}

.partner-brand-logo {
  flex: 0 0 180px;
  max-width: 180px;
  min-height: 126px;
  margin: 0;
  padding: 1.25rem;
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  background: rgba(247, 251, 254, 0.88);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  text-align: center;
}

.partner-brand-logo-mark {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.14);
}

.partner-brand-logo figcaption {
  color: var(--text-strong);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
}

@keyframes brandCarouselScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

@media (max-width: 640px) {
  .partner-brand-logo {
    flex-basis: 150px;
    max-width: 150px;
    min-height: 112px;
    padding: 1rem;
    border-radius: 20px;
  }

  .partner-brand-logo-mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-carousel-track {
    animation: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ========================================
   SUPPORT PAGE - MODERN DESIGN
   ======================================== */

/* Hero Section */
.support-hero-modern {
    background: linear-gradient(135deg,
            rgba(244, 249, 253, 0.95) 0%,
            rgba(233, 241, 247, 0.85) 50%,
            rgba(220, 232, 241, 0.75) 100%);
    border-radius: 40px;
    padding: 4rem 3rem;
    margin: 2rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.12);
}

.support-hero-modern::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(96, 121, 145, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.support-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.support-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(96, 121, 145, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-strong);
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(96, 121, 145, 0.15);
}

.support-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin: 0 0 1.5rem;
    font-weight: 700;
    color: var(--text-strong);
}

.support-hero-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0 0 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.support-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem;
    margin: 2rem 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card-support {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(96, 121, 145, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.stat-card-support:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(96, 121, 145, 0.2);
}

.stat-icon-support {
    font-size: 2.5rem;
    line-height: 1;
}

.stat-card-support strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-strong);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-card-support span {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1;
}

.support-hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2rem;
}

/* Support Highlights Section */
.support-highlights-section {
    margin: 5rem 0;
}

.support-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-gap: 2rem;
    gap: 2rem;
}

.support-highlight-card {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(96, 121, 145, 0.15);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.support-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(96, 121, 145, 0.2);
    border-color: rgba(96, 121, 145, 0.3);
}

.highlight-icon-support {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.support-highlight-card h3 {
    margin: 0 0 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-strong);
}

.support-highlight-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

/* Contact Channels Section */
.contact-channels-section {
    margin: 5rem 0;
    padding: 4rem 3rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 40px;
}

.contact-channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-gap: 2rem;
    gap: 2rem;
}

.contact-channel-card {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 2.5rem;
    border: 1px solid rgba(96, 121, 145, 0.15);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.contact-channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(96, 121, 145, 0.2);
    border-color: rgba(96, 121, 145, 0.3);
}

.channel-icon-large {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.contact-channel-card h3 {
    margin: 0 0 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-strong);
}

.contact-channel-card p {
    margin: 0 0 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

.primary-link-support {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border-bottom: 2px solid rgba(96, 121, 145, 0.3);
    transition: all 0.2s ease;
    display: inline-block;
}

.primary-link-support:hover {
    color: #36424f;
    border-bottom-color: #36424f;
}

/* Contact Form Section */
.support-form-section {
    margin: 5rem 0;
}

.support-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 4rem;
    gap: 4rem;
    align-items: start;
    width: 100%;
    max-width: 100%;
}

.form-left {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
}

.form-left h2 {
    font-size: 2.5rem;
    margin: 1rem 0 1.5rem;
    font-weight: 700;
    color: var(--text-strong);
}

.form-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #0f1419 0%, #36424f 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.form-benefit-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-strong);
    font-size: 1.05rem;
}

.form-benefit-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-form-card-modern {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 3rem;
    border: 1px solid rgba(96, 121, 145, 0.15);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-strong);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(96, 121, 145, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 3px rgba(96, 121, 145, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.full-width {
    width: 100%;
}

.form-success {
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid #4caf50;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #2e7d32;
}

.success-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: #4caf50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.form-success p {
    margin: 0;
    font-weight: 600;
}

/* Service Cards Section */
.service-cards-section {
    margin: 5rem 0;
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 2rem;
    gap: 2rem;
}

.service-card-modern {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 2.5rem;
    border: 1px solid rgba(96, 121, 145, 0.15);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.service-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(96, 121, 145, 0.2);
    border-color: rgba(96, 121, 145, 0.3);
}

.service-card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.service-card-modern h3 {
    margin: 0 0 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-strong);
}

.service-card-modern ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-card-modern li {
    color: var(--text-muted);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.service-card-modern li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-dark);
    font-weight: 700;
}

/* FAQ Section */
.support-faq-section {
    margin: 5rem 0;
    padding: 4rem 3rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 40px;
}

.faq-grid-modern {
    display: grid;
    grid-gap: 1rem;
    gap: 1rem;
}

.faq-item-modern {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    border: 1px solid rgba(96, 121, 145, 0.15);
    transition: all 0.3s ease;
}

.faq-item-modern:hover {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}

.faq-item-modern summary {
    padding: 1.5rem 2rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-strong);
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.faq-item-modern summary::-webkit-details-marker {
    display: none;
}

.faq-question {
    flex: 1 1;
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(96, 121, 145, 0.1);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.faq-item-modern[open] .faq-icon {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #0f1419 0%, #36424f 100%);
    color: white;
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Timeline Section */
.support-timeline-section {
    margin: 5rem 0;
}

.timeline-modern {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item-modern {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0f1419 0%, #36424f 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(96, 121, 145, 0.3);
}

.timeline-content {
    flex: 1 1;
    padding: 0.5rem 0 2rem;
}

.timeline-content h3 {
    margin: 0 0 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-strong);
}

.timeline-content p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

.timeline-connector-modern {
    width: 3px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(96, 121, 145, 0.5), rgba(96, 121, 145, 0.1));
    margin-left: 28.5px;
}

/* CTA Section */
.support-cta-section {
    margin: 5rem 0 3rem;
}

.support-cta-card {
    background: linear-gradient(135deg,
            rgba(96, 121, 145, 0.1) 0%,
            rgba(96, 121, 145, 0.05) 100%);
    border-radius: 40px;
    padding: 4rem 3rem;
    text-align: center;
    border: 2px solid rgba(96, 121, 145, 0.2);
    box-shadow: 0 20px 60px rgba(96, 121, 145, 0.15);
}

.support-cta-card h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0 0 1rem;
    color: var(--text-strong);
}

.support-cta-card p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.support-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.cta-assurance-support {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .support-hero-modern {
        padding: 3rem 2rem;
        border-radius: 32px;
    }

    .support-form-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-left {
        position: static;
    }

    .contact-channels-section,
    .support-faq-section {
        padding: 3rem 2rem;
        border-radius: 32px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .support-hero-modern {
        padding: 2rem 1.5rem;
        border-radius: 28px;
        margin: 1rem 0 3rem;
    }

    .support-hero-content h1 {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .support-hero-description {
        font-size: 1rem;
    }

    .support-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .support-hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .support-hero-cta .primary-btn,
    .support-hero-cta .ghost-btn {
        width: 100%;
        justify-content: center;
        display: flex;
    }

    .support-highlights-grid,
    .contact-channels-grid,
    .service-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .support-highlight-card,
    .contact-channel-card,
    .service-card-modern {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .contact-channels-section,
    .support-faq-section {
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }

    .contact-form-card-modern {
        padding: 2rem;
        border-radius: 24px;
    }

    .form-left h2 {
        font-size: 2rem;
    }

    .timeline-item-modern {
        gap: 1.5rem;
    }

    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .timeline-connector-modern {
        margin-left: 23.5px;
    }

    .timeline-content h3 {
        font-size: 1.3rem;
    }

    .support-cta-card {
        padding: 3rem 2rem;
        border-radius: 32px;
    }

    .support-cta-card h2 {
        font-size: clamp(1.75rem, 5vw, 2rem);
    }

    .support-cta-buttons {
        flex-direction: column;
        gap: 0.875rem;
    }

    .support-cta-buttons .primary-btn,
    .support-cta-buttons .ghost-btn {
        width: 100%;
        justify-content: center;
        display: flex;
    }

    .cta-assurance-support {
        flex-direction: column;
        gap: 0.75rem;
        font-size: 0.9rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .support-hero-modern {
        padding: 1.5rem 1rem;
        border-radius: 24px;
    }

    .support-hero-content h1 {
        font-size: 1.75rem;
    }

    .stat-card-support {
        padding: 1.25rem;
    }

    .contact-channels-section,
    .support-faq-section {
        padding: 2rem 1.25rem;
        border-radius: 20px;
    }

    .support-highlight-card,
    .contact-channel-card,
    .service-card-modern {
        padding: 1.5rem;
        border-radius: 18px;
    }

    .contact-form-card-modern {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .faq-item-modern summary {
        padding: 1.25rem 1.5rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }

    .support-cta-card {
        padding: 2rem 1.5rem;
        border-radius: 28px;
    }
}

/* Prevent horizontal overflow */
@media (max-width: 768px) {
    .support-page-modern {
        overflow-x: hidden;
    }
}
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #eef5fb 0%, #dce9f2 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.login-page::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(96, 121, 145, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.login-page::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 214, 228, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(50px, 50px) scale(1.1);
  }
}

.login-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 32px;
  box-shadow: 0 40px 120px rgba(17, 17, 17, 0.15);
  overflow: hidden;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(96, 121, 145, 0.2);
}

/* Left Section - Form */
.login-form-section {
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 700px;
}

.login-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 2rem;
}

.login-logo img {
  height: 50px;
  width: auto;
}

.login-content {
  flex: 1 1;
}

.login-content h1 {
  font-size: 2.5rem;
  margin: 0 0 0.5rem;
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.2;
}

.login-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0 0 2rem;
  line-height: 1.6;
}

/* Login Method Tabs */
.login-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0.75rem;
  gap: 0.75rem;
  margin-bottom: 2rem;
  background: rgba(96, 121, 145, 0.08);
  padding: 0.5rem;
  border-radius: 16px;
  border: 1px solid rgba(96, 121, 145, 0.15);
}

.tab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.tab-btn svg {
  width: 18px;
  height: 18px;
  transition: all 0.3s ease;
}

.tab-btn:hover:not(.active) {
  color: var(--primary);
  background: rgba(96, 121, 145, 0.1);
}

.tab-btn.active {
  background: linear-gradient(135deg, #0f1419, #20262d);
  color: #f6fbff;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(96, 121, 145, 0.3),
    0 2px 8px rgba(96, 121, 145, 0.2);
}

.tab-btn.active svg {
  transform: scale(1.1);
}

/* Forms */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-group label {
  font-weight: 600;
  color: var(--secondary);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Regular Input Fields */
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid rgba(96, 121, 145, 0.2);
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 500;
  background: var(--surface-soft);
  transition: all 0.3s ease;
  outline: none;
  font-family: inherit;
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="email"]:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(96, 121, 145, 0.1);
}

.form-group input::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

/* Phone Input with Prefix */
.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--surface-soft);
  border: 2px solid rgba(96, 121, 145, 0.2);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.input-wrapper:focus-within {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(96, 121, 145, 0.1);
}

.input-prefix {
  padding: 0 1rem;
  font-weight: 700;
  color: #1a1a1a;
  border-right: 2px solid rgba(96, 121, 145, 0.15);
  background: rgba(96, 121, 145, 0.12);
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.input-wrapper input {
  flex: 1 1;
  border: none;
  outline: none;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  background: transparent;
  font-family: inherit;
  font-weight: 500;
}

.input-wrapper input::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

/* Password Input with Toggle */
.password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-input-wrapper input {
  width: 100%;
  padding: 1rem 3.5rem 1rem 1.25rem;
  border: 2px solid rgba(96, 121, 145, 0.2);
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 500;
  background: var(--surface-soft);
  transition: all 0.3s ease;
  outline: none;
  font-family: inherit;
}

.password-input-wrapper input:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(96, 121, 145, 0.1);
}

.toggle-password {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s ease;
  border-radius: 8px;
}

.toggle-password:hover {
  background: rgba(96, 121, 145, 0.1);
  color: var(--primary);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
}

.forgot-password-link {
  align-self: flex-end;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: -0.25rem;
}

.forgot-password-link:hover {
  text-decoration: underline;
  color: var(--primary-dark);
}

/* OTP Inputs */
.otp-inputs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 0.75rem;
  gap: 0.75rem;
}

.otp-inputs input {
  width: 100%;
  aspect-ratio: 1;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  border: 2px solid rgba(96, 121, 145, 0.2);
  border-radius: 14px;
  background: var(--surface-soft);
  outline: none;
  transition: all 0.3s ease;
  color: var(--secondary);
}

.otp-inputs input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(96, 121, 145, 0.1);
  background: #fff;
  transform: scale(1.05);
}

.resend-btn {
  background: none;
  border: none;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  padding: 0.5rem 0;
  text-align: right;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  margin-top: 0.5rem;
}

.resend-btn:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Checkbox */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
  cursor: pointer;
  border-radius: 6px;
}

.form-checkbox label {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.form-checkbox a:hover {
  text-decoration: underline;
  color: var(--primary-dark);
}

/* Submit Button */
.submit-btn {
  background: linear-gradient(135deg, #0f1419, #20262d);
  color: #f6fbff;
  border: none;
  border-radius: 14px;
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(96, 121, 145, 0.3),
    0 2px 8px rgba(96, 121, 145, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(96, 121, 145, 0.4),
    0 5px 15px rgba(96, 121, 145, 0.2);
}

.submit-btn:active:not(:disabled) {
  transform: translateY(0);
}

.submit-btn:disabled {
  background: linear-gradient(135deg, #dce9f2, #cfdfe9);
  color: #5b6773;
  opacity: 1;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(26, 26, 26, 0.3);
  border-top-color: #1a1a1a;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.change-number-btn {
  background: transparent;
  border: 2px solid rgba(96, 121, 145, 0.3);
  color: var(--primary);
  border-radius: 14px;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.change-number-btn:hover {
  background: rgba(96, 121, 145, 0.1);
  border-color: var(--primary);
  transform: translateY(-1px);
}

/* Footer */
.login-footer {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(96, 121, 145, 0.1);
}

.login-footer a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.login-footer a:hover {
  text-decoration: underline;
  color: var(--primary-dark);
}

/* Right Section - Visual */
.login-visual-section {
  background: var(--gradient-dark);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.login-visual-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(96, 121, 145, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.visual-content {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 350px;
  margin-bottom: 3rem;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: floatCard 6s ease-in-out infinite;
}

.floating-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.floating-card h4 {
  color: #fff;
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  font-weight: 700;
}

.floating-card p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.9rem;
}

.card-1 {
  top: 0;
  left: 0;
  animation-delay: 0s;
}

.card-2 {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  animation-delay: 2s;
}

.card-3 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 4s;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(10px, -10px);
  }
}

.card-2 {
  animation-name: floatCard2;
}

@keyframes floatCard2 {

  0%,
  100% {
    transform: translateY(-50%);
  }

  50% {
    transform: translate(-10px, calc(-50% + 10px));
  }
}

.card-3 {
  animation-name: floatCard3;
}

@keyframes floatCard3 {

  0%,
  100% {
    transform: translateX(-50%);
  }

  50% {
    transform: translate(calc(-50% + 10px), 10px);
  }
}

.visual-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
  gap: 2rem;
  width: 100%;
  max-width: 500px;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  color: #fff;
  font-size: 2rem;
  margin: 0 0 0.5rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 968px) {
  .login-container {
    grid-template-columns: 1fr;
  }

  .login-visual-section {
    display: none;
  }

  .login-form-section {
    min-height: auto;
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 640px) {
  .login-page {
    padding: 1rem;
  }

  .login-form-section {
    padding: 2rem 1.5rem;
  }

  .login-content h1 {
    font-size: 2rem;
  }

  .login-tabs {
    gap: 0.5rem;
  }

  .tab-btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .tab-btn svg {
    width: 16px;
    height: 16px;
  }

  .otp-inputs {
    gap: 0.5rem;
  }

  .otp-inputs input {
    font-size: 1.25rem;
  }
}

/* ========================================
   SMALL BUSINESS LOAN PAGE - MODERN DESIGN
   ======================================== */

/* Hero Section */
.business-loan-page-modern {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

.business-loan-page-modern section {
    min-width: 0;
}

.business-hero-modern {
    background: linear-gradient(135deg,
            rgba(244, 249, 253, 0.98) 0%,
            rgba(233, 241, 247, 0.94) 35%,
            rgba(220, 232, 241, 0.88) 70%,
            rgba(206, 221, 233, 0.82) 100%);
    border-radius: 40px;
    padding: 4rem 3rem;
    margin: 2rem 0 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.12);
}

.business-hero-modern::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(190, 208, 223, 0.28) 0%, transparent 70%);
    pointer-events: none;
}

.business-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-gap: 3rem;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
    min-width: 0;
}

.business-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 0;
}

.business-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(248, 252, 255, 0.95);
    border: 2px solid rgba(96, 121, 145, 0.18);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-strong);
    width: -webkit-fit-content;
    width: fit-content;
    box-shadow: 0 8px 24px rgba(98, 124, 147, 0.12);
}

.business-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin: 0;
    font-weight: 700;
    color: var(--text-strong);
}

.business-hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

.business-highlights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.highlight-chip-business {
    background: rgba(248, 252, 255, 0.95);
    border-radius: 20px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(96, 121, 145, 0.14);
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    flex: 1 1 200px;
    max-width: calc(50% - 0.5rem);
    min-width: -webkit-max-content;
    min-width: max-content;
}

.chip-content {
    min-width: 0;
}

.highlight-chip-business:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(31, 45, 58, 0.14);
    border-color: rgba(96, 121, 145, 0.24);
}

.chip-icon-business {
    font-size: 2rem;
    line-height: 1;
}

.business-hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.business-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Hero Visual - Carousel */
.business-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    width: 100%;
}

.business-carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 450px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.15);
}

.business-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.business-carousel-slide.active {
    opacity: 1;
}

.business-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
}

.business-carousel-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.business-carousel-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.business-carousel-dots .dot.active {
    background: #ffffff;
    width: 16px;
    height: 16px;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.4);
}

.business-carousel-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.15);
}

/* Use Cases Section */
.business-uses-section {
    margin: 5rem 0;
}

.business-uses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem;
}

.business-use-card {
    background: rgba(248, 252, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(96, 121, 145, 0.14);
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.business-use-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(31, 45, 58, 0.14);
    border-color: rgba(96, 121, 145, 0.24);
}

.business-use-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.business-use-card h3 {
    margin: 0 0 0.75rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-strong);
}

.business-use-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Features Section - Bento Grid */
.business-features-section {
    margin: 5rem 0;
    padding: 4rem 3rem;
    background: rgba(240, 247, 252, 0.72);
    border-radius: 40px;
}

.business-features-bento {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem;
}

.feature-bento-business {
    background: rgba(248, 252, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 2rem;
    border: 1px solid rgba(96, 121, 145, 0.14);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.feature-bento-business:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(31, 45, 58, 0.14);
    border-color: rgba(96, 121, 145, 0.24);
}

.feature-bento-business.large {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(247, 251, 254, 0.98) 0%, rgba(226, 237, 245, 0.94) 100%);
}

.feature-bento-business.accent {
    background: linear-gradient(135deg, rgba(223, 234, 242, 0.96) 0%, rgba(244, 249, 253, 0.92) 100%);
}

.feature-bento-business h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-strong);
}

.feature-bento-business p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Eligibility Section */
.business-eligibility-modern {
    margin: 5rem 0;
}

.eligibility-business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem;
}

.eligibility-business-card {
    background: rgba(248, 252, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(96, 121, 145, 0.14);
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.eligibility-business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(31, 45, 58, 0.14);
    border-color: rgba(96, 121, 145, 0.24);
}

.eligibility-business-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.eligibility-business-card h4 {
    margin: 0 0 0.75rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-strong);
}

.eligibility-business-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Documents Section */
.business-documents-section {
    margin: 5rem 0;
}

.business-documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 2rem;
    gap: 2rem;
}

.document-category-business {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 2rem;
    border: 1px solid rgba(96, 121, 145, 0.15);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
}

.document-category-business:hover {
    box-shadow: 0 20px 50px rgba(96, 121, 145, 0.15);
}

.document-category-business.highlight {
    background: linear-gradient(135deg, #f7fbfe 0%, #FFF8E6 100%);
    border-color: rgba(96, 121, 145, 0.3);
}

.doc-category-header-business {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(96, 121, 145, 0.15);
}

.doc-category-icon-business {
    font-size: 2.5rem;
    line-height: 1;
}

.doc-category-header-business h3 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-strong);
}

.doc-list-business {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.doc-item-business {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.doc-bullet-business {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #0f1419 0%, #36424f 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.doc-item-business strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-strong);
    font-size: 0.95rem;
}

.doc-item-business p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Fees Section */
.business-fees-section {
    margin: 5rem 0;
}

.business-fees-table {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(96, 121, 145, 0.15);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.fees-row-business {
    display: grid;
    grid-template-columns: 2fr 1fr;
    padding: 1.75rem 2rem;
    border-bottom: 1px solid rgba(96, 121, 145, 0.1);
    grid-gap: 2rem;
    gap: 2rem;
    align-items: center;
    transition: background 0.2s ease;
    box-sizing: border-box;
    width: 100%;
}

.fees-row-business:hover {
    background: rgba(96, 121, 145, 0.04);
}

.fees-row-business:last-child {
    border-bottom: none;
}

.fees-header-business {
    background: linear-gradient(135deg, #0f1419 0%, #36424f 100%);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.fees-header-business:hover {
    background: linear-gradient(135deg, #0f1419 0%, #36424f 100%);
}

.fees-label-business {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fees-icon-business {
    font-size: 2rem;
    line-height: 1;
}

.fees-label-business strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-strong);
    font-size: 1.05rem;
}

.fees-header-business .fees-label-business strong,
.fees-header-business .fees-value-business {
    color: white;
}

.fees-label-business p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.3;
}

.fees-value-business {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.fees-value-business strong {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-strong);
}

.fees-value-business span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.fees-note-business {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: rgba(96, 121, 145, 0.08);
    border-left: 4px solid var(--primary-dark);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA Section */
.business-cta-section {
    margin: 5rem 0 3rem;
}

.business-cta-card {
    background: linear-gradient(135deg,
            rgba(96, 121, 145, 0.1) 0%,
            rgba(96, 121, 145, 0.05) 100%);
    border-radius: 40px;
    padding: 4rem 3rem;
    text-align: center;
    border: 2px solid rgba(96, 121, 145, 0.2);
    box-shadow: 0 20px 60px rgba(96, 121, 145, 0.15);
}

.business-cta-card h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0 0 1rem;
    color: var(--text-strong);
}

.business-cta-card p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.business-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.cta-features-list-business {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .business-hero-modern {
        padding: 3rem 2rem;
        border-radius: 32px;
    }

    .business-hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .business-features-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-bento-business.large {
        grid-column: span 2;
    }

    .floating-stat-business {
        padding: 0.75rem 1rem;
    }

    .floating-stat-business strong {
        font-size: 1.1rem;
    }

    .stat-1,
    .stat-2,
    .stat-3 {
        position: static;
        margin-top: 1rem;
        animation: none;
    }

    .business-visual-card {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .business-uses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .fees-row-business {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .fees-value-business {
        text-align: left;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .business-hero-modern {
        padding: 2rem 1.5rem;
        border-radius: 28px;
        margin: 1rem 0 3rem;
        width: 100%;
        max-width: 100%;
    }

    .business-hero-content h1 {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .business-hero-description {
        font-size: 1rem;
    }

    .business-highlights-grid {
        grid-template-columns: 1fr;
        gap: 0.875rem;
        min-width: 0;
    }

    .highlight-chip-business {
        padding: 1rem 1.25rem;
    }

    .business-hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .business-hero-cta .primary-btn,
    .business-hero-cta .ghost-btn {
        width: 100%;
        justify-content: center;
        display: flex;
    }

    .business-trust-badges {
        flex-direction: column;
        gap: 0.75rem;
        font-size: 0.85rem;
    }

    .business-uses-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .business-use-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .business-use-icon {
        font-size: 3rem;
    }

    .business-features-section {
        padding: 3rem 2rem;
        border-radius: 32px;
        width: 100%;
        max-width: 100%;
    }

    .business-features-bento {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .feature-bento-business.large {
        grid-column: span 1;
    }

    .feature-bento-business {
        padding: 1.5rem;
        border-radius: 24px;
    }

    .eligibility-business-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .eligibility-business-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .eligibility-business-icon {
        font-size: 3rem;
    }

    .business-documents-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .document-category-business {
        padding: 1.5rem;
        border-radius: 24px;
    }

    .doc-category-icon-business {
        font-size: 2rem;
    }

    .doc-category-header-business h3 {
        font-size: 1.2rem;
    }

    .fees-row-business {
        padding: 1.5rem 1.5rem;
    }

    .fees-icon-business {
        font-size: 1.75rem;
    }

    .fees-label-business strong {
        font-size: 0.95rem;
    }

    .fees-value-business strong {
        font-size: 1rem;
    }

    .business-cta-card {
        padding: 3rem 2rem;
        border-radius: 32px;
    }

    .business-cta-card h2 {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    .business-cta-card p {
        font-size: 1rem;
    }

    .business-cta-buttons {
        flex-direction: column;
        gap: 0.875rem;
    }

    .business-cta-buttons .primary-btn,
    .business-cta-buttons .ghost-btn {
        width: 100%;
        justify-content: center;
        display: flex;
    }

    .cta-features-list-business {
        flex-direction: column;
        gap: 0.75rem;
        font-size: 0.85rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .business-hero-modern {
        padding: 1.5rem 1rem;
        border-radius: 24px;
    }

    .business-loan-page-modern {
        overflow-x: hidden;
    }

    .business-loan-page-modern .business-hero-modern,
    .business-loan-page-modern .business-features-section,
    .business-loan-page-modern .business-cta-card {
        margin-left: 0;
        margin-right: 0;
    }

    .business-carousel {
        height: 320px;
    }

    .business-hero-content h1 {
        font-size: 1.75rem;
    }

    .business-hero-description {
        font-size: 0.9rem;
    }

    .chip-content strong {
        font-size: 1.1rem;
    }

    .chip-content span {
        font-size: 0.75rem;
    }

    .highlight-chip-business {
        padding: 0.875rem 1rem;
    }

    .business-features-section {
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }

    .feature-bento-business,
    .business-use-card,
    .eligibility-business-card,
    .document-category-business {
        padding: 1.25rem;
        border-radius: 18px;
    }

    .fees-row-business {
        padding: 1.25rem 1.25rem;
    }

    .business-cta-card {
        padding: 2rem 1.5rem;
        border-radius: 28px;
    }

    .cta-icon-large {
        font-size: 3.5rem;
    }
}

/* Prevent horizontal overflow */
@media (max-width: 768px) {
    .business-loan-page-modern {
        overflow-x: hidden;
    }

    .business-hero-grid,
    .business-features-bento,
    .business-uses-grid,
    .eligibility-business-grid,
    .business-documents-grid {
        width: 100%;
        max-width: 100%;
    }
}

/* EV Three-Wheeler Page Styles */

.ev-three-wheeler-page {
    background: linear-gradient(to right, #eef5fb 0%, #d4e2ec 50%, #c4d4e0 100%) !important;
    min-height: 100vh;
    padding-top: 3rem;
}

/* Hero Section */
.ev-hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap: 3rem;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 0;
}

.ev-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ev-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: -webkit-fit-content;
    width: fit-content;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(96, 121, 145, 0.15), rgba(96, 121, 145, 0.15));
    border: 1px solid rgba(96, 121, 145, 0.4);
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(96, 121, 145, 0.2);
}

.ev-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    margin: 0;
    background: linear-gradient(135deg, #9fb7c9, #0f1419);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.ev-hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-strong);
    margin: 0;
    font-weight: 600;
}

.ev-loan-summary {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f7fbfe, #eaf2f8);
    border-left: 4px solid #0f1419;
    border-radius: 12px;
}

.ev-loan-summary strong {
    color: #9fb7c9;
    font-weight: 700;
}

.ev-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.ev-key-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    grid-gap: 1rem;
    gap: 1rem;
    margin-top: 1rem;
}

.feature-badge {
    background: linear-gradient(135deg, #ffffff, #edf4f9);
    border: 1px solid rgba(96, 121, 145, 0.2);
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 8px 24px rgba(96, 121, 145, 0.08);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(96, 121, 145, 0.15);
    border-color: #0f1419;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0f1419, #9fb7c9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(96, 121, 145, 0.3);
}

.feature-badge strong {
    display: block;
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 0.15rem;
}

.feature-badge span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Hero Visual */
.ev-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ev-visual-card {
    background: linear-gradient(145deg, #f7fbfe, #eaf2f8);
    border-radius: 32px;
    padding: 2.5rem;
    border: 2px solid rgba(96, 121, 145, 0.2);
    box-shadow: 0 24px 60px rgba(96, 121, 145, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    overflow: hidden;
}

.ev-visual-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(96, 121, 145, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.ev-illustration-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.ev-glow-effect {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(96, 121, 145, 0.3), transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.ev-auto-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(96, 121, 145, 0.3));
    position: relative;
    z-index: 2;
    animation: evFloat 4s ease-in-out infinite;
}

@keyframes evFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.ev-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
    gap: 1rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.ev-stat {
    background: #ffffff;
    border: 1px solid rgba(96, 121, 145, 0.2);
    border-radius: 14px;
    padding: 1rem 0.75rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(96, 121, 145, 0.08);
}

.ev-stat strong {
    display: block;
    font-size: 1.15rem;
    color: #9fb7c9;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.ev-stat span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.3;
}

/* Benefits Section */
.ev-benefits-section {
    margin: 4rem 0;
}

.ev-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem;
}

.benefit-card {
    background: linear-gradient(135deg, #ffffff, #edf4f9);
    border: 1px solid rgba(96, 121, 145, 0.2);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 12px 32px rgba(96, 121, 145, 0.08);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(96, 121, 145, 0.15);
    border-color: #0f1419;
}

.benefit-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0f1419, #9fb7c9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    margin: 0 auto 1.25rem;
    box-shadow: 0 12px 28px rgba(96, 121, 145, 0.35);
}

.benefit-card h3 {
    margin: 0 0 0.75rem;
    font-size: 1.3rem;
    color: var(--secondary);
}

.benefit-card p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Eligibility Section */
.ev-eligibility-section {
    background: linear-gradient(135deg, #f7fbfe, #eaf2f8);
    border-radius: 32px;
    padding: 3rem 2.5rem;
    border: 2px solid rgba(96, 121, 145, 0.2);
    box-shadow: 0 24px 60px rgba(96, 121, 145, 0.1);
    margin: 4rem 0;
}

.ev-eligibility-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ev-eligibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    grid-gap: 1.25rem;
    gap: 1.25rem;
}

.ev-eligibility-card {
    background: #ffffff;
    border: 1px solid rgba(96, 121, 145, 0.2);
    border-radius: 20px;
    padding: 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 12px 32px rgba(96, 121, 145, 0.1);
    transition: all 0.3s ease;
}

.ev-eligibility-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(96, 121, 145, 0.15);
    border-color: #0f1419;
}

.ev-eligibility-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(96, 121, 145, 0.15), rgba(96, 121, 145, 0.15));
    border: 1px solid rgba(96, 121, 145, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    flex-shrink: 0;
}

.ev-eligibility-content h4 {
    margin: 0 0 0.4rem;
    font-size: 1.1rem;
    color: var(--secondary);
}

.ev-eligibility-content p {
    margin: 0;
    font-size: 1rem;
    color: #9fb7c9;
    font-weight: 700;
}

.ev-eligibility-note {
    background: rgba(96, 121, 145, 0.1);
    border: 1px solid rgba(96, 121, 145, 0.3);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.note-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f1419, #9fb7c9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.ev-eligibility-note p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-strong);
    font-weight: 600;
}

/* Documents Section */
.ev-documents-section {
    margin: 4rem 0;
}

.ev-documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem;
}

.ev-document-card {
    background: linear-gradient(135deg, #ffffff, #f9fafb);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
}

.ev-document-card.highlighted {
    background: linear-gradient(135deg, #f7fbfe, #eaf2f8);
    border-color: rgba(96, 121, 145, 0.4);
}

.ev-document-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
}

.ev-doc-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.ev-doc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0f1419, #9fb7c9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(96, 121, 145, 0.3);
}

.ev-doc-header h4 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--secondary);
}

.ev-doc-list {
    margin: 0;
    padding-left: 1.5rem;
    list-style: none;
}

.ev-doc-list li {
    position: relative;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 2;
    padding-left: 0.25rem;
}

.ev-doc-list li::before {
    content: "✓";
    position: absolute;
    left: -1.5rem;
    color: #0f1419;
    font-weight: 700;
    font-size: 1rem;
}

.ev-doc-note {
    margin: 0.75rem 0 0;
    padding: 0.75rem 1rem;
    background: rgba(96, 121, 145, 0.1);
    border-left: 3px solid #0f1419;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #9fb7c9;
    font-weight: 600;
}

/* Fees Section */
.ev-fees-section {
    background: linear-gradient(135deg, #ffffff, #edf4f9);
    border-radius: 32px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(96, 121, 145, 0.2);
    box-shadow: 0 24px 60px rgba(96, 121, 145, 0.1);
    margin: 4rem 0;
}

.ev-fees-table-wrapper {
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    background: #ffffff;
}

.ev-fees-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.ev-fees-table thead {
    background: linear-gradient(135deg, #0f1419, #9fb7c9);
    color: #ffffff;
}

.ev-fees-table th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.03em;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.ev-fees-table tbody tr {
    border-bottom: 1px solid var(--border-soft);
    transition: background 0.2s ease;
}

.ev-fees-table tbody tr:hover {
    background: linear-gradient(135deg, #f9fafb, #edf4f9);
}

.ev-fees-table tbody tr.zero-fee {
    background: linear-gradient(135deg, #eaf2f8, #dce9f2);
}

.ev-fees-table tbody tr.zero-fee:hover {
    background: linear-gradient(135deg, #dce9f2, #cfdfe9);
}

.ev-fees-table tbody tr:last-child {
    border-bottom: none;
}

.ev-fees-table td {
    padding: 1.25rem 1.5rem;
    line-height: 1.7;
    color: var(--text-strong);
}

.ev-fees-table td strong {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1rem;
}

.ev-fees-table td:first-child {
    width: 30%;
    min-width: 200px;
}

.highlight-rate {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: linear-gradient(135deg, #eaf2f8, #dce9f2);
    border: 1px solid #c4d4e0;
    border-radius: 8px;
    color: #0f1419;
    font-weight: 700;
    font-size: 1rem;
}

.zero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #0f1419, #9fb7c9);
    color: #ffffff;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.zero-subtext {
    font-size: 0.9rem;
    color: #9fb7c9;
    font-weight: 600;
}

/* Process Section */
.ev-process-section {
    margin: 4rem 0;
}

.ev-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem;
}

.ev-process-step {
    background: linear-gradient(135deg, #ffffff, #edf4f9);
    border: 1px solid rgba(96, 121, 145, 0.2);
    border-radius: 20px;
    padding: 1.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    box-shadow: 0 14px 36px rgba(96, 121, 145, 0.08);
    transition: all 0.3s ease;
}

.ev-process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(96, 121, 145, 0.15);
    border-color: #0f1419;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f1419, #9fb7c9);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 10px 24px rgba(96, 121, 145, 0.35);
}

.step-content h3 {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
    color: var(--secondary);
}

.step-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA Section */
.ev-cta-section {
    margin: 4rem 0 2rem;
}

.ev-cta-card {
    background: linear-gradient(135deg, #0f1419, #9fb7c9);
    color: #ffffff;
    border-radius: 32px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    box-shadow: 0 24px 60px rgba(96, 121, 145, 0.3);
    position: relative;
    overflow: hidden;
}

.ev-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), transparent 60%);
    pointer-events: none;
}

.ev-cta-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
}

.ev-cta-card h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin: 0 0 1rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.ev-cta-card p {
    font-size: 1.15rem;
    margin: 0 0 2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.ev-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.ev-cta-buttons .primary-btn {
    background: #ffffff;
    color: #9fb7c9;
    border: 2px solid transparent;
}

.ev-cta-buttons .primary-btn:hover {
    background: transparent;
    border-color: #ffffff;
    color: #ffffff;
}

.ev-cta-buttons .ghost-btn {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.ev-cta-buttons .ghost-btn:hover {
    background: #ffffff;
    color: #9fb7c9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ev-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ev-key-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .ev-stats-grid {
        grid-template-columns: 1fr;
    }

    .ev-benefits-grid,
    .ev-eligibility-grid,
    .ev-documents-grid,
    .ev-process-grid {
        grid-template-columns: 1fr;
    }

    .ev-fees-table-wrapper {
        border-radius: 12px;
    }

    .ev-fees-table th,
    .ev-fees-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .ev-fees-table td:first-child {
        width: auto;
        min-width: 150px;
    }

    .ev-eligibility-section,
    .ev-fees-section {
        padding: 2rem 1.5rem;
    }

    .ev-cta-card {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {

    .ev-hero-cta,
    .ev-cta-buttons {
        flex-direction: column;
    }

    .ev-hero-cta .primary-btn,
    .ev-hero-cta .ghost-btn,
    .ev-cta-buttons .primary-btn,
    .ev-cta-buttons .ghost-btn {
        width: 100%;
    }

    .ev-key-features {
        grid-template-columns: 1fr;
    }
}

/* Two-Wheeler Loan Page Styles */

.two-wheeler-page {
    padding-top: 3rem;
    background: linear-gradient(to right, #eef5fb 0%, #d4e2ec 50%, #c4d4e0 100%);
    /* background-attachment: fixed removed — broken on iOS Safari */
    min-height: 100vh;
}

/* Hero Section */
.tw-hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap: 3rem;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 0;
}

.tw-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.tw-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: -webkit-fit-content;
    width: fit-content;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(223, 234, 242, 0.96), rgba(233, 241, 247, 0.96));
    border: 1px solid rgba(96, 121, 145, 0.4);
    color: #1a1a1a;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(96, 121, 145, 0.2);
}

.tw-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    margin: 0;
    color: #000000;
    line-height: 1.2;
}

.tw-hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-strong);
    margin: 0;
    font-weight: 600;
}

.tw-loan-summary {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f7fbfe, #eaf2f8);
    border-left: 4px solid #0f1419;
    border-radius: 12px;
}

.tw-loan-summary strong {
    color: #1a1a1a;
    font-weight: 700;
}

.tw-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.tw-key-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    grid-gap: 1rem;
    gap: 1rem;
    margin-top: 1rem;
}

.tw-feature-badge {
    background: linear-gradient(135deg, #ffffff, #edf4f9);
    border: 1px solid rgba(96, 121, 145, 0.2);
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 8px 24px rgba(96, 121, 145, 0.08);
    transition: all 0.3s ease;
}

.tw-feature-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(96, 121, 145, 0.15);
    border-color: #0f1419;
}

.tw-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0f1419, #20262d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(96, 121, 145, 0.3);
}

.tw-feature-badge strong {
    display: block;
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 0.15rem;
}

.tw-feature-badge span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Hero Visual */
.tw-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tw-visual-card {
    background: linear-gradient(145deg, #f7fbfe, #eaf2f8);
    border-radius: 32px;
    padding: 2.5rem;
    border: 2px solid rgba(96, 121, 145, 0.2);
    box-shadow: 0 24px 60px rgba(96, 121, 145, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    overflow: hidden;
}

.tw-visual-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(96, 121, 145, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.tw-illustration-wrapper {
    position: relative;
    width: 240px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.tw-glow-effect {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(96, 121, 145, 0.3), transparent 70%);
    border-radius: 50%;
    animation: twPulse 3s ease-in-out infinite;
}

@keyframes twPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.tw-bike-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(96, 121, 145, 0.3));
    position: relative;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.tw-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
    gap: 1rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.tw-stat {
    background: #ffffff;
    border: 1px solid rgba(96, 121, 145, 0.2);
    border-radius: 14px;
    padding: 1rem 0.75rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(96, 121, 145, 0.08);
}

.tw-stat strong {
    display: block;
    font-size: 1.15rem;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.tw-stat span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.3;
}

/* Benefits Section */
.tw-benefits-section {
    margin: 4rem 0;
}

.tw-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem;
}

.tw-benefit-card {
    background: linear-gradient(135deg, #ffffff, #edf4f9);
    border: 1px solid rgba(96, 121, 145, 0.2);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 12px 32px rgba(96, 121, 145, 0.08);
}

.tw-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(96, 121, 145, 0.15);
    border-color: #0f1419;
}

.tw-benefit-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0f1419, #20262d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    margin: 0 auto 1.25rem;
    box-shadow: 0 12px 28px rgba(96, 121, 145, 0.35);
}

.tw-benefit-card h3 {
    margin: 0 0 0.75rem;
    font-size: 1.3rem;
    color: #9fb7c9;
}

.tw-benefit-card p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Eligibility Section */
.tw-eligibility-section {
    background: linear-gradient(135deg, #f7fbfe, #eaf2f8);
    border-radius: 32px;
    padding: 3rem 2.5rem;
    border: 2px solid rgba(96, 121, 145, 0.2);
    box-shadow: 0 24px 60px rgba(96, 121, 145, 0.1);
    margin: 4rem 0;
}

.tw-eligibility-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tw-eligibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    grid-gap: 1.25rem;
    gap: 1.25rem;
}

.tw-eligibility-card {
    background: #ffffff;
    border: 1px solid rgba(96, 121, 145, 0.2);
    border-radius: 20px;
    padding: 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 12px 32px rgba(96, 121, 145, 0.1);
    transition: all 0.3s ease;
}

.tw-eligibility-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(96, 121, 145, 0.15);
    border-color: #0f1419;
}

.tw-eligibility-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(223, 234, 242, 0.92), rgba(233, 241, 247, 0.92));
    border: 1px solid rgba(96, 121, 145, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    flex-shrink: 0;
}

.tw-eligibility-content {
    min-width: 0;
}

.tw-eligibility-content h4 {
    margin: 0 0 0.4rem;
    font-size: 1.1rem;
    color: #1a1a1a;
    word-break: normal;
    overflow-wrap: normal;
    -webkit-hyphens: none;
            hyphens: none;
}

.tw-eligibility-content p {
    margin: 0;
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 700;
    word-break: normal;
    overflow-wrap: normal;
    -webkit-hyphens: none;
            hyphens: none;
}

.tw-eligibility-note {
    background: rgba(96, 121, 145, 0.1);
    border: 1px solid rgba(96, 121, 145, 0.3);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tw-note-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f1419, #20262d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.tw-eligibility-note p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-strong);
    font-weight: 600;
}

/* Documents Section */
.tw-documents-section {
    margin: 4rem 0;
}

.tw-documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem;
}

.tw-document-card {
    background: linear-gradient(135deg, #ffffff, #f9fafb);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
}

.tw-document-card.highlighted {
    background: linear-gradient(135deg, #f7fbfe, #eaf2f8);
    border-color: rgba(96, 121, 145, 0.4);
}

.tw-document-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
}

.tw-doc-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tw-doc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0f1419, #20262d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(96, 121, 145, 0.3);
}

.tw-doc-header h4 {
    margin: 0;
    font-size: 1.15rem;
    color: #1a1a1a;
}

.tw-doc-list {
    margin: 0;
    padding-left: 1.5rem;
    list-style: none;
}

.tw-doc-list li {
    position: relative;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 2;
    padding-left: 0.25rem;
}

.tw-doc-list li::before {
    content: "✓";
    position: absolute;
    left: -1.5rem;
    color: #0f1419;
    font-weight: 700;
    font-size: 1rem;
}

/* Fees Section */
.tw-fees-section {
    background: linear-gradient(135deg, #ffffff, #edf4f9);
    border-radius: 32px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(96, 121, 145, 0.2);
    box-shadow: 0 24px 60px rgba(96, 121, 145, 0.1);
    margin: 4rem 0;
}

.tw-fees-table-wrapper {
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    background: #ffffff;
}

.tw-fees-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.tw-fees-table thead {
    background: linear-gradient(135deg, #0f1419, #20262d);
    color: #ffffff;
}

.tw-fees-table th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.03em;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.tw-fees-table tbody tr {
    border-bottom: 1px solid var(--border-soft);
    transition: background 0.2s ease;
}

.tw-fees-table tbody tr:hover {
    background: linear-gradient(135deg, #f9fafb, #edf4f9);
}

.tw-fees-table tbody tr.tw-zero-fee {
    background: linear-gradient(135deg, #f7fbfe, #eaf2f8);
}

.tw-fees-table tbody tr.tw-zero-fee:hover {
    background: linear-gradient(135deg, #eaf2f8, #dce9f2);
}

.tw-fees-table tbody tr:last-child {
    border-bottom: none;
}

.tw-fees-table td {
    padding: 1.25rem 1.5rem;
    line-height: 1.7;
    color: var(--text-strong);
}

.tw-fees-table td strong {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1rem;
}

.tw-fees-table td:first-child {
    width: 30%;
    min-width: 200px;
}

.tw-highlight-rate {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: linear-gradient(135deg, #eaf2f8, #dce9f2);
    border: 1px solid #0f1419;
    border-radius: 8px;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1rem;
}

.tw-rate-note {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    font-style: italic;
}

.tw-fee-note {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    font-style: italic;
}

.tw-zero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #0f1419, #20262d);
    color: #ffffff;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.tw-zero-subtext {
    font-size: 0.9rem;
    color: #1a1a1a;
    font-weight: 600;
}

/* Process Section */
.tw-process-section {
    margin: 4rem 0;
}

.tw-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem;
}

.tw-process-step {
    background: linear-gradient(135deg, #ffffff, #edf4f9);
    border: 1px solid rgba(96, 121, 145, 0.2);
    border-radius: 20px;
    padding: 1.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    box-shadow: 0 14px 36px rgba(96, 121, 145, 0.08);
    transition: all 0.3s ease;
}

.tw-process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(96, 121, 145, 0.15);
    border-color: #0f1419;
}

.tw-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f1419, #20262d);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 10px 24px rgba(96, 121, 145, 0.35);
}

.tw-step-content h3 {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
    color: #1a1a1a;
}

.tw-step-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Calculator Teaser Section */
.tw-calculator-teaser {
    margin: 4rem 0;
}

.tw-calculator-card {
    background: linear-gradient(135deg, #9fb7c9, #0f1419);
    border-radius: 32px;
    padding: 3rem 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-gap: 2rem;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 24px 60px rgba(96, 121, 145, 0.3);
    position: relative;
    overflow: hidden;
}

.tw-calculator-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), transparent 60%);
    pointer-events: none;
}

.tw-calculator-content {
    position: relative;
    z-index: 1;
}

.tw-calculator-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin: 0 0 1rem;
    color: #ffffff;
}

.tw-calculator-content p {
    font-size: 1.05rem;
    margin: 0 0 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.tw-calculator-content .primary-btn {
    background: #ffffff;
    color: #1a1a1a;
    border: 2px solid transparent;
}

.tw-calculator-content .primary-btn:hover {
    background: transparent;
    border-color: #ffffff;
    color: #ffffff;
}

.tw-calculator-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.tw-calc-icon {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* CTA Section */
.tw-cta-section {
    margin: 4rem 0 2rem;
}

.tw-cta-card {
    background: linear-gradient(135deg, #20262d, #0f1419);
    color: #ffffff;
    border-radius: 32px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    box-shadow: 0 24px 60px rgba(96, 121, 145, 0.3);
    position: relative;
    overflow: hidden;
}

.tw-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), transparent 60%);
    pointer-events: none;
}

.tw-cta-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
}

.tw-cta-card h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin: 0 0 1rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.tw-cta-card p {
    font-size: 1.15rem;
    margin: 0 0 2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.tw-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.tw-cta-buttons .primary-btn {
    background: #ffffff;
    color: #1a1a1a;
    border: 2px solid transparent;
}

.tw-cta-buttons .primary-btn:hover {
    background: transparent;
    border-color: #ffffff;
    color: #ffffff;
}

.tw-cta-buttons .ghost-btn {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.tw-cta-buttons .ghost-btn:hover {
    background: #ffffff;
    color: #1a1a1a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tw-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tw-key-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .tw-stats-grid {
        grid-template-columns: 1fr;
    }

    .tw-benefits-grid,
    .tw-eligibility-grid,
    .tw-documents-grid,
    .tw-process-grid {
        grid-template-columns: 1fr;
    }

    .tw-fees-table-wrapper {
        border-radius: 12px;
    }

    .tw-fees-table th,
    .tw-fees-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .tw-fees-table td:first-child {
        width: auto;
        min-width: 150px;
    }

    .tw-eligibility-section,
    .tw-fees-section {
        padding: 2rem 1.5rem;
    }

    .tw-calculator-card,
    .tw-cta-card {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {

    .tw-hero-cta,
    .tw-cta-buttons {
        flex-direction: column;
    }

    .tw-hero-cta .primary-btn,
    .tw-hero-cta .ghost-btn,
    .tw-cta-buttons .primary-btn,
    .tw-cta-buttons .ghost-btn {
        width: 100%;
    }

    .tw-key-features {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   LOAN AGAINST PROPERTY PAGE STYLES
   ======================================== */

/* Hero Section - Modern Design */
/* Hero Section - Modern Design */
.property-hero-modern {
    background: linear-gradient(135deg,
            rgba(244, 249, 253, 0.95) 0%,
            rgba(233, 241, 247, 0.85) 25%,
            rgba(220, 232, 241, 0.75) 50%,
            rgba(212, 226, 236, 0.65) 75%,
            rgba(206, 221, 233, 0.5) 100%);
    border-radius: 40px;
    padding: 3rem;
    /* Reduced padding for more content space */
    margin: 2rem 0 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.12);
}

.property-hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(96, 121, 145, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.property-hero-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.3fr;
    /* Give much more space to the image on the right */
    grid-gap: 2rem;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.property-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 650px;
    padding-right: 0;
}

.property-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(96, 121, 145, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-strong);
    width: -webkit-fit-content;
    width: fit-content;
    box-shadow: 0 8px 24px rgba(96, 121, 145, 0.15);
}

.property-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin: 0;
    font-weight: 700;
    color: var(--text-strong);
}

.gradient-text {
    background: linear-gradient(135deg, #0f1419 0%, #36424f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.property-hero-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

.property-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    grid-gap: 1rem;
    gap: 1rem;
    margin: 1rem 0;
}

.highlight-chip-modern {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid rgba(96, 121, 145, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.highlight-chip-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(96, 121, 145, 0.2);
    border-color: rgba(96, 121, 145, 0.4);
}

.chip-icon-modern {
    font-size: 2rem;
    line-height: 1;
}

.chip-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.chip-content strong {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-strong);
    line-height: 1.2;
    white-space: normal;
    word-wrap: break-word;
}

.chip-content span {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1;
}

.property-hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.property-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Hero Visual */
.property-hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Simple Carousel - Clean Implementation */
.simple-carousel {
    position: relative;
    width: 100%;
    height: 550px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.15);
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.indicator-dot.active {
    background: #0f1419;
    transform: scale(1.2);
}


/* Floating stats removed */

/* Features Section - Bento Grid */
.property-features-section {
    margin: 5rem 0;
}

.features-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.5rem;
    gap: 1.5rem;
}

.feature-bento {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 2rem;
    border: 1px solid rgba(96, 121, 145, 0.15);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.feature-bento:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(96, 121, 145, 0.2);
    border-color: rgba(96, 121, 145, 0.3);
}

.feature-bento.large-card {
    grid-column: span 2;
    background: linear-gradient(135deg, #f7fbfe 0%, #FFF8E6 100%);
}

.feature-bento.accent-card {
    background: linear-gradient(135deg, rgba(96, 121, 145, 0.1) 0%, rgba(96, 121, 145, 0.05) 100%);
}

.feature-icon,
.feature-icon-large {
    font-size: 3rem;
    line-height: 1;
}

.feature-icon-large {
    font-size: 4rem;
}

.feature-bento h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-strong);
}

.feature-bento p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-list li {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Property Types Section */
.property-types-section {
    margin: 5rem 0;
    padding: 4rem 3rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 40px;
}

.property-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 2rem;
    gap: 2rem;
}

.property-type-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(96, 121, 145, 0.15);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.property-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(96, 121, 145, 0.2);
    border-color: rgba(96, 121, 145, 0.3);
}

.property-type-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.property-type-card h3 {
    margin: 0 0 1.25rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-strong);
}

.property-type-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.property-type-card li {
    color: var(--text-muted);
    font-size: 0.95rem;
    padding-left: 1.5rem;
    position: relative;
}

.property-type-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Eligibility Section */
.property-eligibility-modern {
    margin: 5rem 0;
}

.eligibility-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem;
}

.eligibility-card-modern {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(96, 121, 145, 0.15);
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.eligibility-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(96, 121, 145, 0.2);
    border-color: rgba(96, 121, 145, 0.3);
}

.eligibility-icon-modern {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.eligibility-card-modern h4 {
    margin: 0 0 0.75rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-strong);
}

.eligibility-card-modern p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Documents Section */
.property-documents-section {
    margin: 5rem 0;
}

.documents-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap: 2rem;
    gap: 2rem;
}

.document-category {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 2rem;
    border: 1px solid rgba(96, 121, 145, 0.15);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
}

.document-category:hover {
    box-shadow: 0 20px 50px rgba(96, 121, 145, 0.15);
}

.document-category.highlight-category {
    background: linear-gradient(135deg, #f7fbfe 0%, #FFF8E6 100%);
    border-color: rgba(96, 121, 145, 0.3);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(96, 121, 145, 0.15);
}

.category-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.category-header h3 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-strong);
}

.document-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.document-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.doc-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #0f1419 0%, #36424f 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.document-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-strong);
    font-size: 0.95rem;
}

.document-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Fees Section */
.property-fees-section {
    margin: 5rem 0;
    padding: 4rem 3rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 40px;
}

.fees-table-modern {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(96, 121, 145, 0.15);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.fees-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    padding: 1.75rem 2rem;
    border-bottom: 1px solid rgba(96, 121, 145, 0.1);
    grid-gap: 2rem;
    gap: 2rem;
    align-items: center;
    transition: background 0.2s ease;
}

.fees-row:hover {
    background: rgba(96, 121, 145, 0.04);
}

.fees-row:last-child {
    border-bottom: none;
}

.fees-header {
    background: linear-gradient(135deg, #0f1419 0%, #36424f 100%);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.fees-header:hover {
    background: linear-gradient(135deg, #0f1419 0%, #36424f 100%);
}

.fees-label {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fees-icon {
    font-size: 2rem;
    line-height: 1;
}

.fees-label strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-strong);
    font-size: 1.05rem;
}

.fees-header .fees-label strong,
.fees-header .fees-value strong {
    color: white;
}

.fees-label p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.3;
}

.fees-value {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.fees-value strong {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-strong);
}

.fees-value span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.fees-note {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: rgba(96, 121, 145, 0.08);
    border-left: 4px solid var(--primary-dark);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA Section */
.property-cta-section {
    margin: 5rem 0 3rem;
}

.property-cta-card {
    background: linear-gradient(135deg,
            rgba(96, 121, 145, 0.1) 0%,
            rgba(96, 121, 145, 0.05) 100%);
    border-radius: 40px;
    padding: 4rem 3rem;
    text-align: center;
    border: 2px solid rgba(96, 121, 145, 0.2);
    box-shadow: 0 20px 60px rgba(96, 121, 145, 0.15);
}

.cta-icon-large {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.property-cta-card h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0 0 1rem;
    color: var(--text-strong);
}

.property-cta-card p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.property-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.cta-assurance {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .property-hero-modern {
        padding: 3rem 2rem;
        border-radius: 32px;
    }

    .property-hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .features-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-bento.large-card {
        grid-column: span 2;
    }

    .floating-stat {
        padding: 0.75rem 1rem;
    }

    .floating-stat strong {
        font-size: 1.1rem;
    }

    .stat-1,
    .stat-2,
    .stat-3 {
        position: static;
        margin-top: 1rem;
        animation: none;
    }

    .property-visual-card {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .fees-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .fees-value {
        text-align: left;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .property-hero-modern {
        padding: 2rem 1.5rem;
        border-radius: 28px;
        margin: 1rem 0 3rem;
    }

    .property-hero-content h1 {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .property-hero-description {
        font-size: 1rem;
    }

    .property-highlights-grid {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .highlight-chip-modern {
        padding: 1rem 1.25rem;
    }

    .property-hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .property-hero-cta .primary-btn,
    .property-hero-cta .ghost-btn {
        width: 100%;
        justify-content: center;
        display: flex;
    }

    .property-trust-badges {
        flex-direction: column;
        gap: 0.75rem;
        font-size: 0.85rem;
    }

    .features-bento-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .feature-bento.large-card {
        grid-column: span 1;
    }

    .feature-bento {
        padding: 1.5rem;
        border-radius: 24px;
    }

    .feature-icon,
    .feature-icon-large {
        font-size: 2.5rem;
    }

    .feature-bento h3 {
        font-size: 1.2rem;
    }

    .property-types-section {
        padding: 3rem 2rem;
        border-radius: 32px;
    }

    .property-types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .property-type-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .property-type-icon {
        font-size: 3rem;
    }

    .eligibility-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .eligibility-card-modern {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .eligibility-icon-modern {
        font-size: 3rem;
    }

    .documents-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .document-category {
        padding: 1.5rem;
        border-radius: 24px;
    }

    .category-icon {
        font-size: 2rem;
    }

    .category-header h3 {
        font-size: 1.2rem;
    }

    .property-fees-section {
        padding: 3rem 2rem;
        border-radius: 32px;
    }

    .fees-row {
        padding: 1.5rem 1.5rem;
    }

    .fees-icon {
        font-size: 1.75rem;
    }

    .fees-label strong {
        font-size: 0.95rem;
    }

    .fees-value strong {
        font-size: 1rem;
    }

    .property-cta-card {
        padding: 3rem 2rem;
        border-radius: 32px;
    }

    .cta-icon-large {
        font-size: 4rem;
    }

    .property-cta-card h2 {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    .property-cta-card p {
        font-size: 1rem;
    }

    .property-cta-buttons {
        flex-direction: column;
        gap: 0.875rem;
    }

    .property-cta-buttons .primary-btn,
    .property-cta-buttons .ghost-btn {
        width: 100%;
        justify-content: center;
        display: flex;
    }

    .cta-assurance {
        flex-direction: column;
        gap: 0.75rem;
        font-size: 0.85rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .property-hero-modern {
        padding: 1.5rem 1rem;
        border-radius: 24px;
    }

    .property-hero-content h1 {
        font-size: 1.75rem;
    }

    .property-hero-description {
        font-size: 0.9rem;
    }

    .chip-content strong {
        font-size: 1.1rem;
    }

    .chip-content span {
        font-size: 0.75rem;
    }

    .highlight-chip-modern {
        padding: 0.875rem 1rem;
    }

    .property-types-section,
    .property-fees-section {
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }

    .feature-bento {
        padding: 1.25rem;
        border-radius: 20px;
    }

    .property-type-card,
    .eligibility-card-modern,
    .document-category {
        padding: 1.25rem;
        border-radius: 18px;
    }

    .fees-row {
        padding: 1.25rem 1.25rem;
    }

    .property-cta-card {
        padding: 2rem 1.5rem;
        border-radius: 28px;
    }

    .cta-icon-large {
        font-size: 3.5rem;
    }
}

/* Prevent horizontal overflow */
@media (max-width: 768px) {
    .property-loan-page {
        overflow-x: hidden;
    }

    .property-hero-grid,
    .features-bento-grid,
    .property-types-grid,
    .eligibility-cards-grid,
    .documents-container {
        width: 100%;
        max-width: 100%;
    }
}
.payday-page--salaryadda {
  --payday-deep: #0f1720;
  --payday-deep-2: #36424f;
  --payday-sage: #607991;
  --payday-sage-soft: #dce8f1;
  --payday-cream: #f4f9fd;
  --payday-text: #1b263b;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  color: var(--payday-text);
}

.payday-sa-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  grid-gap: 2rem;
  gap: 2rem;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(96, 121, 145, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(244, 249, 253, 0.98), rgba(220, 232, 241, 0.78)),
    #fff;
  border-radius: 36px;
  padding: 2.5rem;
  border: 1px solid rgba(96, 121, 145, 0.12);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.1);
}

.payday-sa-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.35rem;
  min-width: 0;
  max-width: 900px;
}

.payday-sa-hero-side {
  display: flex;
  flex-direction: column;
  min-width: 0;
  justify-content: center;
}

.payday-sa-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.payday-sa-hero-image {
  width: min(100%, 410px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 36px rgba(15, 23, 42, 0.16));
}

.payday-sa-snapshot-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  grid-gap: 1.1rem;
  gap: 1.1rem;
  padding: 1.3rem;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(249, 252, 255, 0.98), rgba(233, 241, 247, 0.94)),
    radial-gradient(circle at top right, rgba(190, 208, 223, 0.22), transparent 50%);
  border: 1px solid rgba(96, 121, 145, 0.14);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.payday-sa-snapshot-section {
  margin-top: -0.25rem;
}

.payday-sa-snapshot-kicker {
  display: inline-flex;
  align-items: center;
  width: -webkit-fit-content;
  width: fit-content;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(96, 121, 145, 0.2);
  color: var(--payday-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 24px rgba(96, 121, 145, 0.1);
}

.payday-sa-snapshot-copy {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.payday-sa-snapshot-copy h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.4vw, 2.4rem);
  line-height: 1.06;
  color: var(--payday-deep);
}

.payday-sa-snapshot-copy p,
.payday-sa-snapshot-metric span,
.payday-sa-snapshot-note li {
  margin: 0;
  color: #5b6773;
  color: var(--text-muted, #5b6773);
  line-height: 1.6;
}

.payday-sa-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 0.85rem;
  gap: 0.85rem;
}

.payday-sa-snapshot-metric {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(96, 121, 145, 0.12);
}

.payday-sa-snapshot-metric strong {
  display: block;
  font-size: 1rem;
  color: var(--payday-deep);
  margin-bottom: 0.3rem;
}

.payday-sa-snapshot-footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(96, 121, 145, 0.12);
}

.payday-sa-snapshot-note h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--payday-deep);
}

.payday-sa-snapshot-note ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-gap: 0.45rem;
  gap: 0.45rem;
}

.payday-sa-snapshot-note li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.95rem;
}

.payday-sa-snapshot-note li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: rgba(96, 121, 145, 0.88);
}

.payday-sa-snapshot-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #607991, #050505);
  background: linear-gradient(135deg, var(--primary, #607991), var(--primary-dark, #050505));
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.payday-sa-snapshot-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.payday-sa-badge,
.payday-sa-section-heading span,
.payday-sa-qualify-card > span,
.payday-sa-bottom-cta span {
  display: inline-flex;
  align-items: center;
  width: -webkit-fit-content;
  width: fit-content;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(96, 121, 145, 0.22);
  color: var(--payday-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 24px rgba(96, 121, 145, 0.12);
}

.payday-sa-hero-copy h1 {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.98;
  color: var(--payday-deep);
  font-weight: 800;
}

.payday-sa-hero-copy h1 span {
  display: block;
  color: var(--payday-sage);
}

.payday-sa-subcopy {
  max-width: 680px;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(27, 38, 59, 0.86);
}

.payday-sa-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.payday-sa-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.payday-sa-trust span {
  padding: 0.8rem 1rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(96, 121, 145, 0.14);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
  font-weight: 600;
}
.payday-sa-section-heading h2,
.payday-sa-qualify-card h2,
.payday-sa-bottom-cta h2 {
  margin: 0.4rem 0 0.8rem;
  line-height: 1.1;
}

.payday-sa-section-heading p,
.payday-sa-feature-card p,
.payday-sa-use-card p,
.payday-sa-step-card p,
.payday-sa-qualify-card p,
.payday-sa-faq-item p,
.payday-sa-bottom-cta p {
  margin: 0;
  line-height: 1.65;
}
.payday-sa-stat-card strong {
  display: block;
  font-size: 1.05rem;
}

.payday-sa-stat-card span {
  display: block;
  margin-top: 0.35rem;
  color: #5b6773;
  color: var(--text-muted, #5b6773);
  font-size: 0.9rem;
}
.payday-sa-qualify-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-gap: 0.75rem;
  gap: 0.75rem;
}

.payday-sa-qualify-card li {
  position: relative;
  padding-left: 1.45rem;
}

.payday-sa-qualify-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(96, 121, 145, 0.88);
}

.payday-sa-stats,
.payday-sa-feature-grid,
.payday-sa-use-grid,
.payday-sa-steps,
.payday-sa-faq-grid,
.payday-sa-qualify {
  display: grid;
  grid-gap: 1.25rem;
  gap: 1.25rem;
}

.payday-sa-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.payday-sa-stat-card,
.payday-sa-feature-card,
.payday-sa-use-card,
.payday-sa-step-card,
.payday-sa-qualify-card,
.payday-sa-faq-item {
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(96, 121, 145, 0.12);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.payday-sa-stat-card {
  padding: 1.35rem 1.4rem;
  background: linear-gradient(135deg, rgba(247, 251, 254, 0.98), rgba(226, 237, 245, 0.92));
}

.payday-sa-section {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.payday-sa-section--accent {
  background: linear-gradient(135deg, rgba(244, 249, 253, 0.95), rgba(233, 241, 247, 0.82));
  border-radius: 34px;
  padding: 2rem;
}

.payday-sa-section-heading {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  max-width: 760px;
}

.payday-sa-section-heading h2,
.payday-sa-bottom-cta h2,
.payday-sa-qualify-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--payday-deep);
}

.payday-sa-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.payday-sa-feature-card,
.payday-sa-use-card,
.payday-sa-step-card,
.payday-sa-qualify-card,
.payday-sa-faq-item {
  padding: 1.5rem;
}

.payday-sa-feature-highlight {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--payday-sage-soft);
  color: var(--payday-deep);
  font-size: 0.8rem;
  font-weight: 700;
}

.payday-sa-feature-card h3,
.payday-sa-use-card h3,
.payday-sa-step-card h3 {
  margin: 0 0 0.6rem;
  color: var(--payday-deep);
  font-size: 1.25rem;
}

.payday-sa-use-grid,
.payday-sa-steps,
.payday-sa-qualify {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.payday-sa-use-index,
.payday-sa-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(223, 234, 242, 0.92);
  color: #0f1720;
  color: var(--text-strong, #0f1720);
  font-weight: 700;
}

.payday-sa-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.payday-sa-step-card {
  position: relative;
  overflow: hidden;
}

.payday-sa-step-card::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--payday-sage), rgba(190, 208, 223, 0.95));
}

.payday-sa-qualify-card {
  padding: 1.8rem;
}

.payday-sa-qualify {
  grid-template-columns: repeat(2, minmax(320px, 460px));
  justify-content: center;
}

.payday-sa-qualify-card ul {
  margin-top: 1.1rem;
}

.payday-sa-qualify-card--dark {
  background: linear-gradient(135deg, #0f1720, var(--payday-deep-2));
  background: linear-gradient(135deg, var(--text-strong, #0f1720), var(--payday-deep-2));
  color: #fff;
}

.payday-sa-qualify-card--dark h2 {
  color: #fff;
}

.payday-sa-qualify-card--dark p,
.payday-sa-bottom-cta p {
  color: rgba(255, 255, 255, 0.82);
}

.payday-sa-mini-points {
  display: grid;
  grid-gap: 0.75rem;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.payday-sa-mini-points strong {
  display: block;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.payday-sa-faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.payday-sa-faq-item summary {
  cursor: pointer;
  list-style: none;
  color: var(--payday-deep);
  font-weight: 700;
}

.payday-sa-faq-item summary::-webkit-details-marker {
  display: none;
}

.payday-sa-faq-item summary::after {
  content: '+';
  float: right;
  color: var(--payday-sage);
  font-size: 1.3rem;
  line-height: 1;
}

.payday-sa-faq-item[open] summary::after {
  content: '-';
}

.payday-sa-faq-item p {
  margin-top: 1rem;
}

.payday-sa-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 2rem 2.2rem;
  border-radius: 34px;
  background: linear-gradient(135deg, #0f1720, var(--payday-deep-2));
  background: linear-gradient(135deg, var(--text-strong, #0f1720), var(--payday-deep-2));
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.2);
}

.payday-sa-bottom-cta h2 {
  color: #fff;
}

@media (max-width: 1100px) {
  .payday-sa-hero,
  .payday-sa-snapshot-card,
  .payday-sa-feature-grid,
  .payday-sa-use-grid,
  .payday-sa-steps,
  .payday-sa-qualify,
  .payday-sa-faq-grid {
    grid-template-columns: 1fr;
  }

  .payday-sa-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .payday-sa-snapshot-grid {
    grid-template-columns: 1fr 1fr;
  }

  .payday-sa-snapshot-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .payday-sa-bottom-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .payday-page--salaryadda {
    gap: 1.5rem;
  }

  .payday-sa-hero,
  .payday-sa-section--accent,
  .payday-sa-bottom-cta {
    padding: 1.5rem;
    border-radius: 28px;
  }

  .payday-sa-stats,
  .payday-sa-snapshot-grid,
  .payday-sa-offer-grid,
  .payday-sa-faq-grid {
    grid-template-columns: 1fr;
  }

  .payday-sa-cta,
  .payday-sa-trust {
    flex-direction: column;
    align-items: stretch;
  }

  .payday-sa-hero-copy h1 {
    font-size: clamp(2.25rem, 11vw, 3.8rem);
  }
}

.policies-page {
    background: linear-gradient(to right, #eef5fb, #c4d4e0);
    min-height: 100vh;
}

.policies-hero {
    background: linear-gradient(135deg, #0f1419 0%, #36424f 100%);
    color: white;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.policies-container {
    max-width: 900px;
    margin: 0 auto;
}

.policies-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
}

.policies-hero h1 {
    font-size: 3rem;
    margin: 0 0 1rem 0;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.policies-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.policies-main {
    padding: 4rem 2rem;
    background: linear-gradient(to right, #eef5fb, #c4d4e0);
}

.policies-intro {
    background: linear-gradient(to right, #f7fbfe, #edf4f9);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.policies-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #000000;
    margin: 0;
}

.policies-section {
    background: linear-gradient(to right, #f7fbfe, #edf4f9);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.policies-section h2 {
    color: #36424f;
    font-size: 1.4rem;
    margin: 0 0 1.5rem 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.policies-section p {
    line-height: 1.8;
    color: #000000;
    margin: 0 0 1rem 0;
    font-size: 1rem;
}

.policies-section ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.policies-section ul li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    line-height: 1.7;
    color: #000000;
    font-size: 1rem;
}

.policies-section ul li::before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: #36424f;
    font-weight: bold;
    font-size: 1.5rem;
}

.policies-highlight {
    background: linear-gradient(135deg, #edf4f9 0%, #dce9f2 100%);
    border-left: 4px solid #36424f;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 4px;
    color: #2d3748;
    font-size: 0.95rem;
    line-height: 1.6;
}

.policies-highlight strong {
    color: #36424f;
    font-weight: 600;
}

.policies-contact {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-label {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.95rem;
}

.contact-item a {
    color: #36424f;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #0f1419;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .policies-hero {
        padding: 4rem 1.5rem 2.5rem;
    }

    .policies-hero h1 {
        font-size: 2.25rem;
    }

    .policies-main {
        padding: 3rem 1rem;
    }

    .policies-intro,
    .policies-section {
        padding: 1.5rem;
    }

    .policies-section h2 {
        font-size: 1.25rem;
    }

    .policies-contact {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ========================================
   TERMS & CONDITIONS PAGE - MODERN DESIGN
   ======================================== */

/* Hero Section */
.terms-hero {
    background: linear-gradient(135deg,
            rgba(244, 249, 253, 0.95) 0%,
            rgba(233, 241, 247, 0.85) 50%,
            rgba(220, 232, 241, 0.75) 100%);
    border-radius: 32px;
    padding: 3rem 2.5rem;
    margin: 2rem 0 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
}

.terms-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(96, 121, 145, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-strong);
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(96, 121, 145, 0.15);
}

.terms-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin: 0 0 1rem;
    font-weight: 700;
    color: var(--text-strong);
}

.terms-hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0 0 1.5rem;
}

.terms-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Table of Contents */
.terms-toc-section {
    margin: 0 0 4rem;
}

.terms-toc {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 2.5rem;
    border: 1px solid rgba(96, 121, 145, 0.15);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

.terms-toc h3 {
    margin: 0 0 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-strong);
    text-align: center;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 1rem;
    gap: 1rem;
}

.toc-item {
    background: rgba(96, 121, 145, 0.05);
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-strong);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(96, 121, 145, 0.1);
    text-align: center;
}

.toc-item:hover {
    background: linear-gradient(135deg, #0f1419 0%, #36424f 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(96, 121, 145, 0.3);
}

/* Content Section */
.terms-content-section {
    max-width: 900px;
    margin: 0 auto;
}

.terms-section {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(96, 121, 145, 0.15);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    scroll-margin-top: 100px;
}

.section-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.terms-section h2 {
    margin: 0 0 1.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-strong);
    border-bottom: 2px solid rgba(96, 121, 145, 0.2);
    padding-bottom: 0.75rem;
}

.terms-text {
    color: var(--text-muted);
    line-height: 1.8;
}

.terms-text p {
    margin: 0 0 1.25rem;
    font-size: 1rem;
}

.terms-text p:last-child {
    margin-bottom: 0;
}

.terms-text strong {
    color: var(--text-strong);
    font-weight: 700;
}

.terms-text a {
    color: var(--primary-dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(96, 121, 145, 0.3);
    transition: all 0.2s ease;
}

.terms-text a:hover {
    color: #36424f;
    border-bottom-color: #36424f;
}

/* Info Boxes */
.info-box {
    background: rgba(96, 121, 145, 0.08);
    border-left: 4px solid var(--primary-dark);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-box.warning {
    background: rgba(255, 193, 7, 0.08);
    border-left-color: #ffc107;
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.info-box strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-strong);
    font-size: 1.05rem;
}

.info-box p {
    margin: 0;
    font-size: 0.95rem;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(96, 121, 145, 0.15) 0%, rgba(96, 121, 145, 0.08) 100%);
    border: 2px solid rgba(96, 121, 145, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
}

.highlight-box p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--text-strong);
}

/* Lists */
.terms-list {
    margin: 1.5rem 0;
}

.list-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

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

.list-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #0f1419 0%, #36424f 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.list-item p {
    margin: 0;
}

.sub-list {
    margin: 1rem 0 0;
    padding-left: 1.5rem;
}

.sub-list li {
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.sub-list li::marker {
    color: var(--primary-dark);
}

/* Contact CTA Section */
.terms-contact-section {
    margin: 4rem 0 3rem;
}

.terms-contact-card {
    background: linear-gradient(135deg,
            rgba(96, 121, 145, 0.1) 0%,
            rgba(96, 121, 145, 0.05) 100%);
    border-radius: 32px;
    padding: 4rem 3rem;
    text-align: center;
    border: 2px solid rgba(96, 121, 145, 0.2);
    box-shadow: 0 20px 60px rgba(96, 121, 145, 0.15);
}

.contact-icon-large {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.terms-contact-card h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin: 0 0 1rem;
    color: var(--text-strong);
}

.terms-contact-card p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .terms-hero {
        padding: 2.5rem 2rem;
        border-radius: 28px;
    }

    .terms-toc {
        padding: 2rem;
        border-radius: 24px;
    }

    .toc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .terms-section {
        padding: 2rem;
        border-radius: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .terms-hero {
        padding: 2rem 1.5rem;
        border-radius: 24px;
        margin: 1rem 0 2rem;
    }

    .terms-hero h1 {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .terms-hero-description {
        font-size: 1rem;
    }

    .terms-meta {
        flex-direction: column;
        gap: 0.75rem;
        font-size: 0.9rem;
    }

    .terms-toc-section {
        margin: 0 0 3rem;
    }

    .terms-toc {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .terms-toc h3 {
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
    }

    .toc-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .toc-item {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .terms-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 18px;
    }

    .section-icon {
        font-size: 2.5rem;
    }

    .terms-section h2 {
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
    }

    .terms-text {
        font-size: 0.95rem;
    }

    .terms-text p {
        margin-bottom: 1rem;
    }

    .info-box {
        flex-direction: column;
        padding: 1.25rem;
        margin: 1.25rem 0;
    }

    .info-icon {
        font-size: 2rem;
    }

    .highlight-box {
        padding: 1.25rem;
        margin: 1.25rem 0;
    }

    .highlight-box p {
        font-size: 0.95rem;
    }

    .list-item {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .list-number {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }

    .terms-contact-card {
        padding: 3rem 2rem;
        border-radius: 28px;
    }

    .contact-icon-large {
        font-size: 4rem;
    }

    .terms-contact-card h2 {
        font-size: clamp(1.75rem, 5vw, 2rem);
    }

    .terms-contact-card p {
        font-size: 1rem;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 0.875rem;
    }

    .contact-buttons .primary-btn,
    .contact-buttons .ghost-btn {
        width: 100%;
        justify-content: center;
        display: flex;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .terms-hero {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }

    .terms-hero h1 {
        font-size: 1.75rem;
    }

    .terms-hero-description {
        font-size: 0.9rem;
    }

    .terms-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .terms-toc {
        padding: 1.25rem;
        border-radius: 18px;
    }

    .terms-toc h3 {
        font-size: 1.2rem;
    }

    .terms-section {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .section-icon {
        font-size: 2.25rem;
    }

    .terms-section h2 {
        font-size: 1.25rem;
    }

    .info-box,
    .highlight-box {
        padding: 1rem;
    }

    .terms-contact-card {
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }

    .contact-icon-large {
        font-size: 3.5rem;
    }
}

/* Prevent horizontal overflow */
@media (max-width: 768px) {
    .terms-page-modern {
        overflow-x: hidden;
    }

    .terms-hero-content,
    .terms-toc,
    .terms-section,
    .terms-contact-card {
        width: 100%;
        max-width: 100%;
    }
}

/* Print Styles */
@media print {
    .terms-hero {
        background: white;
        box-shadow: none;
    }

    .terms-toc {
        display: none;
    }

    .terms-section {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .terms-contact-section {
        display: none;
    }
}
/* ========================================
   DISCLAIMER PAGE - MODERN DESIGN
   ======================================== */

/* Reuse most styles from Terms & Conditions */
/* Hero Section */
.disclaimer-hero {
    background: linear-gradient(135deg,
            rgba(244, 249, 253, 0.95) 0%,
            rgba(233, 241, 247, 0.85) 50%,
            rgba(220, 232, 241, 0.75) 100%);
    border-radius: 32px;
    padding: 3rem 2.5rem;
    margin: 2rem 0 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
}

.disclaimer-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(96, 121, 145, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-strong);
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(96, 121, 145, 0.15);
}

.disclaimer-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin: 0 0 1rem;
    font-weight: 700;
    color: var(--text-strong);
}

.disclaimer-hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0 0 1.5rem;
}

.disclaimer-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Introduction Section */
.disclaimer-intro-section {
    margin: 0 0 3rem;
}

.disclaimer-intro-card {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 3rem;
    border: 1px solid rgba(96, 121, 145, 0.15);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

.intro-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.disclaimer-intro-card h2 {
    margin: 0 0 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-strong);
}

.disclaimer-intro-card p {
    margin: 0 0 1.25rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

.disclaimer-intro-card p:last-of-type {
    margin-bottom: 2rem;
}

.disclaimer-intro-card strong {
    color: var(--text-strong);
    font-weight: 700;
}

.disclaimer-intro-card a {
    color: var(--primary-dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(96, 121, 145, 0.3);
    transition: all 0.2s ease;
}

.disclaimer-intro-card a:hover {
    color: #36424f;
    border-bottom-color: #36424f;
}

/* Warning Box */
.warning-box-disclaimer {
    background: rgba(255, 193, 7, 0.08);
    border-left: 4px solid #ffc107;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.warning-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.warning-box-disclaimer strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-strong);
    font-size: 1.05rem;
}

.warning-box-disclaimer p {
    margin: 0;
    font-size: 0.95rem;
}

/* Content Section */
.disclaimer-content-section {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-section-card {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(96, 121, 145, 0.15);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    display: flex;
    gap: 2rem;
}

.section-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0f1419 0%, #36424f 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(96, 121, 145, 0.3);
}

.section-content-disclaimer {
    flex: 1 1;
}

.section-content-disclaimer h3 {
    margin: 0 0 1.25rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-strong);
}

.section-content-disclaimer p {
    margin: 0 0 1.25rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

.section-content-disclaimer p:last-child {
    margin-bottom: 0;
}

/* Info Box */
.info-box-disclaimer {
    background: rgba(96, 121, 145, 0.08);
    border-left: 4px solid var(--primary-dark);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon-disclaimer {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.info-box-disclaimer strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-strong);
    font-size: 1.05rem;
}

.info-box-disclaimer p {
    margin: 0;
    font-size: 0.95rem;
}

/* Highlight Box */
.highlight-box-disclaimer {
    background: linear-gradient(135deg, rgba(96, 121, 145, 0.15) 0%, rgba(96, 121, 145, 0.08) 100%);
    border: 2px solid rgba(96, 121, 145, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
}

.highlight-box-disclaimer p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--text-strong);
}

/* Liability Grid */
.liability-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.liability-item {
    background: rgba(96, 121, 145, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(96, 121, 145, 0.15);
}

.liability-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.liability-item strong {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-strong);
}

.liability-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.liability-item li {
    color: var(--text-muted);
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.liability-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Disclaimer Note */
.disclaimer-note {
    padding: 1.25rem;
    background: rgba(96, 121, 145, 0.05);
    border-radius: 12px;
    margin-top: 1rem;
    font-size: 0.95rem;
    font-style: italic;
}

/* Contact CTA Section */
.disclaimer-contact-section {
    margin: 4rem 0 3rem;
}

.disclaimer-contact-card {
    background: linear-gradient(135deg,
            rgba(96, 121, 145, 0.1) 0%,
            rgba(96, 121, 145, 0.05) 100%);
    border-radius: 32px;
    padding: 4rem 3rem;
    text-align: center;
    border: 2px solid rgba(96, 121, 145, 0.2);
    box-shadow: 0 20px 60px rgba(96, 121, 145, 0.15);
}

.disclaimer-contact-card h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin: 0 0 1rem;
    color: var(--text-strong);
}

.disclaimer-contact-card p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.contact-buttons-disclaimer {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .disclaimer-hero {
        padding: 2.5rem 2rem;
        border-radius: 28px;
    }

    .disclaimer-intro-card {
        padding: 2.5rem;
        border-radius: 24px;
    }

    .disclaimer-section-card {
        padding: 2rem;
        border-radius: 20px;
    }

    .liability-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .disclaimer-hero {
        padding: 2rem 1.5rem;
        border-radius: 24px;
        margin: 1rem 0 2rem;
    }

    .disclaimer-hero h1 {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .disclaimer-hero-description {
        font-size: 1rem;
    }

    .disclaimer-meta {
        flex-direction: column;
        gap: 0.75rem;
        font-size: 0.9rem;
    }

    .disclaimer-intro-card {
        padding: 2rem;
        border-radius: 20px;
    }

    .intro-icon {
        font-size: 3rem;
    }

    .disclaimer-intro-card h2 {
        font-size: 1.6rem;
    }

    .disclaimer-section-card {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 18px;
    }

    .section-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .section-content-disclaimer h3 {
        font-size: 1.3rem;
    }

    .warning-box-disclaimer,
    .info-box-disclaimer {
        flex-direction: column;
        padding: 1.25rem;
    }

    .warning-icon,
    .info-icon-disclaimer {
        font-size: 2rem;
    }

    .highlight-box-disclaimer {
        padding: 1.25rem;
    }

    .liability-grid {
        grid-template-columns: 1fr;
    }

    .liability-item {
        padding: 1.25rem;
    }

    .disclaimer-contact-card {
        padding: 3rem 2rem;
        border-radius: 28px;
    }

    .disclaimer-contact-card h2 {
        font-size: clamp(1.75rem, 5vw, 2rem);
    }

    .disclaimer-contact-card p {
        font-size: 1rem;
    }

    .contact-buttons-disclaimer {
        flex-direction: column;
        gap: 0.875rem;
    }

    .contact-buttons-disclaimer .primary-btn,
    .contact-buttons-disclaimer .ghost-btn {
        width: 100%;
        justify-content: center;
        display: flex;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .disclaimer-hero {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }

    .disclaimer-hero h1 {
        font-size: 1.75rem;
    }

    .disclaimer-intro-card {
        padding: 1.5rem;
        border-radius: 18px;
    }

    .disclaimer-intro-card h2 {
        font-size: 1.4rem;
    }

    .disclaimer-section-card {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .section-content-disclaimer h3 {
        font-size: 1.2rem;
    }

    .disclaimer-contact-card {
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }
}

/* Prevent horizontal overflow */
@media (max-width: 768px) {
    .disclaimer-page-modern {
        overflow-x: hidden;
    }

    .disclaimer-hero-content,
    .disclaimer-intro-card,
    .disclaimer-section-card,
    .disclaimer-contact-card {
        width: 100%;
        max-width: 100%;
    }
}

/* Print Styles */
@media print {
    .disclaimer-hero {
        background: white;
        box-shadow: none;
    }

    .disclaimer-section-card {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .disclaimer-contact-section {
        display: none;
    }
}
/* ========================================
   GRIEVANCE REDRESSAL PAGE - MODERN DESIGN
   ======================================== */

/* Hero Section */
.grievance-hero {
    background: linear-gradient(135deg,
            rgba(244, 249, 253, 0.95) 0%,
            rgba(233, 241, 247, 0.85) 50%,
            rgba(220, 232, 241, 0.75) 100%);
    border-radius: 32px;
    padding: 3rem 2.5rem;
    margin: 2rem 0 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
}

.grievance-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.grievance-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(96, 121, 145, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-strong);
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(96, 121, 145, 0.15);
}

.grievance-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin: 0 0 1rem;
    font-weight: 700;
    color: var(--text-strong);
}

.grievance-hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0 0 1.5rem;
}

.grievance-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Introduction Section */
.grievance-intro-section {
    margin: 0 0 3rem;
}

.grievance-intro-card {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 3rem;
    border: 1px solid rgba(96, 121, 145, 0.15);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

.intro-icon-grievance {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.grievance-intro-card h2 {
    margin: 0 0 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-strong);
}

.grievance-intro-card p {
    margin: 0 0 1.25rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

.grievance-intro-card strong {
    color: var(--text-strong);
    font-weight: 700;
}

/* Principles Grid */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem;
    margin-top: 2rem;
}

.principle-card {
    background: rgba(96, 121, 145, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(96, 121, 145, 0.15);
    transition: all 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(96, 121, 145, 0.2);
    border-color: rgba(96, 121, 145, 0.3);
}

.principle-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.principle-card strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--text-strong);
}

.principle-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Content Section */
.grievance-content-section {
    max-width: 900px;
    margin: 0 auto;
}

.grievance-section-card {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(96, 121, 145, 0.15);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    display: flex;
    gap: 2rem;
}

.grievance-section-card.highlight {
    background: linear-gradient(135deg, #f7fbfe 0%, #FFF8E6 100%);
    border-color: rgba(96, 121, 145, 0.3);
}

.grievance-section-card.rbi {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(76, 175, 80, 0.02) 100%);
    border-color: rgba(76, 175, 80, 0.3);
}

.section-number-grievance {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0f1419 0%, #36424f 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(96, 121, 145, 0.3);
}

.section-content-grievance {
    flex: 1 1;
}

.section-content-grievance h3 {
    margin: 0 0 1.25rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-strong);
}

.section-content-grievance p {
    margin: 0 0 1.25rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

/* Contact Methods Grid */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.contact-method-card {
    background: rgba(96, 121, 145, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(96, 121, 145, 0.15);
    transition: all 0.3s ease;
}

.contact-method-card.full-width {
    grid-column: 1 / -1;
}

.contact-method-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(96, 121, 145, 0.2);
    border-color: rgba(96, 121, 145, 0.3);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.contact-method-card h4 {
    margin: 0 0 0.75rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-strong);
}

.method-link {
    display: block;
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid rgba(96, 121, 145, 0.3);
    padding-bottom: 0.25rem;
    transition: all 0.2s ease;
}

.method-link:hover {
    color: #36424f;
    border-bottom-color: #36424f;
}

.contact-method-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.address-text {
    line-height: 1.6;
    font-size: 1rem !important;
}

/* Requirements List */
.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.requirement-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(96, 121, 145, 0.05);
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(96, 121, 145, 0.15);
}

.req-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0f1419 0%, #36424f 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.requirement-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-strong);
    font-size: 1.05rem;
}

.requirement-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* Timeline Box */
.timeline-box {
    background: rgba(96, 121, 145, 0.08);
    border-left: 4px solid var(--primary-dark);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.timeline-icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
}

.timeline-box strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-strong);
    font-size: 1.1rem;
}

.timeline-box p {
    margin: 0;
    font-size: 1rem;
}

/* Nodal Officer Card */
.nodal-officer-card {
    background: linear-gradient(135deg, rgba(96, 121, 145, 0.1) 0%, rgba(96, 121, 145, 0.05) 100%);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 1.5rem;
    border: 2px solid rgba(96, 121, 145, 0.3);
}

.nodal-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(96, 121, 145, 0.2);
}

.nodal-icon {
    font-size: 3.5rem;
    line-height: 1;
}

.nodal-header h4 {
    margin: 0 0 0.25rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-strong);
}

.nodal-header p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.nodal-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.nodal-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nodal-detail-item.full {
    grid-column: 1 / -1;
}

.detail-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 1.05rem;
    color: var(--text-strong);
    font-weight: 600;
}

.detail-value.link {
    color: var(--primary-dark);
    text-decoration: none;
    border-bottom: 2px solid rgba(96, 121, 145, 0.3);
    padding-bottom: 0.25rem;
    transition: all 0.2s ease;
}

.detail-value.link:hover {
    color: #36424f;
    border-bottom-color: #36424f;
}

.nodal-footer {
    background: white;
    padding: 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.nodal-footer p {
    margin: 0;
    font-size: 0.95rem;
}

/* RBI Channels Grid */
.rbi-channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.5rem;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.rbi-channel {
    background: rgba(76, 175, 80, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(76, 175, 80, 0.2);
    transition: all 0.3s ease;
}

.rbi-channel:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.2);
    border-color: rgba(76, 175, 80, 0.4);
}

.rbi-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.rbi-channel h4 {
    margin: 0 0 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-strong);
}

.rbi-link {
    display: inline-block;
    color: #2e7d32;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid rgba(76, 175, 80, 0.3);
    padding-bottom: 0.25rem;
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
}

.rbi-link:hover {
    color: #1b5e20;
    border-bottom-color: #1b5e20;
}

.timing {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* RBI Address Box */
.rbi-address-box {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.rbi-address-box strong {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-strong);
}

.rbi-address-box p {
    margin: 0 0 0.75rem;
    line-height: 1.7;
}

.note-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Resolution Section */
.resolution-section {
    margin: 5rem 0;
}

.resolution-card {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(96, 121, 145, 0.15);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

.resolution-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.resolution-card h2 {
    margin: 0 0 1.5rem;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-strong);
}

.resolution-card>p {
    margin: 0 0 2rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.resolution-highlight {
    background: linear-gradient(135deg, rgba(96, 121, 145, 0.1) 0%, rgba(96, 121, 145, 0.05) 100%);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(96, 121, 145, 0.2);
}

.resolution-highlight h3 {
    margin: 0 0 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-strong);
}

.resolution-highlight p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Compliments Section */
.compliments-section {
    margin: 3rem 0;
}

.compliments-card {
    background: linear-gradient(135deg,
            rgba(96, 121, 145, 0.1) 0%,
            rgba(96, 121, 145, 0.05) 100%);
    border-radius: 40px;
    padding: 4rem 3rem;
    text-align: center;
    border: 2px solid rgba(96, 121, 145, 0.2);
    box-shadow: 0 20px 60px rgba(96, 121, 145, 0.15);
}

.compliments-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.compliments-card h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin: 0 0 1rem;
    color: var(--text-strong);
}

.compliments-card p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    font-style: italic;
}

.compliments-cta {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .grievance-hero {
        padding: 2.5rem 2rem;
        border-radius: 28px;
    }

    .grievance-intro-card,
    .resolution-card {
        padding: 2.5rem;
        border-radius: 24px;
    }

    .grievance-section-card {
        padding: 2rem;
        border-radius: 20px;
    }

    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-methods-grid {
        grid-template-columns: 1fr;
    }

    .rbi-channels-grid {
        grid-template-columns: 1fr;
    }

    .nodal-details {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .grievance-hero {
        padding: 2rem 1.5rem;
        border-radius: 24px;
        margin: 1rem 0 2rem;
    }

    .grievance-hero h1 {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .grievance-hero-description {
        font-size: 1rem;
    }

    .grievance-meta {
        flex-direction: column;
        gap: 0.75rem;
        font-size: 0.9rem;
    }

    .grievance-intro-card,
    .resolution-card {
        padding: 2rem;
        border-radius: 20px;
    }

    .intro-icon-grievance,
    .resolution-icon {
        font-size: 3rem;
    }

    .grievance-intro-card h2,
    .resolution-card h2 {
        font-size: 1.6rem;
    }

    .principles-grid {
        grid-template-columns: 1fr;
    }

    .grievance-section-card {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 18px;
    }

    .section-number-grievance {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .section-content-grievance h3 {
        font-size: 1.3rem;
    }

    .contact-methods-grid {
        grid-template-columns: 1fr;
    }

    .nodal-officer-card {
        padding: 1.5rem;
    }

    .nodal-header {
        flex-direction: column;
        text-align: center;
    }

    .nodal-details {
        grid-template-columns: 1fr;
    }

    .rbi-channels-grid {
        grid-template-columns: 1fr;
    }

    .compliments-card {
        padding: 3rem 2rem;
        border-radius: 32px;
    }

    .compliments-card h2 {
        font-size: clamp(1.75rem, 5vw, 2rem);
    }

    .compliments-card p {
        font-size: 1rem;
    }

    .compliments-cta {
        flex-direction: column;
        gap: 0.875rem;
    }

    .compliments-cta .primary-btn,
    .compliments-cta .ghost-btn {
        width: 100%;
        justify-content: center;
        display: flex;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .grievance-hero {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }

    .grievance-hero h1 {
        font-size: 1.75rem;
    }

    .grievance-intro-card,
    .resolution-card {
        padding: 1.5rem;
        border-radius: 18px;
    }

    .grievance-section-card {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .nodal-officer-card {
        padding: 1.25rem;
    }

    .compliments-card {
        padding: 2rem 1.5rem;
        border-radius: 28px;
    }

    .compliments-icon {
        font-size: 4rem;
    }
}

/* Prevent horizontal overflow */
@media (max-width: 768px) {
    .grievance-page-modern {
        overflow-x: hidden;
    }
}
/* ========================================
   CONTACT PAGE - MODERN DESIGN
   ======================================== */

/* Hero Section */
.contact-hero-modern {
    background: linear-gradient(135deg,
            rgba(244, 249, 253, 0.95) 0%,
            rgba(233, 241, 247, 0.85) 50%,
            rgba(220, 232, 241, 0.75) 100%);
    border-radius: 32px;
    padding: 3rem 2.5rem;
    margin: 2rem 0 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(96, 121, 145, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-strong);
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(96, 121, 145, 0.15);
}

.contact-hero-modern h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin: 0 0 1rem;
    font-weight: 700;
    color: var(--text-strong);
}

.contact-hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

/* Main Section */
.contact-main-section {
    margin: 0 0 4rem;
}

.contact-container {
    display: grid;
    grid-template-columns: minmax(0, 400px) 1fr;
    grid-gap: 3rem;
    gap: 3rem;
    align-items: start;
    width: 100%;
    max-width: 100%;
}

/* Contact Info Side */
.contact-info-side {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 2.5rem;
    border: 1px solid rgba(96, 121, 145, 0.15);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

.contact-info-card h2 {
    margin: 0 0 0.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-strong);
}

.info-subtitle {
    margin: 0 0 2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.method-icon-contact {
    font-size: 2.5rem;
    line-height: 1;
}

.method-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.method-details strong {
    font-size: 1.05rem;
    color: var(--text-strong);
}

.method-details a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(96, 121, 145, 0.3);
    transition: all 0.2s ease;
    width: -webkit-fit-content;
    width: fit-content;
}

.method-details a:hover {
    color: #36424f;
    border-bottom-color: #36424f;
}

.method-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Social Connect */
.social-connect {
    padding-top: 2rem;
    border-top: 1px solid rgba(96, 121, 145, 0.15);
}

.social-connect h3 {
    margin: 0 0 1.25rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-strong);
}

.social-links-contact {
    display: flex;
    gap: 1rem;
}

.social-links-contact a {
    transition: transform 0.3s ease;
}

.social-links-contact a:hover {
    transform: translateY(-3px);
}

.social-links-contact img {
    width: 40px;
    height: 40px;
}

/* Contact Form Side */
.contact-form-card-main {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 3rem;
    border: 1px solid rgba(96, 121, 145, 0.15);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
    width: 100%;
    box-sizing: border-box;
}

.contact-form-card-main h2 {
    margin: 0 0 0.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-strong);
}

.form-subtitle {
    margin: 0 0 2.5rem;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.contact-form-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
    gap: 1.5rem;
}

.form-group-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-contact.full-width {
    grid-column: 1 / -1;
}

.form-group-contact label {
    font-weight: 600;
    color: var(--text-strong);
    font-size: 0.95rem;
}

.form-group-contact input,
.form-group-contact select,
.form-group-contact textarea {
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(96, 121, 145, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: white;
}

.form-group-contact input:focus,
.form-group-contact select:focus,
.form-group-contact textarea:focus {
    outline: none;
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 3px rgba(96, 121, 145, 0.1);
}

.form-group-contact textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #0f1419 0%, #36424f 100%);
    color: white;
    border: none;
    padding: 1.125rem 3rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(96, 121, 145, 0.3);
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(96, 121, 145, 0.4);
}

.form-success-contact {
    grid-column: 1 / -1;
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid #4caf50;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #2e7d32;
}

.success-icon-contact {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #4caf50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.form-success-contact p {
    margin: 0;
    font-weight: 600;
    line-height: 1.6;
}

/* Quick Links Section */
.contact-quick-links-section {
    margin: 4rem 0;
    text-align: center;
}

.contact-quick-links-section h3 {
    margin: 0 0 2.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-strong);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem;
}

.quick-link-card {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    border: 1px solid rgba(96, 121, 145, 0.15);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(96, 121, 145, 0.2);
    border-color: rgba(96, 121, 145, 0.3);
}

.quick-link-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.quick-link-card strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
    color: var(--text-strong);
}

.quick-link-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Map Section */
.contact-map-section {
    margin: 4rem 0 3rem;
}

.contact-map-section h3 {
    text-align: center;
    margin: 0 0 2rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-strong);
}

.map-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(96, 121, 145, 0.15);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .contact-hero-modern {
        padding: 2.5rem 2rem;
        border-radius: 28px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-info-side {
        position: static;
    }

    .contact-form-main {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .contact-page-modern {
        overflow-x: hidden;
        width: 100%;
    }

    .contact-hero-modern {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        margin: 1rem 0 2rem;
    }

    .contact-hero-modern h1 {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }

    .contact-hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .contact-badge {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }

    .contact-container {
        gap: 2rem;
        padding: 0;
    }

    .contact-info-card,
    .contact-form-card-main {
        padding: 1.75rem;
        border-radius: 20px;
    }

    .contact-info-card h2,
    .contact-form-card-main h2 {
        font-size: 1.4rem;
    }

    .contact-methods {
        gap: 1.25rem;
        margin-bottom: 2rem;
    }

    .method-icon-contact {
        font-size: 1.85rem;
    }

    .method-details {
        gap: 0.3rem;
    }

    .method-details strong {
        font-size: 1rem;
    }

    .method-details a {
        font-size: 0.95rem;
    }

    .method-note {
        font-size: 0.8rem;
    }

    .social-connect h3 {
        font-size: 1.15rem;
        margin-bottom: 1.25rem;
    }

    .social-links-contact {
        gap: 0.85rem;
        flex-wrap: wrap;
    }

    .social-links-contact img {
        width: 36px;
        height: 36px;
    }

    /* Form optimization */
    .contact-form-main {
        gap: 1.25rem;
    }

    .form-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .form-group-contact label {
        font-size: 0.9rem;
    }

    .form-group-contact input,
    .form-group-contact select,
    .form-group-contact textarea {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    .form-group-contact textarea {
        min-height: 100px;
    }

    .contact-submit-btn {
        font-size: 1rem;
        padding: 0.95rem 1rem;
        min-height: 48px;
        width: 100%;
    }

    /* Quick links */
    .contact-quick-links-section {
        margin: 3rem 0;
    }

    .contact-quick-links-section h3 {
        font-size: 1.5rem;
        margin-bottom: 1.75rem;
    }

    .quick-links-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .quick-link-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .quick-link-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .quick-link-card strong {
        font-size: 1.05rem;
    }

    .quick-link-card p {
        font-size: 0.85rem;
    }

    /* Map */
    .contact-map-section {
        margin: 3rem 0 2rem;
    }

    .contact-map-section h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .map-container {
        border-radius: 20px;
    }

    .map-container iframe {
        height: 300px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .contact-hero-modern {
        padding: 1.5rem 1rem;
        border-radius: 16px;
        margin: 0.75rem 0 1.5rem;
    }

    .contact-hero-modern h1 {
        font-size: 1.6rem;
        line-height: 1.25;
    }

    .contact-hero-description {
        font-size: 0.9rem;
    }

    .contact-badge {
        font-size: 0.8rem;
        padding: 0.35rem 0.85rem;
    }

    .contact-info-card,
    .contact-form-card-main {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .contact-info-card h2,
    .contact-form-card-main h2 {
        font-size: 1.25rem;
    }

    .info-subtitle,
    .form-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .contact-methods {
        gap: 1rem;
    }

    .method-icon-contact {
        font-size: 1.65rem;
    }

    .method-details strong {
        font-size: 0.95rem;
    }

    .method-details a {
        font-size: 0.9rem;
    }

    .social-connect h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .social-links-contact img {
        width: 32px;
        height: 32px;
    }

    .contact-form-main {
        gap: 1rem;
    }

    .form-group-contact label {
        font-size: 0.85rem;
    }

    .form-group-contact input,
    .form-group-contact select,
    .form-group-contact textarea {
        padding: 0.65rem 0.85rem;
        font-size: 0.9rem;
    }

    .contact-submit-btn {
        font-size: 0.95rem;
        padding: 0.85rem 1.75rem;
    }

    .contact-quick-links-section h3,
    .contact-map-section h3 {
        font-size: 1.3rem;
    }

    .quick-link-card {
        padding: 1.25rem;
    }

    .quick-link-icon {
        font-size: 2.25rem;
    }

    .map-container iframe {
        height: 250px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .contact-hero-modern h1 {
        font-size: 1.4rem;
    }

    .contact-info-card,
    .contact-form-card-main {
        padding: 1.25rem;
    }

    .form-group-contact input,
    .form-group-contact select,
    .form-group-contact textarea {
        padding: 0.6rem 0.75rem;
        font-size: 0.85rem;
    }

    .contact-submit-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Toast Notification Styles */
.contact-toast-top {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: #4caf50;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideDown 0.4s ease-out;
}

.toast-icon {
    font-weight: bold;
    font-size: 1.2rem;
}

.contact-toast-top p {
    margin: 0;
    font-weight: 500;
}

@keyframes slideDown {
    from {
        top: -100px;
        opacity: 0;
    }
    to {
        top: 100px;
        opacity: 1;
    }
}

.dashboard-page-new {
    padding: 0;
}

/* Welcome Section */
.welcome-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.welcome-section h1 {
    font-size: 2rem;
    margin: 0;
    color: #1a1a1a;
    font-weight: 700;
}

.welcome-subtitle {
    color: #666;
    margin: 0.5rem 0 0;
    font-size: 1.05rem;
}

.btn-primary {
    background: linear-gradient(135deg, #0f1419, #20262d);
    color: #1a1a1a;
    border: none;
    padding: 0.9rem 1.75rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(96, 121, 145, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(96, 121, 145, 0.4);
}

.btn-secondary {
    background: #f5f7fa;
    color: #1a1a1a;
    border: 1px solid #ddd;
    padding: 0.9rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: #e8ecf0;
}

/* Stats Cards */
.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-card-new {
    background: #fff;
    padding: 1.75rem;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.stat-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-card-new.primary-card {
    background: linear-gradient(135deg, #0f1419, #20262d);
    color: #1a1a1a;
}

.stat-card-new.accent-card {
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: #fff;
}

.stat-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.stat-icon {
    font-size: 1.75rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value-large {
    font-size: 2.25rem;
    font-weight: 800;
    margin: 0.5rem 0;
    line-height: 1;
}

.stat-footer {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-change {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    background: rgba(34, 197, 94, 0.15);
    color: #16a34a;
}

.stat-change.positive {
    background: rgba(34, 197, 94, 0.15);
    color: #16a34a;
}

.stat-badge {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.stat-text {
    font-size: 0.85rem;
    opacity: 0.8;
}

.stat-card-new.accent-card .stat-text {
    color: rgba(255, 255, 255, 0.8);
}

.score-bar {
    height: 6px;
    background: rgba(26, 26, 26, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1rem;
}

.score-fill {
    height: 100%;
    background: #1a1a1a;
    border-radius: 10px;
    transition: width 1s ease;
}

/* Dashboard Content Grid */
.dashboard-content-grid {
    display: grid;
    grid-gap: 2rem;
    gap: 2rem;
}

.content-section {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.section-header-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f5f7fa;
}

.section-header-new h2 {
    font-size: 1.5rem;
    margin: 0;
    color: #1a1a1a;
    font-weight: 700;
}

.loan-count {
    background: rgba(96, 121, 145, 0.15);
    color: #1a1a1a;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Loans Grid */
.loans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem;
}

.loan-card-new {
    background: linear-gradient(135deg, #fff 0%, #fafbfc 100%);
    border: 2px solid #f5f7fa;
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.2s ease;
}

.loan-card-new:hover {
    border-color: rgba(96, 121, 145, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.loan-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    gap: 1rem;
}

.loan-card-header h3 {
    font-size: 1.25rem;
    margin: 0 0 0.4rem;
    color: #1a1a1a;
    font-weight: 700;
}

.account-number {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.status-badge {
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.status-badge.active {
    background: rgba(34, 197, 94, 0.15);
    color: #16a34a;
}

.loan-amount-display {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(96, 121, 145, 0.1), rgba(96, 121, 145, 0.05));
    border-radius: 12px;
    margin-bottom: 1.25rem;
}

.amount-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

.amount-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a1a1a;
}

.loan-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.25rem;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f5f7fa;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.info-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.loan-progress-section {
    margin-bottom: 1.5rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
}

.progress-percent {
    color: #0f1419;
    font-weight: 700;
}

.progress-bar-new {
    height: 8px;
    background: #f5f7fa;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #0f1419, #20262d);
    border-radius: 10px;
    transition: width 1s ease;
}

.btn-pay-emi {
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: #0f1419;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-pay-emi:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Quick Actions Grid */
.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-gap: 1rem;
    gap: 1rem;
}

.action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, #fff, #fafbfc);
    border: 2px solid #f5f7fa;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.action-card:hover {
    border-color: rgba(96, 121, 145, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, rgba(96, 121, 145, 0.05), #fff);
}

.action-icon {
    font-size: 2.5rem;
}

/* Loan Application Modal */
.loan-modal {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 550px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #f5f7fa;
    color: #666;
    font-size: 1.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
}

.modal-close:hover {
    background: #e8ecf0;
    color: #1a1a1a;
}

.loan-modal h2 {
    font-size: 1.75rem;
    margin: 0 0 0.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.modal-subtitle {
    color: #666;
    margin: 0 0 2rem;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 2px solid #f5f7fa;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(96, 121, 145, 0.5);
    box-shadow: 0 0 0 3px rgba(96, 121, 145, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Payment Summary */
.payment-summary {
    background: linear-gradient(135deg, rgba(96, 121, 145, 0.1), rgba(96, 121, 145, 0.05));
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-item span {
    color: #666;
    font-size: 0.95rem;
}

.summary-item strong {
    color: #1a1a1a;
    font-size: 1.25rem;
    font-weight: 700;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.form-actions button {
    flex: 1 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .welcome-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .welcome-section h1 {
        font-size: 1.5rem;
    }

    .stats-cards {
        grid-template-columns: 1fr;
    }

    .loans-grid {
        grid-template-columns: 1fr;
    }

    .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .loan-info-grid {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .loan-modal {
        padding: 2rem 1.5rem;
    }

    .content-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .quick-actions-grid {
        grid-template-columns: 1fr;
    }
}
/* Disbursement History */
.history-count {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.disbursement-table {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #f5f7fa;
}

.table-header {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1.5fr 1.5fr 1fr;
  background: linear-gradient(135deg, rgba(96, 121, 145, 0.1), rgba(96, 121, 145, 0.05));
  font-weight: 700;
  padding: 1.25rem 1.5rem;
  font-size: 0.9rem;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.table-col {
  display: flex;
  align-items: center;
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1.5fr 1.5fr 1fr;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #f5f7fa;
  transition: background 0.2s ease;
}

.table-row:last-child {
  border-bottom: none;
}

.table-row:hover {
  background: #fafbfc;
}

.table-cell {
  display: flex;
  align-items: center;
}

.cell-label {
  display: none;
  font-size: 0.75rem;
  color: #999;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.cell-value {
  font-size: 0.95rem;
  color: #1a1a1a;
}

.account-num {
  font-family: 'Courier New', monospace;
  font-weight: 600;
  color: #666;
}

.amount-disbursed {
  font-weight: 700;
  color: #16a34a;
  font-size: 1.05rem;
}

.status-pill {
  padding: 0.35rem 0.85rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

.status-pill.completed {
  background: rgba(34, 197, 94, 0.15);
  color: #16a34a;
}

.status-pill.closed {
  background: rgba(100, 116, 139, 0.15);
  color: #64748b;
}

.total-disbursed {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(96, 121, 145, 0.15), rgba(96, 121, 145, 0.08));
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total-disbursed span {
  font-size: 1.05rem;
  font-weight: 600;
  color: #666;
}

.total-disbursed strong {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a1a1a;
}

@media (max-width: 920px) {
  .table-header {
    display: none;
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1.5rem;
  }

  .table-cell {
    flex-direction: column;
    align-items: flex-start;
  }

  .cell-label {
    display: block;
  }

  .total-disbursed {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }
}

.dashboard-layout {
    min-height: 100vh;
    background: #f5f7fa;
    display: flex;
    flex-direction: column;
}

/* Dashboard Navigation */
.dashboard-nav {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.dashboard-nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-logo {
    display: flex;
    align-items: center;
}

.dashboard-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.dashboard-nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.nav-icon-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(96, 121, 145, 0.1);
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.nav-icon-btn:hover {
    background: rgba(96, 121, 145, 0.2);
    transform: scale(1.05);
}

.notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ef4444;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    padding: 0 4px;
}

.logout-btn {
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: #0f1419;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.logout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Dropdown Panels */
.dropdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 200;
    min-width: 360px;
    max-width: 400px;
    animation: dropdownSlide 0.2s ease;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Notifications Panel */
.notifications-panel {
    max-height: 500px;
    display: flex;
    flex-direction: column;
}

.dropdown-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f5f7fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.mark-read-btn {
    background: none;
    border: none;
    color: #0f1419;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
}

.mark-read-btn:hover {
    text-decoration: underline;
}

.notifications-list {
    max-height: 350px;
    overflow-y: auto;
}

.notification-item {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f5f7fa;
    display: flex;
    gap: 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.notification-item:hover {
    background: #fafbfc;
}

.notification-item.unread {
    background: rgba(96, 121, 145, 0.05);
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.notification-icon.payment {
    background: rgba(59, 130, 246, 0.1);
}

.notification-icon.success {
    background: rgba(34, 197, 94, 0.1);
}

.notification-icon.info {
    background: rgba(96, 121, 145, 0.1);
}

.notification-content {
    flex: 1 1;
}

.notification-content h4 {
    margin: 0 0 0.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
}

.notification-content p {
    margin: 0 0 0.5rem;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

.notification-time {
    font-size: 0.75rem;
    color: #999;
}

.dropdown-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #f5f7fa;
}

.view-all-btn {
    width: 100%;
    padding: 0.75rem;
    background: rgba(96, 121, 145, 0.1);
    color: #1a1a1a;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.view-all-btn:hover {
    background: rgba(96, 121, 145, 0.2);
}

/* Profile Panel */
.profile-panel {
    min-width: 320px;
}

.profile-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(96, 121, 145, 0.1), rgba(96, 121, 145, 0.05));
    border-radius: 16px 16px 0 0;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.profile-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f1419, #20262d);
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.profile-info h3 {
    margin: 0 0 0.25rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.profile-info p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
}

.profile-details {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.detail-value {
    font-size: 0.9rem;
    color: #1a1a1a;
    font-weight: 600;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.status-badge.verified {
    background: rgba(34, 197, 94, 0.15);
    color: #16a34a;
}

.status-badge.active {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.profile-actions {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-top: 1px solid #f5f7fa;
}

.profile-action-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.2s ease;
}

.profile-action-btn:hover {
    background: #fafbfc;
    border-color: rgba(96, 121, 145, 0.3);
}

.profile-action-btn svg {
    width: 20px;
    height: 20px;
    color: #0f1419;
}

/* Dashboard Main Content */
.dashboard-main {
    flex: 1 1;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    text-align: center;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.modal-content h3 {
    font-size: 1.75rem;
    margin: 0 0 1rem;
    color: #1a1a1a;
}

.modal-content p {
    color: #666;
    margin: 0 0 2rem;
    line-height: 1.6;
    font-size: 1rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.modal-btn {
    padding: 0.9rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.modal-btn.cancel {
    background: rgba(96, 121, 145, 0.1);
    color: #1a1a1a;
}

.modal-btn.cancel:hover {
    background: rgba(96, 121, 145, 0.2);
}

.modal-btn.confirm {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
}

.modal-btn.confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-nav-content {
        padding: 1rem 1.5rem;
    }

    .dashboard-main {
        padding: 1.5rem;
    }

    .dashboard-logo .logo-text {
        font-size: 1.5rem;
    }

    .logout-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-btn {
        width: 100%;
    }
}
/* Admin Login Page Styles */

.admin-login-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.admin-login-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.3) 0%, transparent 50%);
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Header */
.admin-login-header {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
}

.admin-login-logo img {
    height: 45px;
    filter: brightness(0) invert(1);
}

.back-to-site-btn {
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-to-site-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
}

/* Login Container */
.admin-login-container {
    flex: 1 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.admin-login-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 3rem;
    max-width: 480px;
    width: 100%;
    animation: slideUp 0.6s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header Section */
.admin-login-header-section {
    text-align: center;
    margin-bottom: 2rem;
}

.admin-shield-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.admin-login-header-section h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.5rem 0;
}

.admin-login-header-section p {
    color: #718096;
    font-size: 1rem;
    margin: 0;
}

/* Demo Credentials Box */
.demo-credentials-box {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-left: 4px solid #667eea;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.demo-credentials-box h4 {
    margin: 0 0 0.75rem 0;
    font-size: 0.9rem;
    color: #2d3748;
    font-weight: 600;
}

.demo-account {
    font-size: 0.85rem;
    color: #4a5568;
    margin: 0.5rem 0;
    font-family: 'Courier New', monospace;
}

.demo-account strong {
    color: #2d3748;
}

/* Error Alert */
.admin-error-alert {
    background: #fff5f5;
    border-left: 4px solid #fc8181;
    color: #c53030;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.error-icon {
    font-size: 1.2rem;
}

/* Form Styles */
.admin-login-form {
    margin-top: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input:disabled {
    background: #f7fafc;
    cursor: not-allowed;
}

/* Password Input */
.password-input-wrapper {
    position: relative;
}

.password-input-wrapper input {
    padding-right: 3rem;
}

.toggle-password-btn {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.toggle-password-btn:hover {
    opacity: 1;
}

.toggle-password-btn:disabled {
    cursor: not-allowed;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.remember-me-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #4a5568;
    cursor: pointer;
}

.remember-me-checkbox input {
    width: auto;
    cursor: pointer;
}

.forgot-password-link {
    background: none;
    border: none;
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.forgot-password-link:hover {
    color: #764ba2;
}

/* Login Button */
.admin-login-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.admin-login-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.admin-login-btn:active:not(:disabled) {
    transform: translateY(0);
}

.admin-login-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Security Notice */
.security-notice {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: #4a5568;
    line-height: 1.5;
}

.security-notice svg {
    flex-shrink: 0;
    color: #667eea;
}

/* Footer */
.admin-login-footer {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.admin-login-footer a {
    color: white;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .admin-login-header {
        padding: 1rem 1.5rem;
    }

    .admin-login-logo img {
        height: 35px;
    }

    .back-to-site-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .admin-login-card {
        padding: 2rem 1.5rem;
    }

    .admin-login-header-section h1 {
        font-size: 1.5rem;
    }

    .demo-credentials-box {
        font-size: 0.8rem;
    }

    .demo-account {
        font-size: 0.75rem;
        word-break: break-all;
    }
}

@media (max-width: 480px) {
    .admin-login-container {
        padding: 1rem;
    }

    .admin-login-card {
        padding: 1.5rem;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}
/* Admin Dashboard Page Styles */

.admin-dashboard-page {
    animation: fadeIn 0.5s ease;
    width: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Welcome Header */
.admin-welcome-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.admin-welcome-header>div:first-child {
    min-width: 0;
}

.admin-welcome-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.5rem 0;
}

.admin-subtitle {
    color: #718096;
    font-size: 1rem;
    margin: 0;
}

/* Quick Actions */
.admin-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.quick-action-btn {
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    font-size: 0.95rem;
    white-space: nowrap;
}

.quick-action-btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.quick-action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.quick-action-btn.secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.quick-action-btn.secondary:hover {
    background: #667eea;
    color: white;
}

/* Stats Grid */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.stat-card.blue::before {
    background: #4299e1;
}

.stat-card.green::before {
    background: #48bb78;
}

.stat-card.orange::before {
    background: #ed8936;
}

.stat-card.purple::before {
    background: #9f7aea;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-card.blue .stat-icon {
    background: linear-gradient(135deg, #4299e1, #3182ce);
    color: white;
}

.stat-card.green .stat-icon {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
}

.stat-card.orange .stat-icon {
    background: linear-gradient(135deg, #ed8936, #dd6b20);
    color: white;
}

.stat-card.purple .stat-icon {
    background: linear-gradient(135deg, #9f7aea, #805ad5);
    color: white;
}

.stat-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.25rem 0;
    line-height: 1.1;
}

.stat-content p {
    color: #718096;
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
}

.stat-change {
    font-size: 0.85rem;
    font-weight: 600;
}

.stat-change.positive {
    color: #48bb78;
}

/* Content Grid */
.admin-content-grid {
    display: grid;
    grid-gap: 1.5rem;
    gap: 1.5rem;
}

/* Admin Card */
.admin-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.admin-card-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.admin-card-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.view-all-btn {
    background: none;
    border: none;
    color: #667eea;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.view-all-btn:hover {
    color: #764ba2;
}

/* Table Styles */
.admin-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.admin-table thead {
    background: #f7fafc;
}

.admin-table th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: background 0.3s ease;
}

.admin-table tbody tr:hover {
    background: #f7fafc;
}

.admin-table td {
    padding: 1.25rem 1.5rem;
    color: #2d3748;
    font-size: 0.95rem;
}

.user-name {
    font-weight: 600;
    color: #1a202c;
}

.user-email {
    color: #718096;
}

.user-date {
    color: #a0aec0;
    font-size: 0.9rem;
}

.loan-amount {
    font-weight: 700;
    color: #1a202c;
}

/* Status Badges */
.status-badge {
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: capitalize;
    display: inline-block;
}

.status-badge.status-success {
    background: #c6f6d5;
    color: #22543d;
}

.status-badge.status-warning {
    background: #fef5e7;
    color: #b7791f;
}

.status-badge.status-danger {
    background: #fed7d7;
    color: #742a2a;
}

/* Responsive */
@media (max-width: 1200px) {
    .admin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .admin-welcome-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .admin-quick-actions {
        width: 100%;
    }

    .quick-action-btn {
        flex: 1 1;
        justify-content: center;
        min-width: 180px;
    }

    .admin-stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 1.25rem;
        align-items: center;
    }

    .stat-icon {
        width: 56px;
        height: 56px;
    }

    .stat-icon svg {
        width: 28px;
        height: 28px;
    }

    .stat-content h3 {
        font-size: 1.75rem;
    }

    .admin-card-header {
        padding: 1.25rem;
        flex-wrap: wrap;
    }

    .admin-table th,
    .admin-table td {
        padding: 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .admin-dashboard-page {
        overflow-x: hidden;
    }

    .admin-welcome-header h1 {
        font-size: 1.5rem;
    }

    .admin-subtitle {
        font-size: 0.9rem;
    }

    .admin-quick-actions {
        flex-direction: column;
    }

    .quick-action-btn {
        width: 100%;
        min-width: 0;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .stat-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .stat-icon {
        width: 52px;
        height: 52px;
    }

    .stat-icon svg {
        width: 24px;
        height: 24px;
    }

    .stat-content h3 {
        font-size: 1.5rem;
    }

    .admin-card-header h2 {
        font-size: 1.05rem;
    }

    .view-all-btn {
        font-size: 0.85rem;
    }

    .admin-table {
        font-size: 0.8rem;
        min-width: 640px;
    }

    .admin-table th,
    .admin-table td {
        padding: 0.75rem;
    }

    .user-email,
    .user-date {
        font-size: 0.75rem;
    }
}

/* Admin Dashboard Layout Styles */

.admin-dashboard-layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #f7fafc;
}

/* Admin Navigation */
.admin-dashboard-nav {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.admin-dashboard-nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-dashboard-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-dashboard-logo-img {
    height: 40px;
}

.admin-portal-label {
    font-weight: 700;
    font-size: 1.1rem;
    color: #667eea;
    border-left: 2px solid #e2e8f0;
    padding-left: 1rem;
}

.admin-dashboard-nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Role Badge */
.role-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.role-badge.super-admin {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.role-badge.admin {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

/* Admin Icon Button */
.admin-nav-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #4a5568;
}

.admin-nav-icon-btn:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
    color: #2d3748;
}

/* Logout Button */
.admin-logout-btn {
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.admin-logout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Profile Dropdown */
.admin-dropdown-panel {
    position: absolute;
    top: 70px;
    right: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    animation: dropdownSlide 0.3s ease;
    z-index: 1000;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.admin-profile-panel {
    padding: 1.5rem;
}

.admin-profile-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.admin-profile-avatar {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.admin-profile-info h3 {
    margin: 0;
    font-size: 1rem;
    color: #2d3748;
}

.admin-profile-info p {
    margin: 0.25rem 0 0 0;
    font-size: 0.85rem;
    color: #718096;
}

.admin-profile-details {
    padding-top: 1rem;
}

.admin-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.admin-detail-label {
    font-size: 0.85rem;
    color: #718096;
    font-weight: 500;
}

.admin-detail-value {
    font-size: 0.85rem;
    color: #2d3748;
    font-weight: 600;
}

/* Dropdown Overlay */
.admin-dropdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 999;
}

/* Main Content */
.admin-dashboard-main {
    flex: 1 1;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
}

/* Modal Styles */
.admin-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.admin-modal-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlide 0.3s ease;
    text-align: center;
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.admin-modal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.admin-modal-content h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin: 0 0 0.75rem 0;
}

.admin-modal-content p {
    color: #718096;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

.admin-modal-actions {
    display: flex;
    gap: 1rem;
}

.admin-modal-btn {
    flex: 1 1;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.admin-modal-btn.cancel {
    background: #edf2f7;
    color: #4a5568;
}

.admin-modal-btn.cancel:hover {
    background: #e2e8f0;
}

.admin-modal-btn.confirm {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.admin-modal-btn.confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .admin-dashboard-nav-content {
        padding: 1rem;
    }

    .admin-portal-label {
        display: none;
    }

    .admin-dashboard-main {
        padding: 1rem;
    }

    .role-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .admin-logout-btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.85rem;
    }

    .admin-dropdown-panel {
        right: 1rem;
        min-width: 260px;
    }
}

@media (max-width: 480px) {
    .admin-logout-btn span {
        display: none;
    }

    .admin-logout-btn {
        width: 40px;
        height: 40px;
        padding: 0;
        justify-content: center;
    }

    .role-badge {
        display: none;
    }
}
/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Modal Content */
.create-modal {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Header */
.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.modal-close-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    background: #f7fafc;
    color: #718096;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    background: #edf2f7;
    color: #2d3748;
}

/* Modal Error */
.modal-error {
    margin: 1rem 1.5rem;
    padding: 1rem;
    background: #fff5f5;
    border-left: 4px solid #fc8181;
    color: #c53030;
    border-radius: 8px;
    font-size: 0.9rem;
}

/* Form */
.create-form {
    padding: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input:disabled {
    background: #f7fafc;
    cursor: not-allowed;
}

.form-hint {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #718096;
}

/* Modal Actions */
.modal-actions {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.btn {
    flex: 1 1;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn.btn-cancel {
    background: #edf2f7;
    color: #4a5568;
}

.btn.btn-cancel:hover:not(:disabled) {
    background: #e2e8f0;
}

.btn.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .create-modal {
        max-width: 95%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-header h2 {
        font-size: 1.25rem;
    }

    .modal-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}
/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Modal Content */
.create-modal {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Header */
.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.modal-close-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    background: #f7fafc;
    color: #718096;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    background: #edf2f7;
    color: #2d3748;
}

/* Modal Error */
.modal-error {
    margin: 1rem 1.5rem;
    padding: 1rem;
    background: #fff5f5;
    border-left: 4px solid #fc8181;
    color: #c53030;
    border-radius: 8px;
    font-size: 0.9rem;
}

/* Form */
.create-form {
    padding: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input:disabled {
    background: #f7fafc;
    cursor: not-allowed;
}

.form-hint {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #718096;
}

/* Modal Actions */
.modal-actions {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.btn {
    flex: 1 1;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn.btn-cancel {
    background: #edf2f7;
    color: #4a5568;
}

.btn.btn-cancel:hover:not(:disabled) {
    background: #e2e8f0;
}

.btn.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .create-modal {
        max-width: 95%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-header h2 {
        font-size: 1.25rem;
    }

    .modal-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}
/* Super Admin Dashboard Styles */

.super-admin-dashboard-page {
    animation: fadeIn 0.5s ease;
}

/* Super Admin Header */
.super-admin-welcome-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    color: white;
}

.super-admin-welcome-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.super-admin-subtitle {
    opacity: 0.95;
    font-size: 1rem;
    margin: 0;
}

/* Super Quick Actions */
.super-quick-actions {
    display: flex;
    gap: 0.75rem;
}

.super-action-btn {
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    font-size: 0.9rem;
    color: white;
}

.super-action-btn.create-admin {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.super-action-btn.create-user {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.super-action-btn.settings {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.super-action-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Enhanced Stats Grid */
.super-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.super-stat-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.super-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.super-stat-card.purple::before {
    background: linear-gradient(135deg, #9f7aea, #805ad5);
}

.super-stat-card.pink::before {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.super-stat-card.blue::before {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.super-stat-card.green::before {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.super-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.super-stat-card.purple .stat-icon {
    background: linear-gradient(135deg, #9f7aea, #805ad5);
}

.super-stat-card.pink .stat-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.super-stat-card.blue .stat-icon {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.super-stat-card.green .stat-icon {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

/* Tabs */
.super-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e2e8f0;
    overflow-x: auto;
}

.super-tab {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: #718096;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.super-tab:hover {
    color: #667eea;
    background: #f7fafc;
}

.super-tab.active {
    color: #667eea;
    border-bottom-color: #667eea;
    background: #f7fafc;
}

/* Tab Content */
.super-tab-content {
    animation: fadeIn 0.3s ease;
}

/* Super Card */
.super-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.super-card-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.super-card-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.add-btn,
.export-btn {
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.add-btn:hover,
.export-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Overview Grid */
.overview-content {
    margin-bottom: 2rem;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem;
    padding: 1.5rem;
}

.overview-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: #f7fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.overview-item:hover {
    background: #edf2f7;
    transform: translateY(-2px);
}

.overview-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.overview-icon.blue {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.overview-icon.orange {
    background: linear-gradient(135deg, #fa709a, #fee140);
}

.overview-icon.green {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.overview-icon.purple {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
}

.overview-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.25rem 0;
}

.overview-item p {
    color: #718096;
    font-size: 0.85rem;
    margin: 0;
}

/* Table Styles */
.super-table-container {
    overflow-x: auto;
}

.super-table {
    width: 100%;
    border-collapse: collapse;
}

.super-table thead {
    background: #f7fafc;
}

.super-table th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.super-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: background 0.3s ease;
}

.super-table tbody tr:hover {
    background: #f7fafc;
}

.super-table td {
    padding: 1.25rem 1.5rem;
    color: #2d3748;
    font-size: 0.95rem;
}

.admin-name {
    font-weight: 600;
    color: #1a202c;
}

.admin-email {
    color: #718096;
}

.admin-date {
    color: #a0aec0;
    font-size: 0.9rem;
}

.loans-count {
    font-weight: 700;
    color: #667eea;
}

/* Role Badge */
.role-badge {
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.role-badge.super-admin {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.role-badge.admin {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

/* Status Badge */
.status-badge {
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: capitalize;
    display: inline-block;
}

.status-badge.status-success {
    background: #c6f6d5;
    color: #22543d;
}

.status-badge.status-warning {
    background: #fef5e7;
    color: #b7791f;
}

.status-badge.status-danger {
    background: #fed7d7;
    color: #742a2a;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn.view {
    background: #e6f7ff;
}

.action-btn.view:hover {
    background: #bae7ff;
}

.action-btn.edit {
    background: #f6ffed;
}

.action-btn.edit:hover {
    background: #d9f7be;
}

.action-btn.delete {
    background: #fff1f0;
}

.action-btn.delete:hover {
    background: #ffccc7;
}

/* System Logs */
.logs-container {
    padding: 1.5rem;
    max-height: 600px;
    overflow-y: auto;
}

.log-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.log-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.log-item.log-success {
    background: #f0fdf4;
    border-left-color: #22c55e;
}

.log-item.log-warning {
    background: #fef3c7;
    border-left-color: #f59e0b;
}

.log-item.log-error {
    background: #fee2e2;
    border-left-color: #ef4444;
}

.log-item.log-info {
    background: #dbeafe;
    border-left-color: #3b82f6;
}

.log-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.log-content {
    flex: 1 1;
}

.log-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.log-header h4 {
    margin: 0;
    font-size: 1rem;
    color: #1a202c;
    font-weight: 700;
}

.log-time {
    font-size: 0.85rem;
    color: #718096;
}

.log-details {
    margin: 0 0 0.5rem 0;
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
}

.log-user {
    font-size: 0.85rem;
    color: #718096;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1200px) {
    .super-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .super-admin-welcome-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .super-quick-actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .super-action-btn {
        flex: 1 1;
        min-width: calc(50% - 0.375rem);
    }

    .super-stats-grid {
        grid-template-columns: 1fr;
    }

    .super-tabs {
        gap: 0.25rem;
    }

    .super-tab {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .super-table th,
    .super-table td {
        padding: 0.875rem;
        font-size: 0.85rem;
    }

    .action-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .super-admin-welcome-header h1 {
        font-size: 1.5rem;
    }

    .super-admin-subtitle {
        font-size: 0.9rem;
    }

    .super-card-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .add-btn,
    .export-btn {
        width: 100%;
    }

    .super-table {
        font-size: 0.8rem;
    }
}
.payments-solution-page {
  background:
    radial-gradient(circle at top left, rgba(196, 214, 228, 0.32), transparent 28%),
    radial-gradient(circle at bottom right, rgba(190, 208, 223, 0.22), transparent 30%),
    linear-gradient(180deg, #f7fbfe 0%, #eef5fb 42%, #edf4f9 100%);
  color: var(--text-strong);
}

.payments-hero,
.payments-section,
.payments-overview {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.payments-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-gap: 40px;
  gap: 40px;
  padding: 48px 0 24px;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(196, 214, 228, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(244, 249, 253, 0.98), rgba(220, 232, 241, 0.82)),
    #fff;
  border-radius: 40px;
  border: 1px solid rgba(96, 121, 145, 0.14);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.1);
}

.payments-hero-copy {
  color: var(--text-strong);
}

.payments-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(96, 121, 145, 0.22);
  color: var(--text-strong);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.76rem;
  box-shadow: 0 10px 24px rgba(96, 121, 145, 0.12);
}

.payments-hero-copy h1 {
  margin: 20px 0 18px;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--text-strong);
}

.payments-hero-copy h1 span {
  display: block;
  color: var(--primary-lighter);
}

.payments-hero-copy p {
  max-width: 640px;
  color: rgba(27, 38, 59, 0.86);
  font-size: 1.05rem;
  line-height: 1.8;
}

.payments-hero-cta,
.payments-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.payments-hero-cta {
  margin-top: 28px;
}

.payments-trust-row {
  margin-top: 24px;
}

.payments-trust-row span {
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(96, 121, 145, 0.14);
  color: var(--text-strong);
  font-size: 0.92rem;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
  font-weight: 600;
}

.payments-hero-visual {
  display: flex;
  justify-content: center;
}

.payments-hero-image-frame {
  width: min(500px, 100%);
  padding: 14px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(249, 252, 255, 0.98), rgba(233, 241, 247, 0.94));
  border: 1px solid rgba(96, 121, 145, 0.16);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
}

.payments-hero-image-frame img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.payments-overview {
  padding: 12px 0 42px;
}

.payments-overview-card,
.payments-capability-panel,
.payments-disclaimer-card {
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(96, 121, 145, 0.12);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
}

.payments-overview-card {
  padding: 40px;
}

.payments-overview-card h2,
.payments-capability-panel h2,
.payments-disclaimer-card h2,
.payments-heading h2 {
  margin: 10px 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text-strong);
}

.payments-overview-card > p,
.payments-heading p,
.payments-disclaimer-card p {
  color: var(--text-muted);
  line-height: 1.8;
}

.payments-mode-grid,
.payments-gallery-grid,
.payments-steps-grid,
.payments-pillars-grid,
.payments-faq-grid {
  display: grid;
  grid-gap: 22px;
  gap: 22px;
}

.payments-mode-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.payments-gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.payments-gallery-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(96, 121, 145, 0.12);
  border-radius: 28px;
  padding: 14px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.payments-gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.payments-mode-card,
.payments-step-card,
.payments-pillar-card,
.payments-faq-card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(96, 121, 145, 0.12);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.payments-mode-card h3,
.payments-step-card h3,
.payments-pillar-card h3,
.payments-faq-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  color: var(--text-strong);
}

.payments-mode-card p,
.payments-step-card p,
.payments-pillar-card p,
.payments-faq-card p {
  margin: 0;
  line-height: 1.75;
  color: var(--text-muted);
}

.payments-section {
  padding: 42px 0;
}

.payments-heading {
  margin-bottom: 26px;
}

.payments-steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.payments-step-number {
  display: inline-flex;
  margin-bottom: 16px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--primary-lighter);
}

.payments-section-accent {
  padding-top: 10px;
}

.payments-capability-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-gap: 28px;
  gap: 28px;
  padding: 36px;
}

.payments-capability-list {
  display: grid;
  grid-gap: 16px;
  gap: 16px;
}

.payments-capability-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  grid-gap: 14px;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(96, 121, 145, 0.12);
}

.payments-capability-item:last-child {
  border-bottom: none;
}

.payments-capability-item span {
  color: var(--primary-lighter);
  font-weight: 800;
}

.payments-capability-item p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.payments-pillars-grid,
.payments-faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.payments-disclaimer-card {
  padding: 34px 36px;
  background:
    linear-gradient(135deg, rgba(244, 249, 253, 0.98), rgba(220, 232, 241, 0.9)),
    #fff;
  color: var(--text-strong);
}

.payments-disclaimer-card .eyebrow,
.payments-disclaimer-card h2,
.payments-disclaimer-card p {
  color: inherit;
}

.payments-disclaimer-card p {
  max-width: 780px;
  color: var(--text-muted);
}

.payments-cta {
  padding-top: 12px;
}

@media (max-width: 1080px) {
  .payments-hero,
  .payments-capability-panel {
    grid-template-columns: 1fr;
  }

  .payments-steps-grid,
  .payments-pillars-grid,
  .payments-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payments-mode-grid,
  .payments-gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .payments-hero,
  .payments-section,
  .payments-overview {
    width: min(100% - 24px, 1180px);
  }

  .payments-hero {
    padding: 52px 0 32px;
    gap: 28px;
  }

  .payments-gallery-card img {
    min-height: 220px;
  }

  .payments-hero-image-frame img {
    height: 280px;
  }

  .payments-overview-card,
  .payments-capability-panel,
  .payments-disclaimer-card {
    padding: 24px;
    border-radius: 24px;
  }

  .payments-steps-grid,
  .payments-pillars-grid,
  .payments-faq-grid {
    grid-template-columns: 1fr;
  }
}


/*# sourceMappingURL=main.c734df10.css.map*/