/* ═══════════════════════════════════════════
   DESIGN TOKENS — Premium Fintech Light
═══════════════════════════════════════════ */
:root {
  --white: #ffffff;
  --off: #f7f8fc;
  --soft: #eef1f8;
  --border: #e4e8f3;
  --ink: #0d1117;
  --ink2: #1e2535;
  --muted: #6b7592;
  --blue: #eb292c;
  --blue-mid: #c82022;
  --blue-lt: #fdeaeb;
  --teal: #00c9a7;
  --teal-lt: #e6faf6;
  --amber: #f59e0b;
  --amber-lt: #fef3c7;
  --red: #ef4444;
  --red-lt: #fee2e2;
  --orange: #f97316;
  --r1: 24px;
  --r2: 16px;
  --r3: 12px;
  --shadow-sm: 0 2px 8px rgba(235, 41, 44, .08);
  --shadow-md: 0 8px 32px rgba(235, 41, 44, .12);
  --shadow-lg: 0 24px 64px rgba(235, 41, 44, .14);
  --shadow-card: 0 1px 3px rgba(13, 17, 23, .06), 0 8px 24px rgba(13, 17, 23, .08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 900px 600px at 85% -80px, rgba(235, 41, 44, .06) 0%, transparent 70%),
    radial-gradient(ellipse 700px 500px at -10% 90%, rgba(0, 201, 167, .05) 0%, transparent 70%),
    linear-gradient(180deg, var(--white) 0%, var(--off) 100%);
}

/* ── NAVBAR ── */
.navbar {
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  height: 68px;
}

.brand {
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -.3px;
}

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--blue), #f06566);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .9rem;
  box-shadow: 0 4px 12px rgba(235, 41, 44, .3);
}

.brand span {
  color: var(--blue);
}

.nav-link {
  font-size: 16px;
  font-weight: 700;
  padding: 8px 14px !important;
  border-radius: var(--r3);
  transition: all .2s;
}

.nav-link:hover {
  color: var(--ink) !important;
  background: var(--soft);
}

.btn-nav-cta {
  background: var(--blue);
  color: #fff !important;
  border-radius: 50px;
  padding: 9px 22px !important;
  font-weight: 600;
  font-size: .85rem;
  transition: all .2s;
  box-shadow: 0 2px 12px rgba(235, 41, 44, .3);
}

.btn-nav-cta:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(235, 41, 44, .4);
}

/* ── FOOTER ── */
footer {
  /*background: #FFFFFF;*/
  padding: 50px 0px 50px;
}

.footer-brand {
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: #fff;
}

.footer-brand span {
  color: var(--teal);
}

footer p {
  margin-top: 6px;
}

footer a {
  text-decoration: none;
  transition: color .2s;
  color: var(--muted);
}

footer a:hover {
  color: var(--blue);
}

.footer-divider {
  border-color: rgba(255, 255, 255, .08);
  margin: 24px 0 20px;
}

.parsley-errors-list {
  list-style: none !important;
  text-align: left !important;
  padding-left: 0px !important;
}

.parsley-custom-error-message {
  color: #d44747 !important;
  font-size: 14px;
}

.parsley-required {
  color: #d44747 !important;
  font-size: 14px;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: #fff;
    /* or your theme color */
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }

  .navbar-nav .nav-link {
    padding: 10px 0;
  }
}