/* ================================================================
   Velora — Public Pages CSS
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&display=swap');

:root {
  --green:  #0d2818;
  --green2: #1a3d2b;
  --green3: #2d6a45;
  --gold:   #c9a84c;
  --gold2:  #e8c96e;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body.pub-body { font-family: 'Nunito', sans-serif; color: #1a2e22; background: #fff; }

/* ── NAV ─────────────────────────────────────────────────────── */
.pub-nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--green);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.pub-nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; gap: 32px;
}
.pub-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; padding: 14px 0;
  font-weight: 900; font-size: 18px; letter-spacing: 3px;
  color: var(--gold);
}
.pub-logo {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 18px; color: var(--green); flex-shrink: 0;
}
.pub-menu {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin-left: auto;
}
.pub-menu li a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  padding: 8px 14px; border-radius: 6px; font-size: 14px; font-weight: 600;
  transition: all .2s;
}
.pub-menu li a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.pub-nav-btn {
  border: 1px solid rgba(255,255,255,0.2) !important;
  color: rgba(255,255,255,0.9) !important;
}
.pub-nav-btn--gold {
  background: linear-gradient(135deg, #8a6f2e, var(--gold)) !important;
  color: var(--green) !important; border-color: var(--gold) !important;
  font-weight: 800 !important;
}
.pub-burger { display: none; background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; }

/* ── HERO ────────────────────────────────────────────────────── */
.pub-hero {
  background: linear-gradient(135deg, var(--green) 0%, #0a1f12 50%, #1a3d2b 100%);
  padding: 100px 24px 80px; text-align: center; position: relative; overflow: hidden;
}
.pub-hero::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.pub-hero-tag {
  display: inline-block; background: rgba(201,168,76,0.15); color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3); border-radius: 20px;
  padding: 6px 18px; font-size: 13px; font-weight: 700;
  letter-spacing: 1px; margin-bottom: 24px;
}
.pub-hero h1 {
  font-size: clamp(32px, 5vw, 56px); font-weight: 900;
  color: #fff; line-height: 1.15; margin-bottom: 20px;
}
.pub-hero h1 span { color: var(--gold); }
.pub-hero p {
  font-size: 18px; color: rgba(255,255,255,0.7);
  max-width: 600px; margin: 0 auto 40px; line-height: 1.7;
}
.pub-hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.pub-btn {
  display: inline-block; padding: 14px 32px; border-radius: 10px;
  font-weight: 800; font-size: 15px; text-decoration: none; transition: all .2s;
}
.pub-btn--gold {
  background: linear-gradient(135deg, #8a6f2e, var(--gold));
  color: var(--green);
}
.pub-btn--gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); color: var(--green); }
.pub-btn--outline {
  border: 2px solid rgba(255,255,255,0.3); color: #fff; background: transparent;
}
.pub-btn--outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── SECTIONS ────────────────────────────────────────────────── */
.pub-section { padding: 80px 24px; }
.pub-section--gray { background: #f8fdf9; }
.pub-section--dark { background: var(--green); color: #fff; }
.pub-container { max-width: 1200px; margin: 0 auto; }
.pub-section-title {
  font-size: clamp(24px, 3vw, 36px); font-weight: 900;
  color: var(--green); margin-bottom: 8px;
}
.pub-section--dark .pub-section-title { color: var(--gold); }
.pub-section-sub { color: #6b8c75; font-size: 16px; margin-bottom: 48px; }
.pub-section--dark .pub-section-sub { color: rgba(255,255,255,0.6); }

/* ── STATS ROW ───────────────────────────────────────────────── */
.pub-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 32px;
  margin-top: 48px;
}
.pub-stat { text-align: center; }
.pub-stat-num { font-size: 40px; font-weight: 900; color: var(--gold); }
.pub-stat-label { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ── PRODUCT CARDS ───────────────────────────────────────────── */
.pub-products { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 28px; }
.pub-product-card {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  background: #fff; transition: transform .2s, box-shadow .2s;
}
.pub-product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.14); }
.pub-product-img {
  height: 200px; display: flex; align-items: center; justify-content: center;
  font-size: 80px; position: relative;
}
.pub-product-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--gold); color: var(--green);
  font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 20px;
}
.pub-product-body { padding: 20px; }
.pub-product-name { font-size: 17px; font-weight: 800; color: var(--green); margin-bottom: 6px; }
.pub-product-desc { font-size: 13px; color: #6b8c75; line-height: 1.5; margin-bottom: 16px; }
.pub-product-price { font-size: 22px; font-weight: 900; color: var(--green); }
.pub-product-price span { font-size: 13px; color: #aaa; text-decoration: line-through; margin-left: 8px; }
.pub-product-footer { padding: 0 20px 20px; }
.pub-product-btn {
  display: block; text-align: center; padding: 10px;
  background: linear-gradient(135deg, var(--green2), var(--green3));
  color: var(--gold); border-radius: 8px; font-weight: 700;
  text-decoration: none; font-size: 14px; transition: opacity .2s;
}
.pub-product-btn:hover { opacity: 0.85; color: var(--gold); }

/* ── BONUS SECTION ───────────────────────────────────────────── */
.pub-bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.pub-bonus-levels { display: flex; flex-direction: column; gap: 12px; }
.pub-bonus-row {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.05); border-radius: 10px; padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.08);
}
.pub-bonus-icon { font-size: 24px; width: 36px; text-align: center; }
.pub-bonus-name { font-weight: 700; color: #fff; font-size: 14px; }
.pub-bonus-amount { font-weight: 800; color: var(--gold); font-size: 14px; margin-left: auto; }

/* ── HOW IT WORKS ────────────────────────────────────────────── */
.pub-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 32px; }
.pub-step { text-align: center; }
.pub-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green2), var(--green3));
  color: var(--gold); font-size: 20px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; border: 2px solid rgba(201,168,76,0.3);
}
.pub-step h3 { font-size: 16px; font-weight: 800; color: var(--green); margin-bottom: 8px; }
.pub-step p { font-size: 14px; color: #6b8c75; line-height: 1.6; }

/* ── SECURITY BADGES ─────────────────────────────────────────── */
.pub-security { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; margin-top: 32px; }
.pub-security-badge {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.05); border-radius: 10px;
  padding: 12px 20px; border: 1px solid rgba(255,255,255,0.1);
}
.pub-security-badge-icon { font-size: 24px; }
.pub-security-badge-text { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 600; }

/* ── CONTACT FORM ────────────────────────────────────────────── */
.pub-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.pub-contact-info h3 { font-size: 20px; font-weight: 800; color: var(--green); margin-bottom: 20px; }
.pub-contact-item { display: flex; gap: 12px; margin-bottom: 16px; }
.pub-contact-item-icon { font-size: 20px; }
.pub-contact-item-text { font-size: 14px; color: #4a6050; line-height: 1.5; }
.pub-contact-item-label { font-weight: 700; color: var(--green); display: block; }
.pub-form-card { background: #fff; border-radius: 16px; padding: 32px; box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.pub-form-card .form-label { font-weight: 700; font-size: 13px; color: var(--green); }
.pub-form-card .form-control:focus { border-color: var(--green3); box-shadow: 0 0 0 3px rgba(45,106,69,.12); }

/* ── LEGAL PAGES ─────────────────────────────────────────────── */
.pub-legal { max-width: 800px; margin: 60px auto; padding: 0 24px; }
.pub-legal h1 { font-size: 28px; font-weight: 900; color: var(--green); margin-bottom: 8px; }
.pub-legal .date { color: #888; font-size: 13px; margin-bottom: 32px; }
.pub-legal h2 { font-size: 18px; font-weight: 800; color: var(--green); margin: 28px 0 10px; }
.pub-legal p, .pub-legal li { font-size: 14px; color: #4a6050; line-height: 1.8; margin-bottom: 8px; }
.pub-legal ul { padding-left: 20px; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.pub-footer { background: var(--green); padding: 60px 24px 24px; }
.pub-footer-inner { max-width: 1200px; margin: 0 auto; }
.pub-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.pub-footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.pub-footer-heading { font-weight: 800; color: var(--gold); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.pub-footer-links { list-style: none; }
.pub-footer-links li { margin-bottom: 8px; }
.pub-footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color .2s; }
.pub-footer-links a:hover { color: var(--gold); }
.pub-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,0.4);
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .pub-menu { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--green); flex-direction: column; padding: 16px; }
  .pub-menu.open { display: flex; }
  .pub-burger { display: block; margin-left: auto; }
  .pub-bonus-grid, .pub-contact-grid { grid-template-columns: 1fr; }
  .pub-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .pub-footer-grid { grid-template-columns: 1fr; }
}
