/* Hosting Hero Section */
.hosting-hero {
    background: var(--gradient-blue);
    color: white;
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hosting-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.partner-logos-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tslgc-logo, .hostrahost-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.partner-plus {
    font-size: 24px;
    font-weight: 700;
    opacity: 0.8;
}

.hosting-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hosting-hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    opacity: 0.9;
    transition: var(--transition);
}

.feature:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.feature img {
    width: 24px;
    height: 24px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

/* Hosting Overview */
.hosting-overview {
    padding: 100px 0;
    background: var(--background-white);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
    line-height: 1.2;
}

.overview-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--background-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.benefit:hover {
    background: var(--primary-color);
    transform: translateX(10px);
}

.benefit:hover h4,
.benefit:hover p {
    color: white;
}

.benefit img {
    width: 24px;
    height: 24px;
    margin-top: 5px;
    transition: var(--transition);
}

.benefit:hover img {
    filter: brightness(0) invert(1);
}

.benefit h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    transition: var(--transition);
}

.benefit p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    transition: var(--transition);
}

.overview-image {
    position: relative;
}

.overview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
}

/* Hosting Plans */
.hosting-plans {
    padding: 100px 0;
    background: var(--background-light);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.plan-card {
    background: var(--background-white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.plan-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

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

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-orange);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-header {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.plan-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.plan-header p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.plan-price .currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

.plan-price .amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
}

.plan-price .period {
    font-size: 16px;
    color: var(--text-light);
}

.plan-features {
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 8px 0;
}

.feature img {
    width: 18px;
    height: 18px;
}

.feature span {
    color: var(--text-dark);
    font-weight: 500;
}

.plan-card .btn {
    width: 100%;
}

/* Features Comparison */
.features-comparison {
    padding: 100px 0;
    background: var(--background-white);
}

.comparison-table {
    background: var(--background-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: var(--primary-color);
    color: white;
    font-weight: 700;
    text-align: center;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.table-row:hover {
    background: var(--background-light);
}

.feature-column, .plan-column {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.feature-column {
    justify-content: flex-start;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
}

.plan-column {
    color: var(--text-light);
    font-weight: 500;
}

/* Partner Section */
.partner-section {
    padding: 100px 0;
    background: var(--background-light);
}

.partner-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.partner-info {
    text-align: center;
}

.partner-info img {
    height: 60px;
    width: auto;
    margin-bottom: 25px;
}

.partner-info h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.partner-info p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partner-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.stat {
    text-align: center;
    padding: 25px 15px;
    background: var(--background-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stat .number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat .label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-support {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.support-card {
    background: var(--background-white);
    padding: 35px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
}

.support-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.support-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.support-card .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.support-card .btn img {
    width: 20px;
    height: 20px;
}

/* Hosting CTA */
.hosting-cta {
    padding: 100px 0;
    background: var(--gradient-blue);
    color: white;
    text-align: center;
}

.hosting-cta h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hosting-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hosting-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .plan-card.featured {
        transform: scale(1);
    }
    
    .plan-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .partner-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .partner-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hosting-hero {
        padding: 150px 0 80px;
    }
    
    .hosting-hero h1 {
        font-size: 2.5rem;
    }
    
    .hosting-hero p {
        font-size: 1.1rem;
    }
    
    .partner-logos-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-features {
        gap: 20px;
    }
    
    .feature {
        font-size: 14px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        display: block;
    }
    
    .feature-column,
    .plan-column {
        justify-content: center;
        text-align: center;
        padding: 15px;
    }
    
    .table-header .feature-column {
        display: none;
    }
    
    .partner-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hosting-cta h2 {
        font-size: 32px;
    }
    
    .hosting-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hosting-cta .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hosting-hero h1 {
        font-size: 2rem;
    }
    
    .tslgc-logo, .hostrahost-logo {
        height: 50px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit {
        padding: 15px;
    }
    
    .plan-card {
        padding: 30px 20px;
    }
    
    .plan-price .amount {
        font-size: 36px;
    }
    
    .partner-stats {
        grid-template-columns: 1fr;
    }
    
    .support-card {
        padding: 25px 20px;
    }
}