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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-bg: #ecf0f1;
    --dark-bg: #1a252f;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --success: #27ae60;
}

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

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

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

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

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

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

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

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

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

.sticky-btn {
    background: var(--accent-color);
    color: var(--white);
    padding: 18px 35px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
    transition: all 0.3s;
    display: inline-block;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(231, 76, 60, 0.4);
}

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

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

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

.hero-overlay::before {
    content: '';
    position: absolute;
    inset: -100px;
    background: rgba(0, 0, 0, 0.5);
    filter: blur(30px);
    z-index: -1;
}

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

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 300;
}

.hero-cta {
    background: var(--white);
    color: var(--primary-color);
    padding: 18px 50px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: transform 0.3s;
}

.hero-cta:hover {
    transform: scale(1.05);
}

.narrative-block {
    padding: 120px 20px;
    background: var(--white);
}

.narrative-content {
    max-width: 700px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 300;
}

.narrative-content p {
    font-size: 1.25rem;
    margin-bottom: 25px;
    color: var(--text-light);
}

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.problem-amplify h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    line-height: 1.3;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.problem-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.problem-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.problem-text h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

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

.inline-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
    padding: 16px 45px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s;
}

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

.insight-section {
    padding: 120px 20px;
    background: var(--white);
}

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.insight-visual {
    flex: 1;
}

.insight-visual img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.insight-content {
    flex: 1;
}

.insight-content h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

.insight-content p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.highlight-text {
    background: #fff3cd;
    padding: 20px;
    border-left: 4px solid #ffc107;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 30px;
}

.scenario-storytelling {
    background: var(--dark-bg);
    color: var(--white);
    padding: 100px 20px;
}

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

.section-center-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 80px;
}

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

.timeline-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.time {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    flex-shrink: 0;
    width: 80px;
}

.scenario-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 35px;
    border-radius: 12px;
    flex: 1;
}

.scenario-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.scenario-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

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

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

.centered-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 70px;
}

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

.testimonial {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-light);
}

.benefits-reveal {
    padding: 100px 20px;
    background: var(--white);
}

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

.benefits-container h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 70px;
}

.benefit-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.benefit-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 25px;
}

.benefit-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.urgency-block {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 80px 20px;
}

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

.urgency-content h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
}

.urgency-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.urgency-highlight {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    font-weight: 600;
    font-size: 1.25rem;
}

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

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

.pricing-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
}

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

.pricing-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 45px 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 3px solid var(--secondary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.package-desc {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

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

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-bg);
    font-size: 1.05rem;
}

.package-features li:before {
    content: '✓ ';
    color: var(--success);
    font-weight: bold;
    margin-right: 10px;
}

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

.btn-pricing {
    background: var(--secondary-color);
    color: var(--white);
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: block;
}

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

.additional-services {
    margin-top: 60px;
}

.additional-services h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.addon-list {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--light-bg);
    align-items: center;
}

.addon-item:last-child {
    border-bottom: none;
}

.addon-name {
    font-size: 1.05rem;
    flex: 1;
}

.addon-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.how-it-works {
    padding: 100px 20px;
    background: var(--white);
}

.how-it-works h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 70px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

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

.final-trust {
    padding: 80px 20px;
    background: var(--dark-bg);
    color: var(--white);
}

.trust-badges {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge-item {
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.badge-item h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.badge-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 15px;
}

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

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--light-bg);
    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: var(--secondary-color);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

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

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

.btn-submit {
    background: var(--accent-color);
    color: var(--white);
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

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

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

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

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

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    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;
    gap: 30px;
    flex-wrap: wrap;
}

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

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

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

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

.btn-accept {
    background: var(--success);
    color: var(--white);
}

.btn-accept:hover {
    background: #229954;
}

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

.btn-reject:hover {
    background: #d5dbdd;
}

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

    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

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

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

    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }

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

    .benefit-cards {
        flex-direction: column;
    }

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

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

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

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

    .sticky-btn {
        padding: 14px 25px;
        font-size: 0.95rem;
    }

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

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