/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    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: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background: #7cb342;
}

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

.btn-reject:hover {
    background: #fff;
    color: #1a1a1a;
}

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-brand {
    font-weight: 700;
    font-size: 1.2rem;
    color: #2c5f2d;
}

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

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

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

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

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: #8bc34a;
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(139, 195, 74, 0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: #7cb342;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 195, 74, 0.5);
}

/* Hero Section with Overlay */
.hero-overlay {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1596040033229-a0b3b9b82f1c?w=1600');
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

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

.cta-primary {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #8bc34a;
    color: #fff;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(139, 195, 74, 0.4);
}

.cta-primary:hover {
    background: #7cb342;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(139, 195, 74, 0.6);
}

/* Narrow Story Section */
.narrow-story {
    padding: 6rem 2rem;
    background: #f9f9f9;
}

.story-container {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.3rem;
    line-height: 1.9;
}

.opening-line {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #2c5f2d;
}

.story-container p {
    margin-bottom: 1.5rem;
}

/* Problem Reveal Section */
.problem-reveal {
    padding: 6rem 2rem;
    background: #fff;
}

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

.reveal-content h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.reveal-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.reveal-item {
    flex: 1;
    min-width: 280px;
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
}

.reveal-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

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

.reveal-item p {
    color: #555;
}

/* Story Split Section */
.story-section {
    padding: 6rem 2rem;
    background: #2c5f2d;
    color: #fff;
}

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

.story-text {
    flex: 1;
    min-width: 300px;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.story-image {
    flex: 1;
    min-width: 300px;
}

.story-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* Insight Section */
.insight-section {
    padding: 6rem 2rem;
    background: #f0f4f0;
}

.insight-container {
    max-width: 1100px;
    margin: 0 auto;
}

.insight-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.insight-lead {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5f2d;
    font-weight: 600;
}

.comparison-visual {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.comparison-side {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    border-radius: 12px;
}

.comparison-side.old {
    background: #e0e0e0;
}

.comparison-side.new {
    background: #8bc34a;
    color: #fff;
}

.comparison-side h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.comparison-side ul {
    list-style: none;
}

.comparison-side li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.1rem;
}

.comparison-side li:before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

/* Testimonial Flow */
.testimonial-flow {
    padding: 6rem 2rem;
    background: #fff;
}

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

.testimonial-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid #8bc34a;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.testimonial-author {
    font-weight: 600;
    color: #2c5f2d;
}

/* Visual Showcase */
.visual-showcase {
    padding: 6rem 2rem;
    background: #1a1a1a;
}

.showcase-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.showcase-item {
    position: relative;
    flex: 1;
    min-width: 300px;
    overflow: hidden;
    border-radius: 8px;
}

.showcase-item.large {
    flex: 2;
    min-width: 600px;
}

.showcase-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s;
}

.showcase-item:hover img {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 2rem;
    color: #fff;
}

.showcase-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Benefits Reveal */
.benefits-reveal {
    padding: 6rem 2rem;
    background: #fff;
}

.benefits-container {
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.benefit-number {
    font-size: 3rem;
    font-weight: 800;
    color: #8bc34a;
    min-width: 80px;
}

.benefit-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: #2c5f2d;
}

.benefit-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

/* CTA Break */
.cta-break {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c5f2d, #4a8f4d);
    text-align: center;
    color: #fff;
}

.cta-break-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-break-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-secondary {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #fff;
    color: #2c5f2d;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #8bc34a;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0,0,0,0.3);
}

/* Services Pricing */
.services-pricing {
    padding: 6rem 2rem;
    background: #f9f9f9;
}

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

.services-container h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-intro {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #555;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
}

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

.service-card.featured {
    border: 3px solid #8bc34a;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #8bc34a;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
}

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f5f5f5;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #666;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.select-service-btn {
    width: 100%;
    padding: 1rem;
    background: #8bc34a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service-btn:hover {
    background: #7cb342;
}

.select-service-btn.selected {
    background: #2c5f2d;
}

/* Urgency Section */
.urgency-section {
    padding: 4rem 2rem;
    background: #fff3cd;
    border-top: 4px solid #ffc107;
    border-bottom: 4px solid #ffc107;
}

.urgency-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.urgency-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #856404;
}

.urgency-highlight {
    font-weight: 700;
    font-size: 1.3rem !important;
    color: #c93a00 !important;
}

/* Order Form Section */
.order-section {
    padding: 6rem 2rem;
    background: #fff;
}

.order-container {
    max-width: 700px;
    margin: 0 auto;
}

.order-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.order-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #8bc34a;
    margin-bottom: 3rem;
    font-weight: 600;
}

.order-form {
    background: #f9f9f9;
    padding: 3rem;
    border-radius: 12px;
}

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

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

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

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

.form-row {
    display: flex;
    gap: 1rem;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 400;
    cursor: pointer;
}

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

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

.submit-btn {
    width: 100%;
    padding: 1.25rem;
    background: #8bc34a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #7cb342;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(139, 195, 74, 0.4);
}

.form-note {
    text-align: center;
    margin-top: 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

/* Guarantee Section */
.guarantee-section {
    padding: 6rem 2rem;
    background: #2c5f2d;
    color: #fff;
}

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

.guarantee-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
}

.guarantee-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.guarantee-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 2rem;
}

.guarantee-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #8bc34a;
}

.guarantee-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Final Story */
.final-story {
    padding: 6rem 2rem;
    background: #f0f4f0;
    text-align: center;
}

.final-container {
    max-width: 800px;
    margin: 0 auto;
}

.final-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.final-container p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.cta-final {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #8bc34a;
    color: #fff;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 2rem;
    transition: all 0.3s;
}

.cta-final:hover {
    background: #7cb342;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(139, 195, 74, 0.5);
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #8bc34a;
}

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

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

.footer-column a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #8bc34a;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .floating-nav {
        top: 1rem;
        padding: 0.75rem 1rem;
        gap: 1rem;
    }

    .nav-links {
        gap: 0.75rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

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

    .story-container {
        font-size: 1.1rem;
    }

    .opening-line {
        font-size: 1.3rem;
    }

    .reveal-content h2,
    .insight-container h2,
    .testimonial-container h2,
    .benefits-container h2,
    .services-container h2,
    .order-container h2 {
        font-size: 2rem;
    }

    .story-text h2 {
        font-size: 2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

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

    .sticky-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .showcase-item.large {
        min-width: 300px;
    }

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

@media (max-width: 480px) {
    .floating-nav {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}
