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

:root {
    --primary-color: #d4621f;
    --secondary-color: #2c2c2c;
    --accent-color: #f4a261;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-heavy: 0 8px 24px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background: #b85419;
}

.btn-cookie-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.header-minimal {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-floating {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero-visual-story {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 98, 31, 0.85), rgba(44, 44, 44, 0.75)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23333" width="1200" height="800"/></svg>');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 40px 20px;
}

.hero-content-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.hero-title-large {
    font-size: clamp(36px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 28px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
}

.btn-hero-inline {
    display: inline-block;
    padding: 16px 42px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-hero-inline:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.content-story-hook {
    padding: 100px 20px;
    background: var(--bg-white);
}

.story-narrow {
    max-width: 680px;
    margin: 0 auto;
}

.story-intro {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.story-body {
    font-size: 19px;
    line-height: 1.75;
    margin-bottom: 28px;
    color: var(--text-light);
}

.story-emphasis {
    font-size: 21px;
    line-height: 1.7;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 35px;
}

.problem-amplification {
    padding: 90px 20px;
    background: var(--bg-light);
}

.problem-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.problem-visual {
    flex: 1;
}

.problem-image-placeholder {
    width: 100%;
    height: 420px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 12px;
    box-shadow: var(--shadow-heavy);
}

.problem-text {
    flex: 1;
}

.problem-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    line-height: 1.3;
    color: var(--text-dark);
}

.problem-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 28px;
    color: var(--text-light);
}

.problem-list {
    list-style: none;
}

.problem-list li {
    padding: 14px 0;
    padding-left: 32px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-light);
}

.problem-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 28px;
    font-weight: bold;
}

.insight-reveal {
    padding: 110px 20px;
    background: var(--secondary-color);
    color: white;
    text-align: center;
}

.insight-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.insight-heading {
    font-size: 44px;
    margin-bottom: 28px;
    line-height: 1.25;
}

.insight-text {
    font-size: 20px;
    line-height: 1.75;
    margin-bottom: 40px;
    opacity: 0.9;
}

.insight-cta-inline {
    margin-top: 35px;
}

.btn-insight {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
}

.btn-insight:hover {
    background: #b85419;
    transform: scale(1.05);
}

.trust-building {
    padding: 80px 20px;
    background: var(--bg-white);
}

.trust-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: center;
}

.trust-card {
    flex: 1;
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.trust-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.trust-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.trust-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.testimonial-inline {
    padding: 90px 20px;
    background: var(--bg-light);
}

.testimonial-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote {
    font-size: 26px;
    line-height: 1.65;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 24px;
    quotes: '„' '"';
}

.testimonial-quote::before {
    content: open-quote;
}

.testimonial-quote::after {
    content: close-quote;
}

.testimonial-author {
    font-size: 17px;
    color: var(--text-light);
    font-style: normal;
}

.benefits-visual {
    padding: 100px 20px;
    background: var(--bg-white);
}

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

.benefits-header h2 {
    font-size: 42px;
    color: var(--text-dark);
}

.benefits-alternating {
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-row {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.benefit-row.reverse {
    flex-direction: row-reverse;
}

.benefit-image-left,
.benefit-image-right {
    flex: 1;
    height: 350px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.benefit-text-right,
.benefit-text-left {
    flex: 1;
}

.benefit-text-right h3,
.benefit-text-left h3 {
    font-size: 32px;
    margin-bottom: 18px;
    line-height: 1.3;
    color: var(--text-dark);
}

.benefit-text-right p,
.benefit-text-left p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
}

.curiosity-section {
    padding: 90px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.curiosity-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.curiosity-title {
    font-size: 40px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.curiosity-text {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-curiosity {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
}

.btn-curiosity:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.social-proof {
    padding: 90px 20px;
    background: var(--bg-light);
}

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

.social-container h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.testimonial-card {
    flex: 1;
    background: white;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.65;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-name {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 600;
}

.pricing-reveal {
    padding: 100px 20px;
    background: var(--bg-white);
}

.pricing-container {
    max-width: 1300px;
    margin: 0 auto;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-intro h2 {
    font-size: 44px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.pricing-subtext {
    font-size: 19px;
    color: var(--text-light);
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.price-card {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.price-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
    background: linear-gradient(to bottom, white, var(--bg-light));
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-title {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.price-amount {
    font-size: 46px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 28px;
}

.price-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.price-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-dark);
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #b85419;
    transform: scale(1.02);
}

.urgency-section {
    padding: 70px 20px;
    background: var(--secondary-color);
    color: white;
    text-align: center;
}

.urgency-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.urgency-content p {
    font-size: 19px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.9;
}

.form-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
    background: white;
    padding: 50px 45px;
    border-radius: 12px;
    box-shadow: var(--shadow-heavy);
}

.form-heading {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.form-subtext {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    padding: 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.btn-submit:hover {
    background: #b85419;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 98, 31, 0.3);
}

.final-cta {
    padding: 90px 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--text-dark));
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 42px;
    margin-bottom: 18px;
}

.final-cta-content p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.btn-final {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
}

.btn-final:hover {
    background: #b85419;
    transform: scale(1.05);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 18px 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-cta-text {
    color: white;
    font-size: 17px;
    font-weight: 600;
}

.btn-sticky {
    padding: 12px 32px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    transform: scale(1.05);
}

.footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        background: white;
        flex-direction: column;
        width: 250px;
        padding: 30px;
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 20px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .problem-split,
    .benefit-row {
        flex-direction: column;
    }

    .trust-grid,
    .testimonials-grid {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .sticky-cta-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-title-large {
        font-size: 36px;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .nav-floating {
        padding: 16px 20px;
    }

    .hero-visual-story {
        min-height: 70vh;
    }

    .content-story-hook,
    .problem-amplification,
    .benefits-visual,
    .pricing-reveal,
    .form-section {
        padding: 60px 20px;
    }

    .form-container {
        padding: 35px 25px;
    }

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