﻿.price-hero {
    background: linear-gradient(135deg, #fa8c16 0%, #ff6b35 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

    .price-hero h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .price-hero p {
        font-size: 1.2rem;
        opacity: 0.9;
        max-width: 600px;
        margin: 0 auto;
    }

.features-grid {
    background: #f8f9fa;
    padding: 60px 0;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-5px);
    }

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fa8c16, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.pricing-tiers {
    padding: 80px 0;
    background: white;
}

.tier-card {
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

    .tier-card:hover {
        border-color: #fa8c16;
        transform: translateY(-5px);
    }

    .tier-card.featured {
        border-color: #fa8c16;
        background: linear-gradient(135deg, #fff5f0, #fff);
    }

        .tier-card.featured::before {
            content: "Most Popular";
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #fa8c16;
            color: white;
            padding: 6px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

.tier-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.tier-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fa8c16;
    margin-bottom: 20px;
}

.tier-requirement {
    color: #666;
    margin-bottom: 30px;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .tier-features li {
        padding: 8px 0;
        border-bottom: 1px solid #f0f0f0;
        color: #555;
    }

        .tier-features li:last-child {
            border-bottom: none;
        }

    .tier-features .check {
        color: #28a745;
        margin-right: 8px;
    }

    .tier-features .dash {
        color: #ccc;
        margin-right: 8px;
    }

.domain-prices {
    padding: 80px 0;
    background: #f8f9fa;
}

.price-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

    .price-table .table {
        margin: 0;
    }

        .price-table .table th {
            background: #fa8c16;
            color: white;
            border: none;
            padding: 20px;
            font-weight: 600;
        }

        .price-table .table td {
            padding: 15px 20px;
            border-bottom: 1px solid #f0f0f0;
            vertical-align: middle;
        }

        .price-table .table tr:hover {
            background: #f8f9fa;
        }

.tld-name {
    font-weight: 600;
    color: #333;
}

.price-value {
    font-weight: 700;
    color: #fa8c16;
}

.sale-badge {
    background: #dc3545;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-left: 8px;
}

.currency-selector {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    background: white;
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #333;
}

.faq-answer {
    padding: 20px;
    color: #666;
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(135deg, #fa8c16 0%, #ff6b35 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

    .cta-section h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .cta-section p {
        font-size: 1.1rem;
        opacity: 0.9;
        margin-bottom: 30px;
    }
