:root {
    --primary: #1a2a3a;
    --accent: #c5a059;
    --text: #333;
    --light: #f9f7f2;
    --white: #ffffff;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Montserrat', sans-serif; color: var(--text); line-height: 1.6; background: var(--white); overflow-x: hidden; }
h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--primary); font-weight: 700; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
header { padding: 20px 0; background: var(--white); border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 1000; }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; font-size: 1.5rem; font-weight: bold; color: var(--primary); }
.nav-links { display: flex; gap: 25px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--primary); font-weight: 500; font-size: 0.9rem; transition: 0.3s; }
.nav-links a:hover { color: var(--accent); }
.hero { padding: 100px 0; background: linear-gradient(135deg, var(--light) 0%, #fff 100%); position: relative; }
.hero-flex { display: flex; align-items: center; gap: 50px; }
.hero-content { flex: 1; }
.hero-image { flex: 1; position: relative; }
.hero-image img { width: 100%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
h1 { font-size: 3.5rem; margin-bottom: 20px; line-height: 1.1; }
.btn { display: inline-block; padding: 15px 35px; background: var(--primary); color: #fff; text-decoration: none; border-radius: 5px; font-weight: 600; transition: 0.3s; border: none; cursor: pointer; }
.btn:hover { background: var(--accent); transform: translateY(-2px); }
.section-padding { padding: 80px 0; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { padding: 40px; background: var(--light); border-radius: 15px; transition: 0.3s; border-bottom: 3px solid transparent; }
.card:hover { transform: translateY(-10px); border-color: var(--accent); }
.pricing-card { border: 1px solid #ddd; text-align: center; padding: 50px 30px; }
.pricing-card.popular { border: 2px solid var(--accent); background: #fff; box-shadow: 0 15px 30px rgba(0,0,0,0.05); transform: scale(1.05); }
.price { font-size: 2.5rem; color: var(--primary); margin: 20px 0; font-weight: 700; }
form { background: var(--light); padding: 40px; border-radius: 15px; max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
label { display: block; margin-bottom: 8px; font-weight: 600; }
input, textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 5px; font-family: inherit; }
.trust-layer { background: #f1f1f1; padding: 40px 0; font-size: 0.85rem; border-top: 1px solid #ddd; }
footer { background: var(--primary); color: #fff; padding: 60px 0 20px; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; }
.cookie-banner { position: fixed; bottom: 20px; left: 20px; right: 20px; background: #fff; padding: 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); border-radius: 10px; z-index: 10001; display: none; border-left: 5px solid var(--accent); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .hero-flex { flex-direction: column; }
    .nav-links { display: none; }
}