*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0d1117; --bg-card: #161b22; --border: #1e2a3a;
  --text: #e6edf3; --text-muted: #8b949e;
  --cyan: #00d4ff;
  --cyan-glow: 0 0 20px rgba(0,212,255,0.4), 0 0 40px rgba(0,212,255,0.15);
  --font-display: 'Clash Grotesk', sans-serif;
  --font-body: 'Cabinet Grotesk', sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
.grid-bg { background-image: linear-gradient(rgba(30,42,58,0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(30,42,58,0.5) 1px, transparent 1px); background-size: 40px 40px; }
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.1; font-weight: 700; }
.neon { color: var(--cyan); text-shadow: 0 0 10px rgba(0,212,255,0.5); }
.section-label { font-size: 11px; text-transform: uppercase; letter-spacing: 3px; color: var(--cyan); font-weight: 600; margin-bottom: 10px; display: block; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 6px; font-size: 14px; font-weight: 700; font-family: var(--font-body); cursor: pointer; text-decoration: none; transition: all 0.2s; border: none; }
.btn-cyan { background: var(--cyan); color: #0d1117; }
.btn-cyan:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: var(--cyan-glow); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid rgba(255,255,255,0.2); }
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-ghost { background: var(--bg-card); color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }

/* NAV */
nav { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid #e5e7eb; background: #ffffff; backdrop-filter: blur(12px); transition: box-shadow 0.3s; }
nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { line-height: 0; text-decoration: none; }
.nav-logo img { height: 56px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a { color: #374151; text-decoration: none; font-size: 13px; font-weight: 500; padding: 6px 11px; border-radius: 4px; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: #00d4ff; }
.nav-links a.active { color: var(--cyan); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #111827; border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; flex-direction: column; gap: 2px; padding: 12px 24px 16px; border-top: 1px solid #e5e7eb; background: #ffffff; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #374151; text-decoration: none; font-size: 15px; padding: 10px 8px; border-radius: 4px; }
.mobile-menu a:hover { color: #00d4ff; background: #f9fafb; }

/* TRUST BAR */
.trust-bar { background: rgba(0,212,255,0.05); border-bottom: 1px solid rgba(0,212,255,0.15); padding: 9px 0; }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--text-muted); }
.trust-item strong { color: var(--text); }
.stars { color: #fbbf24; }

/* PAGE HERO (inner pages) */
.page-hero { padding: 80px 0 64px; background: var(--bg); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(30,42,58,0.4) 1px, transparent 1px), linear-gradient(90deg, rgba(30,42,58,0.4) 1px, transparent 1px); background-size: 40px 40px; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(30px,4vw,48px); margin-bottom: 16px; }
.page-hero p { font-size: 17px; color: var(--text-muted); max-width: 560px; line-height: 1.7; }

/* FOOTER */
footer { border-top: 1px solid #e5e7eb; padding: 32px 0; margin-top: auto; background: #ffffff; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo img { height: 36px; width: auto; object-fit: contain; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: #6b7280; text-decoration: none; font-size: 12px; transition: color 0.2s; }
.footer-links a:hover { color: #00d4ff; }
.footer-copy { color: #6b7280; font-size: 12px; }

/* CARDS */
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; transition: border-color 0.2s, transform 0.2s; }
.card:hover { border-color: rgba(0,212,255,0.3); transform: translateY(-2px); }

@media(max-width:768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 64px 0; }
  .trust-inner { gap: 12px; }
}
@media(max-width:480px) {
  .footer-inner { flex-direction: column; text-align: center; }
}
