﻿:root {
    --primary: #1A1A2E;
    --secondary: #16213E;
    --accent: #E94560;
    --bg-light: #F5F6FA;
    --text-dark: #222222;
    --text-light: #FFFFFF;
    --border-color: #DDDDDD;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; }

.skip-link {
    position: absolute;
    top: -40px; left: 0;
    background: var(--accent); color: white;
    padding: 8px; z-index: 1000;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }

header {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0; z-index: 50;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.logo-container { display: flex; align-items: center; gap: 10px; text-decoration: none; color: white;}
.logo-container img { width: 40px; height: 40px; }
.logo-container span { font-size: 1.5rem; font-family: 'Montserrat', sans-serif; font-weight: 800; letter-spacing: 1px;}

nav ul { list-style: none; display: flex; gap: 20px; }
nav ul li a { color: var(--text-light); text-decoration: none; font-weight: 600; transition: color 0.3s;}
nav ul li a:hover { color: var(--accent); }

.burger-btn { display: none; background: none; border: none; color: white; font-size: 1.8rem; cursor: pointer; }

.hero {
    position: relative;
    padding: 100px 5%;
    background-color: var(--secondary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}
.hero-content { max-width: 50%; z-index: 2; }
.hero-content h1 { font-size: 3.5rem; margin-bottom: 20px; line-height: 1.1; }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }
.hero-image { max-width: 45%; z-index: 2; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.3); }

.unique-shape {
    position: absolute;
    top: -50px; right: -50px;
    width: 400px; height: 400px;
    background: var(--accent);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 1;
}

.btn-primary {
    display: inline-block; background: var(--accent); color: white;
    padding: 15px 30px; text-decoration: none; border-radius: 5px;
    font-weight: bold; font-family: 'Montserrat', sans-serif;
    transition: transform 0.2s, background 0.3s;
    border: none; cursor: pointer; font-size: 1rem;
}
.btn-primary:hover { background: #d13d56; transform: translateY(-3px); }

section { padding: 80px 5%; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; color: var(--primary); }

.asymmetric-features { display: flex; align-items: center; gap: 40px; }
.asymmetric-features img { width: 50%; border-radius: 10px; box-shadow: -15px 15px 0px var(--accent); }
.features-text { width: 50%; }
.features-text ul { list-style: none; margin-top: 20px; }
.features-text ul li { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; font-size: 1.1rem; }
.features-text ul li i { color: var(--accent); font-size: 1.3rem; }

.lead-form-section { background: white; border-radius: 15px; padding: 50px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); max-width: 800px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; }
.form-group input, .form-group textarea {
    width: 100%; padding: 12px; border: 1px solid var(--border-color);
    border-radius: 5px; font-family: 'Open Sans', sans-serif; transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 2px rgba(233,69,96,0.2); }
.checkbox-group { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.checkbox-group input { margin-top: 5px; }
.checkbox-group label { font-size: 0.9rem; color: #555; }

.trust-layer {
    background: #E8EAEF; padding: 30px 5%; text-align: center; border-top: 2px solid var(--border-color);
}
.trust-layer h4 { margin-bottom: 10px; color: var(--primary); }
.trust-layer p { font-size: 0.85rem; color: #666; max-width: 900px; margin: 0 auto; line-height: 1.5; }

footer { background: var(--primary); color: white; padding: 40px 5% 20px; text-align: center; }
.footer-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.footer-links a { color: #BBB; text-decoration: none; font-size: 0.9rem; }
.footer-links a:hover { color: white; }
.footer-legal { font-size: 0.8rem; color: #888; margin-top: 20px; border-top: 1px solid #333; padding-top: 20px;}

.cookie-banner {
    position: fixed; bottom: -100%; left: 0; width: 100%;
    background: rgba(26, 26, 46, 0.95); color: white; padding: 20px 5%;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 9999; transition: bottom 0.5s ease; backdrop-filter: blur(5px);
}
.cookie-banner.show { bottom: 0; }
.cookie-btns button { padding: 10px 20px; margin-left: 10px; border: none; border-radius: 3px; cursor: pointer; font-weight: bold; }
.btn-accept { background: var(--accent); color: white; }
.btn-decline { background: #555; color: white; }

.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-color); margin-bottom: 15px; }
.faq-question { padding: 15px 0; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; color: #555; }
.faq-answer p { padding-bottom: 15px; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

@media(max-width: 768px) {
    nav ul {
        position: fixed; top: 70px; right: -100%; width: 250px; height: calc(100vh - 70px);
        background: var(--primary); flex-direction: column; padding: 30px;
        transition: right 0.3s ease; box-shadow: -5px 0 10px rgba(0,0,0,0.1);
    }
    nav ul.active { right: 0; }
    .burger-btn { display: block; }
    .hero { flex-direction: column; text-align: center; padding: 60px 5%; }
    .hero-content, .hero-image { max-width: 100%; }
    .hero-image { margin-top: 40px; }
    .asymmetric-features, .grid-2 { flex-direction: column; display: flex;}
    .features-text, .asymmetric-features img { width: 100%; }
    .cookie-banner { flex-direction: column; gap: 15px; text-align: center; }
}
