

/* ==========================================================
   ROOT VARIABLES
========================================================== */
:root{
  --green:#0d5c2f;
  --green-dark:#083d20;
  --gold:#f1c232;
  --bg:#f4f6f9;
  --white:#ffffff;
  --text:#1f2937;
  --muted:#6b7280;
  --radius:18px;
  --shadow:0 15px 45px rgba(0,0,0,.08);
}

/* ==========================================================
   RESET
========================================================== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter',sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  background:var(--bg);
  color:var(--text);
  line-height:1.7;
}

a{
  text-decoration:none;
  color:inherit;
}

.container{
  width:90%;
  max-width:1250px;
  margin:auto;
}

/* ==========================================================
   PREMIUM HEADER
========================================================== */
header{
  position:fixed;
  width:100%;
  top:0;
  z-index:999;
  backdrop-filter:blur(15px);
  background:rgba(255,255,255,.85);
  box-shadow:0 4px 25px rgba(0,0,0,.05);
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  /*padding:18px 0;*/
}

.logo{
  font-size:24px;
  font-weight:800;
  color:var(--green);
  letter-spacing:.5px;
}

.nav-links{
  display:flex;
  gap:30px;
  font-weight:600;
}

.nav-links a{
  position:relative;
}

.nav-links a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-5px;
  width:0;
  height:2px;
  background:var(--green);
  transition:.3s;
}

.nav-links a:hover::after{
  width:100%;
}

.nav-buttons{
  display:flex;
  gap:12px;
}

.btn{
  padding:10px 22px;
  border-radius:40px;
  font-weight:600;
  transition:.3s;
  border:none;
  cursor:pointer;
}

.btn-login{
  border:2px solid var(--green);
  background:transparent;
  color:var(--green);
}

.btn-register{
  background:var(--green);
  color:#fff;
}

.btn-register:hover{
  background:var(--green-dark);
}

/* ==========================================================
   HERO SECTION
========================================================== */
.hero{
  margin-top:90px;
  background:linear-gradient(135deg,var(--green),var(--green-dark));
  color:#fff;
  padding:120px 0 100px;
  position:relative;
  overflow:hidden;
}

.hero::before{
  content:'';
  position:absolute;
  top:-120px;
  right:-120px;
  width:400px;
  height:400px;
  background:rgba(241,194,50,.2);
  border-radius:50%;
}

.hero-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:50px;
}

.hero-text{
  flex:1;
  min-width:300px;
}

.hero-text h1{
  font-size:48px;
  font-weight:800;
  margin-bottom:25px;
  line-height:1.2;
}

.hero-text p{
  font-size:18px;
  opacity:.95;
  margin-bottom:30px;
}

.hero-buttons{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.btn-gold{
  background:var(--gold);
  color:#000;
  padding:14px 30px;
  border-radius:40px;
  font-weight:700;
}

.btn-outline{
  border:2px solid #fff;
  padding:14px 30px;
  border-radius:40px;
  font-weight:700;
  color:#fff;
}

.hero-image{
  flex:1;
  text-align:center;
}

.hero-image img{
  max-width:480px;
  width:100%;
}

/* ==========================================================
   ABOUT SECTION
========================================================== */
.about{
  padding:100px 0;
  background:#fff;
}

.about-content{
  display:flex;
  flex-wrap:wrap;
  gap:60px;
  align-items:center;
}

.about-text{
  flex:1;
  min-width:280px;
}

.about-text h2{
  font-size:36px;
  color:var(--green);
  margin-bottom:20px;
}

.about-text p{
  color:var(--muted);
  margin-bottom:18px;
}

.about-image{
  flex:1;
  text-align:center;
}

.about-image img{
  max-width:450px;
  width:100%;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

/* PDF DOWNLOAD BUTTON */
.pdf-download{
  margin-top:25px;
}

.pdf-download a{
  background:var(--green);
  color:#fff;
  padding:12px 28px;
  border-radius:40px;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:.3s;
}

.pdf-download a:hover{
  background:var(--green-dark);
}

/* ==========================================================
   FEATURES SECTION
========================================================== */
.features{
  padding:100px 0;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:36px;
  color:var(--green);
  font-weight:800;
}

.section-title p{
  margin-top:10px;
  color:var(--muted);
}

.features-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:35px;
}

.feature-card{
  background:#fff;
  padding:40px 25px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  text-align:center;
  transition:.4s;
}

.feature-card:hover{
  transform:translateY(-12px);
}

.feature-card i{
  font-size:38px;
  color:var(--green);
  margin-bottom:20px;
}

/* ==========================================================
   MODERN PLANS SECTION
========================================================== */

.plans{
  padding:120px 0;
  background:linear-gradient(to bottom,#f8fbf9,#ffffff);
}

.section-header{
  text-align:center;
  max-width:700px;
  margin:0 auto 70px;
}

.section-header h2{
  font-size:38px;
  color:var(--green);
  margin-bottom:15px;
  font-weight:800;
}

.section-header p{
  color:var(--muted);
  font-size:17px;
  line-height:1.6;
}

.plans-wrapper{
  display:flex;
  justify-content:center;
}

/* =============================
   PLAN CARD
============================= */
.plan-card{
  position:relative;
  width:100%;
  max-width:420px;
  background:#ffffff;
  border-radius:20px;
  padding:50px 40px;
  box-shadow:0 20px 60px rgba(0,0,0,0.08);
  text-align:center;
  transition:.4s ease;
  border:1px solid #eef2f5;
}

.plan-card:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 70px rgba(0,0,0,0.12);
}

/* FEATURED */
.plan-card.featured{
  border:2px solid var(--green);
}

/* BADGE */
.plan-badge{
  position:absolute;
  top:-15px;
  left:50%;
  transform:translateX(-50%);
  background:var(--green);
  color:#fff;
  padding:6px 18px;
  border-radius:30px;
  font-size:13px;
  font-weight:600;
}

/* TITLE */
.plan-card h3{
  font-size:24px;
  margin-bottom:30px;
  color:#222;
}

/* INVESTMENT */
.plan-investment{
  display:flex;
  justify-content:space-between;
  background:#f4f8f6;
  padding:18px 20px;
  border-radius:12px;
  margin-bottom:30px;
}

.plan-investment span{
  font-size:13px;
  color:var(--muted);
  display:block;
}

.plan-investment strong{
  font-size:18px;
  color:#111;
}

/* RETURN SECTION */
.plan-return{
  margin-bottom:30px;
}

.plan-return h4{
  font-size:28px;
  color:var(--green);
  font-weight:800;
}

.plan-return p{
  font-size:14px;
  color:var(--muted);
}

/* FEATURES */
.plan-features{
  list-style:none;
  text-align:left;
  margin:25px 0 30px;
}

.plan-features li{
  margin-bottom:12px;
  font-size:15px;
  color:#444;
  display:flex;
  align-items:center;
  gap:10px;
}

.plan-features i{
  color:var(--green);
}

/* BUTTON */
.plan-btn{
  display:inline-block;
  width:100%;
  padding:15px;
  background:var(--green);
  color:#fff;
  font-weight:700;
  border-radius:40px;
  text-align:center;
  transition:.3s;
}

.plan-btn:hover{
  background:#0a4d28;
}

/* RESPONSIVE */
@media(max-width:768px){

  .plan-investment{
    flex-direction:column;
    gap:15px;
    text-align:center;
  }

}

/* ==========================================================
   TRUST SECTION
========================================================== */
.trust{
  padding:100px 0;
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:40px;
  text-align:center;
}

.trust-item i{
  font-size:40px;
  color:var(--green);
  margin-bottom:15px;
}

/* ==========================================================
   FAQ SECTION
========================================================== */
.faq{
  padding:100px 0;
  background:#fff;
}

.faq-item{
  margin-bottom:20px;
  padding:20px;
  background:#f9fafc;
  border-radius:var(--radius);
}

.faq-item h4{
  color:var(--green);
  margin-bottom:10px;
}

/* ==========================================================
   CTA SECTION
========================================================== */
.cta{
  padding:100px 0;
  background:linear-gradient(135deg,var(--green),var(--green-dark));
  text-align:center;
  color:#fff;
}

.cta h2{
  font-size:38px;
  margin-bottom:25px;
}

/* ==========================================================
   REFERRAL SECTION
========================================================== */

.referral{
  padding:110px 0;
  background:#ffffff;
}

.commission-card{
  background:#fff;
  border-radius:var(--radius);
  padding:50px;
  box-shadow:var(--shadow);
}

.commission-card h3{
  text-align:center;
  margin-bottom:40px;
  color:var(--green);
  font-size:26px;
}

.commission-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.commission-box{
  background:#f7faf8;
  padding:30px;
  border-radius:var(--radius);
}

.commission-box h4{
  margin-bottom:15px;
  color:var(--green);
}

.commission-box ul{
  list-style:none;
}

.commission-box li{
  margin-bottom:10px;
  font-size:16px;
}

.bonus{
  margin-bottom:15px;
  padding:15px;
  border-radius:12px;
  background:#ffffff;
  border:1px solid #e6ece9;
}

.bonus h5{
  color:var(--green);
  margin-bottom:5px;
}


/* ==========================================================
   INCENTIVES SECTION
========================================================== */

.incentives{
  padding:120px 0;
  background:linear-gradient(to bottom,#f8fbf9,#ffffff);
}

.incentive-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.incentive-card{
  background:#fff;
  padding:40px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  text-align:center;
  position:relative;
  transition:.4s;
}

.incentive-card:hover{
  transform:translateY(-10px);
}

.level{
  position:absolute;
  top:-15px;
  left:50%;
  transform:translateX(-50%);
  background:var(--gold);
  color:#000;
  width:38px;
  height:38px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
}

.incentive-card h4{
  margin-top:15px;
  margin-bottom:10px;
  color:var(--green);
}

.reward{
  margin-top:20px;
  font-weight:700;
  font-size:18px;
  color:#111;
}


/* RESPONSIVE */

@media(max-width:768px){

  .commission-grid{
    grid-template-columns:1fr;
  }

}

/* ==========================================================
   FOOTER
========================================================== */
footer{
  background:#082c17;
  color:#fff;
  padding:60px 0 20px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:40px;
  margin-bottom:40px;
}

.footer-grid h4{
  margin-bottom:15px;
}

.footer-grid a{
  display:block;
  margin-bottom:8px;
  font-size:14px;
  opacity:.85;
}

.footer-bottom{
  text-align:center;
  font-size:14px;
  opacity:.7;
  border-top:1px solid rgba(255,255,255,.1);
  padding-top:15px;
}

/* ==========================================================
   RESPONSIVE
========================================================== */
@media(max-width:768px){
  .hero-text h1{
    font-size:34px;
  }

  .nav-links{
    display:none;
  }

  .about-content{
    flex-direction:column;
  }
  .hero-content{
      display: block;
  }
  .hero-image{
      margin-top: 10px;
  }
}

