/* Pricing Page - Single Offer Design */

body {
    background: #fafafa;
}

/* Hero Pricing */
.pricing-hero {
    padding: 160px 64px 100px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

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

.pricing-hero h1 {
    font-size: 56px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.pricing-hero > p {
    font-size: 20px;
    color: #666;
    margin-bottom: 48px;
    line-height: 1.6;
}

/* Price Box */
.price-box {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 2px solid #00a86b;
    max-width: 480px;
    margin: 0 auto;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.price-currency {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
}

.price-value {
    font-size: 80px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -3px;
    line-height: 1;
}

.price-period {
    font-size: 20px;
    color: #666;
    font-weight: 500;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #00a86b 0%, #008f5c 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 168, 107, 0.3);
    text-decoration: none;
    text-align: center;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 168, 107, 0.4);
}

.price-note {
    font-size: 13px;
    color: #999;
    margin-top: 16px;
}

/* Included Section */
.included-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 64px;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.included-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.included-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 168, 107, 0.1);
}

.included-item i {
    font-size: 28px;
    color: #00a86b;
    flex-shrink: 0;
}

.included-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.included-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* Guarantees Section */
.guarantees-section {
    background: white;
    padding: 80px 64px;
}

.guarantees-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.guarantee-card {
    text-align: center;
    padding: 40px 32px;
}

.guarantee-card i {
    font-size: 48px;
    color: #00a86b;
    margin-bottom: 20px;
}

.guarantee-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.guarantee-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 64px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-hero {
        padding: 140px 32px 80px;
    }

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

    .price-value {
        font-size: 64px;
    }

    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .included-section,
    .guarantees-section,
    .faq-section {
        padding-left: 32px;
        padding-right: 32px;
    }
}

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

    .price-box {
        padding: 32px 24px;
    }

    .price-value {
        font-size: 56px;
    }

    .included-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-card {
        padding: 24px 16px;
    }
}
