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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #e8956c;
    --dark-bg: #1a1a1a;
    --light-bg: #f9f7f4;
    --text-primary: #2d2d2d;
    --text-light: #666;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --accent-yellow: #f4c430;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.3;
    font-weight: 700;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    animation: slideUp 0.4s ease;
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.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;
    margin: 0;
    font-size: 0.95rem;
}

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

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

.btn-primary,
.btn-secondary {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #d17e57;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-color);
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s ease;
}

.sticky-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.btn-sticky {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(44, 95, 79, 0.4);
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-sticky:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(44, 95, 79, 0.5);
}

.hero-immersive {
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1622290291468-a28f7a7dc6a8?w=1600');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 95, 79, 0.8), rgba(232, 149, 108, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

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

.btn-hero {
    background: var(--white);
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.section-narrow {
    max-width: 700px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.content-flow {
    line-height: 1.9;
}

.section-heading {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    line-height: 1.4;
}

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

.section-visual-break {
    margin: 5rem 0;
    padding: 0 2rem;
}

.visual-card {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.visual-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.visual-text {
    flex: 1;
    padding: 3rem;
    background: var(--light-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visual-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.visual-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.section-story {
    background: var(--dark-bg);
    color: var(--white);
    padding: 6rem 2rem;
    margin: 5rem 0;
}

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

.story-container h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.story-container p {
    font-size: 1.2rem;
    margin-bottom: 1.8rem;
    line-height: 1.9;
    opacity: 0.9;
}

.story-highlight {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 2.5rem 0;
    padding: 1.5rem;
    border-left: 4px solid var(--secondary-color);
    background: rgba(232, 149, 108, 0.1);
}

.story-cta {
    margin-top: 3rem;
}

.btn-inline {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-inline:hover {
    color: var(--white);
    transform: translateX(5px);
}

.section-solution {
    padding: 6rem 2rem;
    background: var(--light-bg);
}

.solution-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.solution-item {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.solution-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    opacity: 0.3;
}

.solution-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.solution-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.section-testimonial {
    padding: 5rem 2rem;
    background: var(--primary-color);
    margin: 5rem 0;
}

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

.testimonial-wrapper blockquote {
    border: none;
}

.testimonial-wrapper p {
    font-size: 1.8rem;
    line-height: 1.6;
    color: var(--white);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-wrapper cite {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-style: normal;
    font-weight: 600;
}

.section-insight {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.insight-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.4;
}

.insight-list {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.insight-box {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.insight-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.insight-box h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.insight-box p {
    color: var(--text-light);
    line-height: 1.7;
}

.section-visual-wide {
    margin: 5rem 0;
}

.wide-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wide-overlay {
    background: rgba(0,0,0,0.5);
    padding: 3rem;
    text-align: center;
    color: var(--white);
    max-width: 800px;
}

.wide-overlay h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.wide-overlay p {
    font-size: 1.3rem;
    font-style: italic;
}

.section-trust {
    padding: 6rem 2rem;
    background: var(--light-bg);
}

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

.trust-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.trust-container > p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.trust-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 150px;
}

.section-testimonial-inline {
    padding: 5rem 2rem;
}

.testimonial-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

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

.testimonial-card span {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

.section-benefits {
    padding: 6rem 2rem;
    background: var(--white);
}

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

.benefits-reveal h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.benefits-flow {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.benefit-step {
    padding: 2.5rem;
    background: var(--light-bg);
    border-radius: 8px;
    position: relative;
}

.benefit-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--primary-color);
    border-radius: 8px 0 0 8px;
}

.benefit-step h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit-step p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.section-cta-major {
    padding: 6rem 2rem;
    background: var(--secondary-color);
    margin: 5rem 0;
}

.cta-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.cta-block h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-block p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.btn-large {
    background: var(--white);
    color: var(--secondary-color);
    padding: 1.3rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

.pricing-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-intro h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.pricing-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.pricing-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.price-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
}

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

.price-card.featured {
    border: 3px solid var(--primary-color);
}

.price-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.price-description {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.price-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.price-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.95rem;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features li::before {
    content: '✓ ';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.section-urgency {
    padding: 4rem 2rem;
    background: var(--dark-bg);
}

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

.urgency-content {
    background: rgba(255,255,255,0.05);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid var(--secondary-color);
}

.urgency-content h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.urgency-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1rem;
}

.urgency-highlight {
    font-size: 1.4rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-top: 1.5rem;
}

.section-form {
    padding: 6rem 2rem;
    background: var(--white);
}

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

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

.order-form {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 12px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

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

.form-checkbox {
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
}

.form-checkbox label {
    font-size: 0.95rem;
    color: var(--text-light);
}

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-submit:hover {
    background: #234a3d;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(44, 95, 79, 0.4);
}

.section-final-push {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.final-message {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-message h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.final-message p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

.footer {
    background: var(--dark-bg);
    color: var(--white);
    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: var(--secondary-color);
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

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

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

.footer-column ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.2rem;
    }

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

    .section-heading {
        font-size: 1.8rem;
    }

    .visual-card {
        flex-direction: column;
    }

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

    .insight-list {
        flex-direction: column;
    }

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

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

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

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
}