/* ========== PRICING HERO ========== */
.hero {
    background: linear-gradient(135deg, var(--brand-blue) 0%, #2B5FA8 100%);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

/* ========== HOSTING TOGGLE SWITCH ========== */
.toggle-section {
    background: var(--white);
    padding: 40px 20px;
    padding-bottom: 40px;
    border-bottom: 3px solid var(--brand-blue);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.toggle-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.toggle-title {
    font-size: 24px;
    color: var(--brand-blue);
    margin-bottom: 20px;
    font-weight: 600;
}

.toggle-switch {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: var(--light-gray);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.toggle-option {
    font-size: 18px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.toggle-option.active {
    color: var(--brand-blue);
}

.toggle-slider {
    position: relative;
    width: 60px;
    height: 30px;
    background: #ccc;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s;
}

.toggle-slider.active {
    background: var(--brand-blue);
}

.toggle-slider::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: var(--white);
    border-radius: 50%;
    transition: transform 0.3s;
}

.toggle-slider.active::after {
    transform: translateX(30px);
}

.toggle-note {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 15px;
}

.managed-note {
    font-size: 16px;
    color: var(--brand-blue);
    margin-top: 10px;
    font-weight: 600;
}

/* ========== PRICING CARDS ========== */
.pricing-section {
    max-width: 1200px;
    margin: 30px auto 60px;
    padding: 0 20px;
}

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

.pricing-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    position: relative;
    border: 1px solid var(--border-light);
}

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

.pricing-card.featured {
    border: 3px solid var(--brand-red);
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card.featured .badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--brand-red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.tier-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 10px;
}

.tier-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    min-height: 40px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: var(--brand-red);
    margin-bottom: 5px;
}

.price-period {
    font-size: 18px;
    color: #666;
    margin-bottom: 5px;
}

.price-annual {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

.hosting-note {
    background: var(--light-blue);
    padding: 12px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 25px;
    color: #333;
}

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

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.features-list li:before {
    content: '✓ ';
    color: var(--brand-blue);
    font-weight: bold;
    margin-right: 8px;
}

.tier-cta {
    display: block;
    background: var(--brand-blue);
    color: var(--white);
    text-align: center;
    padding: 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: background 0.3s;
}

.tier-cta:hover {
    background: #163A75;
}

/* ========== IMPLEMENTATION FEE SECTION ========== */
.implementation-section {
    max-width: 1200px;
    margin: 40px auto 60px;
    padding: 40px 24px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid var(--border-light);
}

.implementation-section h2 {
    font-size: 32px;
    color: var(--brand-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.implementation-section .price-highlight {
    font-size: 56px;
    font-weight: 700;
    color: var(--brand-red);
    margin: 20px 0;
}

.implementation-section p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 15px auto;
}

.implementation-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.implementation-feature {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.implementation-feature h3 {
    color: var(--brand-blue);
    font-size: 18px;
    margin-bottom: 10px;
}

.implementation-feature p {
    font-size: 14px;
    color: #666;
}

/* ========== MANAGED HOSTING SECTION ========== */
.managed-hosting-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px 24px;
    background: var(--light-blue);
    border-radius: 12px;
    border: 2px solid var(--brand-blue);
}

.managed-hosting-section h2 {
    color: var(--brand-blue);
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.managed-hosting-section p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
}

.managed-pricing {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    border: 1px solid var(--border-light);
}

.managed-pricing h3 {
    color: var(--brand-blue);
    margin-bottom: 15px;
}

.managed-pricing ul {
    list-style: none;
    padding-left: 0;
}

.managed-pricing ul li {
    padding: 10px 0;
    font-size: 16px;
}

.managed-pricing ul li:before {
    content: '✓ ';
    color: var(--brand-blue);
    font-weight: bold;
    margin-right: 8px;
}

/* ========== PRICING RESPONSIVE STYLES ========== */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
        margin: 15px 0;
    }

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

    .implementation-features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}