
:root {
  --primary: #10b981;
  --primary-glow: #34d399;
  --gold: #f59e0b;
  --gold-glow: #fbbf24;
  --bg-dark: #06110d;
  --card-bg: rgba(10, 31, 22, 0.88);
  --text-main: #f0fdf4;
  --text-muted: #86efac;
}
* { margin:0; padding:0; box-sizing:border-box; font-family:-apple-system,BlinkMacSystemFont,"Kanit","Prompt",sans-serif; }
body { background: var(--bg-dark); color: var(--text-main); line-height: 1.7; overflow-x: hidden; }
header { background: rgba(6, 17, 13, 0.95); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(16, 185, 129, 0.25); position: sticky; top: 0; z-index: 100; padding: 12px 5%; display: flex; justify-content: space-between; align-items: center; }
.logo-container { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-img { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--gold); box-shadow: 0 0 12px rgba(245, 158, 11, 0.6); }
.logo-text { font-size: 26px; font-weight: 900; background: linear-gradient(135deg, #fef08a, #f59e0b, #10b981); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 1px; }
nav a { color: var(--text-main); text-decoration: none; margin: 0 14px; font-weight: 500; transition: 0.3s; }
nav a:hover, nav a.active { color: var(--gold); }
.cta-btn { background: linear-gradient(135deg, #f59e0b, #d97706, #059669); color: #000; font-weight: 800; padding: 10px 26px; border-radius: 9999px; text-decoration: none; display: inline-block; transition: all 0.3s; box-shadow: 0 0 25px rgba(245, 158, 11, 0.5); }
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 0 35px rgba(251, 191, 36, 0.8); color: #000; }
.container { max-width: 1200px; margin: 0 auto; padding: 40px 20px; }
.hero { text-align: center; padding: 50px 20px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; line-height: 1.25; margin-bottom: 20px; background: linear-gradient(135deg, #ffffff, #fef08a, #f59e0b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 1.15rem; color: #a7f3d0; max-width: 840px; margin: 0 auto 30px; }
.hero-img { width: 100%; max-width: 920px; border-radius: 20px; border: 2px solid rgba(245, 158, 11, 0.35); box-shadow: 0 12px 45px rgba(0,0,0,0.85); margin-bottom: 35px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; margin: 40px 0; }
.card { background: var(--card-bg); border: 1px solid rgba(16, 185, 129, 0.2); border-radius: 16px; padding: 25px; transition: 0.3s; }
.card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 8px 25px rgba(245, 158, 11, 0.25); }
.card h3 { color: var(--gold-glow); font-size: 1.3rem; margin-bottom: 12px; }
.card p { color: #d1fae5; }
.content-box { background: var(--card-bg); border-radius: 16px; padding: 35px; margin: 40px 0; border: 1px solid rgba(255,255,255,0.06); }
.content-box h2 { font-size: 1.8rem; color: #fff; margin-bottom: 15px; border-left: 4px solid var(--gold); padding-left: 12px; }
.content-box p { color: #d1fae5; }
.faq-section { margin-top: 50px; }
.faq-item { background: var(--card-bg); border-radius: 12px; padding: 20px 25px; margin-bottom: 15px; border: 1px solid rgba(16, 185, 129, 0.15); }
.faq-q { font-size: 1.15rem; font-weight: 700; color: #fde047; margin-bottom: 8px; }
.faq-a { color: #a7f3d0; font-size: 0.98rem; }
footer { background: #030805; border-top: 1px solid rgba(16, 185, 129, 0.15); text-align: center; padding: 40px 20px; color: #6ee7b7; font-size: 0.9rem; }
@media (max-width: 768px) { nav { display: none; } }
