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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #e94560;
    --accent-color: #0f3460;
    --light-bg: #f9f9f9;
    --dark-bg: #16213e;
    --text-primary: #2d2d2d;
    --text-light: #666;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

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

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

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

.centered {
    text-align: center;
}

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

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

.nav-links a {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 15px;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
    display: block;
}

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

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

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

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

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

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

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

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

.hero-visual {
    position: relative;
    height: 85vh;
    min-height: 600px;
    margin-top: 70px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    background: rgba(26, 26, 46, 0.7);
    padding: 80px 40px;
}

.hero-content {
    max-width: 680px;
    margin: 0 auto;
    color: var(--white);
    text-align: center;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 36px;
    opacity: 0.95;
}

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

.cta-primary:hover {
    background: #d13a52;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.4);
}

.cta-secondary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #0a2845;
    transform: translateY(-2px);
}

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

.curiosity-block h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: var(--primary-color);
}

.lead-text {
    font-size: 21px;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.curiosity-block p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
}

.story-section {
    padding: 120px 20px;
}

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

.story-text {
    flex: 1;
}

.story-text h3 {
    font-size: 36px;
    margin-bottom: 28px;
    color: var(--primary-color);
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 22px;
    color: var(--text-light);
}

.story-visual {
    flex: 1;
}

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

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

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

.problem-grid {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.problem-item {
    flex: 1;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.problem-item h4 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.problem-item p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

.insight-reveal {
    padding: 120px 20px;
}

.insight-wrapper {
    display: flex;
    gap: 80px;
    align-items: center;
}

.insight-image {
    flex: 1.2;
}

.insight-image img {
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.insight-content {
    flex: 1;
}

.insight-content h3 {
    font-size: 38px;
    margin-bottom: 26px;
    color: var(--primary-color);
}

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

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

.trust-building h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--primary-color);
}

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

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-style: italic;
}

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

.mid-cta {
    padding: 80px 20px;
    background: var(--secondary-color);
    color: var(--white);
}

.mid-cta h3 {
    font-size: 38px;
    margin-bottom: 18px;
}

.mid-cta p {
    font-size: 19px;
    margin-bottom: 32px;
}

.benefits-reveal {
    padding: 120px 20px;
}

.benefits-reveal h2 {
    font-size: 42px;
    margin-bottom: 70px;
    text-align: center;
    color: var(--primary-color);
}

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

.benefit-block {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    padding: 35px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

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

.benefit-block h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.benefit-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

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

.how-it-works h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--primary-color);
}

.steps-vertical {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

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

.step-content h4 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

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

.pricing-reveal h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
}

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

.pricing-cards {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
}

.price-card {
    flex: 1;
    background: var(--white);
    padding: 45px 35px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

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

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

.price-card h4 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 28px;
}

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

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

.price-features li:last-child {
    border-bottom: none;
}

.btn-price {
    display: block;
    width: 100%;
    background: var(--accent-color);
    color: var(--white);
    padding: 14px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-price:hover {
    background: #0a2845;
}

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

.addon-item {
    flex: 0 1 300px;
    padding: 25px;
    background: var(--white);
    border-radius: 8px;
    text-align: center;
}

.addon-item h5 {
    font-size: 19px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.addon-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
}

.urgency-section {
    padding: 80px 20px;
    background: var(--accent-color);
    color: var(--white);
}

.urgency-section h3 {
    font-size: 36px;
    margin-bottom: 18px;
}

.urgency-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.final-trust {
    padding: 100px 20px;
}

.final-trust h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--primary-color);
}

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

.trust-item {
    flex: 1;
    padding: 30px;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--primary-color);
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

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

.order-section h2 {
    font-size: 40px;
    margin-bottom: 16px;
    text-align: center;
    color: var(--primary-color);
}

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

.order-form {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 28px;
    flex: 1;
}

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

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

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

.form-group textarea {
    resize: vertical;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    background: var(--secondary-color);
    color: var(--white);
    padding: 16px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    transition: all 0.3s ease;
}

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

.form-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
}

.form-footer a {
    color: var(--accent-color);
    text-decoration: underline;
}

.site-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 70px 20px 30px;
}

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.85;
}

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

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

.footer-column ul li a {
    font-size: 14px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

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

.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;
    opacity: 0.7;
}

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

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

.sticky-cta-btn {
    display: block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #d13a52;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(233, 69, 96, 0.5);
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 42px;
    }

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

    .container-split {
        flex-direction: column;
        gap: 40px;
    }

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

    .insight-wrapper {
        flex-direction: column;
        gap: 40px;
    }

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

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

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

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

    .form-row {
        flex-direction: column;
    }

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

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

    .benefit-block {
        flex: 1 1 100%;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 34px;
    }

    .hero-visual {
        height: 70vh;
        min-height: 500px;
    }

    .curiosity-block h2,
    .story-text h3,
    .insight-content h3 {
        font-size: 28px;
    }

    .problem-amplification h2,
    .trust-building h2,
    .benefits-reveal h2,
    .how-it-works h2,
    .pricing-reveal h2,
    .final-trust h2,
    .order-section h2 {
        font-size: 32px;
    }

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