* {
    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: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

.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;
    border-radius: 4px;
    transition: all 0.3s;
}

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

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

.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: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

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

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

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.6;
}

.hero-immersive {
    height: 85vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('https://images.unsplash.com/photo-1507680434567-5739c80be1ac?w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

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

.hero-overlay h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-subtext {
    font-size: 22px;
    line-height: 1.5;
    opacity: 0.95;
}

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

.narrow-content {
    max-width: 680px;
    margin: 0 auto;
}

.opening-line {
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 32px;
    font-weight: 500;
    color: #1a1a1a;
}

.narrow-content p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #333;
}

.visual-break {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

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

.problem-amplify {
    padding: 100px 20px;
    background: #ffffff;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 42px;
    margin-bottom: 32px;
    line-height: 1.2;
}

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

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
}

.insight-reveal {
    padding: 140px 20px;
    background: #1a1a1a;
    color: #ffffff;
}

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

.centered-block h2 {
    font-size: 48px;
    margin-bottom: 40px;
    line-height: 1.2;
}

.large-text {
    font-size: 26px;
    line-height: 1.5;
    margin-bottom: 32px;
    font-weight: 500;
}

.centered-block p {
    font-size: 19px;
    line-height: 1.7;
    color: #e0e0e0;
}

.image-grid {
    display: flex;
    height: 500px;
}

.image-grid img {
    flex: 1;
    object-fit: cover;
}

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

.testimonial-flow {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.testimonial {
    padding: 40px;
    background: #ffffff;
    border-left: 4px solid #1a1a1a;
}

.testimonial p {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    color: #1a1a1a;
}

.author {
    font-size: 16px;
    color: #666;
    font-style: normal;
}

.cta-mid {
    padding: 80px 20px;
    text-align: center;
    background: #ffffff;
}

.btn-primary {
    display: inline-block;
    padding: 18px 48px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 4px;
    transition: all 0.3s;
}

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

.benefits-visual {
    padding: 100px 20px;
    background: #fafafa;
}

.benefits-visual h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
}

.benefits-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.benefit-card p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
}

.visual-spacer {
    width: 100%;
    height: 450px;
}

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

.scenario-section {
    padding: 120px 20px;
    background: #ffffff;
}

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

.scenario-content h2 {
    font-size: 42px;
    margin-bottom: 32px;
}

.scenario-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #333;
}

.inline-cta {
    display: inline-block;
    margin-top: 20px;
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #1a1a1a;
    transition: all 0.3s;
}

.inline-cta:hover {
    opacity: 0.6;
}

.pricing-reveal {
    padding: 100px 20px;
    background: #f9f9f9;
}

.pricing-intro {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.pricing-intro h2 {
    font-size: 46px;
    margin-bottom: 20px;
}

.pricing-intro p {
    font-size: 20px;
    color: #555;
}

.pricing-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1 1 300px;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    position: relative;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
}

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

.pricing-card.featured {
    border-color: #1a1a1a;
    background: #1a1a1a;
    color: #ffffff;
}

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

.pricing-card h3 {
    font-size: 28px;
    margin-bottom: 24px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-card ul li {
    padding: 10px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-card.featured ul li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.price {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
}

.select-service {
    width: 100%;
    padding: 14px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.select-service:hover {
    opacity: 0.85;
}

.individual-pieces {
    padding: 80px 20px;
    background: #ffffff;
}

.individual-pieces h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
}

.pieces-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.piece-item {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 250px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.piece-item h4 {
    font-size: 22px;
    margin-bottom: 8px;
}

.piece-item p {
    font-size: 15px;
    color: #666;
    margin-bottom: 16px;
    flex-grow: 1;
}

.piece-price {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    display: block;
}

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

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

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

.order-section {
    padding: 100px 20px;
    background: #f5f5f5;
}

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

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

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

.order-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #333;
}

.final-push {
    padding: 100px 20px;
    background: #1a1a1a;
    color: #ffffff;
}

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

.final-content h2 {
    font-size: 44px;
    margin-bottom: 32px;
}

.final-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.btn-secondary {
    display: inline-block;
    margin-top: 24px;
    padding: 16px 40px;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #1a1a1a;
}

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

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

.sticky-btn {
    display: block;
    padding: 16px 32px;
    background: #ffd700;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.sticky-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.footer-col p {
    font-size: 15px;
    color: #ccc;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.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: #999;
}

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

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

    .nav-links {
        display: none;
    }

    .split-layout {
        flex-direction: column;
    }

    .image-grid {
        flex-direction: column;
        height: auto;
    }

    .image-grid img {
        height: 300px;
    }

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

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

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