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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 1.5rem;
    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: 1rem;
}

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

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

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

.btn-accept {
    background: #2d5f3f;
    color: #ffffff;
}

.btn-accept:hover {
    background: #3a7751;
}

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

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

.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;
    display: flex;
    align-items: center;
    gap: 3rem;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-visual {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    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: #ffffff;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

.hero-overlay h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-overlay p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #2d5f3f;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: #3a7751;
    transform: translateY(-2px);
}

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

.hook-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hook-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.hook-content em {
    font-style: italic;
    color: #2d5f3f;
}

.insight-block {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.insight-image {
    flex: 1;
    overflow: hidden;
}

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

.insight-text {
    flex: 1;
    padding: 4rem;
    background: #f8f8f8;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insight-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.insight-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.story-flow {
    padding: 6rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
}

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

.story-container h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.story-container > p {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.9;
}

.story-points {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.point {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.point-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2d5f3f;
    flex-shrink: 0;
}

.point h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.point p {
    font-size: 1.1rem;
    opacity: 0.85;
    line-height: 1.7;
}

.visual-divider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.visual-divider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.divider-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.6);
    padding: 3rem;
    border-radius: 10px;
    max-width: 700px;
}

.divider-overlay blockquote {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.divider-overlay cite {
    font-size: 1.1rem;
    font-style: normal;
    opacity: 0.9;
}

.problem-amplify {
    padding: 6rem 2rem;
    background: #f0f0f0;
}

.amplify-content {
    max-width: 900px;
    margin: 0 auto;
}

.amplify-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.amplify-content p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.7;
}

.cta-inline {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: #2d5f3f;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: #3a7751;
    transform: translateY(-2px);
}

.trust-building {
    padding: 6rem 2rem;
}

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

.trust-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.trust-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.trust-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #444;
}

.trust-card strong {
    font-size: 0.95rem;
    color: #666;
}

.benefits-reveal {
    padding: 6rem 2rem;
    background: #2d5f3f;
    color: #ffffff;
}

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

.reveal-content h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.benefit {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.benefit h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit p {
    font-size: 1.05rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

.pricing-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.pricing-intro h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pricing-intro p {
    font-size: 1.2rem;
    color: #666;
}

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

.service-card {
    flex: 1;
    min-width: 350px;
    padding: 2.5rem;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

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

.service-card.featured {
    border-color: #2d5f3f;
    border-width: 3px;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #2d5f3f;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-card > p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-card li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: #555;
}

.service-card li:before {
    content: "✓ ";
    color: #2d5f3f;
    font-weight: bold;
    margin-right: 0.5rem;
}

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

.btn-select {
    padding: 1rem 2rem;
    background: #2d5f3f;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #3a7751;
}

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

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.service-display {
    background: #f0f0f0;
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    display: none;
}

.service-display.active {
    display: block;
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

form input,
form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: #2d5f3f;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #2d5f3f;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #3a7751;
}

.urgency-block {
    padding: 4rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
}

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

.urgency-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.urgency-content p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.site-footer {
    background: #0a0a0a;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

.footer-brand h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    opacity: 0.7;
}

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

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
}

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

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: #2d5f3f;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

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

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

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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

    .hero-overlay p {
        font-size: 1.2rem;
    }

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

    .insight-text {
        padding: 2rem;
    }

    .story-points {
        gap: 2rem;
    }

    .point {
        flex-direction: column;
        gap: 1rem;
    }

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

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

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

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