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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #e74c3c;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    text-align: center;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.nav-floating {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
}

.nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #2c3e50;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

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

.hero-overlay h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
}

.story-intro {
    padding: 5rem 1.5rem;
    background-color: #f8f9fa;
}

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

.content-narrow h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.content-narrow p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.problem-reveal {
    padding: 4rem 1.5rem;
}

.split-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.split-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
}

.insight-block {
    padding: 5rem 1.5rem;
    background-color: #ecf0f1;
}

.content-centered {
    max-width: 1100px;
    margin: 0 auto;
}

.content-centered h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.insight-lead {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #7f8c8d;
    font-style: italic;
}

.insight-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.insight-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.insight-card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.insight-card p {
    color: #34495e;
    font-size: 1.05rem;
}

.cta-sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #e74c3c;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.cta-sticky:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
}

.trust-builder {
    padding: 4rem 1.5rem;
}

.testimonial-flow {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonial-item {
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #e74c3c;
    border-radius: 4px;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.testimonial-author {
    display: block;
    font-size: 0.95rem;
    color: #7f8c8d;
    font-weight: 500;
}

.visual-story {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-width-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

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

.overlay-text h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.overlay-text p {
    font-size: 1.3rem;
    font-weight: 300;
}

.benefits-cascade {
    padding: 5rem 1.5rem;
}

.benefit-block {
    max-width: 1100px;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-img img {
    width: 100%;
    border-radius: 8px;
}

.benefit-text h3 {
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
}

.benefit-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.social-proof {
    padding: 4rem 1.5rem;
    background-color: #2c3e50;
    color: #fff;
}

.social-proof .content-narrow h2 {
    color: #fff;
}

.social-proof .content-narrow p {
    color: #ecf0f1;
}

.pricing-reveal {
    padding: 5rem 1.5rem;
    background-color: #f8f9fa;
}

.pricing-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.price-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.price-card.featured {
    border: 3px solid #e74c3c;
}

.price-label {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #e74c3c;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.price-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.price-desc {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.price-features {
    list-style: none;
    margin-bottom: 2rem;
}

.price-features li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #34495e;
}

.price-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.btn-cta {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: #1a252f;
}

.urgency-block {
    padding: 3rem 1.5rem;
    background-color: #fff3cd;
    border-left: 6px solid #f39c12;
}

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

.urgency-content h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.urgency-content p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 0.8rem;
}

.form-section {
    padding: 5rem 1.5rem;
    background-color: #ecf0f1;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-intro {
    font-size: 1.05rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

.btn-submit {
    padding: 1.2rem;
    background-color: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.final-trust {
    padding: 4rem 1.5rem;
    background-color: #fff;
}

.final-trust h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 1.5rem 1rem;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-col p {
    color: #bdc3c7;
    font-size: 0.95rem;
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

.page-header {
    padding: 5rem 1.5rem 3rem;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-story {
    padding: 4rem 1.5rem;
}

.about-values {
    padding: 4rem 1.5rem;
    background-color: #f8f9fa;
}

.values-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-item p {
    color: #34495e;
    font-size: 1.05rem;
}

.about-approach {
    padding: 4rem 1.5rem;
}

.about-team {
    padding: 4rem 1.5rem;
    background-color: #ecf0f1;
}

.cta-section {
    padding: 4rem 1.5rem;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 12px;
}

.cta-box h3 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-box p {
    font-size: 1.15rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #e74c3c;
    color: #fff;
}

.btn-primary:hover {
    background-color: #c0392b;
}

.btn-secondary {
    background-color: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #fff;
}

.services-intro {
    padding: 3rem 1.5rem;
}

.services-catalog {
    padding: 3rem 1.5rem;
    background-color: #f8f9fa;
}

.catalog-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.product-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.product-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #e74c3c;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.product-description {
    color: #34495e;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.product-specs {
    list-style: none;
    margin-bottom: 2rem;
}

.product-specs li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #34495e;
    font-size: 0.95rem;
}

.product-specs li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
}

.btn-product {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-product:hover {
    background-color: #1a252f;
}

.services-guarantee {
    padding: 4rem 1.5rem;
}

.guarantee-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: #d5f4e6;
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 6px solid #27ae60;
    text-align: center;
}

.guarantee-box h2 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.guarantee-box p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 0.8rem;
}

.contact-info {
    padding: 3rem 1.5rem;
}

.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-card p {
    color: #34495e;
    font-size: 1.05rem;
}

.contact-card a {
    color: #e74c3c;
    font-weight: 600;
}

.contact-details {
    padding: 3rem 1.5rem;
    background-color: #f8f9fa;
}

.contact-cta {
    padding: 4rem 1.5rem;
}

.thanks-hero {
    padding: 5rem 1.5rem;
    background-color: #f8f9fa;
}

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

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.3rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.thanks-info {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-info p {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 1rem;
}

.thanks-list {
    list-style: none;
    margin-top: 1rem;
}

.thanks-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #34495e;
}

.thanks-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.thanks-next {
    margin: 2rem 0;
}

.thanks-next h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.thanks-next p {
    color: #7f8c8d;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

.thanks-additional {
    padding: 3rem 1.5rem;
}

.thanks-additional h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.legal-page {
    padding: 3rem 1.5rem;
    min-height: 60vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.legal-updated {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.7rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-content p {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.6rem;
    color: #34495e;
    line-height: 1.6;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    color: #34495e;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .hero-overlay h1 {
        font-size: 4rem;
    }

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

    .split-layout {
        flex-direction: row;
        align-items: center;
    }

    .split-layout.reverse {
        flex-direction: row-reverse;
    }

    .split-text,
    .split-image {
        flex: 1;
    }

    .insight-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .insight-card {
        flex: 1;
        min-width: 280px;
    }

    .benefit-block {
        flex-direction: row;
        align-items: center;
    }

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

    .benefit-img,
    .benefit-text {
        flex: 1;
    }

    .pricing-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .price-card {
        flex: 1;
        min-width: 320px;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cta-buttons {
        flex-direction: row;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1;
        min-width: 300px;
    }

    .catalog-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .product-card {
        flex: 1;
        min-width: 350px;
        max-width: 48%;
    }

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

    .contact-card {
        flex: 1;
    }

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

@media (min-width: 1024px) {
    .pricing-grid {
        gap: 1.5rem;
    }

    .price-card {
        max-width: 32%;
    }
}
