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

:root {
    --primary-color: #2D5F7F;
    --secondary-color: #E8A87C;
    --accent-color: #C85A54;
    --dark-text: #1a1a1a;
    --light-text: #4a4a4a;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

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

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

.main-nav {
    background: var(--bg-white);
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--dark-text);
    transition: color 0.3s;
}

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

.nav-cta {
    background: var(--accent-color);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s;
}

.nav-cta:hover {
    background: #a74a45;
}

.hero-full {
    background: linear-gradient(135deg, rgba(45, 95, 127, 0.9), rgba(200, 90, 84, 0.85)), url('https://images.unsplash.com/photo-1587654780291-39c9404d746b?w=1600&h=900&fit=crop') center/cover;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero-overlay {
    max-width: 900px;
}

.hero-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.btn-hero {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--dark-text);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.3s, background 0.3s;
}

.btn-hero:hover {
    transform: translateY(-2px);
    background: #d69465;
}

.container-narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.story-intro h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.story-intro p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.problem-amp {
    background: var(--bg-light);
}

.split-section {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
    line-height: 1.3;
    color: var(--dark-text);
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: var(--light-text);
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.section-label {
    display: inline-block;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.insight-section {
    background: var(--bg-white);
}

.insight-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.insight-section p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.trust-block {
    background: var(--primary-color);
    color: white;
}

.trust-grid {
    display: flex;
    gap: 3rem;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.trust-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.trust-item p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

.story-continue {
    background: var(--bg-white);
}

.story-continue h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.story-continue p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.testimonials-inline {
    background: var(--bg-light);
}

.testimonial-row {
    display: flex;
    gap: 2.5rem;
}

.testimonial {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial p {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.testimonial-author {
    font-size: 0.9rem;
    color: var(--light-text);
    font-weight: 600;
}

.benefits-reveal {
    background: var(--bg-white);
}

.benefits-reveal h2 {
    font-size: 2.3rem;
    margin-bottom: 2.5rem;
}

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

.benefits-list li {
    font-size: 1.15rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--light-text);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list strong {
    color: var(--primary-color);
    font-weight: 600;
}

.visual-break {
    padding: 0;
}

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

.offer-section {
    background: var(--bg-white);
    text-align: center;
}

.offer-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.offer-section p {
    font-size: 1.15rem;
    color: var(--light-text);
}

.services-pricing {
    background: var(--bg-light);
    padding: 4rem 2rem;
}

.service-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: white;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    border: 2px solid var(--border-color);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, #fff9f5, #ffffff);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-header h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

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

.service-features li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: var(--light-text);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.btn-service {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-service:hover {
    background: #234a62;
}

.urgency-block {
    background: var(--accent-color);
    color: white;
    text-align: center;
}

.center-text {
    text-align: center;
}

.urgency-block h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.urgency-block p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    background: white;
    color: var(--accent-color);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.guarantee-section {
    background: var(--bg-light);
}

.guarantee-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.guarantee-section p {
    font-size: 1.15rem;
    color: var(--light-text);
}

.faq-section {
    background: var(--bg-white);
}

.faq-section h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

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

.faq-item p {
    font-size: 1.05rem;
    color: var(--light-text);
    line-height: 1.6;
}

.form-section {
    background: var(--bg-light);
}

.form-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 3rem;
}

.order-form {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background: var(--accent-color);
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.final-cta {
    background: var(--bg-white);
}

.final-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.1rem;
    color: var(--light-text);
}

.final-cta a {
    color: var(--primary-color);
    font-weight: 600;
}

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

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

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col ul a {
    color: #b0b0b0;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #888;
    font-size: 0.9rem;
}

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

.sticky-btn {
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(200, 90, 84, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 90, 84, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-text);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
}

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

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

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

.cookie-btn.accept {
    background: var(--secondary-color);
    color: var(--dark-text);
}

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

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

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

@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

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

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

    .testimonial-row {
        flex-direction: column;
    }

    .service-cards {
        flex-direction: column;
    }

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

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

@media (max-width: 640px) {
    .container-narrow,
    .container-wide {
        padding: 3rem 1.5rem;
    }

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

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

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

    .order-form {
        padding: 2rem 1.5rem;
    }
}