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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #ef4444;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    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;
    margin: 0;
    font-size: 14px;
}

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

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

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

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

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

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

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    width: calc(100% - 40px);
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s;
}

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

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

.nav-menu a:hover {
    color: var(--primary-color);
}

.hero-immersive {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.85) 0%, rgba(30, 64, 175, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    font-weight: 400;
}

.cta-primary {
    display: inline-block;
    padding: 18px 48px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
    background: #d97706;
}

.intro-hook {
    padding: 120px 20px;
    background: var(--bg-white);
}

.intro-hook h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 1.2;
}

.intro-hook p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.story-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1;
}

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

.story-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 18px;
}

.story-image {
    flex: 1;
}

.story-image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.problem-amplify h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
}

.problem-amplify > p {
    font-size: 22px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 60px;
}

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

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

.problem-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.problem-item h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.problem-item p {
    font-size: 18px;
    color: var(--text-light);
}

.insight-reveal {
    padding: 120px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.insight-reveal h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.insight-intro {
    font-size: 22px;
    text-align: center;
    margin-bottom: 60px;
    opacity: 0.95;
}

.insight-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.insight-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.insight-card p {
    font-size: 18px;
    opacity: 0.95;
}

.cta-inline-section {
    padding: 80px 20px;
    background: var(--accent-color);
    text-align: center;
}

.cta-text {
    font-size: 28px;
    color: white;
    font-weight: 600;
    margin-bottom: 28px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.trust-building h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
}

.testimonials-flow {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
}

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

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

.method-showcase {
    padding: 120px 20px;
    background: var(--bg-light);
}

.method-showcase h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
}

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

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

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

.step-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 18px;
    color: var(--text-light);
}

.benefits-grid {
    padding: 120px 20px;
    background: var(--bg-white);
}

.benefits-grid h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
}

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.benefit-card p {
    font-size: 16px;
    color: var(--text-light);
}

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

.pricing-reveal h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

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

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

.price-card {
    flex: 1 1 320px;
    max-width: 380px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    position: relative;
    transition: all 0.3s;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.price-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.price-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.price-desc {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.price-features {
    list-style: none;
    margin-bottom: 30px;
}

.price-features li {
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--border-color);
}

.price-features li:before {
    content: "✓ ";
    color: var(--success-color);
    font-weight: 700;
    margin-right: 8px;
}

.btn-select {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-select:hover {
    background: var(--secondary-color);
}

.urgency-block {
    padding: 80px 20px;
    background: #fef3c7;
    border-left: 5px solid var(--accent-color);
}

.urgency-block h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #92400e;
}

.urgency-block p {
    font-size: 18px;
    color: #78350f;
    margin-bottom: 16px;
}

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

.form-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

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

.order-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: white;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.form-note {
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
    margin-top: 16px;
}

.final-trust {
    padding: 100px 20px;
    background: var(--bg-light);
    text-align: center;
}

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

.final-trust p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.faq-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 18px;
    color: var(--text-light);
}

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

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

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

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

.footer-col p {
    font-size: 14px;
    opacity: 0.8;
}

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

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

.footer-col ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

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

.sticky-btn {
    display: block;
    padding: 16px 32px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.5);
}

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

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

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

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

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

    .intro-hook h2,
    .problem-amplify h2,
    .insight-reveal h2,
    .trust-building h2,
    .method-showcase h2,
    .benefits-grid h2,
    .pricing-reveal h2,
    .form-section h2,
    .faq-section h2 {
        font-size: 32px;
    }

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

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

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

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

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

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