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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

.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: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #ffd700;
    text-decoration: underline;
}

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

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #ffd700;
    color: #1a1a1a;
}

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

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

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

.nav-floating {
    position: fixed;
    top: 30px;
    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;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

.nav-menu a:hover {
    color: #666;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

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

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

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

.hero-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 300;
}

.cta-hero {
    padding: 18px 48px;
    font-size: 18px;
    background: #ffd700;
    color: #1a1a1a;
    border: none;
    cursor: pointer;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
}

.story-intro {
    padding: 120px 20px;
    background: #f9f9f9;
}

.story-narrow {
    max-width: 700px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.8;
}

.story-hook {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.story-narrow p {
    margin-bottom: 20px;
    color: #333;
}

.visual-split {
    padding: 0;
}

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

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

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

.split-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.split-right h2 {
    font-size: 38px;
    margin-bottom: 24px;
    font-weight: 700;
}

.split-right p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    color: #333;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: 700;
    font-size: 20px;
}

.problem-amplify {
    padding: 100px 20px;
    background: #1a1a1a;
    color: #fff;
}

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

.section-title-center {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.problem-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
}

.problem-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
}

.insight-reveal {
    padding: 120px 20px;
    background: linear-gradient(135deg, #2c1810 0%, #1a1a1a 100%);
    color: #fff;
}

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

.insight-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.insight-container h2 {
    font-size: 44px;
    margin-bottom: 30px;
    font-weight: 700;
}

.insight-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #ddd;
}

.visual-immersion {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.immersion-block {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.immersion-overlay {
    position: absolute;
    bottom: 60px;
    left: 60px;
    max-width: 500px;
    background: rgba(26, 26, 26, 0.85);
    padding: 40px;
    backdrop-filter: blur(10px);
    border-radius: 8px;
}

.immersion-overlay h3 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 700;
}

.immersion-overlay p {
    font-size: 18px;
    color: #ddd;
    line-height: 1.6;
}

.trust-social {
    padding: 100px 20px;
    background: #f5f5f5;
}

.testimonials-inline {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.testimonial {
    padding: 40px;
    background: #fff;
    border-left: 4px solid #ffd700;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.quote {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-style: italic;
}

.author {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

.benefits-stacked {
    padding: 0;
}

.benefit-row {
    display: flex;
    min-height: 600px;
}

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

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

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

.benefit-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.benefit-text h3 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.services-pricing {
    padding: 100px 20px;
    background: #fff;
}

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

.section-title {
    font-size: 44px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 12px;
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
    position: relative;
}

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

.service-card.featured {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-color: #ffd700;
}

.card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #1a1a1a;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

.price {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 20px 0;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #333;
}

.service-card.featured .btn-select-service {
    background: #1a1a1a;
    color: #ffd700;
}

.urgency-block {
    padding: 60px 20px;
    background: #fff3cd;
    border-top: 3px solid #ffd700;
    border-bottom: 3px solid #ffd700;
}

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

.urgency-text {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.6;
}

.form-section {
    padding: 100px 20px;
    background: #f9f9f9;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 700;
}

.form-intro {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 2px solid #e5e5e5;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
}

.form-group input[readonly] {
    background: #f9f9f9;
    color: #1a1a1a;
    font-weight: 600;
}

.btn-submit {
    padding: 18px;
    background: #ffd700;
    color: #1a1a1a;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

.form-privacy {
    font-size: 13px;
    color: #666;
    text-align: center;
    margin-top: 10px;
}

.form-privacy a {
    color: #1a1a1a;
    text-decoration: underline;
}

.final-cta {
    padding: 120px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 700;
}

.cta-final {
    padding: 20px 60px;
    font-size: 20px;
    background: #ffd700;
    color: #1a1a1a;
    border: none;
    cursor: pointer;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 20px 30px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    color: #aaa;
}

.footer-col a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffd700;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #aaa;
}

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

.sticky-cta.show {
    display: block;
}

.sticky-cta button {
    padding: 16px 32px;
    background: #ffd700;
    color: #1a1a1a;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .nav-floating {
        top: 20px;
        padding: 15px 20px;
        width: calc(100% - 40px);
        left: 20px;
        transform: none;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 36px;
    }

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

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

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

    .split-right,
    .benefit-text {
        padding: 40px 20px;
    }

    .card-grid-3 {
        flex-direction: column;
    }

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

    .section-title-center,
    .section-title {
        font-size: 32px;
    }

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

    .immersion-overlay {
        left: 20px;
        right: 20px;
        bottom: 20px;
        padding: 30px;
    }

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

    .sticky-cta button {
        padding: 12px 24px;
        font-size: 14px;
    }
}