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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

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

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

.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: #d35400;
}

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

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

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

.hero-visual {
    position: relative;
    height: 85vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1529692236671-f1f6cf9683ba?w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 2rem;
}

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

.hero-subtext {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    background: #d35400;
    color: #ffffff;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.story-intro {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

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

.story-intro h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.story-intro p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.emphasis {
    font-size: 1.3rem;
    font-weight: 600;
    color: #d35400;
    margin-top: 2.5rem;
}

.problem-reveal {
    padding: 5rem 2rem;
    background: #ffffff;
}

.split-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.3;
}

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

.image-block {
    flex: 1;
}

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

.insight-section {
    padding: 6rem 2rem;
    background: #ecf0f1;
}

.insight-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

.insight-section > .content-narrow > p {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.key-insights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.insight-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 5px solid #d35400;
}

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

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

.trust-building {
    padding: 5rem 2rem;
    background: #ffffff;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-building h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.testimonials-flow {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonial {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    font-style: italic;
}

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

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #d35400;
}

.benefits-reveal {
    padding: 5rem 2rem;
    background: #2c3e50;
    color: #ffffff;
}

.benefits-reveal h2 {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
    color: #ffffff;
}

.benefits-list {
    list-style: none;
    margin-bottom: 3rem;
}

.benefits-list li {
    font-size: 1.2rem;
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d35400;
    font-weight: bold;
    font-size: 1.5rem;
}

.cta-inline {
    display: inline-block;
    background: #d35400;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
}

.cta-inline:hover {
    background: #e67e22;
}

.services-pricing {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.services-pricing h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: #34495e;
}

.pricing-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 2.5rem;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border: 3px solid #d35400;
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #d35400;
    color: #ffffff;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 20px;
}

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

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

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-card li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #34495e;
}

.pricing-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d35400;
    font-weight: bold;
}

.select-service {
    width: 100%;
    background: #d35400;
    color: #ffffff;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #e67e22;
}

.urgency-section {
    padding: 5rem 2rem;
    background: #34495e;
    color: #ffffff;
}

.urgency-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.urgency-section p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.cta-secondary {
    display: inline-block;
    background: #ffffff;
    color: #34495e;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 1rem;
    transition: background 0.3s;
}

.cta-secondary:hover {
    background: #ecf0f1;
}

.order-form-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.order-form-section > .content-narrow > p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #34495e;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    font-family: inherit;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
}

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

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

.final-reassurance {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.final-reassurance h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.final-reassurance p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.cta-text {
    display: inline-block;
    color: #d35400;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1rem;
    transition: color 0.3s;
}

.cta-text:hover {
    color: #e67e22;
}

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

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

.footer-col h4 {
    margin-bottom: 1rem;
    color: #d35400;
}

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

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

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

.footer-col a:hover {
    color: #ffffff;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 1.5rem;
    display: none;
    z-index: 2000;
}

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

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

.cookie-content p {
    margin: 0;
}

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

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

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

.cookie-btn.accept {
    background: #d35400;
    color: #ffffff;
}

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

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

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

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

.sticky-cta a {
    display: block;
    background: #d35400;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(211, 84, 0, 0.4);
    transition: background 0.3s, transform 0.2s;
}

.sticky-cta a:hover {
    background: #e67e22;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

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

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

    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
    }

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

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

    .sticky-cta a {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
