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

:root {
  --bg-primary: #0a0e17;
  --bg-secondary: #111827;
  --bg-card: #1a2236;
  --bg-glass: rgba(26, 34, 54, 0.7);
  --accent: #f59e0b;
  --accent-hover: #fbbf24;
  --accent-glow: rgba(245, 158, 11, 0.3);
  --green: #10b981;
  --red: #ef4444;
  --blue: #3b82f6;
  --purple: #8b5cf6;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --border: rgba(255,255,255,0.08);
  --radius: 16px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

/* HEADER */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
header.scrolled { background: rgba(10, 14, 23, 0.95); box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.header-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px;
}
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.2));
  transition: transform 0.3s, filter 0.3s;
}
.logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 14px rgba(245, 158, 11, 0.4));
}

nav { display: flex; gap: 8px; align-items: center; }
nav a {
  color: var(--text-secondary); text-decoration: none;
  font-size: 14px; font-weight: 500; padding: 8px 14px;
  border-radius: 8px; transition: all 0.3s;
}
nav a:hover { color: var(--accent); background: rgba(245,158,11,0.08); }

.btn-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--accent), #d97706);
  color: #000; font-weight: 700; font-size: 15px;
  padding: 12px 28px; border-radius: 50px;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s; box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}
.btn-cta-sm { padding: 10px 22px; font-size: 14px; }

.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--text-primary);
  border-radius: 2px; transition: all 0.3s;
}

/* HERO */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 24px 80px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(245,158,11,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(59,130,246,0.08) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  max-width: 1200px; margin: 0 auto; position: relative; z-index: 2;
  text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.2);
  padding: 8px 20px; border-radius: 50px; font-size: 13px;
  color: var(--accent); font-weight: 600; margin-bottom: 24px;
  animation: fadeInDown 0.8s ease;
}
.hero-badge .pulse {
  width: 8px; height: 8px; background: var(--green);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800; line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
h1 .highlight {
  background: linear-gradient(135deg, var(--accent), #fbbf24);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: 18px; color: var(--text-secondary);
  max-width: 640px; margin: 0 auto 36px;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--accent); color: var(--accent);
  padding: 12px 28px; border-radius: 50px; font-weight: 600;
  text-decoration: none; transition: all 0.3s;
}
.btn-outline:hover {
  background: var(--accent); color: #000;
}
.hero-stats {
  display: flex; gap: 48px; justify-content: center;
  margin-top: 60px; animation: fadeInUp 0.8s ease 0.8s both;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem; font-weight: 800; color: var(--accent);
}
.stat-label { font-size: 13px; color: var(--text-secondary); margin-top: 4px; }

/* SECTIONS */
section { padding: 80px 24px; position: relative; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--accent);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700; margin-bottom: 16px;
}
.section-desc {
  color: var(--text-secondary); font-size: 16px;
  max-width: 600px; margin-bottom: 48px;
}
.section-desc.center { margin-left: auto; margin-right: auto; text-align: center; }
.text-center { text-align: center; }

/* CARDS GRID */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px; transition: all 0.4s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--accent), var(--blue));
  opacity: 0; transition: opacity 0.4s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(245,158,11,0.2); }
.card:hover::before { opacity: 1; }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
  background: rgba(245,158,11,0.1);
}
.card-icon.green { background: rgba(16,185,129,0.1); }
.card-icon.blue { background: rgba(59,130,246,0.1); }
.card-icon.purple { background: rgba(139,92,246,0.1); }
.card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem; font-weight: 700; margin-bottom: 10px;
}
.card p { color: var(--text-secondary); font-size: 14px; line-height: 1.7; }

/* TABLE */
.table-wrap {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
table { width: 100%; border-collapse: collapse; }
thead { background: rgba(245,158,11,0.08); }
th {
  padding: 16px 20px; text-align: left;
  font-size: 13px; font-weight: 600;
  color: var(--accent); text-transform: uppercase;
  letter-spacing: 1px;
}
td {
  padding: 16px 20px; border-top: 1px solid var(--border);
  font-size: 14px; color: var(--text-secondary);
}
tr:hover td { background: rgba(255,255,255,0.02); }
.badge {
  display: inline-block; padding: 4px 12px;
  border-radius: 50px; font-size: 12px; font-weight: 600;
}
.badge-green { background: rgba(16,185,129,0.15); color: var(--green); }
.badge-blue { background: rgba(59,130,246,0.15); color: var(--blue); }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: 12px;
  margin-bottom: 12px; overflow: hidden;
  background: var(--bg-card); transition: all 0.3s;
}
.faq-item:hover { border-color: rgba(245,158,11,0.15); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; font-weight: 600;
  font-size: 15px; user-select: none; transition: color 0.3s;
}
.faq-q:hover { color: var(--accent); }
.faq-q .arrow { transition: transform 0.3s; font-size: 18px; color: var(--accent); }
.faq-item.active .faq-q .arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
  padding: 0 24px;
}
.faq-item.active .faq-a { max-height: 300px; padding: 0 24px 20px; }
.faq-a p { color: var(--text-secondary); font-size: 14px; line-height: 1.8; }

/* TRUST */
.trust-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.trust-item {
  text-align: center; padding: 28px 20px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); transition: all 0.3s;
}
.trust-item:hover { border-color: rgba(245,158,11,0.2); transform: translateY(-3px); }
.trust-icon { font-size: 32px; margin-bottom: 12px; }
.trust-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.trust-item p { font-size: 13px; color: var(--text-secondary); }

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(59,130,246,0.05));
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: 24px; padding: 60px 40px;
  text-align: center; margin: 0 auto; max-width: 900px;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px; text-align: center;
}
footer p { color: var(--text-secondary); font-size: 13px; }
footer a { color: var(--accent); text-decoration: none; }

/* ANIMATIONS */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: var(--bg-secondary);
    padding: 16px; gap: 4px; border-bottom: 1px solid var(--border);
  }
  nav.open { display: flex; }
  .hamburger { display: flex; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .stat-num { font-size: 1.6rem; }
  .cta-section { padding: 40px 24px; }
  table { font-size: 13px; }
  th, td { padding: 12px; }
}
