@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --navy:       #0a1628;
  --navy-mid:   #0f2040;
  --navy-card:  rgba(15,32,64,0.9);
  --green:      #a8e63d;
  --green-dark: #5a8a00;
  --green-glow: rgba(168,230,61,0.25);
  --green-dim:  rgba(168,230,61,0.12);
  --white:      #ffffff;
  --gray-1:     #cdd8e8;
  --gray-2:     #7a9bbf;
  --gold:       #f5c842;
  --border:     rgba(168,230,61,0.3);
  --radius:     10px;
  --radius-lg:  16px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: height 0.3s;
}
.navbar.scrolled { height: 60px; box-shadow: 0 4px 30px rgba(168,230,61,0.08); }

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--green); object-fit: cover; box-shadow: 0 0 14px var(--green-glow); }
.nav-logo-name { font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--green); line-height: 1.2; }
.nav-logo-sub  { font-size: 0.65rem; font-weight: 400; color: var(--gray-2); letter-spacing: 0.15em; display: block; }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 500;
  color: var(--gray-1); text-decoration: none; transition: color 0.2s; letter-spacing: 0.02em;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-btn-login {
  border: 1px solid var(--border) !important; color: var(--green) !important;
  padding: 6px 16px !important; border-radius: 6px !important;
}
.nav-btn-join {
  background: var(--green) !important; color: var(--navy) !important;
  padding: 7px 18px !important; border-radius: 6px !important; font-weight: 700 !important;
}
.nav-btn-join:hover { box-shadow: 0 0 18px var(--green-glow) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--green); 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-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 998;
  background: rgba(10,22,40,0.99); border-bottom: 1px solid var(--border);
  padding: 1.5rem 5%;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { border-bottom: 1px solid rgba(168,230,61,0.06); }
.mobile-menu ul a { display: block; padding: 0.85rem 0; font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 500; color: var(--gray-1); text-decoration: none; }
.mobile-menu ul a:hover { color: var(--green); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 100px 5% 60px; text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 25% 50%, rgba(168,230,61,0.07) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 15%, rgba(168,230,61,0.04) 0%, transparent 45%),
              linear-gradient(180deg, var(--navy) 0%, #060f1c 100%);
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(168,230,61,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(168,230,61,0.04) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}
.hero-content { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-dim); border: 1px solid var(--border);
  border-radius: 50px; padding: 5px 16px;
  font-family: 'Poppins', sans-serif; font-size: 0.78rem; font-weight: 600;
  color: var(--green); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1.75rem;
  animation: fadeDown 0.7s ease both;
}
.badge-dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; animation: blink 2s infinite; }

.hero-title {
  font-family: 'Poppins', sans-serif; font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 800; line-height: 1.1; color: var(--white); margin-bottom: 1.25rem;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-title .green { color: var(--green); }

.hero-sub {
  font-size: 1.05rem; color: var(--gray-2); line-height: 1.75; max-width: 600px;
  margin: 0 auto 2.25rem; animation: fadeUp 0.8s 0.3s ease both;
}

.btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fadeUp 0.8s 0.45s ease both; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--navy);
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.9rem;
  padding: 13px 28px; border-radius: 8px; text-decoration: none;
  transition: all 0.25s; box-shadow: 0 4px 20px var(--green-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(168,230,61,0.45); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 2px solid var(--border); color: var(--green);
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.9rem;
  padding: 11px 28px; border-radius: 8px; text-decoration: none; transition: all 0.25s;
}
.btn-outline:hover { background: var(--green-dim); transform: translateY(-2px); }

.hero-stats {
  display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap;
  margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(168,230,61,0.12);
  animation: fadeUp 0.8s 0.6s ease both;
}
.stat-num { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; color: var(--green); display: block; }
.stat-label { font-size: 0.75rem; color: var(--gray-2); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── SECTION COMMON ── */
.section { padding: 90px 5%; position: relative; z-index: 1; }
.section-tag {
  display: inline-block; font-family: 'Poppins', sans-serif; font-size: 0.72rem;
  font-weight: 700; color: var(--green); letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid var(--border); border-radius: 4px; padding: 4px 12px; margin-bottom: 0.9rem;
}
.section-title {
  font-family: 'Poppins', sans-serif; font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800; color: var(--white); line-height: 1.2;
}
.section-title .green { color: var(--green); }
.section-desc { color: var(--gray-2); font-size: 1rem; line-height: 1.75; max-width: 580px; margin: 0.9rem auto 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }

/* ── PRODUCT CARDS ── */
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem;
}
.product-card {
  background: var(--navy-card); border: 1px solid rgba(168,230,61,0.14);
  border-radius: var(--radius-lg); overflow: hidden; cursor: pointer;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.product-card:hover {
  transform: translateY(-5px); border-color: var(--green);
  box-shadow: 0 12px 40px rgba(168,230,61,0.13);
}
.card-img {
  height: 150px; background: linear-gradient(135deg, rgba(168,230,61,0.08), rgba(10,22,40,0.95));
  display: flex; align-items: center; justify-content: center; font-size: 2.8rem; position: relative;
}
.card-qty {
  position: absolute; top: 10px; right: 10px;
  background: var(--green); color: var(--navy);
  font-family: 'Poppins', sans-serif; font-size: 0.65rem; font-weight: 700;
  padding: 3px 9px; border-radius: 20px;
}
.card-body { padding: 1.1rem 1.25rem 1.3rem; }
.card-name { font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 0.25rem; }
.card-form { font-size: 0.75rem; font-weight: 600; color: var(--green); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.6rem; }
.card-desc { font-size: 0.83rem; color: var(--gray-2); line-height: 1.6; margin-bottom: 1rem; }
.card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 0.8rem; border-top: 1px solid rgba(168,230,61,0.08); }
.card-qty-label { font-size: 0.72rem; color: var(--gray-2); }
.card-qty-val { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; color: var(--white); }
.btn-sm {
  background: transparent; border: 1px solid var(--green); color: var(--green);
  font-family: 'Poppins', sans-serif; font-size: 0.78rem; font-weight: 600;
  padding: 6px 14px; border-radius: 6px; cursor: pointer; transition: all 0.2s;
}
.btn-sm:hover { background: var(--green); color: var(--navy); }

/* ── FILTER BAR ── */
.filter-bar { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem; }
.filter-btn {
  font-family: 'Poppins', sans-serif; font-size: 0.8rem; font-weight: 600;
  padding: 7px 16px; border: 1px solid var(--border); background: transparent;
  color: var(--gray-2); border-radius: 6px; cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active { background: var(--green); color: var(--navy); border-color: var(--green); }

/* ── SEARCH ── */
.search-wrap { max-width: 440px; margin: 0 auto 2rem; position: relative; }
.search-wrap input {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.9rem;
  padding: 11px 44px 11px 18px; border-radius: 8px; outline: none; transition: all 0.25s;
}
.search-wrap input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(168,230,61,0.1); }
.search-wrap input::placeholder { color: var(--gray-2); }
.search-icon { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--green); pointer-events: none; }

/* ── FEATURES / WHY ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; max-width: 1100px; margin: 0 auto; }
.why-img { display: flex; align-items: center; justify-content: center; }
.why-img img { width: 240px; height: 240px; border-radius: 50%; border: 3px solid rgba(168,230,61,0.4); box-shadow: 0 0 60px rgba(168,230,61,0.15); object-fit: cover; }
.feature-list { display: flex; flex-direction: column; gap: 1.1rem; }
.feature-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.1rem; background: var(--green-dim); border: 1px solid rgba(168,230,61,0.1);
  border-radius: var(--radius); transition: border-color 0.25s;
}
.feature-item:hover { border-color: var(--border); }
.feature-icon { width: 40px; height: 40px; background: rgba(168,230,61,0.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.feature-title { font-family: 'Poppins', sans-serif; font-size: 0.88rem; font-weight: 700; color: var(--white); margin-bottom: 0.25rem; }
.feature-text { font-size: 0.83rem; color: var(--gray-2); line-height: 1.6; }

/* ── OPPORTUNITY CARDS ── */
.opp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.25rem; max-width: 1100px; margin: 0 auto; }
.opp-card {
  background: var(--navy-card); border: 1px solid rgba(168,230,61,0.12);
  border-radius: var(--radius-lg); padding: 1.75rem; text-align: center; transition: all 0.25s;
}
.opp-card:hover { border-color: var(--green); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(168,230,61,0.1); }
.opp-num { font-family: 'Poppins', sans-serif; font-size: 2.5rem; font-weight: 900; background: linear-gradient(135deg, var(--green), var(--green-dark)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: block; margin-bottom: 0.4rem; }
.opp-title { font-family: 'Poppins', sans-serif; font-size: 0.92rem; font-weight: 700; color: var(--white); margin-bottom: 0.6rem; }
.opp-desc { font-size: 0.85rem; color: var(--gray-2); line-height: 1.65; }

/* ── TESTIMONIALS ── */
.testi-track { display: flex; gap: 1.25rem; overflow-x: auto; padding-bottom: 1rem; scroll-snap-type: x mandatory; scrollbar-width: none; }
.testi-track::-webkit-scrollbar { display: none; }
.testi-card {
  flex: 0 0 320px; background: var(--navy-card); border: 1px solid rgba(168,230,61,0.12);
  border-radius: var(--radius-lg); padding: 1.75rem; scroll-snap-align: start;
}
.testi-stars { color: var(--green); font-size: 1rem; letter-spacing: 2px; margin-bottom: 0.9rem; }
.testi-text { font-size: 0.88rem; color: var(--gray-1); line-height: 1.75; margin-bottom: 1.25rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.65rem; padding-top: 0.9rem; border-top: 1px solid rgba(168,230,61,0.08); }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--green-dark), var(--green)); display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--navy); flex-shrink: 0; }
.testi-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.88rem; color: var(--white); }
.testi-role { font-size: 0.73rem; color: var(--green); }

/* ── CONTACT FORM ── */
.contact-wrap { max-width: 680px; margin: 0 auto; background: var(--navy-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-family: 'Poppins', sans-serif; font-size: 0.75rem; font-weight: 700; color: var(--green); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(168,230,61,0.2);
  color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.9rem;
  padding: 11px 14px; border-radius: 7px; outline: none; transition: all 0.25s; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(168,230,61,0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-2); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--navy-mid); }
.form-submit { width: 100%; background: var(--green); color: var(--navy); font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.92rem; padding: 13px; border: none; border-radius: 8px; cursor: pointer; transition: all 0.25s; box-shadow: 0 4px 18px var(--green-glow); }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(168,230,61,0.4); }

/* ── FOOTER ── */
footer { background: #060f1c; border-top: 1px solid rgba(168,230,61,0.1); padding: 3rem 5% 1.5rem; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 0.9rem; }
.footer-logo img { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(168,230,61,0.35); object-fit: cover; }
.footer-logo-name { font-family: 'Poppins', sans-serif; font-size: 0.88rem; font-weight: 700; color: var(--green); }
.footer-tagline { font-size: 0.84rem; color: var(--gray-2); line-height: 1.7; max-width: 270px; }
.footer-col h4 { font-family: 'Poppins', sans-serif; font-size: 0.72rem; font-weight: 700; color: var(--green); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 0.9rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a { color: var(--gray-2); text-decoration: none; font-size: 0.84rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid rgba(168,230,61,0.07); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.78rem; color: var(--gray-2); }
.social-links { display: flex; gap: 0.6rem; }
.social-link { width: 34px; height: 34px; background: rgba(168,230,61,0.07); border: 1px solid rgba(168,230,61,0.18); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--green); text-decoration: none; font-size: 0.88rem; transition: all 0.2s; }
.social-link:hover { background: var(--green); color: var(--navy); }

/* ── AUTH ── */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 100px 5% 60px; }
.auth-card { width: 100%; max-width: 460px; background: var(--navy-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: 0 0 60px rgba(168,230,61,0.07); }
.auth-logo { text-align: center; margin-bottom: 1.75rem; }
.auth-logo img { width: 68px; height: 68px; border-radius: 50%; border: 2px solid var(--green); object-fit: cover; box-shadow: 0 0 18px var(--green-glow); }
.auth-title { font-family: 'Poppins', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--white); text-align: center; margin: 0.65rem 0 0.3rem; }
.auth-sub { font-size: 0.85rem; color: var(--gray-2); text-align: center; line-height: 1.6; }
.auth-tabs { display: flex; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; margin: 1.5rem 0; }
.auth-tab { flex: 1; padding: 9px; text-align: center; font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all 0.2s; color: var(--gray-2); background: transparent; border: none; }
.auth-tab.active { background: var(--green); color: var(--navy); }
.auth-submit { width: 100%; background: var(--green); color: var(--navy); font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.9rem; padding: 13px; border: none; border-radius: 8px; cursor: pointer; transition: all 0.25s; box-shadow: 0 4px 18px var(--green-glow); margin-top: 0.4rem; }
.auth-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 30px rgba(168,230,61,0.4); }
.auth-switch { text-align: center; margin-top: 1.1rem; font-size: 0.84rem; color: var(--gray-2); }
.auth-switch a { color: var(--green); text-decoration: none; font-weight: 600; }
.forgot-link { display: block; text-align: right; font-size: 0.78rem; color: var(--green); text-decoration: none; margin: -0.4rem 0 0.9rem; }
.form-check { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.9rem; }
.form-check input[type=checkbox] { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; accent-color: var(--green); }
.form-check label { font-size: 0.82rem; color: var(--gray-2); line-height: 1.5; }
.form-check label a { color: var(--green); }
.input-wrap { position: relative; }
.input-wrap input { padding-left: 40px; }
.input-icon { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--green); font-size: 0.88rem; pointer-events: none; }
.eye-toggle { position: absolute; right: 13px; top: 50%; transform: translateY(-50%); color: var(--gray-2); cursor: pointer; font-size: 0.88rem; }
.eye-toggle:hover { color: var(--green); }
.strength-meter { height: 3px; background: rgba(255,255,255,0.08); border-radius: 2px; margin-top: 5px; overflow: hidden; }
.strength-fill { height: 100%; border-radius: 2px; transition: width 0.3s, background 0.3s; width: 0%; }
.strength-label { font-size: 0.7rem; color: var(--gray-2); margin-top: 3px; }
.steps { display: flex; gap: 0; margin-bottom: 1.75rem; }
.step { flex: 1; text-align: center; position: relative; }
.step:not(:last-child)::after { content: ''; position: absolute; top: 14px; left: 58%; width: 84%; height: 1px; background: rgba(168,230,61,0.15); }
.step.done::after, .step.curr::after { background: var(--green); }
.step-circle { width: 28px; height: 28px; border-radius: 50%; margin: 0 auto 5px; display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-size: 0.72rem; font-weight: 700; border: 1.5px solid rgba(168,230,61,0.2); color: var(--gray-2); background: var(--navy-mid); transition: all 0.3s; }
.step.curr .step-circle { border-color: var(--green); color: var(--green); box-shadow: 0 0 10px var(--green-glow); }
.step.done .step-circle { background: var(--green); border-color: var(--green); color: var(--navy); }
.step-lbl { font-size: 0.65rem; color: var(--gray-2); font-family: 'Poppins', sans-serif; letter-spacing: 0.06em; text-transform: uppercase; }
.step.curr .step-lbl { color: var(--green); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }

/* ── DASHBOARD ── */
.dash-layout { display: grid; grid-template-columns: 220px 1fr; gap: 1.75rem; max-width: 1280px; margin: 0 auto; }
.dash-sidebar { background: var(--navy-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.4rem; height: fit-content; position: sticky; top: 90px; }
.dash-user { text-align: center; padding-bottom: 1.1rem; border-bottom: 1px solid rgba(168,230,61,0.12); margin-bottom: 1.1rem; }
.dash-avatar { width: 66px; height: 66px; border-radius: 50%; background: linear-gradient(135deg, var(--green-dark), var(--green)); margin: 0 auto 0.65rem; display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--navy); border: 2px solid rgba(168,230,61,0.4); }
.dash-name { font-family: 'Poppins', sans-serif; font-size: 0.88rem; font-weight: 700; color: var(--white); }
.dash-id { font-size: 0.72rem; color: var(--green); margin-top: 2px; }
.rank-pill { display: inline-block; margin-top: 0.45rem; font-size: 0.7rem; font-weight: 700; padding: 2px 10px; border-radius: 20px; background: rgba(245,200,66,0.15); color: var(--gold); border: 1px solid rgba(245,200,66,0.3); }
.dash-nav { list-style: none; }
.dash-nav li { margin-bottom: 0.2rem; }
.dash-nav a { display: flex; align-items: center; gap: 0.65rem; padding: 8px 10px; border-radius: 7px; color: var(--gray-2); text-decoration: none; font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 500; transition: all 0.2s; }
.dash-nav a:hover, .dash-nav a.active { background: var(--green-dim); color: var(--green); }
.dash-nav a i { width: 16px; text-align: center; font-size: 0.85rem; color: var(--green); }
.dash-main { min-width: 0; }
.dash-stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-bottom: 1.5rem; }
.dstat { background: var(--navy-card); border: 1px solid rgba(168,230,61,0.12); border-radius: var(--radius); padding: 1.1rem; transition: border-color 0.25s; }
.dstat:hover { border-color: var(--green); }
.dstat-label { font-size: 0.72rem; color: var(--gray-2); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.35rem; font-family: 'Poppins', sans-serif; }
.dstat-val { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--green); }
.dstat-sub { font-size: 0.72rem; color: var(--gray-2); margin-top: 2px; }
.dash-card { background: var(--navy-card); border: 1px solid rgba(168,230,61,0.12); border-radius: var(--radius-lg); padding: 1.4rem; margin-bottom: 1.4rem; }
.dash-card-title { font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 1.1rem; padding-bottom: 0.7rem; border-bottom: 1px solid rgba(168,230,61,0.1); display: flex; align-items: center; gap: 0.5rem; }
.dash-card-title i { color: var(--green); }
.progress-bar { height: 7px; background: rgba(168,230,61,0.1); border-radius: 4px; overflow: hidden; margin: 0.4rem 0 0.2rem; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--green-dark), var(--green)); border-radius: 4px; transition: width 1s ease; }
.order-table { width: 100%; border-collapse: collapse; }
.order-table th { font-family: 'Poppins', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; color: var(--green); text-transform: uppercase; padding: 9px 12px; text-align: left; background: rgba(168,230,61,0.05); }
.order-table td { padding: 9px 12px; font-size: 0.84rem; color: var(--gray-1); border-bottom: 1px solid rgba(168,230,61,0.05); }
.order-table tr:last-child td { border-bottom: none; }
.s-badge { display: inline-block; padding: 2px 9px; border-radius: 12px; font-size: 0.7rem; font-weight: 700; }
.s-done { background: rgba(168,230,61,0.15); color: var(--green); }
.s-ship { background: rgba(100,180,255,0.15); color: #64b4ff; }
.s-proc { background: rgba(245,200,66,0.15); color: var(--gold); }

/* ── PAGES: PAGE HERO ── */
.page-hero { position: relative; padding: 130px 5% 65px; min-height: 300px; background: linear-gradient(180deg, var(--navy) 0%, #060f1c 100%); overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 60%, rgba(168,230,61,0.06) 0%, transparent 55%); }
.page-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(168,230,61,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(168,230,61,0.04) 1px, transparent 1px); background-size: 55px 55px; mask-image: radial-gradient(ellipse at 30% 100%, black, transparent 65%); }
.page-hero-content { position: relative; z-index: 2; max-width: 760px; }
.breadcrumb { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: var(--gray-2); margin-bottom: 0.9rem; }
.breadcrumb a { color: var(--green); text-decoration: none; }
.page-title { font-family: 'Poppins', sans-serif; font-size: clamp(1.9rem, 5vw, 3.2rem); font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 0.9rem; }
.page-title .accent { color: var(--green); }
.page-sub { font-size: 1rem; color: var(--gray-2); line-height: 1.7; max-width: 540px; }

/* ── SIDEBAR (products page) ── */
.prods-layout { display: grid; grid-template-columns: 230px 1fr; gap: 1.75rem; max-width: 1280px; margin: 0 auto; }
.sidebar { background: var(--navy-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.4rem; height: fit-content; position: sticky; top: 90px; }
.sidebar-title { font-family: 'Poppins', sans-serif; font-size: 0.7rem; font-weight: 700; color: var(--green); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 0.9rem; padding-bottom: 0.65rem; border-bottom: 1px solid rgba(168,230,61,0.15); }
.sidebar-list { list-style: none; }
.sidebar-list a { display: flex; justify-content: space-between; align-items: center; padding: 7px 10px; border-radius: 6px; color: var(--gray-1); text-decoration: none; font-size: 0.86rem; font-weight: 500; transition: all 0.2s; }
.sidebar-list a:hover, .sidebar-list a.active { background: var(--green-dim); color: var(--green); }
.sidebar-count { background: var(--green-dim); color: var(--green); font-size: 0.68rem; padding: 1px 7px; border-radius: 10px; font-weight: 700; }

/* ── ABOUT ── */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; max-width: 1100px; margin: 0 auto 4rem; }
.story-img { border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(168,230,61,0.07), var(--navy-mid)); border: 1px solid var(--border); min-height: 380px; display: flex; align-items: center; justify-content: center; }
.story-img img { width: 220px; height: 220px; border-radius: 50%; border: 3px solid rgba(168,230,61,0.4); object-fit: cover; box-shadow: 0 0 50px rgba(168,230,61,0.18); }
.story-text p { font-size: 0.95rem; color: var(--gray-1); line-height: 1.8; margin-bottom: 1.1rem; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; max-width: 1100px; margin: 0 auto; }
.val-card { background: var(--navy-card); border: 1px solid rgba(168,230,61,0.12); border-radius: var(--radius-lg); padding: 1.75rem 1.4rem; text-align: center; transition: all 0.25s; }
.val-card:hover { border-color: var(--green); transform: translateY(-3px); }
.val-icon { font-size: 2.2rem; display: block; margin-bottom: 0.75rem; }
.val-title { font-family: 'Poppins', sans-serif; font-size: 0.88rem; font-weight: 700; color: var(--white); margin-bottom: 0.6rem; }
.val-text { font-size: 0.83rem; color: var(--gray-2); line-height: 1.65; }

/* ── PLAN CARDS ── */
.plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; max-width: 1100px; margin: 0 auto; }
.plan-card { background: var(--navy-card); border: 1px solid rgba(168,230,61,0.12); border-radius: var(--radius-lg); padding: 1.75rem; transition: all 0.25s; position: relative; overflow: hidden; }
.plan-card.featured { border-color: var(--green); box-shadow: 0 0 35px rgba(168,230,61,0.1); }
.plan-card.featured::before { content: 'POPULAR'; position: absolute; top: 0; right: 0; background: var(--green); color: var(--navy); font-size: 0.6rem; font-weight: 700; padding: 3px 12px; border-bottom-left-radius: 8px; font-family: 'Poppins', sans-serif; letter-spacing: 0.1em; }
.plan-card:hover { transform: translateY(-4px); }
.plan-level { font-size: 0.72rem; font-weight: 700; color: var(--green); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.4rem; }
.plan-name { font-family: 'Poppins', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: 0.9rem; }
.plan-pct { font-family: 'Poppins', sans-serif; font-size: 2.5rem; font-weight: 900; color: var(--green); display: block; }
.plan-pct-lbl { font-size: 0.78rem; color: var(--gray-2); display: block; margin-bottom: 1.4rem; }
.plan-perks { list-style: none; margin-bottom: 1.5rem; }
.plan-perks li { font-size: 0.85rem; color: var(--gray-1); padding: 0.35rem 0; border-bottom: 1px solid rgba(168,230,61,0.05); display: flex; align-items: center; gap: 0.5rem; }
.plan-perks li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.plan-btn { display: block; text-align: center; text-decoration: none; padding: 11px; border-radius: 7px; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.84rem; cursor: pointer; transition: all 0.25s; }
.plan-btn-outline { background: transparent; border: 1px solid var(--border); color: var(--green); }
.plan-btn-outline:hover { background: var(--green-dim); }
.plan-btn-solid { background: var(--green); border: none; color: var(--navy); }
.plan-btn-solid:hover { box-shadow: 0 6px 24px var(--green-glow); }

/* ── RANK TABLE ── */
.rank-table { width: 100%; border-collapse: collapse; }
.rank-table th { background: rgba(168,230,61,0.07); color: var(--green); font-family: 'Poppins', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--border); }
.rank-table td { padding: 11px 14px; font-size: 0.86rem; color: var(--gray-1); border-bottom: 1px solid rgba(168,230,61,0.05); }
.rank-table tr:hover td { background: rgba(168,230,61,0.03); }
.rnk { display: inline-flex; align-items: center; gap: 5px; padding: 2px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; }
.rnk-s { background: rgba(168,230,61,0.1); color: var(--green); border: 1px solid rgba(168,230,61,0.25); }
.rnk-si { background: rgba(180,200,220,0.1); color: #b4c8dc; border: 1px solid rgba(180,200,220,0.25); }
.rnk-g { background: rgba(245,200,66,0.1); color: var(--gold); border: 1px solid rgba(245,200,66,0.25); }
.rnk-d { background: rgba(130,100,255,0.1); color: #a882ff; border: 1px solid rgba(130,100,255,0.25); }
.rnk-c { background: rgba(168,230,61,0.18); color: var(--green); border: 1px solid var(--green); }

/* ── CONTACT PAGE ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 2.5rem; max-width: 1060px; margin: 0 auto; align-items: start; }
.info-card { background: var(--navy-card); border: 1px solid rgba(168,230,61,0.1); border-radius: var(--radius); padding: 1.25rem; margin-bottom: 0.9rem; display: flex; gap: 0.9rem; align-items: flex-start; transition: border-color 0.2s; }
.info-card:hover { border-color: var(--border); }
.info-icon { width: 40px; height: 40px; background: var(--green-dim); border: 1px solid var(--border); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 1.1rem; flex-shrink: 0; }
.info-label { font-family: 'Poppins', sans-serif; font-size: 0.68rem; font-weight: 700; color: var(--green); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.25rem; }
.info-val { font-size: 0.86rem; color: var(--gray-1); line-height: 1.6; }
.info-val a { color: var(--gray-1); text-decoration: none; }
.info-val a:hover { color: var(--green); }

/* ── TESTIMONIALS PAGE ── */
.testi-full-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; }
.testi-full-card { background: var(--navy-card); border: 1px solid rgba(168,230,61,0.1); border-radius: var(--radius-lg); padding: 1.75rem; transition: all 0.25s; }
.testi-full-card:hover { border-color: var(--border); transform: translateY(-3px); }
.testi-product-tag { display: inline-block; margin-top: 0.35rem; font-size: 0.72rem; background: var(--green-dim); color: var(--green); padding: 2px 8px; border-radius: 10px; border: 1px solid rgba(168,230,61,0.2); }

/* ── FAQ ── */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item { background: var(--navy-card); border: 1px solid rgba(168,230,61,0.1); border-radius: var(--radius); margin-bottom: 0.65rem; overflow: hidden; transition: border-color 0.25s; }
.faq-item.open { border-color: var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.25rem; cursor: pointer; font-family: 'Poppins', sans-serif; font-size: 0.92rem; font-weight: 600; color: var(--white); user-select: none; transition: color 0.2s; }
.faq-item.open .faq-q { color: var(--green); }
.faq-chevron { color: var(--green); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-ans-inner { padding: 0 1.25rem 1.1rem; font-size: 0.88rem; color: var(--gray-1); line-height: 1.8; }
.faq-item.open .faq-ans { max-height: 350px; }

/* ── POLICY ── */
.policy-wrap { max-width: 820px; margin: 0 auto; }
.policy-wrap .updated { background: var(--green-dim); border: 1px solid rgba(168,230,61,0.2); border-radius: 7px; padding: 0.7rem 1.1rem; font-size: 0.82rem; color: var(--gray-2); margin-bottom: 2rem; }
.policy-wrap h2 { font-family: 'Poppins', sans-serif; font-size: 1rem; color: var(--green); margin: 1.75rem 0 0.65rem; font-weight: 700; }
.policy-wrap p { font-size: 0.9rem; color: var(--gray-1); line-height: 1.8; margin-bottom: 0.9rem; }
.policy-wrap ul { list-style: none; margin-bottom: 0.9rem; }
.policy-wrap ul li { font-size: 0.9rem; color: var(--gray-1); line-height: 1.75; padding: 0.2rem 0 0.2rem 1.1rem; position: relative; }
.policy-wrap ul li::before { content: '›'; position: absolute; left: 0; color: var(--green); }

/* ── MODAL ── */
.modal-overlay { position: fixed; inset: 0; z-index: 2000; background: rgba(6,15,28,0.88); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; padding: 1rem; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal { background: var(--navy-mid); border: 1px solid var(--green); border-radius: var(--radius-lg); padding: 2.25rem; max-width: 460px; width: 100%; position: relative; transform: translateY(16px); transition: transform 0.3s; box-shadow: 0 0 60px rgba(168,230,61,0.12); }
.modal-overlay.open .modal { transform: translateY(0); }
.modal-close { position: absolute; top: 0.9rem; right: 1.1rem; background: none; border: none; color: var(--gray-2); font-size: 1.4rem; cursor: pointer; line-height: 1; transition: color 0.2s; }
.modal-close:hover { color: var(--green); }
.modal-icon { font-size: 2.8rem; margin-bottom: 0.9rem; display: block; }
.modal-name { font-family: 'Poppins', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--green); margin-bottom: 0.25rem; }
.modal-form { font-size: 0.75rem; color: var(--green); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.25rem; }
.modal-qty { font-size: 0.92rem; color: var(--white); margin-bottom: 1.25rem; }
.modal-desc { font-size: 0.88rem; color: var(--gray-1); line-height: 1.75; margin-bottom: 1.75rem; border-top: 1px solid rgba(168,230,61,0.12); padding-top: 1.1rem; }
.modal-cta { display: block; width: 100%; text-align: center; text-decoration: none; background: var(--green); color: var(--navy); font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.88rem; padding: 12px; border: none; border-radius: 7px; cursor: pointer; transition: all 0.25s; }
.modal-cta:hover { box-shadow: 0 6px 24px var(--green-glow); }

/* ── TOAST ── */
.toast { position: fixed; bottom: 2rem; right: 2rem; z-index: 3000; background: var(--green); color: var(--navy); font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.88rem; padding: 11px 22px; border-radius: 7px; transform: translateY(80px); opacity: 0; transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1); pointer-events: none; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast.error { background: #e63d3d; color: #fff; }

/* ── ANIMATIONS ── */
@keyframes fadeDown { from { opacity: 0; transform: translateY(-18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp   { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes blink    { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.4;transform:scale(.7);} }
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media(max-width:1024px){ .why-grid { grid-template-columns:1fr; } .why-img { display:none; } .dash-layout { grid-template-columns:1fr; } .dash-sidebar { position:static; } .dash-stats-row { grid-template-columns:repeat(2,1fr); } .prods-layout { grid-template-columns:1fr; } .sidebar { position:static; } .contact-layout { grid-template-columns:1fr; } .story-grid { grid-template-columns:1fr; } .story-img { min-height:220px; } .values-grid { grid-template-columns:repeat(2,1fr); } }
@media(max-width:768px){ .nav-links { display:none; } .hamburger { display:flex; } .footer-grid { grid-template-columns:1fr 1fr; } .form-row { grid-template-columns:1fr; } .form-row-2 { grid-template-columns:1fr; } .hero-stats { gap:1.5rem; } .contact-wrap { padding:1.75rem 1.25rem; } .plan-grid { grid-template-columns:1fr; } .values-grid { grid-template-columns:1fr; } .testi-full-grid { grid-template-columns:1fr; } .dash-stats-row { grid-template-columns:1fr 1fr; } }
@media(max-width:480px){ .footer-grid { grid-template-columns:1fr; } .auth-card { padding:1.75rem 1.25rem; } }
