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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    /*min-height: calc(100vh - 200px);*/
}

.hero {
    text-align: center;
    color: white;
    margin: 0 auto;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

.pain-situation-section {
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.pain-situation-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pain-situation-block {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 800px;
    margin: 0 auto;
}

.pain-situation-block.warning-block {
    background: rgba(255, 200, 200, 0.15);
    border-color: rgba(255, 100, 100, 0.3);
}

.pain-situation-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.pain-situation-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pain-situation-list li {
    color: white;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 10px;
    opacity: 0.95;
}

.pain-situation-list li:last-child {
    margin-bottom: 0;
}

.pain-situation-list.warning-list li {
    color: #ffcccc;
    font-weight: 500;
}

.benefits-section {
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.benefits-title {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.benefits-intro {
    max-width: 840px;
    margin: 0 auto 50px;
    text-align: center;
}

.benefits-intro p {
    color: white;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.benefits-intro p:last-child {
    margin-bottom: 0;
}

.benefits-why {
    max-width: 800px;
    margin: 0 auto 60px;
}

.benefits-subtitle {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefits-list li {
    color: white;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 10px;
    opacity: 0.95;
}

.benefits-list li:last-child {
    margin-bottom: 0;
}

.benefits-comparison {
    max-width: 900px;
    margin: 0 auto;
}

.comparison-table-wrapper {
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    color: white;
}

.comparison-table thead {
    background: rgba(255, 255, 255, 0.15);
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.comparison-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    line-height: 1.6;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.product-section {
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.product-title {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/*.product-image-wrapper {*/
/*    position: relative;*/
/*    border-radius: 20px;*/
/*    overflow: hidden;*/
/*    background: rgba(255, 255, 255, 0.1);*/
/*    backdrop-filter: blur(10px);*/
/*    border: 1px solid rgba(255, 255, 255, 0.2);*/
/*    min-height: 400px;*/
/*    max-height: 970px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*}*/

.product-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.placeholder-content {
    text-align: center;
    color: white;
    opacity: 0.7;
}

.placeholder-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 15px;
}

.placeholder-content p {
    font-size: 1.1rem;
}

.product-steps {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.product-step {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-step-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.product-step-text {
    color: white;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    opacity: 0.95;
}

.product-step-text:last-of-type {
    margin-bottom: 0;
}

.product-step-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.product-step-list li {
    color: white;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    opacity: 0.95;
}

.product-step-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-size: 1.5rem;
    line-height: 1.4;
}

.product-step-list li:last-child {
    margin-bottom: 0;
}

.offer-cta-section {
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.offer-title {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-list li {
    color: white;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    opacity: 0.95;
}

.offer-list li:last-child {
    margin-bottom: 0;
}

.offer-subtitle {
    text-align: center;
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 50px 0 15px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.offer-subtitle-text {
    text-align: center;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.offer-pricing {
    max-width: 800px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.offer-pricing-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.offer-pricing-emoji {
    font-size: 2rem;
    flex-shrink: 0;
}

.offer-pricing-content {
    flex: 1;
}

.offer-pricing-content strong {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.offer-pricing-content p {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.offer-free-text {
    text-align: center;
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 40px 0;
}

.offer-cta-title {
    text-align: center;
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 50px 0 15px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.offer-cta-subtitle {
    text-align: center;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.offer-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.form-group select {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.2);
}

.form-group select option {
    background: #667eea;
    color: white;
    padding: 10px;
}

.form-group select option:disabled {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.offer-submit-btn {
    width: 100%;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    background: white;
    color: #667eea;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 10px;
}

.offer-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.offer-submit-btn:active:not(:disabled) {
    transform: translateY(0);
}

.offer-submit-btn:disabled {
    background: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    box-shadow: none;
}

/*.pricing-section {
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}*/

.pricing-title {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.pricing-card-featured {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.pricing-card-featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: #333;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.pricing-header {
    margin-bottom: 20px;
}

.pricing-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.pricing-savings {
    font-size: 0.9rem;
    color: #ffd700;
    font-weight: 500;
    margin-bottom: 15px;
}

.pricing-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
    color: white;
}

.pricing-note {
    text-align: center;
    color: white;
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
    margin-top: 20px;
}

.spacer {
    height: 100px;
}

footer {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.9rem;
    text-align: left;
}

.footer-right {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

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

    .footer-right {
        justify-content: center;
    }

    .pricing-title {
        font-size: 2rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .pricing-card-featured:hover {
        transform: translateY(-5px);
    }

    .pricing-section {
        padding: 50px 20px;
    }

    .pain-situation-section {
        padding: 50px 20px;
    }

    .pain-situation-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pain-situation-block {
        padding: 30px 20px;
    }

    .pain-situation-title {
        font-size: 1.5rem;
    }

    .pain-situation-list li {
        font-size: 1rem;
    }

    .benefits-section {
        padding: 50px 20px;
    }

    .benefits-title {
        font-size: 2rem;
    }

    .benefits-intro p {
        font-size: 1.1rem;
    }

    .benefits-subtitle {
        font-size: 1.5rem;
    }

    .benefits-list {
        padding: 20px 15px;
    }

    .benefits-list li {
        font-size: 1rem;
    }

    .comparison-table-wrapper {
        padding: 15px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
        font-size: 0.9rem;
    }

    .comparison-table th {
        font-size: 1rem;
    }

    .product-section {
        padding: 50px 20px;
    }

    .product-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .product-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-image-wrapper {
        min-height: 300px;
    }

    .product-image-placeholder {
        min-height: 300px;
    }

    .product-steps {
        gap: 25px;
    }

    .product-step {
        padding: 25px 20px;
    }

    .product-step-title {
        font-size: 1.3rem;
    }

    .product-step-text {
        font-size: 1rem;
    }

    .product-step-list li {
        font-size: 1rem;
    }
}

