/* ============================================================
   DESIGN SYSTEM & VARIABLES
============================================================ */
:root {
  --green-50: #ecfdf5;
  --green-100: #d1fae5;
  --green-200: #a7f3d0;
  --green-400: #34d399;
  --green-500: #10b981;
  --green-600: #059669;
  --green-700: #047857;
  --green-800: #065f46;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-green: 0 10px 30px rgba(5, 150, 105, 0.25);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --font-scale: 1;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Heebo', sans-serif;
  font-size: calc(1rem * var(--font-scale));
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
}

body.high-contrast {
  filter: contrast(1.5);
}

body.highlight-links a {
  outline: 3px solid var(--green-600) !important;
  outline-offset: 2px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: 'Heebo', sans-serif;
  border: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   HEADER & NAVBAR
============================================================ */
#main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s;
}

#main-header.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.2s;
}

.brand-logo-img:hover {
  transform: scale(1.02);
}

.footer-brand-logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 0.75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--green-500);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--green-600);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: white;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  box-shadow: var(--shadow-green);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(5, 150, 105, 0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0 1.25rem;
  border-top: 1px solid var(--gray-200);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--green-600);
}

/* ============================================================
   HERO SECTION
============================================================ */
#hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a2e1f 0%, #064e3b 40%, #065f46 70%, #047857 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 4rem 0 5rem;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero_bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  mix-blend-mode: luminosity;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.15);
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-20px) scale(1);
    opacity: 0;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #a7f3d0;
  margin-bottom: 1.75rem;
  animation: fade-in-down 0.8s ease both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green-400);
  border-radius: 50%;
  animation: dot-pulse 2s infinite;
}

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

.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  animation: fade-in-up 0.8s 0.1s ease both;
}

.hero-title .highlight {
  background: linear-gradient(90deg, var(--green-400), #6ee7b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.8;
  animation: fade-in-up 0.8s 0.2s ease both;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  animation: fade-in-up 0.8s 0.3s ease both;
}

.hero-bullet {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.bullet-icon {
  width: 22px;
  height: 22px;
  background: rgba(52, 211, 153, 0.2);
  border: 1.5px solid var(--green-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-400);
  font-size: 0.7rem;
  font-weight: 800;
}

.hero-cta-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fade-in-up 0.8s 0.4s ease both;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--green-400), var(--green-500));
  color: var(--gray-900);
  padding: 0.9rem 2rem;
  border-radius: var(--radius-full);
  font-size: 1.05rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(52, 211, 153, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse-hero 2.5s infinite;
  text-decoration: none;
  font-family: 'Heebo', sans-serif;
}

@keyframes pulse-hero {
  0%, 100% {
    box-shadow: 0 8px 30px rgba(52, 211, 153, 0.4);
  }
  50% {
    box-shadow: 0 8px 50px rgba(52, 211, 153, 0.7), 0 0 0 10px rgba(52, 211, 153, 0.1);
  }
}

.btn-hero:hover {
  transform: translateY(-3px);
}

.hero-trust-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-visual {
  position: relative;
  animation: fade-in-right 0.9s 0.2s ease both;
}

.hero-office-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-office-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ============================================================
   SECTIONS SHARED
============================================================ */
.section-pad {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-50);
  color: var(--green-700);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   CTA BANNER
============================================================ */
#cta-banner {
  background: linear-gradient(135deg, var(--green-600) 0%, var(--green-800) 60%, #0a2e1f 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

.cta-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.cta-sub {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-right: auto;
  margin-left: auto;
}

.cta-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #a7f3d0;
}

/* ============================================================
   WHATSAPP FLOAT
============================================================ */
#whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.wa-tooltip {
  background: var(--gray-900);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

#whatsapp-float:hover .wa-tooltip {
  opacity: 1;
}

.wa-btn {
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  transition: transform 0.2s;
  animation: wa-pulse 3s infinite;
  text-decoration: none;
}

@keyframes wa-pulse {
  0%, 100% {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 6px 35px rgba(37, 211, 102, 0.8), 0 0 0 12px rgba(37, 211, 102, 0.1);
  }
}

.wa-btn:hover {
  transform: scale(1.1);
}

.wa-btn svg {
  width: 30px;
  height: 30px;
  fill: white;
}

/* ============================================================
   FLOATING QUICK FUNDS POPUP TOAST
============================================================ */
.funds-popup-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  border: 1.5px solid var(--green-400);
  border-radius: var(--radius-xl);
  padding: 0.85rem 1.15rem 0.85rem 2.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 16px 40px rgba(5, 150, 105, 0.24), 0 4px 14px rgba(0, 0, 0, 0.08);
  animation: popupJump 0.65s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s both;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  max-width: 440px;
  direction: rtl;
}

.funds-popup-toast:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(5, 150, 105, 0.3), 0 6px 18px rgba(0, 0, 0, 0.1);
}

@keyframes popupJump {
  0% {
    opacity: 0;
    transform: translateY(45px) scale(0.9);
  }
  70% {
    transform: translateY(-8px) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.toast-close-btn {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 22px;
  height: 22px;
  background: rgba(0, 0, 0, 0.07);
  color: var(--gray-700);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.toast-close-btn:hover {
  background: #ef4444;
  color: white;
  transform: scale(1.1);
}

.toast-pulse-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-green);
  position: relative;
}

.toast-pulse-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid var(--green-400);
  animation: pulse-ring 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 0; }
  100% { transform: scale(0.95); opacity: 0; }
}

.toast-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.toast-headline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.96rem;
  color: var(--gray-900);
}

.toast-headline strong {
  font-weight: 900;
  color: var(--green-800);
}

.toast-badge-mini {
  background: var(--green-100);
  color: var(--green-800);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.toast-subline {
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 500;
  line-height: 1.4;
}

.toast-action-btn {
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: white !important;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.toast-action-btn:hover {
  background: linear-gradient(135deg, var(--green-700), var(--green-800));
  transform: scale(1.04);
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--gray-900);
  color: white;
}

.footer-main {
  padding: 3.5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand-text {
  font-size: 0.88rem;
  color: var(--gray-400);
  margin-top: 1rem;
  line-height: 1.7;
}

.footer-col-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--gray-400);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--green-400);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a:hover {
  color: var(--green-400);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-legal {
  background: #0a0d10;
  padding: 2.5rem 0;
}

.legal-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.legal-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--green-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legal-text {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.85;
}

.legal-text p {
  margin-bottom: 0.75rem;
}

.legal-text p:last-child {
  margin-bottom: 0;
}

.legal-sub-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
  margin: 1rem 0;
}

.legal-sub-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: #93c5fd;
  margin-bottom: 0.4rem;
}

.permanent-footer-disclaimer {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.8rem;
  color: var(--gray-400);
  line-height: 1.85;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--gray-600);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom a {
  color: var(--gray-500);
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--green-400);
}

/* ============================================================
   GLOBAL ANIMATIONS
============================================================ */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-down {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-right {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================================
   RESPONSIVE (GLOBAL LAYOUT & SECTIONS)
============================================================ */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  /* Layout & Spacing */
  .section-pad {
    padding: 3rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  /* Header */
  #header-cta {
    display: none !important;
  }

  .nav-links {
    display: none !important;
  }

  .hamburger {
    display: flex;
    margin-right: auto;
  }

  .brand-logo-img {
    height: 38px;
  }

  /* Hero Section */
  #hero {
    min-height: auto;
    padding: 2.25rem 0 3.25rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    text-align: center;
  }

  .hero-visual {
    display: none !important;
  }

  .hero-title,
  .hero-subtitle,
  .hero-badge,
  .hero-bullets,
  .hero-cta-wrap {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-badge {
    font-size: 0.78rem;
    white-space: normal;
    text-align: center;
    padding: 0.5rem 0.95rem;
    line-height: 1.4;
    margin-bottom: 1.25rem;
    max-width: 100%;
    display: inline-flex;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.15);
    color: #a7f3d0;
  }

  .hero-title {
    font-size: 1.9rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 0.85rem;
    color: white;
  }

  .hero-subtitle {
    font-size: 0.94rem;
    line-height: 1.65;
    margin-bottom: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
  }

  .hero-bullets {
    align-items: stretch;
    width: 100%;
    max-width: 360px;
    margin: 0 auto 1.5rem;
    gap: 0.65rem;
  }

  .hero-bullet {
    text-align: right;
    align-items: flex-start;
    font-size: 0.9rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.95);
  }

  .hero-bullet strong {
    color: #6ee7b7;
  }

  .bullet-icon {
    margin-top: 3px;
    flex-shrink: 0;
  }

  .hero-cta-wrap {
    justify-content: center;
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-hero {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    font-size: 1.05rem;
    padding: 0.9rem 1.5rem;
  }

  .hero-trust-note {
    justify-content: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
  }

  /* Section Headers */
  .section-badge {
    font-size: 0.76rem;
    white-space: normal;
    line-height: 1.35;
    text-align: center;
    padding: 0.4rem 0.85rem;
    margin-bottom: 0.65rem;
    border-radius: var(--radius-md);
    display: inline-block;
  }

  .section-title {
    font-size: 1.65rem;
    line-height: 1.25;
  }

  .section-subtitle {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  /* CTA Banner */
  #cta-banner {
    padding: 3rem 0;
  }

  .cta-title {
    font-size: 1.55rem;
  }

  .cta-sub {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }

  .cta-badges {
    gap: 0.4rem;
    justify-content: center;
  }

  .cta-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.65rem;
  }

  /* Footer */
  .footer-main {
    padding: 2.5rem 0 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand-logo-img {
    margin: 0 auto 0.75rem;
  }

  .footer-brand-text {
    margin: 0 auto 1.25rem;
    max-width: 360px;
  }

  .footer-col-title {
    margin-bottom: 0.75rem;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.6rem;
    text-align: center;
    padding: 1.25rem 0;
  }

  /* Floating WhatsApp Button */
  #whatsapp-float {
    bottom: 1.25rem;
    left: 1.25rem;
  }

  .wa-btn {
    width: 50px;
    height: 50px;
  }

  .wa-btn svg {
    width: 26px;
    height: 26px;
  }

  /* Floating Quick Funds Popup Toast on Mobile */
  .funds-popup-toast {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    left: auto;
    max-width: calc(100vw - 5.5rem);
    padding: 0.45rem 0.75rem 0.45rem 1.6rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.22);
    z-index: 9990;
    gap: 0.5rem;
  }

  .funds-popup-toast .toast-pulse-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    border-radius: 8px;
  }

  .funds-popup-toast .toast-headline {
    font-size: 0.8rem;
    gap: 0.3rem;
  }

  .funds-popup-toast .toast-headline strong {
    font-size: 0.8rem;
  }

  .funds-popup-toast .toast-badge-mini {
    display: none;
  }

  .funds-popup-toast .toast-subline {
    font-size: 0.68rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 175px;
  }

  .funds-popup-toast .toast-action-btn {
    display: none;
  }

  .funds-popup-toast .toast-close-btn {
    top: 4px;
    left: 4px;
    width: 18px;
    height: 18px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.65rem;
  }
}
