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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.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: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #1a1a1a;
}

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

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

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

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

.sticky-btn {
    background: #6366f1;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
    transition: transform 0.3s;
    display: inline-block;
}

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.4);
}

.hero-overlay {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.9;
}

.hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

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

.hero-subtext {
    font-size: 24px;
    font-weight: 300;
    opacity: 0.95;
}

.story-hook {
    padding: 80px 20px;
    background: #f9fafb;
}

.intro-text {
    font-size: 22px;
    line-height: 1.8;
    color: #374151;
    font-weight: 400;
}

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

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.content-left {
    flex: 1;
}

.content-left h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.content-left p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #4b5563;
}

.content-right {
    flex: 1;
}

.visual-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: #f3f4f6;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #6366f1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #6b7280;
}

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

.section-title {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
}

.highlight-text {
    font-size: 20px;
    margin: 30px 0;
    color: #d1d5db;
}

.pillars-list {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.pillar-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.pillar-number {
    font-size: 32px;
    font-weight: 700;
    color: #6366f1;
    min-width: 50px;
}

.pillar-text h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.pillar-text p {
    font-size: 16px;
    color: #d1d5db;
    line-height: 1.7;
}

.cta-inline {
    padding: 60px 20px;
    background: #fef3c7;
}

.cta-box {
    text-align: center;
    padding: 40px;
}

.cta-text {
    font-size: 22px;
    margin-bottom: 25px;
    color: #92400e;
    font-weight: 500;
}

.btn-primary {
    background: #6366f1;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background: #4f46e5;
}

.btn-secondary {
    background: #6b7280;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-secondary:hover {
    background: #4b5563;
}

.social-proof {
    padding: 100px 20px;
    background: #ffffff;
}

.social-proof h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    font-weight: 700;
}

.testimonials-flex {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background: #f9fafb;
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid #6366f1;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #6b7280;
    font-weight: 600;
}

.benefit-cascade {
    padding: 100px 20px;
    background: #f3f4f6;
}

.benefit-cascade h2 {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 700;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefits-list li {
    padding-left: 35px;
    position: relative;
    font-size: 18px;
    line-height: 1.7;
    color: #374151;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6366f1;
    font-weight: 700;
    font-size: 22px;
}

.services-reveal {
    padding: 100px 20px;
    background: #ffffff;
}

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

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background: #f9fafb;
    padding: 35px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: border 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    border-color: #6366f1;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

.service-card.featured {
    border-color: #6366f1;
    background: #eef2ff;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #6366f1;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price {
    font-size: 32px;
    font-weight: 800;
    color: #6366f1;
    margin-bottom: 20px;
    display: block;
}

.btn-select {
    background: #1f2937;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #111827;
}

.urgency-block {
    padding: 80px 20px;
    background: #fef2f2;
}

.urgency-box {
    background: #ffffff;
    padding: 40px;
    border-left: 5px solid #dc2626;
    border-radius: 8px;
}

.urgency-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #991b1b;
    font-weight: 700;
}

.urgency-box p {
    font-size: 17px;
    color: #374151;
    margin-bottom: 15px;
}

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

.order-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    font-weight: 700;
}

.order-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border 0.3s;
}

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

.btn-large {
    width: 100%;
    padding: 18px;
    font-size: 18px;
}

.final-cta {
    padding: 100px 20px;
    background: #1f2937;
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 700;
}

.final-cta p {
    font-size: 19px;
    margin-bottom: 20px;
    color: #d1d5db;
}

.final-cta .btn-primary {
    margin-top: 20px;
}

.site-footer {
    background: #111827;
    color: #d1d5db;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

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

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

.footer-col ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #ffffff;
    padding: 20px;
    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;
}

.cookie-content p {
    margin: 0;
    font-size: 15px;
}

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

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

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .nav-menu li {
        border-bottom: 1px solid #e5e7eb;
    }

    .nav-menu a {
        display: block;
        padding: 15px 30px;
    }

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

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

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

    .testimonials-flex {
        flex-direction: column;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

@media (max-width: 480px) {
    .order-form {
        padding: 30px 20px;
    }
}