/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --teal-dark: #0a3434;
  --teal: #0d3b3b;
  --teal-2: #11494a;
  --gold: #c9a227;
  --gold-soft: #d4af37;
  --ink: #0a2727;
  --page: #ffffff;
  --page-alt: #f4f7f6;
  --text: #143c3c;
  --muted: #5a7575;
  --line: #e2ebea;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--page);
  color: var(--text);
  overflow-x: hidden;
}

a { text-decoration: none; }

/* ===== Buttons ===== */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #1a1a1a;
  border: none;
  padding: 13px 38px;
  border-radius: 40px;
  font-weight: 600;
  transition: .35s;
  box-shadow: 0 8px 22px rgba(201, 162, 39, .25);
}
.btn-gold:hover {
  transform: translateY(-4px);
  color: #000;
  box-shadow: 0 14px 30px rgba(201, 162, 39, .4);
}
.btn-outline-gold {
  border: 2px solid var(--teal);
  color: var(--teal);
  padding: 11px 34px;
  border-radius: 40px;
  font-weight: 600;
  transition: .35s;
}
.btn-outline-gold:hover {
  background: var(--teal);
  color: #fff;
}

/* ===== Navbar ===== */
.navbar {
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(12px);
  transition: .4s;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.navbar.scrolled {
  background: #fff;
  box-shadow: 0 4px 25px rgba(13, 59, 59, .08);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar-brand img {
  height: 52px;
  border-radius: 8px;
}
.navbar-brand span {
  font-weight: 700;
  font-size: 20px;
  color: var(--teal);
}
.nav-link {
  color: var(--teal) !important;
  margin-left: 14px;
  font-weight: 500;
  transition: .3s;
}
.nav-link:hover, .nav-link.active { color: var(--gold) !important; }
.btn-nav {
  background: var(--teal);
  color: #fff !important;
  border-radius: 30px;
  padding: 7px 22px !important;
}
.btn-nav:hover { background: var(--gold); color: #1a1a1a !important; }
.navbar-toggler {
  background: var(--page-alt);
  border: 1px solid var(--line);
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 12%, rgba(201, 162, 39, .22), transparent 46%),
    radial-gradient(circle at 8% 88%, rgba(37, 211, 102, .10), transparent 42%),
    linear-gradient(135deg, #072626 0%, #0d3b3b 55%, #11494a 100%);
  padding: 130px 0 70px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .55;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.gold { color: var(--gold); letter-spacing: 3px; font-weight: 600; }
.hero .gold { color: var(--gold-soft); }
.hero h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.15;
  margin: 8px 0 18px;
  color: #ffffff;
}
.hero p {
  font-size: 19px;
  color: rgba(255, 255, 255, .82);
  max-width: 540px;
}
.hero-sub {
  font-size: 15px !important;
  color: var(--gold-soft) !important;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px !important;
}
.hero .btn-outline-gold { border-color: var(--gold-soft); color: #fff; }
.hero .btn-outline-gold:hover { background: var(--gold-soft); color: #1a1a1a; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin: 28px 0; }
.hero-logo {
  width: 380px;
  max-width: 100%;
  border-radius: 22px;
  filter: drop-shadow(0 22px 45px rgba(0, 0, 0, .45));
  animation: float 4s infinite ease-in-out;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
.hero-stats {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero-stats h3 { color: var(--gold-soft); font-weight: 800; font-size: 26px; margin: 0; }
.hero-stats span { color: rgba(255, 255, 255, .65); font-size: 14px; }

/* ===== Sections ===== */
section { padding: 90px 0; }
.section-head { max-width: 760px; margin: 0 auto 55px; }
h2 { color: var(--teal); font-weight: 800; font-size: 38px; }
.lead-muted { color: var(--muted); font-size: 17px; margin-top: 14px; }

/* ===== About ===== */
#about { background: var(--page-alt); }
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 38px 28px;
  text-align: center;
  height: 100%;
  transition: .4s;
  box-shadow: 0 8px 25px rgba(13, 59, 59, .05);
}
.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(13, 59, 59, .12);
}
.info-card i { font-size: 42px; color: var(--gold); margin-bottom: 18px; }
.info-card h4 { font-weight: 700; margin-bottom: 12px; color: var(--teal); }
.info-card p { color: var(--muted); margin: 0; }

/* ===== Plans ===== */
.plans-section { background: #fff; }
.plan-badge {
  display: block;
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 12px 34px;
  border-radius: 12px;
  margin: 0 auto 34px;
  text-align: center;
  width: 100%;
  max-width: 480px;
}
.plan-card {
  position: relative;
  background: #fbfcfc;
  color: var(--teal);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  transition: .4s;
  height: 100%;
  box-shadow: 0 12px 35px rgba(13, 59, 59, .07);
}
.plan-card:hover { transform: translateY(-12px); box-shadow: 0 22px 50px rgba(13, 59, 59, .15); }
.plan-card.popular { border: 2px solid var(--gold); }
.plan-tag {
  position: absolute;
  top: 18px; right: -34px;
  background: var(--gold);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 12px;
  padding: 5px 40px;
  transform: rotate(45deg);
  z-index: 2;
}
.plan-card-head {
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
  padding: 30px 20px 24px;
  text-align: center;
}
.plan-card-head h3 { color: #fff; font-weight: 800; letter-spacing: 2px; margin: 0; }
.plan-rate { color: var(--gold-soft); font-weight: 800; font-size: 30px; margin-top: 6px; }
.plan-list { list-style: none; padding: 26px 28px 14px; margin: 0; }
.plan-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed #d4e3e3;
}
.plan-list li:last-child { border-bottom: none; }
.plan-list i {
  color: var(--teal);
  font-size: 18px;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1.5px solid var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}
.plan-list span { display: flex; flex-direction: column; font-size: 14px; color: var(--muted); }
.plan-list b { color: var(--teal); font-size: 18px; }

/* Invest Now button */
.plan-cta { padding: 4px 28px 30px; }
.btn-invest {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #1a1a1a;
  border: none;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 13px;
  border-radius: 40px;
  transition: .35s;
  box-shadow: 0 8px 22px rgba(201, 162, 39, .22);
}
.btn-invest i { margin-right: 9px; }
.btn-invest:hover {
  transform: translateY(-3px);
  color: #000;
  box-shadow: 0 14px 30px rgba(201, 162, 39, .4);
}

/* Bank account details */
.bank-details {
  margin-top: 34px;
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
  border-radius: 18px;
  padding: 32px 26px;
  text-align: center;
}
.bank-details > h5 { color: #fff; font-weight: 700; font-size: 19px; margin-bottom: 24px; }
.bank-details > h5 i { color: var(--gold-soft); margin-right: 8px; }
.bank-grid { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.bank-grid > div {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(201, 162, 39, .35);
  border-radius: 14px;
  padding: 18px 28px;
  min-width: 230px;
  flex: 1;
  max-width: 300px;
}
.bank-grid span {
  display: block;
  color: var(--gold-soft);
  font-size: 13px;
  letter-spacing: .5px;
  margin-bottom: 7px;
}
.bank-grid b { color: #fff; font-size: 18px; letter-spacing: .5px; }
.bank-note { color: rgba(255, 255, 255, .7); font-size: 13px; margin: 22px 0 0; }

/* feature strip */
.feature-strip { margin-top: 60px; text-align: center; }
.feature-strip i { font-size: 34px; color: var(--gold); margin-bottom: 12px; }
.feature-strip h5 { font-weight: 700; font-size: 16px; color: var(--teal); }
.feature-strip p { color: var(--muted); font-size: 13px; margin: 0; }

/* ===== Referral ===== */
.referral-section { background: var(--page-alt); }
.referral-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 24px;
  text-align: center;
  height: 100%;
  transition: .4s;
  box-shadow: 0 8px 25px rgba(13, 59, 59, .05);
}
.referral-card:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(13, 59, 59, .12); }
.referral-card i { font-size: 40px; color: var(--teal); }
.referral-card h3 { font-size: 56px; font-weight: 800; color: var(--gold); margin: 10px 0 0; }
.ref-label { text-transform: uppercase; letter-spacing: 1px; color: var(--muted); font-size: 13px; }
.referral-card p { margin-top: 18px; font-weight: 600; font-size: 18px; color: var(--teal); }
.referral-card small { color: var(--muted); font-weight: 400; }

/* ===== Security ===== */
.security-section { background: #fff; }
.security-card {
  background: #fbfcfc;
  border-radius: 18px;
  padding: 36px 28px;
  height: 100%;
  border: 1px solid var(--line);
  transition: .4s;
  box-shadow: 0 8px 25px rgba(13, 59, 59, .05);
}
.security-card:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(13, 59, 59, .12); }
.security-card i { font-size: 40px; color: var(--gold); margin-bottom: 16px; }
.security-card h4 { font-weight: 700; margin-bottom: 12px; color: var(--teal); }
.security-card p { color: var(--muted); margin: 0; }
.trust-strip { margin-top: 55px; text-align: center; }
.trust-strip i { font-size: 28px; color: var(--gold); margin-bottom: 10px; }
.trust-strip h6 { font-size: 13px; color: var(--teal); font-weight: 600; }
.security-tagline {
  margin-top: 55px;
  text-align: center;
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
  border-radius: 18px;
  padding: 38px 24px;
}
.security-tagline h3 { color: #fff; font-weight: 800; margin-bottom: 6px; }
.security-tagline p { color: var(--gold-soft); font-weight: 600; margin: 0; letter-spacing: .5px; }

/* ===== Process ===== */
.process-section { background: var(--page-alt); }
.process-card {
  background: #fff;
  border-radius: 18px;
  padding: 34px 28px;
  height: 100%;
  border: 1px solid var(--line);
  position: relative;
  transition: .4s;
  box-shadow: 0 8px 25px rgba(13, 59, 59, .05);
}
.process-card:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(13, 59, 59, .12); }
.step-no {
  display: inline-block;
  font-size: 34px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
}
.process-card h4 { font-weight: 700; margin-bottom: 12px; font-size: 19px; color: var(--teal); }
.process-card p { color: var(--muted); margin: 0; font-size: 15px; }

/* step checklist */
.step-check { list-style: none; padding: 0; margin: 12px 0 0; }
.step-check li { color: var(--text); font-size: 15px; padding: 5px 0; }
.step-check i { color: var(--gold); margin-right: 8px; }

/* payment */
.payment-box {
  margin-top: 60px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 45px 30px;
  box-shadow: 0 12px 35px rgba(13, 59, 59, .06);
}
.payment-box h4 { color: var(--teal); font-weight: 700; margin-bottom: 6px; }
.pay-method {
  background: var(--page-alt);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 16px;
  transition: .35s;
}
.pay-method:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(13, 59, 59, .1); }
.pay-method i { font-size: 38px; color: var(--gold); margin-bottom: 12px; }
.pay-method h5 { font-weight: 600; margin: 0; font-size: 17px; color: var(--teal); }
.pay-method small { color: var(--muted); }

/* ===== Daily Updates ===== */
.updates-section { background: #fff; }
.updates-timeline {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.updates-timeline::before {
  content: "";
  position: absolute;
  left: 70px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--line);
}
.update-card {
  display: flex;
  gap: 26px;
  align-items: flex-start;
  margin-bottom: 26px;
  position: relative;
}
.update-date {
  flex-shrink: 0;
  width: 80px;
  text-align: center;
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
  color: #fff;
  border-radius: 14px;
  padding: 14px 6px;
  position: relative;
  z-index: 2;
}
.update-date .day { display: block; font-size: 28px; font-weight: 800; line-height: 1; }
.update-date .mon { display: block; font-size: 12px; color: var(--gold-soft); margin-top: 4px; }
.update-body {
  background: #fbfcfc;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 26px;
  flex: 1;
  box-shadow: 0 8px 25px rgba(13, 59, 59, .05);
  transition: .35s;
}
.update-card:hover .update-body {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(13, 59, 59, .12);
}
.update-badge {
  display: inline-block;
  background: rgba(201, 162, 39, .15);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 10px;
}
.update-body h4 { color: var(--teal); font-weight: 700; font-size: 19px; margin-bottom: 8px; }
.update-body p { color: var(--muted); margin: 0; font-size: 15px; }
.update-img {
  display: block;
  max-width: 100%;
  max-height: 360px;
  margin-top: 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: .3s;
}
.update-img:hover { transform: scale(1.01); box-shadow: 0 10px 28px rgba(13, 59, 59, .15); }
.update-card.new .update-body { border-color: var(--gold); }
.update-card.new .update-body::after {
  content: "NEW";
  float: right;
  background: var(--gold);
  color: #1a1a1a;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: -4px;
}
@media (max-width: 576px) {
  .updates-timeline::before { left: 38px; }
  .update-card { gap: 14px; }
  .update-date { width: 58px; padding: 10px 4px; }
  .update-date .day { font-size: 22px; }
  .update-date .mon { font-size: 10px; }
  .update-body { padding: 18px; }
}

/* ===== CTA band ===== */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(201, 162, 39, .28), transparent 50%),
    radial-gradient(circle at 12% 90%, rgba(37, 211, 102, .12), transparent 45%),
    linear-gradient(135deg, #072626, var(--teal-2));
  padding: 80px 0;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .5;
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: 42px; }
.cta-band p { color: var(--gold-soft); font-weight: 600; margin: 14px 0 0; font-size: 18px; }

/* ===== FAQ ===== */
.faq-section { background: var(--page-alt); }
#faqAccordion { max-width: 820px; margin: 0 auto; }
.accordion-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px !important;
  margin-bottom: 14px;
  overflow: hidden;
}
.accordion-button {
  font-weight: 600;
  color: var(--teal);
  background: #fff;
  font-size: 16px;
  padding: 18px 22px;
}
.accordion-button:not(.collapsed) {
  color: var(--teal);
  background: #f0f6f5;
  box-shadow: none;
}
.accordion-button:focus { box-shadow: none; border-color: var(--gold); }
.accordion-button::after {
  filter: sepia(1) saturate(4) hue-rotate(5deg);
}
.accordion-body { color: var(--muted); font-size: 15px; padding: 6px 22px 22px; }
.accordion-body a { color: var(--gold); font-weight: 600; }

/* ===== Contact ===== */
.contact-section { background: #fff; }
.contact-card {
  background: #fbfcfc;
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  border: 1px solid var(--line);
  transition: .4s;
  box-shadow: 0 8px 25px rgba(13, 59, 59, .05);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(13, 59, 59, .12); }
.contact-card i { font-size: 32px; color: var(--gold); margin-bottom: 14px; }
.contact-card h5 { font-weight: 700; margin-bottom: 8px; color: var(--teal); }
.contact-card p, .contact-card a { color: var(--muted); margin: 0; word-break: break-word; }
.contact-card a:hover { color: var(--gold); }
.contact-card.address i { font-size: 30px; }

/* ===== Footer ===== */
footer {
  background: var(--ink);
  padding: 36px 0;
  color: #b6cccc;
}
.footer-logo { height: 48px; border-radius: 8px; margin-bottom: 12px; background: #fff; padding: 4px; }
.footer-tag { color: var(--gold-soft); letter-spacing: 1px; font-weight: 600; font-size: 14px; }

/* whatsapp float */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px; height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 30px;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .5);
  transition: .3s;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

/* ===== Invest Now modal ===== */
.invest-modal {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(10, 39, 39, .35);
}
.invest-modal .modal-header {
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
  border: none;
  padding: 20px 24px;
}
.invest-modal .modal-title { color: #fff; font-weight: 700; font-size: 18px; }
.invest-modal .modal-title i { color: #25d366; margin-right: 8px; }
.invest-modal .btn-close { filter: invert(1) grayscale(1) brightness(1.8); opacity: .8; }
.invest-modal .modal-body { padding: 24px; }
.invest-plan-line { color: var(--teal); font-size: 15px; margin-bottom: 6px; }
.invest-plan-line b { color: var(--gold); }
.invest-sub { color: var(--muted); font-size: 14px; margin-bottom: 20px; }

/* Bank box inside Invest modal */
.modal-bank {
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 18px;
}
.modal-bank h6 {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
}
.modal-bank h6 i { color: var(--gold-soft); margin-right: 7px; }
.modal-bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, .12);
}
.modal-bank-row:last-child { border-bottom: none; }
.modal-bank-row span { color: var(--gold-soft); font-size: 13px; }
.modal-bank-row b { color: #fff; font-size: 15px; text-align: right; display: flex; align-items: center; gap: 8px; }
.copy-btn {
  background: rgba(255, 255, 255, .12);
  border: none;
  color: #fff;
  width: 30px; height: 30px;
  border-radius: 8px;
  cursor: pointer;
  transition: .25s;
}
.copy-btn:hover { background: var(--gold-soft); color: #1a1a1a; }
.copy-btn.copied { background: #25d366; color: #fff; }

/* Step indicator */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 6px 0 22px;
}
.step-dot { text-align: center; }
.step-dot span {
  display: inline-grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--page-alt);
  border: 2px solid var(--line);
  color: var(--muted);
  font-weight: 700;
  transition: .3s;
}
.step-dot small { display: block; font-size: 11px; color: var(--muted); margin-top: 4px; }
.step-dot.active span { background: var(--gold); border-color: var(--gold); color: #1a1a1a; }
.step-dot.active small { color: var(--teal); font-weight: 600; }
.step-dot.done span { background: var(--teal); border-color: var(--teal); color: #fff; }
.step-bar { width: 60px; height: 2px; background: var(--line); margin-bottom: 18px; }

/* Registration form */
.step-title { color: var(--teal); font-weight: 700; font-size: 16px; margin-bottom: 16px; }
.step-title i { color: var(--gold); margin-right: 7px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 14px; }
.fld.full { grid-column: 1 / -1; }
.fld label { display: block; font-size: 13px; font-weight: 600; color: var(--teal); margin-bottom: 5px; }
.fld label small { color: var(--muted); font-weight: 400; }
.fld input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  color: var(--text);
  background: var(--page-alt);
  transition: .25s;
}
.fld input:focus { outline: none; border-color: var(--gold); background: #fff; }
.form-err { color: #c0392b; font-size: 13px; margin: 12px 0 0; font-weight: 500; }
#investForm .btn-invest { margin-top: 20px; }

/* Upload box */
.upload-label { display: block; font-size: 14px; font-weight: 600; color: var(--teal); margin: 18px 0 8px; }
.upload-drop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: 2px dashed #b9cfce;
  border-radius: 14px;
  padding: 26px 18px;
  text-align: center;
  cursor: pointer;
  transition: .3s;
  background: var(--page-alt);
}
.upload-drop:hover { border-color: var(--gold); background: #fff; }
.upload-drop i { font-size: 32px; color: var(--gold); }
.upload-drop span { font-size: 13px; color: var(--muted); word-break: break-word; }
#upload-preview {
  display: block;
  max-width: 100%;
  max-height: 220px;
  margin: 14px auto 0;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.step-actions { display: flex; gap: 12px; align-items: center; margin-top: 20px; }
.step-actions .btn-invest { margin-top: 0; flex: 1; }
.btn-back {
  background: var(--page-alt);
  border: 1px solid var(--line);
  color: var(--teal);
  font-weight: 600;
  border-radius: 40px;
  padding: 13px 22px;
  cursor: pointer;
  transition: .25s;
}
.btn-back:hover { background: var(--teal); color: #fff; }

/* Success step */
.success-icon { font-size: 64px; color: #25d366; margin: 10px 0 14px; }
.success-h { color: var(--teal); font-weight: 800; margin-bottom: 10px; }
.success-p { color: var(--muted); font-size: 15px; }

@media (max-width: 480px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* ===== Scroll reveal ===== */
/* Keyframe (no fill-mode) so hover transforms on cards stay intact after reveal */
.has-reveal .reveal-el { opacity: 0; }
.has-reveal .reveal-el.revealed { opacity: 1; animation: revealUp .7s ease; }
@keyframes revealUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .has-reveal .reveal-el { opacity: 1; }
  .has-reveal .reveal-el.revealed { animation: none; }
}
.helpline-list { display: grid; gap: 12px; }
.helpline-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--page-alt);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  transition: .3s;
}
.helpline-item:hover {
  border-color: #25d366;
  background: #f0fff6;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, .15);
}
.helpline-item i {
  font-size: 26px;
  color: #25d366;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(37, 211, 102, .12);
  border-radius: 50%;
  flex-shrink: 0;
}
.helpline-item span { font-weight: 700; color: var(--teal); font-size: 17px; letter-spacing: .5px; }
.helpline-item small { color: var(--muted); margin-left: auto; font-size: 13px; }

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .hero { text-align: center; }
  .hero h1 { font-size: 44px; }
  .hero p, .hero-btns, .hero-stats { justify-content: center; margin-left: auto; margin-right: auto; }
  .hero-logo { margin-top: 40px; width: 270px; }
  .navbar-collapse {
    background: #fff;
    margin-top: 12px;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid var(--line);
  }
  .nav-link { margin: 6px 0; }
  h2 { font-size: 30px; }
}
@media (max-width: 576px) {
  .hero h1 { font-size: 34px; }
  .hero p { font-size: 16px; }
  .hero-stats { gap: 20px; }
  section { padding: 60px 0; }
  .plan-rate { font-size: 26px; }
}
