:root {
    --color-primary: #1a5f5f;
    --color-primary-light: #2a7a7a;
    --color-accent: #3d8b8b;
    --color-cta: #e07020;
    --color-cta-hover: #c86018;
    --color-bg-light: #f3f8f8;
    --color-bg-white: #ffffff;
    --color-text: #2d3748;
    --color-text-light: #4a5568;
    --color-text-muted: #718096;
    --color-border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --max-width: 1200px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg-white);
}
img { max-width: 100%; height: auto; }
a { color: var(--color-accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-primary); }

h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.3; color: var(--color-primary); }
h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }

.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}
.btn-primary { background: var(--color-cta); color: white; }
.btn-primary:hover { background: var(--color-cta-hover); color: white; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--color-primary); color: white; }
.btn-secondary:hover { background: var(--color-primary-light); color: white; }
.btn-outline { background: transparent; color: var(--color-primary); border: 2px solid var(--color-primary); }
.btn-outline:hover { background: var(--color-primary); color: white; }

.header { background: var(--color-primary); padding: 15px 0; position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow-md); }
.header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 700; color: white; }
.logo:hover { color: white; opacity: 0.9; }
.nav { display: flex; gap: 30px; }
.nav a { color: rgba(255,255,255,0.9); font-weight: 500; padding: 8px 0; position: relative; }
.nav a:hover, .nav a.active { color: white; }
.nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--color-cta); transition: width 0.2s; }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.menu-toggle span { width: 25px; height: 3px; background: white; border-radius: 2px; transition: 0.3s; }

.hero { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%); color: white; padding: 80px 0; text-align: center; }
.hero h1 { color: white; font-size: 2.75rem; margin-bottom: 1.5rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.hero p { font-size: 1.25rem; opacity: 0.9; max-width: 700px; margin: 0 auto 2rem; }
.hero .btn { font-size: 1.1rem; padding: 15px 35px; }

.section { padding: 80px 0; }
.section-light { background: var(--color-bg-light); }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { margin-bottom: 1rem; }
.section-title p { color: var(--color-text-light); max-width: 600px; margin: 0 auto; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.feature-card { background: white; padding: 35px 30px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); text-align: center; transition: transform 0.2s, box-shadow 0.2s; }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.feature-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--color-accent), var(--color-primary)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.75rem; color: white; }
.feature-card h3 { margin-bottom: 15px; }
.feature-card p { color: var(--color-text-light); margin-bottom: 0; }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-top: 40px; }
.pricing-card { background: white; border-radius: var(--radius-lg); padding: 35px 30px; box-shadow: var(--shadow-sm); position: relative; transition: transform 0.2s, box-shadow 0.2s; }
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { border: 2px solid var(--color-cta); }
.pricing-card.featured::before { content: 'Beliebt'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--color-cta); color: white; padding: 4px 16px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; }
.pricing-card h3 { text-align: center; margin-bottom: 10px; }
.pricing-card .price { text-align: center; font-size: 2.5rem; font-weight: 700; color: var(--color-primary); margin-bottom: 25px; }
.pricing-card .price span { font-size: 1rem; font-weight: 400; color: var(--color-text-muted); }
.pricing-card ul { list-style: none; margin-bottom: 30px; }
.pricing-card li { padding: 10px 0; border-bottom: 1px solid var(--color-border); padding-left: 28px; position: relative; }
.pricing-card li::before { content: '\2713'; position: absolute; left: 0; color: var(--color-accent); font-weight: bold; }
.pricing-card .btn { width: 100%; }

.contact-section { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info h3 { margin-bottom: 20px; }
.contact-info .info-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; }
.contact-info .info-icon { width: 45px; height: 45px; background: var(--color-bg-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-form { background: white; padding: 35px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 1px solid var(--color-border); border-radius: var(--radius-sm); font-size: 1rem; font-family: inherit; transition: border-color 0.2s, box-shadow 0.2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(74, 140, 94, 0.15); }
.form-group textarea { min-height: 150px; resize: vertical; }

.footer { background: var(--color-primary); color: rgba(255,255,255,0.8); padding: 50px 0 25px; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer h4 { color: white; margin-bottom: 20px; }
.footer a { color: rgba(255,255,255,0.8); }
.footer a:hover { color: white; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 25px; text-align: center; font-size: 0.9rem; }

.page-header { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%); color: white; padding: 60px 0; text-align: center; }
.page-header h1 { color: white; margin-bottom: 0.5rem; }
.page-header p { opacity: 0.9; max-width: 600px; margin: 0 auto; }

.content-block { max-width: 800px; margin: 0 auto; }
.content-block h2 { margin-top: 40px; margin-bottom: 20px; }
.content-block h3 { margin-top: 30px; margin-bottom: 15px; }
.content-block ul, .content-block ol { margin-left: 25px; margin-bottom: 20px; }
.content-block li { margin-bottom: 8px; }

.text-center { text-align: center; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

@media (max-width: 900px) { .contact-section { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-primary); flex-direction: column; padding: 20px; gap: 0; box-shadow: var(--shadow-lg); }
    .nav.active { display: flex; }
    .nav a { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .menu-toggle { display: flex; }
    .hero { padding: 60px 0; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1.1rem; }
    .section { padding: 50px 0; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .hero h1 { font-size: 1.75rem; }
    .btn { padding: 10px 20px; }
    .feature-card, .pricing-card { padding: 25px 20px; }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 95, 95, 0.97);
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-banner p { margin: 0; flex: 1; min-width: 250px; }
.cookie-banner a { color: #e07020; }
.cookie-banner .btn-cookie {
    background: #e07020;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
}
.cookie-banner .btn-cookie:hover { background: #c86018; }
@media (max-width: 600px) {
    .cookie-banner .container { flex-direction: column; text-align: center; }
}
