﻿:root {
    --bg-main: #f8f9fa;
    --text-main: #1e293b;
    --accent-primary: #ff6b6b;
    --accent-hover: #fa5252;
    --accent-secondary: #10b981;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); color: var(--text-main); background: var(--bg-main); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--text-main); }
a { color: var(--text-main); text-decoration: none; transition: 0.3s; }
.skip-link { position: absolute; top: -40px; left: 0; background: var(--accent-primary); color: white; padding: 8px; z-index: 1000; transition: top 0.2s; }
.skip-link:focus { top: 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
img { max-width: 100%; height: auto; display: block; border-radius: 12px; }

/* Header */
header { background: var(--white); position: fixed; width: 100%; top: 0; z-index: 999; box-shadow: var(--shadow); }
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; max-width: 1200px; margin: 0 auto; }
.logo { font-family: var(--font-heading); font-size: 24px; font-weight: 800; display: flex; align-items: center; gap: 10px; color: var(--text-main); }
.logo-img { width: 35px; height: 35px; }
.main-nav ul { list-style: none; display: flex; gap: 25px; }
.main-nav a { font-weight: 600; font-size: 15px; }
.main-nav a:hover { color: var(--accent-primary); }
.burger { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-main); }

/* Hero */
.hero { padding: 140px 20px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; max-width: 1200px; margin: 0 auto; }
.hero-content h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; position: relative; }
.hero-content h1::after { content: ''; position: absolute; width: 60px; height: 6px; background: var(--accent-secondary); bottom: -10px; left: 0; border-radius: 3px; }
.hero-content p { font-size: 1.1rem; margin-bottom: 30px; opacity: 0.9; }
.btn-primary { background: var(--accent-primary); color: var(--white); padding: 14px 32px; border: none; border-radius: 50px; font-weight: 600; cursor: pointer; font-family: var(--font-body); font-size: 1rem; transition: 0.3s; box-shadow: 0 4px 15px rgba(255,107,107,0.4); display: inline-block; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); color: white; }

/* Sections */
.section-pad { padding: 100px 20px; }
.text-center { text-align: center; }
.section-title { font-size: 2.5rem; margin-bottom: 50px; text-align: center; }

/* Features */
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.feature-list { list-style: none; }
.feature-list li { margin-bottom: 20px; display: flex; align-items: flex-start; gap: 15px; font-size: 1.1rem; }
.feature-list i { color: var(--accent-secondary); font-size: 1.5rem; margin-top: 3px; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.price-card { background: var(--white); padding: 40px 30px; border-radius: 20px; text-align: center; box-shadow: var(--shadow); position: relative; border: 1px solid #e2e8f0; }
.price-card.popular { transform: scale(1.05); border-color: var(--accent-secondary); box-shadow: 0 15px 40px rgba(16,185,129,0.15); }
.popular-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--accent-secondary); color: white; padding: 5px 15px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; }
.price-card h4 { font-size: 1.5rem; margin-bottom: 15px; }
.price { font-size: 2.5rem; font-family: var(--font-heading); font-weight: 800; margin-bottom: 20px; color: var(--accent-primary); }
.price-card ul { list-style: none; margin-bottom: 30px; text-align: left; }
.price-card ul li { padding: 10px 0; border-bottom: 1px solid #f1f5f9; }

/* Form Section */
.form-section { background: var(--text-main); color: var(--white); border-radius: 30px; padding: 60px; max-width: 800px; margin: 0 auto; box-shadow: var(--shadow); }
.form-section h2 { color: var(--white); margin-bottom: 20px; text-align: center; }
.lead-form { display: grid; gap: 20px; }
.input-group { display: flex; flex-direction: column; gap: 8px; }
.lead-form input, .lead-form textarea { width: 100%; padding: 15px; border-radius: 8px; border: 1px solid #475569; background: #334155; color: white; font-family: var(--font-body); }
.lead-form input:focus { outline: 2px solid var(--accent-secondary); }
.checkbox-group { display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem; color: #cbd5e1; }
.checkbox-group input { width: auto; margin-top: 4px; }

/* Trust Layer */
.trust-layer { background: #e2e8f0; padding: 40px 20px; text-align: center; font-size: 0.9rem; color: #475569; margin-top: 60px; }
.trust-layer h3 { font-size: 1.2rem; margin-bottom: 15px; color: var(--text-main); }
.trust-layer .disclaimer { margin-top: 15px; font-style: italic; font-size: 0.85rem; }

/* Footer */
footer { background: #0f172a; color: #94a3b8; padding: 50px 20px; text-align: center; }
.footer-links { margin-bottom: 20px; }
.footer-links a { color: #cbd5e1; margin: 0 10px; }
.footer-links a:hover { color: var(--accent-primary); }
footer p { margin-bottom: 10px; font-size: 0.9rem; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--white); padding: 20px; box-shadow: 0 -5px 20px rgba(0,0,0,0.1); display: flex; justify-content: center; align-items: center; gap: 20px; z-index: 1000; }
.cookie-banner.hidden { display: none; }

/* Accordion */
.accordion { max-width: 800px; margin: 0 auto; }
.acc-item { background: white; margin-bottom: 15px; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.acc-btn { width: 100%; text-align: left; padding: 20px; background: none; border: none; font-weight: 600; font-size: 1.1rem; cursor: pointer; display: flex; justify-content: space-between; font-family: var(--font-body); color: var(--text-main); }
.acc-content { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }

/* Mobile */
@media (max-width: 768px) {
    .burger { display: block; }
    .main-nav { position: absolute; top: 100%; left: -100%; width: 100%; background: var(--white); box-shadow: 0 10px 10px rgba(0,0,0,0.1); transition: 0.3s; }
    .main-nav.active { left: 0; }
    .main-nav ul { flex-direction: column; padding: 20px; gap: 15px; text-align: center; }
    .hero, .features-grid, .pricing-grid { grid-template-columns: 1fr; }
    .price-card.popular { transform: scale(1); }
    .hero-content h1 { font-size: 2.5rem; }
    .form-section { padding: 30px 20px; }
    .cookie-banner { flex-direction: column; text-align: center; }
}