/* ===== VARIABLES ===== */
:root {
  --orange: #F1890D;
  --green: #6C981C;
  --dark: #0d5c33;
  --dark2: #176b3f;
  --light: #f9f6f0;
  --white: #ffffff;
  --gray: #6b7280;
  --gray-light: #f3f4f6;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(5,53,29,0.10);
  --shadow-lg: 0 12px 48px rgba(5,53,29,0.18);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: #1a1a1a; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 15px;
  cursor: pointer; border: none; transition: all 0.2s ease; white-space: nowrap;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: #d97708; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(241,137,13,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-nav { background: var(--orange); color: var(--white); padding: 10px 22px; font-size: 14px; }
.btn-nav:hover { background: #d97708; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white); box-shadow: 0 2px 16px rgba(5,53,29,0.08);
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(5,53,29,0.14); }
.nav-inner {
  display: flex; align-items: center; gap: 32px;
  padding: 14px 24px; max-width: 1200px; margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 72px; width: auto; object-fit: contain; }
.logo-text { font-size: 30px; font-weight: 900; color: var(--dark); line-height: 1; }
.logo-text span { color: var(--orange); }
.logo-footer .logo-text { color: var(--white); }
.logo-footer .logo-text span { color: var(--orange); }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a { color: #374151; font-size: 14px; font-weight: 600; transition: color 0.2s; }
.nav-links a:hover { color: var(--orange); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--dark); border-radius: 2px; transition: 0.3s; }
.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  background: var(--white); padding: 12px 24px 20px;
  border-top: 1px solid #f0f0f0; box-shadow: 0 8px 24px rgba(5,53,29,0.10);
}
.mobile-menu a { color: #374151; padding: 12px 0; font-weight: 600; font-size: 15px; border-bottom: 1px solid #f3f4f6; }
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .btn { margin-top: 12px; text-align: center; }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; background: var(--dark);
  position: relative; overflow: hidden;
  padding: 100px 0 80px;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(108,152,28,0.18) 0%, transparent 60%),
              radial-gradient(ellipse at 15% 80%, rgba(241,137,13,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero-row {
  display: flex; align-items: center; gap: 64px;
  position: relative; z-index: 1; width: 100%;
}
.hero-content { flex: 1; min-width: 0; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(241,137,13,0.15); border: 1px solid rgba(241,137,13,0.3);
  color: var(--orange); padding: 6px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 600; margin-bottom: 24px;
}
.badge::before { content: ''; width: 8px; height: 8px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero h1 { font-size: clamp(34px, 5vw, 60px); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
.highlight { color: var(--orange); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.90); line-height: 1.75; margin-bottom: 36px; max-width: 500px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat strong { font-size: 22px; font-weight: 800; color: var(--orange); }
.stat span { font-size: 13px; color: rgba(255,255,255,0.82); }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.30); }

/* ===== DASHBOARD VISUAL ===== */
.hero-visual { flex-shrink: 0; display: flex; justify-content: center; align-items: center; }

.dashboard-card {
  width: 380px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
}
.dash-header {
  display: flex; align-items: center; gap: 6px; padding: 14px 18px;
  background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.07);
}
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot.green { background: #6C981C; }
.dash-dot.orange { background: #F1890D; }
.dash-dot.red { background: #ef4444; }
.dash-title { margin-left: 8px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.80); letter-spacing: 0.3px; }

.dash-stats-row { display: flex; gap: 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.dash-stat-box {
  flex: 1; padding: 18px 14px; display: flex; align-items: center; gap: 10px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.dash-stat-box:last-child { border-right: none; }
.dash-icon { width: 22px; height: 22px; flex-shrink: 0; }
.dash-icon.green { color: #6C981C; }
.dash-icon.orange { color: #F1890D; }
.dash-num { font-size: 15px; font-weight: 800; color: var(--white); line-height: 1.2; }
.dash-label { font-size: 10px; color: rgba(255,255,255,0.75); margin-top: 2px; }

.dash-products { padding: 14px 18px; }
.dash-prod-title { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.70); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 12px; }
.dash-prod-item {
  display: flex; align-items: center; gap: 10px; padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dash-prod-item:last-child { border-bottom: none; }
.dash-prod-icon {
  width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.dash-prod-info { flex: 1; display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.dash-prod-name { font-size: 13px; font-weight: 600; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-prod-loc { font-size: 11px; color: rgba(255,255,255,0.70); display: flex; align-items: center; gap: 3px; }
.dash-prod-right { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; flex-shrink: 0; }
.dash-prod-price { font-size: 13px; font-weight: 700; color: var(--orange); }
.dash-verified { font-size: 10px; font-weight: 600; color: var(--green); display: flex; align-items: center; gap: 3px; }

.dash-commission-banner {
  margin: 0 18px 16px; padding: 10px 14px; border-radius: 10px;
  background: rgba(241,137,13,0.12); border: 1px solid rgba(241,137,13,0.2);
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,0.92);
}
.dash-commission-banner strong { color: var(--orange); }

/* ===== FEATURE ICONS (Lucide) ===== */
.feature-icon { margin-bottom: 20px; }
.feature-icon i { width: 40px; height: 40px; color: var(--green); }
.feature-card.featured .feature-icon i { color: var(--orange); }

/* ===== STEP ICONS ===== */
.step-icon-wrap { margin-bottom: 12px; }
.step-icon { width: 28px; height: 28px; color: var(--orange); }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 16px; }
.section-header p { font-size: 17px; color: var(--gray); max-width: 540px; margin: 0 auto; line-height: 1.6; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.88); }
.section-header.left { text-align: left; }
.section-header.left p { margin: 0; }

/* ===== FEATURES ===== */
.features { padding: 100px 0; background: var(--light); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: var(--white); border-radius: var(--radius); padding: 36px 28px;
  box-shadow: var(--shadow); border: 1px solid rgba(5,53,29,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-card.featured { background: var(--dark); color: var(--white); border-color: transparent; }
.feature-card.featured h3 { color: var(--white); }
.feature-card.featured p { color: rgba(255,255,255,0.85); }
.feature-icon { font-size: 36px; margin-bottom: 20px; }
.feature-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.feature-card p { font-size: 15px; color: var(--gray); line-height: 1.65; }

/* ===== HOW IT WORKS ===== */
.how { padding: 100px 0; background: var(--dark2); }
.steps { display: flex; align-items: center; gap: 16px; }
.step { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 36px 28px; }
.step-num { font-size: 48px; font-weight: 900; color: var(--orange); opacity: 0.6; line-height: 1; margin-bottom: 16px; }
.step h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.step p { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.65; }
.step-arrow { color: rgba(255,255,255,0.45); flex-shrink: 0; display: flex; align-items: center; }
.step-arrow i { width: 28px; height: 28px; }

/* ===== WHY ===== */
.why { padding: 100px 0; background: var(--light); }
.why-inner { display: flex; gap: 72px; align-items: center; }
.why-text { flex: 1; }
.why-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.why-list li { display: flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 500; }
.check { color: var(--green); font-size: 16px; flex-shrink: 0; }
.why-visual { flex-shrink: 0; min-width: 0; }
.comparison { display: flex; gap: 16px; }
.comp-col { border-radius: var(--radius); overflow: hidden; min-width: 180px; }
.comp-header { padding: 14px 18px; font-weight: 700; font-size: 14px; text-align: center; }
.comp-col.bad .comp-header { background: #fee2e2; color: #991b1b; }
.comp-col.good .comp-header { background: var(--dark); color: var(--white); }
.comp-item { padding: 11px 16px; font-size: 13px; font-weight: 500; border-bottom: 1px solid rgba(0,0,0,0.04); }
.bad-item { background: #fff5f5; color: #7f1d1d; }
.good-item { background: rgba(108,152,28,0.08); color: var(--dark); }
.good-item::before { content: '✓ '; color: var(--green); font-weight: 700; }
.bad-item::before { content: '✗ '; color: #ef4444; }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: var(--dark); }
.contact-inner {
  display: flex; align-items: center; gap: 80px; flex-wrap: wrap;
}
.contact-text { flex: 1; min-width: 260px; }
.contact-cards { flex: 1; min-width: 260px; display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; align-items: center; gap: 18px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 18px; padding: 24px 28px;
  transition: all 0.25s ease; cursor: pointer; text-decoration: none;
}
.contact-card:hover {
  background: rgba(241,137,13,0.1); border-color: rgba(241,137,13,0.35);
  transform: translateX(6px);
}
.contact-card-icon {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: rgba(255,255,255,0.20); display: flex; align-items: center; justify-content: center;
}
.contact-card-icon i { width: 24px; height: 24px; color: #ffffff; }
.contact-card-body { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.contact-card-label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.6px; }
.contact-card-value { font-size: 17px; font-weight: 700; color: var(--white); }
.contact-card-arrow { width: 20px; height: 20px; color: rgba(255,255,255,0.55); flex-shrink: 0; transition: color 0.2s; }
.contact-card:hover .contact-card-arrow { color: var(--orange); }

/* ===== FOOTER ===== */
.footer { background: #0a4526; padding: 64px 0 0; }
.footer-inner {
  display: flex; gap: 48px; flex-wrap: wrap; padding-bottom: 48px;
  justify-content: center; align-items: flex-start;
}
.footer-brand, .footer-links, .footer-contact {
  flex: 1; min-width: 200px; max-width: 280px;
}
.footer-brand p { margin-top: 16px; color: rgba(255,255,255,0.82); font-size: 14px; line-height: 1.6; }
.logo-footer .logo-frame {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--white); border-radius: 20px;
  padding: 16px 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.08);
  animation: logoFloat 3.5s ease-in-out infinite;
  transition: transform 0.2s, box-shadow 0.2s;
}
.logo-footer .logo-frame:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45), 0 0 0 2px var(--orange);
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}
.logo-footer .logo-frame img { height: 100px; width: auto; object-fit: contain; display: block; }
.logo-footer .logo-text { font-size: 28px; font-weight: 900; color: var(--dark); line-height: 1; display: none; }
.logo-footer .logo-text span { color: var(--orange); }
.footer-links, .footer-contact { flex: 1; min-width: 140px; }
.footer-links h4, .footer-contact h4 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-links a { display: block; color: rgba(255,255,255,0.82); font-size: 14px; margin-bottom: 10px; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-contact p { color: rgba(255,255,255,0.82); font-size: 14px; margin-bottom: 16px; }
.social-links { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.90);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }
.footer-affiliate {
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center; padding: 16px 24px;
}
.footer-affiliate p { font-size: 13px; color: rgba(255,255,255,0.75); }
.footer-affiliate a { color: var(--orange); font-weight: 600; transition: color 0.2s; }
.footer-affiliate a:hover { color: #d97708; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); text-align: center; padding: 16px 24px; }
.footer-bottom p { color: rgba(255,255,255,0.65); font-size: 13px; }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-row { gap: 40px; }
  .phone-mockup { width: 240px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { gap: 40px; }
}

@media (max-width: 768px) {
  /* Navbar */
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 10px 20px; }
  .logo img { height: 52px; }
  .logo-text { font-size: 24px; }

  /* Hero */
  .hero { padding: 90px 0 60px; }
  .hero-row { flex-direction: column; gap: 48px; text-align: center; padding: 0 20px; }
  .hero-content { width: 100%; }
  .hero-sub { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { width: 100%; }
  .dashboard-card { width: 100%; max-width: 420px; }

  /* Sections */
  .features-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .why-inner { flex-direction: column; }
  .why-visual { width: 100%; }
  .comparison { flex-direction: column; gap: 12px; }
  .comp-col { width: 100%; min-width: 0; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .contact-inner { flex-direction: column; gap: 40px; }
  .section-header.left { text-align: center; }
}

@media (max-width: 480px) {
  .hero-row { padding: 0 16px; }
  .hero h1 { font-size: 30px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; max-width: 320px; }
  .hero-stats { gap: 16px; }
  .dashboard-card { width: 100%; }
  .dash-stat-box { padding: 14px 10px; }
  .dash-num { font-size: 13px; }
  .logo img { height: 56px; }
  .logo-text { font-size: 24px; }
  .contact-card { padding: 18px 20px; }
  .contact-card-value { font-size: 15px; }
}
