:root {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent: #4f46e5;
    --accent-hover: #4338ca;
    --highlight: #2dd4bf;
    --border: #334155;
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background-color: var(--bg-primary); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }
.skip-link { position: absolute; top: -40px; left: 0; background: var(--accent); color: #fff; padding: 8px; z-index: 1000; transition: top 0.3s; }
.skip-link:focus { top: 0; }
a { color: var(--highlight); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--text-main); }
img { max-width: 100%; height: auto; display: block; border-radius: 12px; }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; margin-bottom: 1rem; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
header { position: fixed; top: 0; width: 100%; background: rgba(15, 23, 42, 0.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); z-index: 100; padding: 15px 0; }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-size: 1.5rem; font-weight: bold; color: #fff; }
.logo img { width: 40px; height: 40px; border-radius: 0; }
.nav-links { display: flex; gap: 20px; }
.nav-links a { color: var(--text-main); font-weight: 500; }
.burger { display: none; background: none; border: none; color: #fff; font-size: 1.8rem; cursor: pointer; }

/* Mobile Menu */
@media (max-width: 768px) {
    .nav-links { position: fixed; top: 70px; right: -100%; width: 250px; height: 100vh; background: var(--bg-secondary); flex-direction: column; padding: 30px; transition: 0.3s; box-shadow: -5px 0 15px rgba(0,0,0,0.5); }
    .nav-links.active { right: 0; }
    .burger { display: block; }
}

/* Unique Graphic Blob */
.bg-blob { position: absolute; top: 10%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(79,70,229,0.15) 0%, rgba(15,23,42,0) 70%); z-index: -1; pointer-events: none; }

/* Hero */
.hero { padding: 150px 0 80px; text-align: center; position: relative; }
.hero h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; background: linear-gradient(90deg, #fff, var(--highlight)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 1.2rem; color: var(--text-muted); max-width: 700px; margin: 0 auto 30px; }
.btn { display: inline-block; padding: 14px 28px; background: var(--accent); color: #fff !important; border-radius: 8px; font-weight: 600; cursor: pointer; border: none; font-family: var(--font-body); font-size: 1rem; transition: 0.3s; }
.btn:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(79,70,229,0.3); }

/* Stats & Proof */
.stats { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 40px 0; background: var(--bg-secondary); border-radius: 12px; }
.stat-item { text-align: center; }
.stat-num { font-size: 2.5rem; font-weight: bold; color: var(--highlight); font-family: var(--font-heading); }
.social-proof { text-align: center; margin-bottom: 60px; }
.logos { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin: 30px 0; color: var(--text-muted); font-size: 2rem; }
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 40px; }
.testimonial { background: var(--bg-secondary); padding: 25px; border-radius: 12px; border: 1px solid var(--border); text-align: left; }
.t-name { font-weight: bold; margin-top: 15px; color: var(--highlight); }

/* Features & Services */
section { padding: 80px 0; position: relative; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; }
.features { display: flex; align-items: center; gap: 50px; flex-wrap: wrap; }
.features > * { flex: 1; min-width: 300px; }
.features ul { list-style: none; margin-top: 20px; }
.features li { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.features li i { color: var(--highlight); }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background: var(--bg-secondary); padding: 30px; border-radius: 12px; border: 1px solid var(--border); transition: 0.3s; }
.service-card:hover { border-color: var(--highlight); transform: translateY(-5px); }
.service-card i { font-size: 2.5rem; color: var(--accent); margin-bottom: 20px; }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; align-items: center; }
.price-card { background: var(--bg-secondary); padding: 40px 30px; border-radius: 12px; text-align: center; border: 1px solid var(--border); position: relative; }
.price-card.popular { border-color: var(--accent); transform: scale(1.05); box-shadow: 0 10px 30px rgba(79,70,229,0.2); }
.badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; }
.price { font-size: 3rem; font-weight: bold; margin: 20px 0; color: #fff; }
.price span { font-size: 1rem; color: var(--text-muted); }
.price-card ul { list-style: none; text-align: left; margin-bottom: 30px; }
.price-card li { padding: 10px 0; border-bottom: 1px solid var(--border); }

/* Form */
.form-section { background: var(--bg-secondary); padding: 60px; border-radius: 20px; max-width: 800px; margin: 0 auto; box-shadow: 0 20px 40px rgba(0,0,0,0.4); border: 1px solid var(--border); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 0.9rem; color: var(--text-muted); }
input, textarea { width: 100%; padding: 15px; background: var(--bg-primary); border: 1px solid var(--border); border-radius: 8px; color: #fff; font-family: var(--font-body); }
input:focus, textarea:focus { outline: none; border-color: var(--highlight); }
.checkbox-group { display: flex; align-items: flex-start; gap: 10px; font-size: 0.8rem; color: var(--text-muted); }
.checkbox-group input { width: auto; margin-top: 4px; }

/* FAQ */
details { background: var(--bg-secondary); padding: 20px; margin-bottom: 15px; border-radius: 8px; border: 1px solid var(--border); cursor: pointer; }
summary { font-weight: bold; font-family: var(--font-heading); outline: none; }
details p { margin-top: 15px; color: var(--text-muted); }

/* Trust Layer & Footer */
.trust-layer { background: rgba(30, 41, 59, 0.5); padding: 30px 0; border-top: 1px solid var(--border); font-size: 0.85rem; color: var(--text-muted); }
.trust-layer h4 { color: #fff; margin-bottom: 10px; }
footer { background: #070b14; padding: 40px 0 20px; text-align: center; font-size: 0.9rem; color: var(--text-muted); }
.footer-links { margin: 20px 0; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.footer-legal { border-top: 1px solid #1e293b; padding-top: 20px; margin-top: 20px; font-size: 0.8rem; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: -100%; left: 0; width: 100%; background: var(--bg-secondary); padding: 20px; box-shadow: 0 -5px 20px rgba(0,0,0,0.5); z-index: 1000; display: flex; justify-content: space-between; align-items: center; transition: 0.5s; border-top: 1px solid var(--border); }
.cookie-banner.show { bottom: 0; }
.cookie-btns { display: flex; gap: 10px; }
.btn-alt { background: transparent; border: 1px solid var(--accent); }

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .features { flex-direction: column; }
    .pricing { grid-template-columns: 1fr; }
    .form-section { padding: 30px 20px; }
    .cookie-banner { flex-direction: column; gap: 15px; text-align: center; }
}