:root {
    --primary: #1a5276;
    --primary-dark: #154360;
    --accent: #e67e22;
    --accent-hover: #d35400;
    --text: #2c3e50;
    --text-light: #5d6d7e;
    --bg-light: #f8f9fa;
    --bg-dark: #1a252f;
    --white: #ffffff;
    --border: #dee2e6;
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-strong: 0 8px 30px rgba(0,0,0,0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: var(--bg-dark);
    padding: 8px 0;
    font-size: 13px;
    color: var(--white);
}

.ad-disclosure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0.9;
}

.ad-disclosure::before {
    content: "ℹ";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    font-size: 11px;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent);
}

.nav-main {
    display: flex;
    gap: 30px;
}

.nav-main a {
    color: var(--text);
    font-weight: 500;
    transition: color 0.2s;
    padding: 8px 0;
}

.nav-main a:hover {
    color: var(--accent);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-funnel {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-dark);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 700px;
    padding: 60px 0;
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 35px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-dark {
    background: var(--primary);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--primary-dark);
}

/* Problem Section */
.section-problem {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-problem h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.section-problem .lead {
    text-align: center;
    font-size: 19px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 50px;
}

.problem-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: #fee2e2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text);
}

.problem-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* Story Section */
.section-story {
    padding: 100px 0;
}

.story-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 16px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: var(--primary);
    line-height: 1.3;
}

.story-content p {
    margin-bottom: 18px;
    color: var(--text-light);
    font-size: 17px;
}

.story-content .highlight {
    background: linear-gradient(to bottom, transparent 60%, #fef3c7 60%);
    padding: 0 4px;
}

/* Solution Section */
.section-solution {
    padding: 100px 0;
    background: var(--primary);
    color: var(--white);
}

.section-solution h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
}

.section-solution .lead {
    text-align: center;
    font-size: 19px;
    opacity: 0.9;
    max-width: 650px;
    margin: 0 auto 60px;
}

.solution-features {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.solution-feature {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    text-align: center;
}

.solution-feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 25px;
}

.solution-feature h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.solution-feature p {
    opacity: 0.85;
    font-size: 15px;
}

/* Benefits Section */
.section-benefits {
    padding: 100px 0;
    background: var(--bg-light);
}

.benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-header h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
}

.benefits-header p {
    color: var(--text-light);
    font-size: 18px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.benefit-number {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text);
}

.benefit-content p {
    color: var(--text-light);
    font-size: 15px;
}

/* Testimonials */
.section-testimonials {
    padding: 100px 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-header h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent);
}

.testimonial-text {
    font-size: 16px;
    color: var(--text);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--bg-light);
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 3px;
}

.testimonial-info span {
    font-size: 14px;
    color: var(--text-light);
}

/* Services/Pricing Section */
.section-services {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8f4f8 100%);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 15px;
}

.services-header p {
    color: var(--text-light);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.service-card.featured {
    border: 3px solid var(--accent);
    position: relative;
}

.service-card.featured::before {
    content: "Beliebt";
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.service-image {
    height: 180px;
    background-color: var(--bg-light);
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 22px;
    color: var(--text);
    margin-bottom: 10px;
}

.service-content p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li::before {
    content: "✓";
    color: var(--accent);
    font-weight: 700;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.service-price .amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
}

.service-price .period {
    font-size: 14px;
    color: var(--text-light);
}

.service-card .btn {
    width: 100%;
    text-align: center;
}

/* CTA Section */
.section-cta {
    padding: 100px 0;
    background: var(--bg-dark);
    color: var(--white);
    text-align: center;
}

.section-cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.section-cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Form Section */
.section-form {
    padding: 100px 0;
    background: var(--white);
}

.form-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 34px;
    color: var(--primary);
    margin-bottom: 20px;
}

.form-info p {
    color: var(--text-light);
    font-size: 17px;
    margin-bottom: 30px;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text);
}

.form-benefits li::before {
    content: "✓";
    width: 24px;
    height: 24px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.form-container {
    flex: 1;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.form-container h3 {
    font-size: 24px;
    color: var(--text);
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.form-submit:hover {
    background: var(--accent-hover);
}

/* About Page */
.page-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.page-content {
    padding: 80px 0;
}

.content-block {
    margin-bottom: 50px;
}

.content-block h2 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
}

.content-block p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 15px;
}

.content-block ul {
    padding-left: 25px;
    color: var(--text-light);
}

.content-block li {
    margin-bottom: 10px;
}

/* Contact Page */
.contact-grid {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--text-light);
    font-size: 15px;
}

/* Thanks Page */
.thanks-section {
    padding: 120px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #d4edda;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin: 0 auto 30px;
    color: #28a745;
}

.thanks-content h1 {
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Footer */
.site-footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
    font-size: 14px;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

.footer-legal a:hover {
    color: var(--accent);
}

/* Disclaimer */
.disclaimer {
    background: var(--bg-light);
    padding: 30px 0;
    border-top: 1px solid var(--border);
}

.disclaimer p {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--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-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 14px;
    min-width: 300px;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.cookie-accept {
    background: var(--accent);
    color: var(--white);
}

.cookie-accept:hover {
    background: var(--accent-hover);
}

.cookie-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-reject:hover {
    background: rgba(255,255,255,0.1);
}

/* Legal Pages */
.legal-content {
    padding: 60px 0;
}

.legal-content h1 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 24px;
    color: var(--text);
    margin: 40px 0 15px;
}

.legal-content h3 {
    font-size: 18px;
    color: var(--text);
    margin: 25px 0 10px;
}

.legal-content p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-content ul {
    margin: 15px 0 25px 25px;
    color: var(--text-light);
}

.legal-content li {
    margin-bottom: 8px;
}

/* Services Page Standalone */
.services-page-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail {
    display: flex;
    gap: 40px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    width: 40%;
    min-height: 300px;
    background-color: var(--bg-light);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h3 {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-detail-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-detail-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 40px;
    }

    .story-wrapper,
    .form-wrapper,
    .contact-grid {
        flex-direction: column;
    }

    .service-detail,
    .service-detail:nth-child(even) {
        flex-direction: column;
    }

    .service-detail-image {
        width: 100%;
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .nav-main {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow);
    }

    .nav-main.active {
        display: flex;
    }

    .nav-main a {
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .section-problem,
    .section-story,
    .section-solution,
    .section-benefits,
    .section-testimonials,
    .section-services,
    .section-cta,
    .section-form {
        padding: 60px 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
