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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --text-light: #666;
    --background-light: #f8f9fa;
    --border-color: #ddd;
    --max-width: 720px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: #fff;
}

.nav-minimal {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-link {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

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

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

.editorial-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem 2rem;
}

.story-header {
    margin-bottom: 3rem;
}

.story-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.story-intro {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.6;
}

.story-image {
    margin: 3rem 0;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-body {
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-body p {
    margin-bottom: 1.5rem;
}

.story-body h2 {
    font-size: 1.9rem;
    margin: 3rem 0 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
}

.story-body h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.story-body ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.story-body li {
    margin-bottom: 0.8rem;
}

.inline-cta {
    margin: 2.5rem 0;
    text-align: center;
}

.cta-link {
    font-size: 1.2rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 3px;
    transition: opacity 0.2s;
}

.cta-link:hover {
    opacity: 0.8;
}

.story-section {
    margin: 4rem 0;
}

.story-content {
    margin-top: 2rem;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 2rem 0;
    display: block;
}

.story-image-small {
    margin: 2.5rem 0;
}

.story-image-small img {
    width: 100%;
    height: auto;
    display: block;
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--background-light);
    border-left: 4px solid var(--accent-color);
}

.testimonial-inline {
    margin: 4rem 0;
    padding: 2rem;
    background: var(--background-light);
    border-left: 4px solid var(--secondary-color);
}

.testimonial-inline blockquote {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-inline p {
    margin-bottom: 1rem;
}

.testimonial-inline footer {
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
    margin-top: 1rem;
}

.testimonial-alt {
    border-left-color: var(--accent-color);
}

.trust-section,
.insight-section,
.solution-intro {
    margin: 4rem 0;
}

.trust-content,
.insight-content {
    margin-top: 2rem;
}

.insight-list {
    margin: 2rem 0;
    padding-left: 2rem;
}

.insight-list li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.solution-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.solution-item {
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 4px;
}

.solution-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.solution-item p {
    margin: 0;
}

.benefits-reveal {
    margin: 5rem 0;
}

.products-editorial {
    margin-top: 3rem;
}

.product-story {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border-color);
}

.product-story:last-child {
    border-bottom: none;
}

.product-story img {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

.product-story-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.product-story-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.product-features {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.product-features li {
    margin-bottom: 0.6rem;
}

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

.product-select {
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}

.product-select:hover {
    background: #2980b9;
}

.urgency-section {
    margin: 5rem 0;
    padding: 3rem 2rem;
    background: var(--background-light);
}

.urgency-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.urgency-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 4px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

.form-section {
    margin: 5rem 0;
}

.form-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.editorial-form {
    margin-top: 2.5rem;
    max-width: 600px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #c0392b;
}

.final-cta {
    margin: 5rem 0;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--primary-color);
    color: #fff;
}

.final-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button-large {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s;
}

.cta-button-large:hover {
    background: #c0392b;
}

.site-footer {
    background: var(--primary-color);
    color: #fff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

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

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

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

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #bdc3c7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 2000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: opacity 0.2s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-btn.accept {
    background: #27ae60;
    color: #fff;
}

.cookie-btn.reject {
    background: #95a5a6;
    color: #fff;
}

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

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

.sticky-cta a {
    display: block;
    background: var(--secondary-color);
    color: #fff;
    padding: 1rem 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: background 0.2s;
}

.sticky-cta a:hover {
    background: #c0392b;
}

.page-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.header-intro {
    font-size: 1.2rem;
    color: var(--text-light);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-block {
    padding: 2rem;
    background: var(--background-light);
    border-radius: 4px;
}

.contact-block h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.cta-section {
    margin: 4rem 0;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--background-light);
    border-radius: 4px;
}

.cta-section h2,
.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s;
}

.cta-button:hover {
    background: #2980b9;
}

.cta-button-secondary {
    display: inline-block;
    background: var(--text-light);
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s;
    margin-left: 1rem;
}

.cta-button-secondary:hover {
    background: #555;
}

.thanks-content {
    text-align: center;
    padding: 4rem 2rem;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: #fff;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.thanks-message {
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: left;
}

.thanks-message p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.next-steps {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 4px;
}

.next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.next-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.thanks-guarantee {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--background-light);
    border-left: 4px solid var(--accent-color);
}

.thanks-guarantee h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

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

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

@media (min-width: 768px) {
    .solution-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .urgency-stats {
        flex-direction: row;
    }

    .stat-item {
        flex: 1;
    }

    .cookie-content {
        flex-wrap: nowrap;
    }

    .contact-info {
        flex-direction: row;
    }

    .contact-block {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .story-header h1 {
        font-size: 2rem;
    }

    .story-intro {
        font-size: 1.1rem;
    }

    .story-body {
        font-size: 1rem;
    }

    .story-body h2 {
        font-size: 1.6rem;
    }

    .product-price {
        font-size: 1.7rem;
    }

    .final-cta h2 {
        font-size: 1.8rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .thanks-actions {
        flex-direction: column;
    }

    .cta-button-secondary {
        margin-left: 0;
    }
}