﻿:root {
    --primary: #0f172a;
    --accent: #2563eb;
    --light: #f8fafc;
    --dark: #0f172a;
    --text: #334155;
    --white: #ffffff;
    --gray: #94a3b8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; color: var(--text); line-height: 1.6; scroll-behavior: smooth; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.bg-light { background-color: var(--light); }
.bg-dark { background-color: var(--dark); color: var(--white); }
.text-white { color: var(--white); }

h1, h2, h3, h4 { color: var(--primary); margin-bottom: 20px; line-height: 1.2; }
.text-white h1, .text-white h2, .text-white h3 { color: var(--white); }
h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: 2.2rem; text-align: center; margin-bottom: 50px; }

.btn-primary { background: var(--accent); color: var(--white); padding: 14px 28px; border: none; border-radius: 5px; cursor: pointer; text-decoration: none; font-weight: bold; display: inline-block; transition: 0.3s; }
.btn-primary:hover { background: #1d4ed8; transform: translateY(-2px); }
.btn-secondary { background: transparent; border: 2px solid var(--white); color: var(--white); padding: 12px 26px; border-radius: 5px; text-decoration: none; font-weight: bold; display: inline-block; transition: 0.3s; }
.btn-secondary:hover { background: var(--white); color: var(--primary); }

header { background: var(--white); padding: 15px 0; border-bottom: 1px solid #e2e8f0; }
.sticky { position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.nav a { text-decoration: none; color: var(--text); margin-left: 30px; font-weight: 500; }
.nav a:hover { color: var(--accent); }

.hero { padding: 150px 0 100px; text-align: center; color: var(--white); background-size: cover; background-position: center; }
.hero h1 { color: var(--white); }
.hero p { font-size: 1.25rem; max-width: 800px; margin: 0 auto 40px; }
.hero-btns { display: flex; gap: 20px; justify-content: center; margin-bottom: 50px; }
.trust-strip { display: flex; gap: 40px; justify-content: center; font-size: 0.9rem; font-weight: bold; }

.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: 1fr 1fr; align-items: center; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 768px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } .rev { direction: rtl; } .rev > * { direction: ltr; } }

.card { background: var(--white); padding: 30px; border-radius: 10px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); transition: 0.3s; }
.card:hover { transform: translateY(-5px); }
.benefit-card .icon { font-size: 2.5rem; margin-bottom: 20px; }

.service-img img, .about-img img { width: 100%; border-radius: 10px; display: block; }

.steps { display: flex; justify-content: space-between; gap: 20px; margin-top: 40px; }
.step { flex: 1; text-align: center; }
.step-num { width: 50px; height: 50px; background: var(--accent); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-weight: bold; font-size: 1.5rem; }
@media (max-width: 768px) { .steps { flex-direction: column; } }

.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e2e8f0; padding: 20px 0; }
.faq-q { font-weight: bold; cursor: pointer; position: relative; padding-right: 30px; }
.faq-q::after { content: '+'; position: absolute; right: 0; }
.faq-a { display: none; padding-top: 15px; color: #64748b; }

.form-wrapper { background: var(--white); padding: 40px; border-radius: 10px; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; }
.form-group input { width: 100%; padding: 12px; border: 1px solid #cbd5e1; border-radius: 5px; }
.form-consent { display: flex; gap: 10px; font-size: 0.85rem; margin-bottom: 20px; }
.full-width { width: 100%; }

.footer { padding: 80px 0 40px; background: #e2e8f0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; }
.footer-links a { display: block; text-decoration: none; color: var(--text); margin-bottom: 10px; }
.footer-bottom { text-align: center; padding-top: 40px; margin-top: 40px; border-top: 1px solid #cbd5e1; font-size: 0.9rem; }

.cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--dark); color: var(--white); padding: 20px 0; z-index: 2000; }
.cookie-btns { display: flex; gap: 15px; margin-top: 15px; }
.hidden { display: none; }
