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

:root {
    --primary-color: #1a4d6f;
    --secondary-color: #2c7ba0;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --border-color: #dee2e6;
    --success-color: #27ae60;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

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

.nav-minimal {
    background: var(--text-light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

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

.nav-links a:hover {
    color: var(--secondary-color);
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
}

.btn-sticky {
    background: var(--accent-color);
    color: var(--text-light);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(230, 126, 34, 0.4);
    transition: all 0.3s;
}

.btn-sticky:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(230, 126, 34, 0.5);
}

.hero-narrative {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-narrative::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1552321554-5fefe8c9ef14?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

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

.hero-narrative h1 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.btn-hero-link {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-light);
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-hero-link:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.section-story {
    padding: var(--spacing-xl) 2rem;
    background: var(--text-light);
}

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

.content-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-story h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.3;
    font-weight: 700;
}

.section-story p {
    font-size: 1.2rem;
    margin-bottom: 1.8rem;
    color: #555;
}

.story-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 3rem 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.highlight-text {
    background: #fff3cd;
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    font-size: 1.25rem;
    font-weight: 500;
    border-radius: 4px;
    margin: 2rem 0;
}

.section-problem {
    padding: var(--spacing-xl) 2rem;
    background: var(--bg-light);
}

.section-problem h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
    font-weight: 700;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.problem-card {
    flex: 1 1 calc(50% - 1rem);
    max-width: 500px;
    background: var(--text-light);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-top: 4px solid var(--accent-color);
}

.problem-card h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.problem-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.section-transition {
    padding: var(--spacing-lg) 2rem;
    background: var(--primary-color);
}

.transition-text {
    font-size: 2rem;
    color: var(--text-light);
    text-align: center;
    font-weight: 300;
    font-style: italic;
}

.section-solution {
    padding: var(--spacing-xl) 2rem;
    background: var(--text-light);
}

.content-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.6rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 700;
}

.split-content p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.btn-inline {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 0.9rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    margin-top: 1rem;
    transition: all 0.3s;
}

.btn-inline:hover {
    background: var(--primary-color);
    transform: translateX(5px);
}

.section-testimonial {
    padding: var(--spacing-lg) 2rem;
    background: #f0f4f8;
}

.testimonial-large {
    font-size: 1.8rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    border-left: 6px solid var(--accent-color);
    padding-left: 2.5rem;
    margin: 0;
}

.testimonial-large cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1.2rem;
    font-style: normal;
    color: #666;
    font-weight: 600;
}

.section-trust {
    padding: var(--spacing-xl) 2rem;
    background: var(--text-light);
}

.section-trust h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
    font-weight: 700;
}

.trust-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.trust-item {
    text-align: center;
    flex: 1 1 200px;
    max-width: 250px;
}

.trust-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.5;
}

.section-products {
    padding: var(--spacing-xl) 2rem;
    background: var(--bg-light);
}

.section-products h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.products-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.product-card {
    background: var(--text-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    flex: 1 1 calc(33.333% - 2rem);
    max-width: 400px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 1.5rem 1.5rem 1rem;
    font-weight: 600;
}

.product-card p {
    font-size: 1rem;
    color: #666;
    margin: 0 1.5rem 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0 1.5rem 1.5rem;
}

.btn-select {
    background: var(--secondary-color);
    color: var(--text-light);
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin: 0 1.5rem 1.5rem;
    border-radius: 5px;
}

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

.section-urgency {
    padding: var(--spacing-lg) 2rem;
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
}

.urgency-box {
    text-align: center;
    color: var(--text-light);
}

.urgency-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.urgency-box p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-urgency {
    background: var(--text-light);
    color: #c0392b;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-urgency:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.section-more-testimonials {
    padding: var(--spacing-xl) 2rem;
    background: var(--text-light);
}

.section-more-testimonials h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
    font-weight: 700;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    flex: 1 1 calc(33.333% - 2rem);
    max-width: 400px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-card p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 1rem;
    color: #777;
    font-style: normal;
    font-weight: 600;
}

.section-form {
    padding: var(--spacing-xl) 2rem;
    background: var(--bg-light);
}

.section-form h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.section-form > .content-narrow > p {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 3rem;
}

.contact-form {
    background: var(--text-light);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
    cursor: pointer;
}

.checkbox-group label {
    flex: 1;
    font-weight: 400;
    font-size: 0.95rem;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--secondary-color);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background: var(--accent-color);
    color: var(--text-light);
    border: none;
    padding: 1.2rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1 1 250px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #bbb;
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--text-light);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: var(--text-light);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--success-color);
    color: var(--text-light);
}

.btn-accept:hover {
    background: #229954;
}

.btn-reject {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

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

@media (max-width: 1024px) {
    .hero-narrative h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .content-split {
        flex-direction: column;
    }

    .problem-card {
        flex: 1 1 100%;
    }

    .product-card {
        flex: 1 1 calc(50% - 1.5rem);
    }

    .testimonial-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .btn-sticky {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-narrative h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-story h2,
    .section-products h2 {
        font-size: 2rem;
    }

    .product-card {
        flex: 1 1 100%;
    }

    .trust-blocks {
        gap: 2rem;
    }

    .trust-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        font-size: 1.4rem;
    }

    .nav-links {
        display: none;
    }

    .hero-narrative {
        min-height: 70vh;
    }

    .hero-narrative h1 {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-story p {
        font-size: 1rem;
    }

    .transition-text {
        font-size: 1.4rem;
    }

    .trust-item {
        flex: 1 1 100%;
    }

    .footer-content {
        flex-direction: column;
    }
}