/* === 0035 - Emerald Green Financial Style === */
:root {
  --primary: #059669;
  --primary-dark: #047857;
  --primary-light: #34D399;
  --primary-bg: rgba(5, 150, 105, 0.06);
  --primary-border: rgba(5, 150, 105, 0.2);
  --text-dark: #0f172a;
  --text-gray: #64748b;
  --bg-light: #ECFDF5;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--text-dark); background: #fff; line-height: 1.6; overflow-x: hidden; }

/* Navbar Glass */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.8); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(5,150,105,0.1); padding: 0 2rem; height: 72px; display: flex; align-items: center; justify-content: space-between; transition: all 0.3s; }
.navbar.scrolled { background: rgba(255,255,255,0.95); box-shadow: 0 4px 30px rgba(5,150,105,0.06); }
.nav-logo { font-size: 1.5rem; font-weight: 800; color: var(--primary-dark); text-decoration: none; display: flex; align-items: center; gap: 0.5rem; }
.nav-logo i { color: var(--primary); font-size: 1.75rem; }
.nav-links { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-weight: 500; font-size: 0.95rem; transition: color 0.2s; position: relative; }
.nav-links a:hover { color: var(--primary); }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--primary); transition: width 0.3s; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--primary); color: #fff !important; padding: 0.6rem 1.6rem; border-radius: 8px; font-weight: 600; box-shadow: 0 4px 15px rgba(5,150,105,0.3); transition: all 0.3s; }
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(5,150,105,0.4); }
.nav-cta::after { display: none; }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; color: var(--text-dark); cursor: pointer; }

/* Hero - Card Float 3D */
.hero-section { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 7rem 2rem 4rem; background: linear-gradient(180deg, #ECFDF5 0%, #D1FAE5 40%, #A7F3D0 100%); overflow: hidden; }
.hero-grid-bg { position: absolute; inset: 0; background-image: radial-gradient(rgba(5,150,105,0.08) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; }
.hero-container { max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(5,150,105,0.08); border: 1px solid rgba(5,150,105,0.2); color: var(--primary-dark); padding: 0.5rem 1.2rem; border-radius: 8px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem; }
.hero-badge .dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero-title { font-size: 3.5rem; font-weight: 900; line-height: 1.15; color: var(--text-dark); margin-bottom: 1.5rem; }
.hero-title .highlight { color: var(--primary); position: relative; }
.hero-title .highlight::after { content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 6px; background: rgba(5,150,105,0.15); z-index: -1; }
.hero-desc { font-size: 1.15rem; color: var(--text-gray); line-height: 1.8; margin-bottom: 2.5rem; max-width: 500px; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--primary); color: #fff; padding: 0.95rem 2.2rem; border-radius: 10px; font-weight: 700; font-size: 1rem; text-decoration: none; box-shadow: 0 8px 30px rgba(5,150,105,0.35); transition: all 0.3s; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 14px 40px rgba(5,150,105,0.45); }
.btn-outline { display: inline-flex; align-items: center; gap: 0.5rem; background: transparent; color: var(--text-dark); padding: 0.95rem 2.2rem; border-radius: 10px; font-weight: 700; font-size: 1rem; text-decoration: none; border: 2px solid rgba(5,150,105,0.2); transition: all 0.3s; cursor: pointer; }
.btn-outline:hover { background: rgba(5,150,105,0.04); border-color: var(--primary); color: var(--primary); transform: translateY(-3px); }
.hero-card-stack { position: relative; display: flex; justify-content: center; align-items: center; perspective: 1000px; min-height: 420px; }
.hero-card-3d { position: relative; z-index: 3; transition: transform 0.1s ease-out; transform-style: preserve-3d; }
.hero-card-3d img { border-radius: 20px; box-shadow: 0 35px 80px rgba(5,150,105,0.2); display: block; max-width: 480px; width: 100%; }
.hero-card-shadow { position: absolute; bottom: 5%; left: 50%; transform: translateX(-50%); width: 85%; height: 40px; background: radial-gradient(ellipse, rgba(5,150,105,0.25), transparent 70%); border-radius: 50%; z-index: 1; }
.hero-card-behind { position: absolute; top: 15px; left: 50%; transform: translateX(-50%) rotate(-3deg) scale(0.92); width: 85%; height: 85%; background: linear-gradient(135deg, #047857, #059669); border-radius: 20px; z-index: 2; opacity: 0.15; }

/* Section Common */
.section { padding: 6rem 2rem; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-tag { display: inline-block; color: var(--primary); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.section-title { font-size: 2.5rem; font-weight: 800; color: var(--text-dark); margin-bottom: 1rem; }
.section-subtitle { font-size: 1.1rem; color: var(--text-gray); line-height: 1.7; }
.container { max-width: 1200px; margin: 0 auto; }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature-card { background: #fff; border-radius: 16px; padding: 2.5rem 2rem; border: 1px solid #e2e8f0; box-shadow: 0 2px 15px rgba(0,0,0,0.02); transition: all 0.35s; position: relative; }
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(5,150,105,0.08); border-color: rgba(5,150,105,0.15); }
.feature-number { font-size: 3rem; font-weight: 900; color: rgba(5,150,105,0.08); position: absolute; top: 1.25rem; right: 1.5rem; line-height: 1; pointer-events: none; }
.feature-icon { width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--primary); background: var(--bg-light); margin-bottom: 1.5rem; position: relative; z-index: 1; }
.feature-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; position: relative; z-index: 1; }
.feature-card p { font-size: 0.95rem; color: var(--text-gray); line-height: 1.7; position: relative; z-index: 1; }

/* Stats */
.stats-bg { background: linear-gradient(135deg, #ECFDF5 0%, #fff 50%, #ECFDF5 100%); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-item { text-align: center; padding: 2.5rem 1.5rem; background: #fff; border-radius: 16px; box-shadow: 0 2px 20px rgba(5,150,105,0.04); transition: transform 0.3s; border: 1px solid transparent; }
.stat-item:hover { transform: translateY(-5px); border-color: rgba(5,150,105,0.12); }
.stat-number { font-size: 3rem; font-weight: 900; color: var(--primary); }
.stat-label { font-size: 1rem; color: var(--text-gray); margin-top: 0.5rem; font-weight: 500; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card { background: #fff; border-radius: 16px; padding: 2.5rem 2rem; border: 1px solid #e2e8f0; transition: all 0.3s; position: relative; overflow: hidden; }
.testimonial-card::before { content: '\201C'; position: absolute; top: 0.5rem; right: 1.5rem; font-size: 5rem; color: rgba(5,150,105,0.06); line-height: 1; font-family: serif; pointer-events: none; }
.testimonial-card:hover { box-shadow: 0 15px 50px rgba(5,150,105,0.06); transform: translateY(-4px); border-color: rgba(5,150,105,0.12); }
.testimonial-text { font-size: 1rem; color: var(--text-dark); line-height: 1.8; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; position: relative; z-index: 1; }
.testimonial-author img { width: 50px; height: 50px; border-radius: 50%; border: 3px solid var(--primary-light); }
.testimonial-author h4 { font-size: 1rem; font-weight: 700; }
.testimonial-author p { font-size: 0.85rem; color: var(--text-gray); }

/* FAQ */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: 12px; margin-bottom: 0.75rem; border: 1px solid #e2e8f0; overflow: hidden; transition: all 0.3s; }
.faq-item.active { border-color: rgba(5,150,105,0.2); box-shadow: 0 6px 30px rgba(5,150,105,0.06); }
.faq-question { width: 100%; padding: 1.4rem 1.75rem; display: flex; justify-content: space-between; align-items: center; background: none; border: none; cursor: pointer; font-size: 1.02rem; font-weight: 600; color: var(--text-dark); text-align: left; }
.faq-question .faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--bg-light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; transition: all 0.35s; flex-shrink: 0; }
.faq-item.active .faq-question .faq-icon { background: var(--primary); color: #fff; transform: rotate(45deg); }
.faq-answer { padding: 0 1.75rem; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.active .faq-answer { max-height: 300px; padding: 0 1.75rem 1.5rem; }
.faq-answer p { font-size: 0.95rem; color: var(--text-gray); line-height: 1.8; }

/* CTA */
.cta-bg { background: linear-gradient(135deg, #047857 0%, #059669 40%, #34D399 100%); position: relative; overflow: hidden; }
.cta-bg::before { content: ''; position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,255,255,0.05), transparent 70%); border-radius: 50%; top: -250px; right: -150px; }
.cta-bg::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 30px 30px; }
.cta-content { text-align: center; position: relative; z-index: 1; color: #fff; }
.cta-content h2 { font-size: 2.8rem; font-weight: 900; margin-bottom: 1rem; }
.cta-content p { font-size: 1.15rem; opacity: 0.9; margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-white { display: inline-flex; align-items: center; gap: 0.5rem; background: #fff; color: var(--primary); padding: 0.95rem 2.5rem; border-radius: 10px; font-weight: 700; font-size: 1rem; text-decoration: none; box-shadow: 0 8px 30px rgba(0,0,0,0.15); transition: all 0.3s; }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,0.2); }
.btn-cta-outline { display: inline-flex; align-items: center; gap: 0.5rem; background: transparent; color: #fff; padding: 0.95rem 2.5rem; border-radius: 10px; font-weight: 700; font-size: 1rem; text-decoration: none; border: 2px solid rgba(255,255,255,0.35); transition: all 0.3s; }
.btn-cta-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-3px); }

/* Footer */
.footer { background: #0f172a; color: #94a3b8; padding: 4rem 2rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto 3rem; }
.footer-brand h3 { font-size: 1.5rem; color: #fff; margin-bottom: 1rem; }
.footer-brand h3 i { color: var(--primary-light); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 { font-size: 1rem; color: #fff; margin-bottom: 1.25rem; font-weight: 700; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a { color: #94a3b8; text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary-light); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.06); max-width: 1200px; margin: 0 auto; font-size: 0.85rem; color: #64748b; }

@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-title { font-size: 2.8rem; }
  .hero-desc { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-card-stack { order: -1; min-height: auto; }
  .hero-card-3d img { max-width: 360px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); flex-direction: column; padding: 2rem; gap: 1.5rem; border-bottom: 1px solid rgba(5,150,105,0.1); }
  .nav-links.active { display: flex; }
  .mobile-menu-btn { display: block; }
  .hero-title { font-size: 2.2rem; }
  .section { padding: 4rem 1.5rem; }
  .section-title { font-size: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-content h2 { font-size: 2rem; }
}
