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

:root {
    --primary-color: #2c7a3f;
    --secondary-color: #4CAF50;
    --accent-color: #FF9800;
    --dark-bg: #1a1a1a;
    --light-bg: #f5f5f5;
    --text-dark: #333;
    --text-light: #fff;
    --overlay-dark: rgba(0, 0, 0, 0.6);
    --overlay-light: rgba(255, 255, 255, 0.9);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-width: 900px;
    width: 90%;
}

.nav-brand {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-visual {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    padding: 20px;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-hero {
    display: inline-block;
    padding: 18px 50px;
    background: var(--accent-color);
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

.story-hook {
    padding: 100px 20px;
    background: var(--light-bg);
}

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

.lead-text {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary-color);
    line-height: 1.4;
}

.story-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.image-split-section {
    display: flex;
    min-height: 600px;
}

.split-visual {
    flex: 1;
    overflow: hidden;
}

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

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--dark-bg);
    color: var(--text-light);
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    line-height: 1.3;
}

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.trust-builder {
    padding: 120px 20px;
    background: var(--text-light);
}

.trust-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-wrapper h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 80px;
    color: var(--primary-color);
}

.trust-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background: var(--light-bg);
    border-radius: 15px;
    transition: transform 0.3s;
}

.trust-card:hover {
    transform: translateY(-10px);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.trust-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.trust-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.visual-proof {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

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

.proof-overlay-text {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--overlay-light);
    padding: 40px 60px;
    border-radius: 10px;
    max-width: 800px;
    width: 90%;
    text-align: center;
}

.proof-overlay-text blockquote {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-style: italic;
}

.proof-overlay-text cite {
    font-size: 1rem;
    color: var(--text-dark);
    font-style: normal;
}

.insight-section {
    padding: 120px 20px;
    background: var(--primary-color);
    color: var(--text-light);
}

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.insight-wrapper h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    text-align: center;
}

.insight-lead {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 600;
}

.insight-visual-block {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.insight-visual-block img {
    width: 100%;
    height: auto;
    display: block;
}

.insight-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 60px 40px;
}

.insight-overlay p {
    font-size: 1.3rem;
    line-height: 1.6;
}

.scenario-storytelling {
    padding: 120px 20px;
    background: var(--light-bg);
}

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

.scenario-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.scenario-comparison {
    display: flex;
    gap: 40px;
}

.scenario-box {
    flex: 1;
    padding: 50px 40px;
    border-radius: 15px;
}

.scenario-wait {
    background: #ffebee;
    border: 3px solid #ef5350;
}

.scenario-act {
    background: #e8f5e9;
    border: 3px solid var(--secondary-color);
}

.scenario-box h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.scenario-box ul {
    list-style: none;
}

.scenario-box li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.scenario-wait li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef5350;
    font-weight: bold;
}

.scenario-act li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.cta-mid-section {
    padding: 100px 20px;
    background: var(--dark-bg);
    text-align: center;
}

.cta-mid-content h2 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-mid-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 20px 60px;
    background: var(--accent-color);
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 152, 0, 0.4);
}

.cta-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(255, 152, 0, 0);
    }
}

.problem-amplification {
    padding: 100px 20px;
    background: var(--text-light);
}

.amplify-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.amplify-wrapper h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.amplify-text {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 50px;
}

.amplify-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.amplify-item {
    padding: 30px;
    background: #fff3e0;
    border-left: 5px solid var(--accent-color);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.amplify-item strong {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.amplify-item span {
    font-size: 1rem;
    color: var(--text-dark);
}

.visual-testimonial {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.testimonial-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--overlay-light);
    padding: 50px 70px;
    border-radius: 15px;
    max-width: 700px;
    width: 90%;
    text-align: center;
}

.testimonial-overlay blockquote {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-overlay cite {
    font-size: 1rem;
    color: var(--text-dark);
}

.benefits-reveal {
    padding: 120px 20px;
    background: var(--light-bg);
}

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

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

.benefits-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.benefit-card {
    display: flex;
    gap: 40px;
    background: var(--text-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card:nth-child(even) {
    flex-direction: row-reverse;
}

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

.benefit-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefit-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.trust-elements {
    padding: 80px 20px;
    background: var(--primary-color);
    color: var(--text-light);
}

.trust-elements-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-elements-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.badge {
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
}

.pricing-reveal {
    padding: 120px 20px;
    background: var(--text-light);
}

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

.pricing-wrapper h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.pricing-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 70px;
    color: var(--text-dark);
}

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

.pricing-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    padding: 40px 30px;
    background: var(--light-bg);
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s;
}

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

.pricing-featured {
    background: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-align: center;
}

.pricing-featured h3 {
    color: var(--text-light);
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.pricing-featured .price {
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1rem;
}

.pricing-featured .pricing-features li {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.pricing-features li::before {
    content: '✓ ';
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 8px;
}

.pricing-featured .pricing-features li::before {
    color: var(--accent-color);
}

.pricing-cta {
    padding: 15px 40px;
    background: var(--accent-color);
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.pricing-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.urgency-section {
    padding: 80px 20px;
    background: #fff3e0;
}

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

.urgency-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.urgency-box {
    background: var(--text-light);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid var(--accent-color);
}

.urgency-box p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: left;
}

.urgency-box p:last-child {
    margin-bottom: 0;
}

.form-section {
    padding: 120px 20px;
    background: var(--dark-bg);
}

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

.form-container h2 {
    font-size: 3rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 20px;
}

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

.service-selection {
    background: var(--primary-color);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    color: var(--text-light);
    text-align: center;
}

.service-selection strong {
    font-weight: 700;
}

#selectedServiceName {
    color: var(--accent-color);
    font-weight: 700;
}

.contact-form {
    background: var(--text-light);
    padding: 50px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

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

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

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

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

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

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--accent-color);
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.final-cta-visual {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.final-cta-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.final-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--overlay-dark);
    text-align: center;
    padding: 20px;
}

.final-cta-overlay h2 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.final-cta-overlay p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.cta-final {
    display: inline-block;
    padding: 20px 60px;
    background: var(--accent-color);
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
}

.cta-final:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 152, 0, 0.5);
}

.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 20px 30px;
}

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

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

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

.sticky-cta-btn {
    display: block;
    padding: 15px 35px;
    background: var(--accent-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255, 152, 0, 0.4);
    transition: all 0.3s;
}

.sticky-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 152, 0, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 25px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--secondary-color);
    color: var(--text-light);
}

.btn-accept:hover {
    background: var(--primary-color);
}

.btn-reject {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-reject:hover {
    background: var(--text-light);
    color: var(--dark-bg);
}

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

    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }

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

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

    .image-split-section {
        flex-direction: column;
    }

    .split-content {
        padding: 40px 30px;
    }

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

    .scenario-comparison {
        flex-direction: column;
    }

    .benefit-card,
    .benefit-card:nth-child(even) {
        flex-direction: column;
    }

    .benefit-card img {
        width: 100%;
        height: 300px;
    }

    .benefit-content {
        padding: 30px;
    }

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

    .pricing-card {
        max-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

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