:root {
  --bg: #0f1117; --bg-card: #1a1d27; --bg-nav: #141620;
  --text: #e8eaf0; --text-muted: #9ca3af; --text-dim: #6b7280;
  --accent: #f07318; --accent-light: #f59e0b;
  --green: #34d375; --border: #2a2d3a;
  --max-w: 1080px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }

/* NAV */
.site-nav { position: -webkit-sticky; position: sticky; top: 0; z-index: 100; background: var(--bg-nav); border-bottom: 1px solid var(--border); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.site-nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; height: 56px; }
.site-logo { font-size: 1.15rem; font-weight: 800; display: flex; align-items: center; gap: 0.5rem; }
.site-logo-mark { width: 32px; height: 32px; background: var(--accent); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; font-size: 1rem; }
.site-logo-text { color: var(--accent); background: linear-gradient(135deg, var(--accent), var(--accent-light)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; gap: 2rem; align-items: center; list-style: none; }
.nav-links a { color: var(--text-muted); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-cta { background: var(--accent); color: white !important; padding: 0.45rem 1.1rem; border-radius: 6px; font-weight: 600; font-size: 0.85rem; }
.nav-cta:hover { background: var(--accent-light); text-decoration: none !important; }

/* CONTAINER */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* HERO */
.hero { padding: 6rem 0 4rem; text-align: center; }
.hero h1 { font-size: 3.2rem; font-weight: 800; line-height: 1.12; margin-bottom: 1.25rem; letter-spacing: -0.02em; }
.hero h1 span { background: linear-gradient(135deg, var(--accent), var(--accent-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 1.15rem; color: var(--text-muted); max-width: 540px; margin: 0 auto 2rem; }
.btn { display: inline-block; padding: 0.75rem 2rem; border-radius: 8px; font-weight: 600; font-size: 1rem; transition: all 0.2s; border: none; cursor: pointer; }
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-light); transform: translateY(-1px); text-decoration: none; }
.btn-secondary { background: var(--bg-card); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--text-muted); text-decoration: none; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* STATS */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 2rem 0 4rem; border-bottom: 1px solid var(--border); }
.stat { text-align: center; }
.stat-value { font-size: 2rem; font-weight: 800; color: var(--accent); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }

/* FEATURES */
.features { padding: 5rem 0; }
.features h2 { font-size: 2rem; font-weight: 700; margin-bottom: 0.75rem; text-align: center; }
.features .sub { text-align: center; color: var(--text-muted); margin-bottom: 3rem; font-size: 1.05rem; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 1.75rem; }
.feature-icon { width: 40px; height: 40px; background: rgba(240,115,24,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: var(--accent); }
.feature-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* CTA SECTION */
.cta-section { padding: 5rem 0; text-align: center; border-top: 1px solid var(--border); }
.cta-section h2 { font-size: 2rem; font-weight: 700; margin-bottom: 0.75rem; }
.cta-section p { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.05rem; }

/* BLOG */
.page-header { padding: 4rem 0 2rem; }
.page-header h1 { font-size: 2.2rem; font-weight: 800; }
.page-header p { color: var(--text-muted); font-size: 1.05rem; margin-top: 0.5rem; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; padding-bottom: 4rem; }
.blog-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.blog-card-body { padding: 1.25rem 1.5rem; }
.blog-card .tag { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--accent); font-weight: 600; }
.blog-card h3 { font-size: 1.1rem; font-weight: 600; margin: 0.5rem 0; }
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--accent); text-decoration: none; }
.blog-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }
.blog-card .meta { font-size: 0.75rem; color: var(--text-dim); margin-top: 0.75rem; }

/* ARTICLE */
.article { max-width: 700px; margin: 0 auto; padding: 3rem 1.5rem 5rem; }
.article h1 { font-size: 2rem; font-weight: 800; line-height: 1.2; margin-bottom: 0.5rem; }
.article .article-meta { color: var(--text-dim); font-size: 0.85rem; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.article h2 { font-size: 1.4rem; font-weight: 700; margin: 2rem 0 0.75rem; }
.article h3 { font-size: 1.1rem; font-weight: 600; margin: 1.5rem 0 0.5rem; }
.article p { margin-bottom: 1rem; color: var(--text-muted); }
.article ul, .article ol { margin: 0 0 1rem 1.5rem; color: var(--text-muted); }
.article li { margin-bottom: 0.4rem; }
.article strong { color: var(--text); }
.article blockquote { border-left: 3px solid var(--accent); padding: 0.75rem 1.25rem; margin: 1.5rem 0; background: var(--bg-card); border-radius: 0 8px 8px 0; }
.article blockquote p { margin: 0; font-style: italic; }
.article-cta { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; text-align: center; margin: 3rem 0; }
.article-cta h3 { margin-bottom: 0.5rem; }
.article-cta p { margin-bottom: 1rem; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding: 2rem 0 4rem; align-items: center; }
.about-text h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.about-value { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 1.25rem; }
.about-value h4 { font-size: 0.95rem; margin-bottom: 0.3rem; }
.about-value p { font-size: 0.82rem; color: var(--text-muted); }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; padding: 2rem 0 4rem; }
.pricing-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 2rem; text-align: center; position: relative; }
.pricing-card.featured { border-color: var(--accent); }
.pricing-card.featured::before { content: 'Populair'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: white; padding: 0.2rem 1rem; border-radius: 20px; font-size: 0.75rem; font-weight: 700; }
.pricing-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.pricing-card .price { font-size: 2.5rem; font-weight: 800; margin: 1rem 0 0.25rem; }
.pricing-card .price span { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); }
.pricing-card .price-sub { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.pricing-card ul { list-style: none; text-align: left; margin-bottom: 1.5rem; }
.pricing-card li { padding: 0.4rem 0; font-size: 0.88rem; color: var(--text-muted); }
.pricing-card li::before { content: '\2713 '; color: var(--green); font-weight: 700; margin-right: 0.5rem; }

/* FOOTER */
.site-footer { border-top: 1px solid var(--border); padding: 3rem 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.75rem; max-width: 280px; }
.footer-col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-dim); margin-bottom: 0.75rem; }
.footer-col a { display: block; color: var(--text-muted); font-size: 0.88rem; padding: 0.25rem 0; }
.footer-col a:hover { color: var(--text); text-decoration: none; }
.footer-bottom { text-align: center; padding-top: 2rem; margin-top: 2rem; border-top: 1px solid var(--border); font-size: 0.8rem; color: var(--text-dim); }

/* AD SLOT */
.ad-banner { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 1rem; text-align: center; margin: 2rem 0; }
.ad-banner .ad-label { font-size: 0.65rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.5rem; }

/* MOBILE MENU */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: all 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* TESTIMONIALS */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 960px; margin: 0 auto; }
.testimonial-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 1.75rem; position: relative; }
.testimonial-card::before { content: '\201C'; position: absolute; top: 12px; left: 18px; font-size: 3rem; color: var(--accent); opacity: 0.3; font-family: Georgia, serif; line-height: 1; }
.testimonial-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; padding-top: 1rem; }
.testimonial-card .tc-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-card .tc-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
.testimonial-card .tc-name { font-weight: 600; font-size: 0.88rem; }
.testimonial-card .tc-role { font-size: 0.78rem; color: var(--text-dim); }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem 1.5rem; }
.faq-item summary { font-weight: 600; font-size: 0.95rem; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; }
.faq-item summary::after { content: '+'; font-size: 1.2rem; color: var(--accent); font-weight: 400; transition: transform 0.2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-top: 0.75rem; }

/* EMAIL CAPTURE */
.email-capture { background: linear-gradient(135deg, var(--bg-card) 0%, rgba(240,115,24,0.04) 100%); border: 1px solid rgba(240,115,24,0.2); border-radius: 14px; padding: 2rem; text-align: center; margin-top: 2rem; }
.email-capture h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.email-capture p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1rem; }
.email-capture form { display: flex; gap: 0.5rem; max-width: 420px; margin: 0 auto; }
.email-capture input[type="email"] { flex: 1; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 0.65rem 1rem; color: var(--text); font-size: 0.9rem; }
.email-capture input[type="email"]:focus { outline: none; border-color: var(--accent); }
.email-capture .btn { white-space: nowrap; padding: 0.65rem 1.25rem; font-size: 0.88rem; }

/* TRUST BAR */
.trust-bar { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; padding: 1rem 0; font-size: 0.82rem; color: var(--text-dim); }
.trust-bar span { display: flex; align-items: center; gap: 0.4rem; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; position: absolute; top: 56px; left: 0; right: 0; background: var(--bg-nav); border-bottom: 1px solid var(--border); flex-direction: column; padding: 1rem 1.5rem; gap: 0.5rem; z-index: 99; }
  .nav-links.active { display: flex; }
  .nav-links li { padding: 0.5rem 0; }
  .nav-toggle { display: block; }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 1rem; }
  .testimonial-card { padding: 1.25rem; }
  .testimonial-card .tc-avatar { width: 36px; height: 36px; font-size: 0.8rem; }
  .faq-grid { grid-template-columns: 1fr; }
  .email-capture form { flex-direction: column; }
  .cta-section h2 { font-size: 1.8rem; }
}
