/* Page Header */
.page-header {
    background: var(--dark-bg);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: var(--text-light);
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    color: var(--text-gray);
    font-size: 18px;
    margin-bottom: 25px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Features Bar */
.features-bar {
    background: var(--secondary-color);
    padding: 25px 0;
}

.features-bar-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-bg);
    font-weight: 600;
}

.feature-bar-item i {
    font-size: 20px;
}

/* Pricing Toggle */
.pricing-toggle {
    background: #f8f9fa;
    padding: 30px 0;
}

.toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.toggle-label {
    font-size: 16px;
    font-weight: 500;
    color: #555;
}

.toggle-label.active {
    color: var(--primary-color);
    font-weight: 700;
}

.save-badge {
    background: var(--accent-color);
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    margin-left: 10px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background: var(--gradient);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

/* Hosting Pricing */
.hosting-pricing {
    background: #fff;
}

/* Hide old pricing grid */
.pricing-grid {
    display: none !important;
}

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

.pricing-card .tech-specs {
    margin: 15px 0 20px;
    padding: 10px;
    background: rgba(0, 102, 204, 0.05);
    border-radius: 5px;
}

.pricing-card .tech-specs small {
    color: #666;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card.popular .tech-specs {
    background: rgba(0, 212, 255, 0.1);
}

.pricing-card.popular .tech-specs small {
    color: var(--text-gray);
}

/* Hosting Features */
.hosting-features {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.hf-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.hf-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hf-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.hf-icon i {
    font-size: 26px;
    color: var(--text-light);
}

.hf-card h3 {
    color: var(--dark-bg);
    font-size: 18px;
    margin-bottom: 15px;
}

.hf-card p {
    color: #666;
    line-height: 1.7;
    font-size: 14px;
}

/* Supported Apps */
.supported-apps {
    padding: 60px 0;
    background: #fff;
}

.apps-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.app-item {
    text-align: center;
    transition: transform 0.3s;
}

.app-item:hover {
    transform: scale(1.1);
}

.app-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.app-item span {
    display: block;
    color: #555;
    font-weight: 500;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.faq-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 12px;
}

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

/* CTA Button */
.btn-large {
    padding: 18px 50px;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }

    .features-bar-grid {
        flex-direction: column;
        align-items: center;
    }

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

    .apps-grid {
        gap: 25px;
    }

    .app-item i {
        font-size: 36px;
    }
}
