/* ============================================================
   ANT INSTANT LOANS — MAIN STYLESHEET
   Theme: Refined Financial Authority
   Primary: #6B2D8B (Purple) | Secondary: #3A3A3A (Charcoal)
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ── CSS Variables (Light Mode) ──────────────────────────── */
:root {
  --purple:        #6B2D8B;
  --purple-mid:    #8840B0;
  --purple-light:  #C49FDE;
  --purple-faint:  #F3EDF9;
  --charcoal:      #3A3A3A;
  --charcoal-dark: #1E1E1E;
  --charcoal-mid:  #555;
  --gold:          #C9A84C;
  --gold-light:    #F0D98A;

  --bg:            #FFFFFF;
  --bg-alt:        #F6F1FB;
  --bg-dark:       #1E1322;
  --card-bg:       #FFFFFF;
  --text:          #1E1E1E;
  --text-muted:    #666;
  --border:        #E2D5F0;
  --nav-bg:        rgba(255,255,255,0.96);
  --shadow-sm:     0 2px 12px rgba(107,45,139,0.10);
  --shadow-md:     0 8px 32px rgba(107,45,139,0.16);
  --shadow-lg:     0 20px 60px rgba(107,45,139,0.20);
  --radius:        16px;
  --radius-sm:     10px;
  --transition:    all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── CSS Variables (Dark Mode) ───────────────────────────── */
[data-theme="dark"] {
  --bg:            #0F0A18;
  --bg-alt:        #1A1028;
  --card-bg:       #1E1530;
  --text:          #F0EBF8;
  --text-muted:    #A899BC;
  --border:        #2E2040;
  --nav-bg:        rgba(15,10,24,0.97);
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.30);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.40);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.50);
  --purple-faint:  #1E1530;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  transition: background 0.4s ease, color 0.4s ease;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.display-serif { font-family: 'DM Serif Display', serif; }

/* ── Utility Classes ─────────────────────────────────────── */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-faint);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  font-weight: 300;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn-primary {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
  box-shadow: 0 4px 20px rgba(107,45,139,0.35);
}
.btn-primary:hover {
  background: var(--purple-mid);
  border-color: var(--purple-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(107,45,139,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}
.btn-outline:hover {
  background: var(--purple);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--purple);
  border-color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-gold:hover {
  background: #b8923e;
  border-color: #b8923e;
  transform: translateY(-2px);
}

.btn-wa {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-wa:hover {
  background: #1ebe5c;
  border-color: #1ebe5c;
  transform: translateY(-2px);
}

.text-purple { color: var(--purple); }
.text-gold   { color: var(--gold); }
.italic-serif { font-family: 'DM Serif Display', serif; font-style: italic; }

/* ── Scroll Reveal Animation ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 64px;
  width: auto;
  transition: var(--transition);
}
.nav-logo:hover img { transform: scale(1.04); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--purple);
  background: var(--purple-faint);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Dark Mode Toggle */
.theme-toggle {
  width: 52px;
  height: 28px;
  background: var(--border);
  border-radius: 50px;
  cursor: pointer;
  border: none;
  position: relative;
  transition: var(--transition);
  flex-shrink: 0;
}
.theme-toggle::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  background: var(--purple);
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: var(--transition);
}
[data-theme="dark"] .theme-toggle::after {
  transform: translateX(24px);
  background: var(--gold);
}
[data-theme="dark"] .theme-toggle { background: #2E2040; }

.theme-icon {
  position: absolute;
  font-size: 13px;
  top: 50%;
  transform: translateY(-50%);
}
.theme-icon-sun { right: 7px; }
.theme-icon-moon { left: 7px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 1.5rem 2rem;
  z-index: 999;
  animation: slideDown 0.3s ease;
}
.mobile-nav.open { display: block; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: none; }
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--purple); padding-left: 8px; }
.mobile-nav .btn { margin-top: 1.25rem; width: 100%; justify-content: center; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--charcoal-dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

/* Geometric background shapes */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(107,45,139,0.45) 0%, transparent 70%);
  top: -150px; right: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(107,45,139,0.25) 0%, transparent 70%);
  bottom: -100px; left: 0;
}
.hero-circle-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(107,45,139,0.3);
  pointer-events: none;
  animation: pulse-ring 4s ease-in-out infinite;
}
.hero-circle-ring:nth-child(1) { width: 200px; height: 200px; top: 15%; right: 12%; }
.hero-circle-ring:nth-child(2) { width: 120px; height: 120px; top: 20%; right: 16%; animation-delay: 0.7s; }
.hero-circle-ring:nth-child(3) { width: 60px; height: 60px; top: 25%; right: 20%; animation-delay: 1.4s; }

@keyframes pulse-ring {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 0.8; transform: scale(1.05); }
}

/* Dot grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(107,45,139,0.25);
  border: 1px solid rgba(107,45,139,0.5);
  color: var(--purple-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1.75rem;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: #25D366;
  border-radius: 50%;
  animation: blink 1.8s infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: #fff;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-title em {
  font-style: italic;
  color: var(--purple-light);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 540px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 0.8s ease 0.5s both;
  flex-wrap: wrap;
}
.stat-item { text-align: left; }
.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  color: #fff;
  line-height: 1;
}
.stat-number span { color: var(--purple-light); }
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--purple);
  padding: 1rem 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  padding: 7rem 0;
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-card-main {
  background: var(--charcoal-dark);
  border-radius: var(--radius);
  padding: 2.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.about-card-main::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(107,45,139,0.5) 0%, transparent 70%);
  top: -50px; right: -50px;
  border-radius: 50%;
}
.about-big-number {
  font-family: 'DM Serif Display', serif;
  font-size: 5rem;
  color: var(--purple-light);
  line-height: 1;
  opacity: 0.3;
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
}
.about-card-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--purple);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.5rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-card-accent .big { font-size: 1.8rem; font-family: 'DM Serif Display', serif; display: block; }

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.about-pillar {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  transition: var(--transition);
}
.about-pillar:hover { border-color: var(--purple); transform: translateY(-3px); }
.pillar-icon {
  width: 40px; height: 40px;
  background: var(--purple-faint);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
}
.pillar-icon svg { color: var(--purple); }
.pillar-title { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.3rem; }
.pillar-text  { font-size: 0.82rem; color: var(--text-muted); }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  padding: 7rem 0;
  background: var(--charcoal-dark);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
}
.services .section-label { color: var(--purple-light); background: rgba(107,45,139,0.2); border-color: rgba(107,45,139,0.4); }
.services .section-title { color: #fff; }
.services .section-sub   { color: rgba(255,255,255,0.6); }

.services-header { margin-bottom: 3.5rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--purple);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover {
  background: rgba(107,45,139,0.15);
  border-color: rgba(107,45,139,0.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px; height: 64px;
  background: var(--purple);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.service-icon svg { color: #fff; }
.service-card:hover .service-icon { background: var(--gold); transform: rotate(-5deg) scale(1.05); }

.service-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 0.6rem;
}
.service-title {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.8rem;
}
.service-desc { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; line-height: 1.7; }
.service-rate {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(107,45,139,0.3);
  border: 1px solid rgba(107,45,139,0.5);
  color: var(--purple-light);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 5px 12px;
  border-radius: 50px;
}

/* ============================================================
   NUMBERS / IMPACT BAND
   ============================================================ */
.impact-band {
  background: var(--purple);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.impact-band::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  right: -100px; top: -150px;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
}
.impact-item { color: #fff; }
.impact-number {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.impact-number span { color: var(--gold); }
.impact-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.impact-divider {
  width: 1px;
  background: rgba(255,255,255,0.2);
  align-self: stretch;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: 7rem 0;
  background: var(--bg-alt);
}
.hiw-header { text-align: center; margin-bottom: 4rem; }
.hiw-header .section-sub { margin: 0 auto; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

/* Connecting line between steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(to right, var(--purple), var(--purple-mid));
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num-wrap {
  width: 80px; height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--bg);
  border: 3px solid var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.step-card:hover .step-num-wrap {
  background: var(--purple);
  transform: scale(1.1);
  box-shadow: 0 0 0 8px rgba(107,45,139,0.15);
}
.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--purple);
  transition: var(--transition);
}
.step-card:hover .step-num { color: #fff; }

.step-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--text); }
.step-desc  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   REQUIREMENTS SECTION
   ============================================================ */
.requirements {
  padding: 7rem 0;
  background: var(--bg);
}
.req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.req-qualify h3 {
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.req-list { display: flex; flex-direction: column; gap: 1rem; }
.req-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 1rem 1.2rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.req-list-item:hover { border-color: var(--purple); transform: translateX(4px); }
.req-check {
  width: 28px; height: 28px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.req-check svg { color: #fff; }
.req-list-item p { font-size: 0.93rem; color: var(--text); font-weight: 400; }

.req-docs {
  background: var(--charcoal-dark);
  border-radius: var(--radius);
  padding: 2.5rem;
  color: #fff;
}
.req-docs h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.req-docs .sub { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 2rem; }

.doc-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 1.1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  transition: var(--transition);
}
.doc-item:last-child { margin-bottom: 0; }
.doc-item:hover { background: rgba(107,45,139,0.2); border-color: rgba(107,45,139,0.5); }
.doc-icon {
  width: 64px; height: 64px;
  background: rgba(107,45,139,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.doc-icon svg { color: var(--purple-light); }
.doc-name { font-weight: 600; font-size: 0.95rem; }
.doc-hint { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

.req-note {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-sm);
  color: var(--gold);
  font-size: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.req-note svg { flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 7rem 0;
  background: var(--charcoal-dark);
  overflow: hidden;
}
.testimonials .section-label { color: var(--purple-light); background: rgba(107,45,139,0.2); border-color: rgba(107,45,139,0.4); }
.testimonials .section-title { color: #fff; }
.testi-header { text-align: center; margin-bottom: 3.5rem; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
}
.testi-card:hover {
  background: rgba(107,45,139,0.12);
  border-color: rgba(107,45,139,0.4);
  transform: translateY(-4px);
}
.testi-quote {
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem;
  color: var(--purple);
  line-height: 1;
  margin-bottom: -0.5rem;
  opacity: 0.6;
}
.testi-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 1.2rem; }
.testi-stars span { color: var(--gold); font-size: 1rem; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.testi-name  { font-weight: 700; font-size: 0.92rem; color: #fff; }
.testi-role  { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 1px; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq {
  padding: 7rem 0;
  background: var(--bg);
}
.faq-header { text-align: center; margin-bottom: 3.5rem; }
.faq-header .section-sub { margin: 0 auto; }

.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--purple); box-shadow: var(--shadow-sm); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.5rem;
  cursor: pointer;
  background: var(--bg);
  transition: var(--transition);
  gap: 1rem;
}
.faq-q:hover { background: var(--bg-alt); }
.faq-item.open .faq-q { background: var(--purple-faint); }

.faq-q-text {
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--text);
}
.faq-icon {
  width: 28px; height: 28px;
  background: var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--purple);
  transform: rotate(45deg);
}
.faq-icon svg { color: var(--text); transition: var(--transition); }
.faq-item.open .faq-icon svg { color: #fff; }

.faq-a {
  display: none;
  padding: 0 1.5rem 1.3rem;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
  background: var(--bg);
}
.faq-item.open .faq-a { display: block; }

/* ============================================================
   FACEBOOK SECTION
   ============================================================ */
.fb-section {
  padding: 5rem 0;
  background: var(--bg-alt);
}
.fb-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}
.fb-icon-wrap {
  width: 80px; height: 80px;
  background: #1877F2;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fb-icon-wrap svg { color: #fff; }
.fb-content { flex: 1; }
.fb-content h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.fb-content p  { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 1.3rem; }
.btn-fb {
  background: #1877F2;
  color: #fff;
  border-color: #1877F2;
}
.btn-fb:hover { background: #1456b5; border-color: #1456b5; transform: translateY(-2px); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--purple);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  top: -200px; left: -150px;
}
.cta-banner::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  bottom: -100px; right: -80px;
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  margin-bottom: 1rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.cta-banner-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  padding: 7rem 0;
  background: var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.contact-info p { color: var(--text-muted); margin-bottom: 2.5rem; font-size: 0.97rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 1.1rem 1.2rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.contact-item:hover { border-color: var(--purple); }
.contact-item-icon {
  width: 42px; height: 42px;
  background: var(--purple);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { color: #fff; }
.contact-item-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); font-weight: 600; }
.contact-item-value { font-weight: 600; color: var(--text); font-size: 0.97rem; margin-top: 2px; }
.contact-item-value a { color: var(--purple); }

.contact-map {
  background: var(--charcoal-dark);
  border-radius: var(--radius);
  padding: 2rem;
  color: #fff;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.map-placeholder {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.8rem;
  min-height: 200px;
  margin-bottom: 1.5rem;
  text-align: center;
  padding: 1.5rem;
}
.map-pin svg { color: var(--purple-light); }
.map-address { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
.map-address strong { color: #fff; display: block; margin-bottom: 0.3rem; font-size: 1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--charcoal-dark);
  color: rgba(255,255,255,0.75);
  padding-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img { height: 64px; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; max-width: 280px; }
.footer-namfisa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(107,45,139,0.25);
  border: 1px solid rgba(107,45,139,0.4);
  color: var(--purple-light);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  margin-top: 1.2rem;
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.2rem;
}
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--purple-light); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.9rem;
  font-size: 0.86rem;
}
.footer-contact-item svg { color: var(--purple-light); flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--purple-light); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom a:hover { color: var(--purple-light); }

.social-links {
  display: flex;
  gap: 0.7rem;
}
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,0.6);
}
.social-link:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: float-in 0.5s ease 1s both;
}
.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 36px rgba(37,211,102,0.6);
}
.floating-wa::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}
@keyframes float-in {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}

.floating-wa-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  background: var(--charcoal-dark);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.floating-wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--charcoal-dark);
}
.floating-wa:hover .floating-wa-tooltip { opacity: 1; }

/* ============================================================
   APPLY PAGE — FORM STYLES
   ============================================================ */
.apply-hero {
  min-height: 40vh;
  background: var(--charcoal-dark);
  display: flex;
  align-items: flex-end;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.apply-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.apply-hero-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,45,139,0.45) 0%, transparent 70%);
  width: 500px; height: 500px;
  right: -100px; top: -150px;
}
.apply-hero-content {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 3rem;
}
.apply-hero-content h1 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 0.7rem; }
.apply-hero-content p  { color: rgba(255,255,255,0.65); font-size: 1.05rem; }

.apply-section { padding: 5rem 0 7rem; background: var(--bg); }
.apply-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

.apply-form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.apply-form-card h2 { font-size: 1.7rem; margin-bottom: 0.4rem; }
.apply-form-card > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1.2rem; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.97rem;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); opacity: 0.7; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(107,45,139,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding: 0.9rem 1rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.form-submit { display: flex; gap: 1rem; flex-wrap: wrap; }
.form-submit .btn { flex: 1; justify-content: center; min-width: 140px; }

.apply-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
}
.sidebar-card h4 { font-size: 1.1rem; margin-bottom: 1rem; color: var(--text); }
.sidebar-card.dark { background: var(--charcoal-dark); border-color: transparent; color: #fff; }
.sidebar-card.dark h4 { color: #fff; }
.sidebar-card.purple { background: var(--purple); border-color: transparent; color: #fff; }
.sidebar-card.purple h4 { color: #fff; }
.sidebar-list { display: flex; flex-direction: column; gap: 0.7rem; }
.sidebar-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
}
.sidebar-list li::before {
  content: '✓';
  width: 20px; height: 20px;
  background: var(--purple);
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sidebar-card.purple .sidebar-list li::before { background: rgba(255,255,255,0.25); }

.sidebar-contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.9rem;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 0.7rem;
  transition: var(--transition);
}
.sidebar-contact-link:hover { background: rgba(255,255,255,0.14); }
.sidebar-contact-link svg { flex-shrink: 0; }

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success.show { display: block; }
.success-icon {
  width: 72px; height: 72px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.success-icon svg { color: #fff; }
.form-success h3 { font-size: 1.6rem; margin-bottom: 0.8rem; }
.form-success p  { color: var(--text-muted); }

/* ============================================================
   LOAN CALCULATOR (Apply page sidebar)
   ============================================================ */
.calc-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.6rem; font-size: 0.88rem; }
.calc-row span:first-child { color: rgba(255,255,255,0.7); }
.calc-row span:last-child  { font-weight: 700; color: #fff; }
.calc-divider { height: 1px; background: rgba(255,255,255,0.15); margin: 0.8rem 0; }
.calc-total { font-size: 1.05rem !important; }
.calc-total span:last-child { font-size: 1.3rem !important; color: var(--gold) !important; }

.calc-range {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1.2rem;
}
.calc-range label { font-size: 0.78rem; color: rgba(255,255,255,0.6); font-weight: 600; }
.calc-range input[type="range"] {
  width: 100%;
  accent-color: var(--gold);
  cursor: pointer;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid  { grid-template-columns: 1fr 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .impact-grid    { grid-template-columns: repeat(2, 1fr); }
  .impact-divider { display: none; }
  .apply-grid     { grid-template-columns: 1fr; }
  .apply-sidebar  { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-actions .btn { display: none; }
  .hamburger  { display: flex; }

  .hero-content { max-width: 100%; }
  .hero-stats   { gap: 1.5rem; }
  .about-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .about-card-accent { position: static; margin-top: 1.5rem; display: inline-block; }
  .about-visual { order: -1; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid   { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .req-grid     { grid-template-columns: 1fr; gap: 2rem; }
  .testi-grid   { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .fb-card      { flex-direction: column; gap: 1.5rem; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .apply-sidebar { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT FORM — inside the Contact section
   ============================================================ */

/* Two-column layout: info left, form right */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 4rem;
  align-items: start;
}

/* The white card that wraps the form */
.contact-form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.4rem;
  box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.contact-form-card > p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 1.6rem;
  line-height: 1.6;
}

/* Reuse the same form-group, form-row, btn styles from apply.html */

/* ── Form section divider label (apply page) ─────────────── */
.form-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple);
  padding-bottom: 0.55rem;
  border-bottom: 2px solid var(--border);
  margin-bottom: 1.1rem;
  margin-top: 0.5rem;
}

/* ── Captcha block ───────────────────────────────────────── */
.captcha-block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem;
  margin-bottom: 1.2rem;
}

.captcha-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

/* The generated "What is X + Y?" text */
.captcha-question-text {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--text);
}

/* Small refresh button — icon only */
.captcha-refresh-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 9px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
}

.captcha-refresh-btn:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: var(--purple-faint);
}

.captcha-refresh-btn svg {
  flex-shrink: 0;
}

.captcha-input {
  width: 130px;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
  letter-spacing: 0.08em;
}

.captcha-input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(107,45,139,0.12);
}

#captcha-hint {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.45rem;
}

/* ── Inline form feedback (success / error) ─────────────── */
.form-feedback {
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.form-feedback[hidden] { display: none; }

.form-feedback--error {
  background: #fff1f1;
  border: 1px solid #f5c2c2;
  color: #b91c1c;
}

.form-feedback--success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
}

[data-theme="dark"] .form-feedback--error {
  background: rgba(239,68,68,0.12);
  border-color: rgba(239,68,68,0.3);
  color: #fca5a5;
}

[data-theme="dark"] .form-feedback--success {
  background: rgba(34,197,94,0.12);
  border-color: rgba(34,197,94,0.3);
  color: #86efac;
}

/* ── Contact form success state ─────────────────────────── */
.contact-success {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.contact-success[hidden] { display: none; }

.contact-success-icon {
  width: 64px;
  height: 64px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.contact-success-icon svg { color: #fff; }

.contact-success h4 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.contact-success p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ── Honeypot field — hidden from real users ─────────────── */
.form-honeypot {
  /* Visually hidden but present for bots */
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  tab-index: -1;
  pointer-events: none;
}

/* ── Submit row (matches apply page pattern) ─────────────── */
.contact-submit {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.contact-submit .btn {
  flex: 1;
  justify-content: center;
  min-width: 140px;
}

/* ============================================================
   RESPONSIVE — Contact grid
   ============================================================ */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — Breakpoints (continued)
   ============================================================ */

@media (max-width: 480px) {
  .steps-grid   { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 1.5rem; }
  .impact-grid  { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .about-pillars { grid-template-columns: 1fr; }
}
