* {
    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: #ffffff;
}

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

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.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 {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    font-weight: 500;
}

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

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

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #c38e70;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #c38e70;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    background: #e8a87c;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(232,168,124,0.4);
    display: inline-block;
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: #d69968;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(232,168,124,0.5);
}

.hero-section {
    height: 85vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1601924357840-3c6b0e58b0b0?w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background: #e8a87c;
    color: #fff;
    padding: 16px 40px;
    font-size: 18px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #d69968;
    transform: scale(1.05);
}

.story-section {
    padding: 100px 20px;
    background: #faf8f6;
}

.story-section h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
    line-height: 1.3;
}

.story-section p {
    font-size: 19px;
    margin-bottom: 24px;
    color: #5a6c7d;
}

.story-image {
    margin: 48px 0;
    border-radius: 8px;
    overflow: hidden;
}

.problem-section {
    padding: 100px 20px;
    background: #fff;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.split-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.split-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.insight-section {
    padding: 100px 20px;
    background: #e8f4f8;
}

.insight-section h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.insight-section p {
    font-size: 19px;
    margin-bottom: 24px;
    color: #5a6c7d;
}

.benefits-list {
    list-style: none;
    margin: 32px 0;
}

.benefits-list li {
    padding: 16px 0 16px 40px;
    position: relative;
    font-size: 18px;
    color: #2c3e50;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e8a87c;
    font-weight: 700;
    font-size: 24px;
}

.cta-inline {
    margin-top: 40px;
}

.btn-secondary {
    display: inline-block;
    background: #2c3e50;
    color: #fff;
    padding: 14px 36px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.trust-section {
    padding: 100px 20px;
    background: #fff;
}

.trust-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.process-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.process-card {
    flex: 1;
    min-width: 240px;
    padding: 32px 24px;
    background: #faf8f6;
    border-radius: 8px;
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    color: #e8a87c;
    margin-bottom: 16px;
}

.process-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.process-card p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.testimonials-section {
    padding: 100px 20px;
    background: #2c3e50;
    color: #fff;
}

.testimonials-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
}

.testimonial {
    margin-bottom: 48px;
    padding: 32px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    border-left: 4px solid #e8a87c;
}

.testimonial-text {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    opacity: 0.85;
    font-weight: 600;
}

.services-section {
    padding: 100px 20px;
    background: #faf8f6;
}

.services-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 24px;
    color: #2c3e50;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-image {
    height: 240px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 24px;
    margin: 20px 20px 12px;
    color: #2c3e50;
}

.service-card p {
    margin: 0 20px 12px;
    font-size: 16px;
    color: #5a6c7d;
}

.service-specs {
    font-size: 14px;
    color: #7a8c9e;
    font-style: italic;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #e8a87c;
    margin: 20px 20px 16px;
}

.btn-select {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 14px;
    background: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-select.selected {
    background: #e8a87c;
}

.guarantee-section {
    padding: 100px 20px;
    background: #e8f4f8;
}

.guarantee-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.guarantee-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.guarantee-item {
    flex: 1;
    min-width: 240px;
    text-align: center;
}

.guarantee-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.guarantee-item p {
    font-size: 16px;
    color: #5a6c7d;
}

.urgency-section {
    padding: 80px 20px;
    background: #fff5e6;
    text-align: center;
}

.urgency-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #d35400;
}

.urgency-section p {
    font-size: 19px;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.urgency-section strong {
    color: #d35400;
}

.urgency-cta {
    margin-top: 32px;
}

.btn-urgent {
    display: inline-block;
    background: #d35400;
    color: #fff;
    padding: 18px 48px;
    font-size: 20px;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-urgent:hover {
    background: #ba4a00;
    transform: scale(1.05);
}

.form-section {
    padding: 100px 20px;
    background: #fff;
}

.form-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 48px;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e6ed;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.checkbox-group label {
    display: flex;
    align-items: start;
    gap: 8px;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group a {
    color: #e8a87c;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #e8a87c;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

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

.discount-notice {
    margin-top: 32px;
    padding: 20px;
    background: #fff5e6;
    border-left: 4px solid #e8a87c;
    border-radius: 4px;
    text-align: center;
}

.discount-notice p {
    margin: 0;
    color: #d35400;
    font-size: 16px;
}

.main-footer {
    background: #2c3e50;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #e8a87c;
}

.footer-col p {
    font-size: 15px;
    opacity: 0.85;
}

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

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #fff;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
}

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

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

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .split-layout {
        flex-direction: column;
        gap: 32px;
    }

    .story-section h2,
    .insight-section h2 {
        font-size: 28px;
    }

    .process-grid {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

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