* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 280px;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cookie {
    background: #3498db;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #2980b9;
}

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

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

.floating-nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 20px 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.hero-visual {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    max-width: 800px;
    padding: 0 30px;
    color: #ffffff;
    text-align: center;
}

.hero-text h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 24px;
    line-height: 1.5;
    opacity: 0.95;
}

.story-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 30px;
}

.narrative-section {
    padding: 80px 0;
}

.narrative-inner h2 {
    font-size: 38px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.narrative-inner p {
    font-size: 19px;
    margin-bottom: 24px;
    line-height: 1.8;
}

.emphasis-text {
    font-style: italic;
    color: #e74c3c;
    font-weight: 600;
}

.inline-cta-section {
    text-align: center;
    padding: 40px 0 60px;
}

.cta-inline {
    display: inline-block;
    padding: 16px 40px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.problem-deep {
    padding: 70px 0;
    margin: 60px -30px;
    background: #f8f9fa;
}

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

.problem-card {
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.problem-card.dark {
    background: #34495e;
    color: #ffffff;
}

.problem-card h3 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #e74c3c;
}

.problem-card.dark h3 {
    color: #f39c12;
}

.problem-card p {
    font-size: 17px;
    line-height: 1.6;
}

.insight-reveal {
    padding: 90px 0;
}

.insight-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
    line-height: 1.4;
}

.insight-content p {
    font-size: 19px;
    margin-bottom: 24px;
    line-height: 1.8;
}

.insight-visual {
    margin: 50px 0;
    border-radius: 8px;
    overflow: hidden;
}

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

.insight-footer {
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
    margin-top: 35px;
}

.trust-builder {
    padding: 70px 0;
    background: #ecf0f1;
    margin: 60px -30px;
}

.trust-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    padding: 0 30px;
}

.trust-item {
    flex: 1;
    min-width: 240px;
    max-width: 300px;
    text-align: center;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: #27ae60;
    color: #ffffff;
    font-size: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.testimonial-flow {
    padding: 80px 0;
}

.testimonial-box {
    padding: 40px;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    margin-bottom: 30px;
    border-radius: 4px;
}

.testimonial-box.alt {
    border-left-color: #9b59b6;
}

.testimonial-text {
    font-size: 19px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 16px;
    color: #7f8c8d;
    font-weight: 600;
}

.benefits-cascade {
    padding: 80px 0;
}

.benefits-cascade h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
}

.benefit-stack {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.benefit-row {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.benefit-row.reverse {
    flex-direction: row-reverse;
}

.benefit-content {
    flex: 1;
    min-width: 300px;
}

.benefit-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

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

.benefit-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.benefit-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-block-mid {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 60px -30px;
}

.cta-mid-content {
    text-align: center;
    color: #ffffff;
    padding: 0 30px;
}

.cta-mid-content h3 {
    font-size: 36px;
    margin-bottom: 30px;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 50px;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.scenario-section {
    padding: 80px 0;
}

.scenario-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
}

.scenario-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.step-item {
    flex: 1;
    min-width: 220px;
    max-width: 260px;
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    background: #3498db;
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-desc h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step-desc p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.urgency-section {
    padding: 70px 0;
}

.urgency-box {
    background: #fff3cd;
    border: 2px solid #f39c12;
    padding: 50px 40px;
    border-radius: 8px;
    text-align: center;
}

.urgency-label {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    color: #e67e22;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.urgency-box h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #d35400;
}

.urgency-box p {
    font-size: 18px;
    line-height: 1.7;
}

.pricing-reveal {
    padding: 90px 0;
    background: #f8f9fa;
    margin: 60px -30px;
}

.pricing-reveal h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    padding: 0 30px;
}

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

.price-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.price-card.featured {
    border: 3px solid #3498db;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #3498db;
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.price-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 40px;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 30px;
}

.price-features {
    list-style: none;
}

.price-features li {
    padding: 12px 0;
    border-bottom: 1px solid #ecf0f1;
    font-size: 16px;
    line-height: 1.5;
}

.price-features li:before {
    content: "✓ ";
    color: #27ae60;
    font-weight: 700;
    margin-right: 8px;
}

.form-section {
    padding: 90px 0;
}

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

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
}

.form-intro {
    font-size: 18px;
    text-align: center;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

.final-cta {
    padding: 90px 0;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    margin: 60px -30px 0;
}

.final-cta-content {
    text-align: center;
    color: #ffffff;
    padding: 0 30px;
}

.final-cta-content h3 {
    font-size: 42px;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn-cta-final {
    display: inline-block;
    padding: 18px 50px;
    background: #ffffff;
    color: #e74c3c;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #bdc3c7;
}

.footer-section a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px 0;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

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

.sticky-cta-btn {
    display: block;
    padding: 16px 30px;
    background: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #c0392b;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.5);
}

.page-hero {
    padding: 100px 30px 60px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero p {
    font-size: 20px;
    color: #555;
    line-height: 1.7;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 30px 100px;
}

.about-section {
    margin-bottom: 50px;
}

.about-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.services-list {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px 100px;
}

.service-item {
    background: #ffffff;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #3498db;
}

.service-item.featured {
    border-color: #3498db;
    background: #f0f8ff;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.service-header h2 {
    font-size: 28px;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: #e74c3c;
}

.service-description p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.service-description ul {
    list-style: none;
    padding-left: 0;
}

.service-description li {
    padding: 10px 0;
    border-bottom: 1px solid #ecf0f1;
    font-size: 16px;
}

.service-description li:before {
    content: "• ";
    color: #3498db;
    font-weight: 700;
    margin-right: 10px;
}

.contact-info-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.contact-info-item {
    flex: 1;
    min-width: 240px;
    max-width: 300px;
    text-align: center;
}

.contact-info-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #3498db;
}

.contact-info-item p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.contact-info-item a {
    color: #3498db;
    text-decoration: none;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

.contact-note {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 30px 80px;
    text-align: center;
}

.contact-note p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px 100px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.legal-content ul {
    margin-left: 25px;
    margin-bottom: 25px;
}

.legal-content li {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-update {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #ecf0f1;
    font-style: italic;
    color: #7f8c8d;
}

.thanks-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 30px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #27ae60;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.thanks-details {
    background: #f0f8ff;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 40px;
    font-size: 18px;
    color: #3498db;
    font-weight: 600;
}

.thanks-next {
    margin: 50px 0;
    text-align: left;
}

.thanks-next h3 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.thanks-steps {
    list-style: none;
    counter-reset: steps;
    padding-left: 0;
}

.thanks-steps li {
    counter-increment: steps;
    padding: 15px 0 15px 50px;
    position: relative;
    font-size: 17px;
    line-height: 1.7;
}

.thanks-steps li:before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 12px;
    width: 35px;
    height: 35px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.btn-thanks,
.btn-thanks-alt {
    display: inline-block;
    padding: 14px 35px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-thanks {
    background: #3498db;
    color: #ffffff;
}

.btn-thanks:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-thanks-alt {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-thanks-alt:hover {
    background: #3498db;
    color: #ffffff;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .narrative-inner h2 {
        font-size: 30px;
    }

    .narrative-inner p {
        font-size: 17px;
    }

    .benefit-row,
    .benefit-row.reverse {
        flex-direction: column;
    }

    .price-card.featured {
        transform: scale(1);
    }

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

    .sticky-cta-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .cta-mid-content h3 {
        font-size: 28px;
    }

    .final-cta-content h3 {
        font-size: 32px;
    }

    .final-cta-content p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
}