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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    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 {
    flex: 1;
    min-width: 250px;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-links a {
    font-weight: 500;
    color: #34495e;
    transition: color 0.3s ease;
}

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

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

.btn-sticky {
    background: #e74c3c;
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-sticky:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(231, 76, 60, 0.5);
}

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

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 40px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    max-width: 900px;
    margin: 0 auto;
}

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

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
}

.intro-story {
    padding: 100px 20px;
    background: #f8f9fa;
}

.story-content {
    max-width: 750px;
    margin: 0 auto;
}

.narrow {
    max-width: 750px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #34495e;
}

.problem-amplify {
    padding: 120px 20px;
    background: #fff;
}

.container-wide {
    max-width: 1300px;
    margin: 0 auto;
}

.split-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

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

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.problem-list {
    list-style: none;
    margin: 30px 0;
}

.problem-list li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 18px;
    color: #555;
}

.problem-list li:before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
    font-size: 20px;
}

.emphasis-text {
    font-size: 20px;
    font-weight: 600;
    color: #e74c3c;
    margin-top: 30px;
}

.image-block {
    flex: 1;
}

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

.insight-reveal {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.centered-title {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
}

.insight-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 40px;
    margin: 30px 0;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.insight-card p {
    font-size: 20px;
    line-height: 1.7;
}

.closing-thought {
    font-size: 22px;
    text-align: center;
    margin-top: 50px;
    font-style: italic;
}

.storytelling-section {
    padding: 120px 20px;
    background: #fff;
}

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

.story-image-large {
    margin-bottom: 50px;
}

.story-image-large img {
    width: 100%;
    border-radius: 12px;
}

.story-narrative h3 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.story-narrative p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #555;
}

.trust-builder {
    padding: 100px 20px;
    background: #f0f3f7;
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: #27ae60;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.trust-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.testimonial-inline {
    padding: 80px 20px;
    background: #fff;
}

.testimonial-large {
    font-size: 26px;
    font-style: italic;
    line-height: 1.7;
    color: #34495e;
    border-left: 5px solid #e74c3c;
    padding-left: 40px;
}

.testimonial-large footer {
    font-size: 18px;
    font-style: normal;
    margin-top: 20px;
    color: #7f8c8d;
}

.benefits-reveal {
    padding: 120px 20px;
    background: #fff;
}

.container-full {
    max-width: 1400px;
    margin: 0 auto;
}

.section-heading {
    font-size: 42px;
    text-align: center;
    margin-bottom: 70px;
    color: #2c3e50;
}

.benefits-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-card {
    flex: 1;
    min-width: 300px;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.benefit-card.large {
    flex: 2;
    min-width: 500px;
}

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

.benefit-text {
    padding: 30px;
}

.benefit-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.benefit-text p {
    font-size: 17px;
    color: #666;
    line-height: 1.6;
}

.cta-block {
    padding: 100px 20px;
    text-align: center;
}

.cta-block.primary {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 35px;
}

.btn-large {
    display: inline-block;
    background: #fff;
    color: #e74c3c;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

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

.social-proof {
    padding: 100px 20px;
    background: #f8f9fa;
}

.centered-subtitle {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-card footer {
    font-size: 15px;
    color: #7f8c8d;
    font-weight: 600;
}

.urgency-element {
    padding: 60px 20px;
    background: #fff3cd;
}

.urgency-box {
    max-width: 900px;
    margin: 0 auto;
}

.urgency-content h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #856404;
}

.urgency-content p {
    font-size: 18px;
    color: #856404;
    margin-bottom: 15px;
}

.urgency-note {
    font-weight: 600;
    margin-top: 20px;
}

.services-pricing {
    padding: 120px 20px;
    background: #fff;
}

.container-pricing {
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-title {
    font-size: 46px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.pricing-intro {
    font-size: 20px;
    text-align: center;
    margin-bottom: 70px;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.pricing-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 320px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 40px 30px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: #e74c3c;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border-color: #e74c3c;
    background: #fff;
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #e74c3c;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.pricing-header h3 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.pricing-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.pricing-details {
    flex: 1;
}

.price {
    font-size: 40px;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 10px;
}

.price-note {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 25px;
}

.features-list {
    list-style: none;
    margin: 25px 0 30px 0;
}

.features-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 15px;
    color: #555;
}

.features-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.btn-select {
    width: 100%;
    background: #e74c3c;
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

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

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-intro {
    font-size: 18px;
    margin-bottom: 35px;
    color: #666;
}

#selected-service-display {
    color: #e74c3c;
    font-weight: 700;
}

#selected-price-display {
    color: #27ae60;
    font-weight: 700;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

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

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

.checkbox-group label {
    flex-direction: row;
    align-items: center;
    font-weight: 400;
}

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

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

.btn-submit {
    background: #27ae60;
    color: #fff;
    border: none;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 20px;
    margin-bottom: 35px;
}

.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 30px;
}

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: #bdc3c7;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #bdc3c7;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #e74c3c;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

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

    .split-content {
        flex-direction: column;
        gap: 40px;
    }

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

    .text-block h2 {
        font-size: 32px;
    }

    .benefits-asymmetric {
        flex-direction: column;
    }

    .benefit-card.large {
        min-width: 100%;
    }

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

    .form-container {
        padding: 30px 20px;
    }

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

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