/* Enhanced Background Elements */
.floating-dot {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: pulse 3s infinite;
}

.floating-dot-1 {
    top: 15%;
    left: 10%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.floating-dot-2 {
    bottom: 20%;
    right: 15%;
    width: 60px;
    height: 60px;
    animation-delay: 1s;
}

.floating-dot-3 {
    top: 40%;
    right: 20%;
    width: 40px;
    height: 40px;
    animation-delay: 2s;
}

/* Animated Background Particles */
.bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: floatParticle 15s infinite linear;
}

.particle-1 {
    width: 4px;
    height: 4px;
    left: 20%;
    animation-delay: 0s;
}

.particle-2 {
    width: 6px;
    height: 6px;
    left: 80%;
    animation-delay: 5s;
}

.particle-3 {
    width: 3px;
    height: 3px;
    left: 40%;
    animation-delay: 10s;
}

.particle-4 {
    width: 5px;
    height: 5px;
    left: 60%;
    animation-delay: 15s;
}

.particle-5 {
    width: 4px;
    height: 4px;
    left: 90%;
    animation-delay: 7s;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Premium Badge Enhancement */
.premium-badge {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.flag-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.badge-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Clean Hero Title */
.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line-1 {
    font-size: 2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.title-line-2 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 0.9;
    margin: 0.5rem 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.title-line-3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

/* Flash Deal Pricing */
.flash-deal {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(251, 191, 36, 0.5);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
}

.deal-timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(251, 191, 36, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    width: fit-content;
}

.timer-icon {
    animation: flash 1.5s infinite;
}

@keyframes flash {
    0%, 50% { opacity: 1; }
    25%, 75% { opacity: 0.5; }
}

.animate-pulse {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        text-shadow: 0 0 5px #fbbf24, 0 0 10px #fbbf24;
    }
    50% {
        text-shadow: 0 0 20px #fbbf24, 0 0 30px #fbbf24, 0 0 40px #fbbf24;
    }
}

.price-display-hero {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 0.5rem 0;
}

.price-display-hero .currency {
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
}

.price-display-hero .price-amount {
    font-size: 4rem;
    font-weight: 900;
    color: #10b981;
    margin: 0 0.25rem;
}

.price-display-hero .price-period {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.savings-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(15deg);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

/* Enhanced Benefits */
.enhanced-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.premium-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.premium-benefit:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon-wrapper {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon-wrapper svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

/* Clean CTA Button */
.clean-cta {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    color: #1f2937;
    border: 2px solid #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.clean-cta:hover {
    background: linear-gradient(135deg, #f8fafc, #e5e7eb);
    color: #111827;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: btnShine 3s infinite;
}

@keyframes btnShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.demo-btn {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 1rem 2rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.demo-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    width: fit-content;
}

.guarantee-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Enhanced Trust Badges */
.trust-badges-section {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.premium-trust {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.premium-trust:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-label {
    font-size: 0.75rem;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.7);
}

.badge-title {
    font-weight: 600;
    font-size: 0.875rem;
    color: white;
}

/* Clean Hero Visual */
.clean-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Simple Metrics Display */
.simple-metrics {
    margin-bottom: 2rem;
}

.simple-metrics h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.clean-metrics {
    gap: 1.5rem;
}

.clean-metric {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.clean-metric:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.clean-metric .metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: #10b981;
    display: block;
    margin-bottom: 0.5rem;
}

.clean-metric .metric-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Clean Server Status */
.clean-status {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.clean-status .status-indicator {
    background: rgba(16, 185, 129, 0.2);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    color: #10b981;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.clean-status .location-info {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Clean Features */
.clean-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.clean-features .feature-icon {
    text-align: center;
    padding: 1.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.clean-features .feature-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.clean-features .feature-icon svg {
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.75rem;
    color: #10b981;
}

.clean-features .feature-icon span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    display: block;
}

/* Enhanced Metrics Display */
.enhanced-metrics {
    margin-bottom: 2rem;
}

.metrics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #10b981;
}

.live-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.advanced-metrics {
    gap: 2rem;
}

.primary-metric {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.primary-metric:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.metric-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.metric-value {
    font-size: 3rem;
    font-weight: 900;
    color: #10b981;
    line-height: 1;
}

.metric-unit {
    font-size: 1.5rem;
    color: #10b981;
    font-weight: 700;
}

.metric-trend {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.metric-trend.up {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

/* Premium Server Status */
.premium-status {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.status-header h4 {
    color: white;
    font-weight: 600;
    margin: 0;
}

.operational {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: #10b981;
    font-weight: 600;
    font-size: 0.875rem;
}

.animated-pulse {
    animation: pulse 2s infinite;
}

.server-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.server-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.location-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #10b981;
}

.server-stats {
    display: flex;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
}

.stat-item .stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Premium Features */
.premium-features {
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.advanced-feature {
    position: relative;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.advanced-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.feature-icon-bg {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    transition: all 0.3s ease;
}

.feature-icon-bg.ssd {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.feature-icon-bg.ssl {
    background: linear-gradient(135deg, #10b981, #059669);
}

.feature-icon-bg.turbo {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.feature-icon-bg svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.advanced-feature:hover .feature-icon-bg {
    transform: scale(1.1) rotate(5deg);
}

.feature-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
    font-size: 0.625rem;
    font-weight: 700;
    transform: rotate(12deg);
}

/* Performance Chart */
.performance-chart {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.chart-period {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 60px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, #dc2626, #ef4444);
    border-radius: 0.25rem 0.25rem 0 0;
    transition: all 0.3s ease;
    animation: chartGrow 2s ease-out forwards;
    opacity: 0.7;
}

.chart-bar.active {
    background: linear-gradient(to top, #10b981, #34d399);
    opacity: 1;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.chart-bar:hover {
    opacity: 1;
    transform: scaleY(1.1);
}

@keyframes chartGrow {
    0% {
        transform: scaleY(0);
    }
    100% {
        transform: scaleY(1);
    }
}

/* Customer Activity Feed */
.activity-feed {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
}

.activity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.activity-count {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.activity-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.activity-avatar {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
}

.activity-item span:nth-child(2) {
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.activity-time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

/* Floating Social Proof */
.floating-social-proof {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    color: white;
    animation: floatUp 3s ease-in-out infinite;
}

@keyframes floatUp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.social-proof-item {
    text-align: center;
}

.proof-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #10b981;
    margin-bottom: 0.25rem;
}

.proof-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter {
    animation: countUp 1s ease-out forwards;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 1024px) {
    .title-line-2 {
        font-size: 3rem;
    }
    
    .enhanced-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-buttons-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .trust-badges-section {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .bg-particles {
        display: none;
    }
    
    .title-line-1 {
        font-size: 1.5rem;
    }
    
    .title-line-2 {
        font-size: 2.5rem;
    }
    
    .title-line-3 {
        font-size: 1.75rem;
    }
    
    .price-display-hero .price-amount {
        font-size: 3rem;
    }
    
    .enhanced-benefits {
        margin: 2rem 0;
    }
    
    .premium-benefit {
        padding: 1rem;
    }
    
    .mega-cta {
        font-size: 1.125rem;
        padding: 1.25rem 2rem;
    }
    
    .floating-social-proof {
        position: relative;
        left: auto;
        bottom: auto;
        margin: 2rem auto 0 auto;
        width: fit-content;
    }
    
    .advanced-metrics {
        gap: 1rem;
    }
    
    .server-stats {
        gap: 1rem;
    }
    
    .chart-bars {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        gap: 0.25rem;
    }
    
    .title-line-1 {
        font-size: 1.25rem;
    }
    
    .title-line-2 {
        font-size: 2rem;
    }
    
    .title-line-3 {
        font-size: 1.5rem;
    }
    
    .premium-benefit {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .trust-badges-section {
        flex-direction: column;
    }
    
    .advanced-metrics {
        grid-template-columns: 1fr;
    }
    
    .server-stats {
        justify-content: center;
    }
    
    .premium-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}/* Mobile Large (768px) */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 4rem 0 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-benefits {
        grid-template-columns: 1fr;
    }
    
    .hosting-card {
        padding: 1.5rem;
    }
    
    /* Performance Section Mobile */
    .performance-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .performance-card {
        padding: 1.5rem;
    }
    
    .performance-metrics {
        grid-template-columns: 1fr;
    }
    
    .awards-showcase {
        grid-template-columns: 1fr;
    }
    
    .award-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .badge-text {
        text-align: center;
    }
    
    .industry-recognition {
        padding: 2rem;
    }
    
    /* Comparison Table Mobile */
    .comparison-table {
        min-width: 600px;
    }
    
    .table-header,
    .feature-category,
    .feature-row,
    .table-footer {
        grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    }
    
    .feature-column,
    .plan-column {
        padding: 1rem;
    }
    
    .feature-name {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .feature-value {
        padding: 0.75rem 0.5rem;
        font-size: 0.875rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    /* Why Choose Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .feature-stats {
        grid-template-columns: 1fr;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .award-item {
        flex-direction: column;
        text-align: center;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .awards-section,
    .tech-stack {
        padding: 2rem;
    }
    
    /* Pricing Mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-toggle {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-card.featured {
        transform: none;
    }
    
    .testimonials-secondary {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .support-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .support-cta {
        padding: 2rem;
    }
    
    /* Hosting Types Mobile */
    .hosting-types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hosting-type-card {
        padding: 1.5rem;
    }
    
    .hosting-type-card.featured {
        transform: none;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .use-cases-section {
        padding: 2rem;
    }
    
    /* FAQ Mobile */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-answer.active {
        padding: 1rem;
    }
    
    .cta-card {
        padding: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-faq {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Small (480px) */
@media (max-width: 480px) {
    .comparison-table {
        min-width: 500px;
    }
    
    .plan-header h4 {
        font-size: 1rem;
    }
    
    .plan-price {
        font-size: 1.25rem;
    }
    
    .btn-choose {
        font-size: 0.875rem;
        padding: 0.5rem;
        margin: 0 0.5rem;
    }
    
    .performance-card .card-content h3 {
        font-size: 1.25rem;
    }
    
    .card-icon {
        width: 3rem;
        height: 3rem;
    }
    
    .card-icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    /* Why Choose Mobile Small */
    .feature-card h3 {
        font-size: 1.25rem;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-icon {
        width: 3rem;
        height: 3rem;
    }
    
    .feature-icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    /* Pricing Mobile Small */
    .price-display {
        flex-direction: column;
        align-items: center;
    }
    
    .currency {
        font-size: 1.25rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    /* Testimonials Mobile Small */
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .author-avatar {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Hosting Types Mobile Small */
    .hosting-type-card .card-content h3 {
        font-size: 1.25rem;
    }
    
    .hosting-types-section .card-icon {
        width: 3rem;
        height: 3rem;
    }
    
    .hosting-types-section .card-icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .use-case-card {
        flex-direction: column;
        text-align: center;
    }
    
    .use-case-icon {
        align-self: center;
    }
    
    /* FAQ Mobile Small */
    .faq-question {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .faq-icon {
        align-self: flex-end;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}/* ================================
   HOSTING PAGE STYLES
   Complete CSS for hosting website
   ================================ */

/* ================================
   GLOBAL STYLES & ANIMATIONS
   ================================ */

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   COMMON COMPONENTS
   ================================ */

.container-custom {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626, #1e40af);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #dc2626, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Button Styles */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background: white;
    color: #dc2626;
    border: 2px solid #dc2626;
}

.btn-secondary:hover {
    background: #dc2626;
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* ================================
   HERO SECTION - ENHANCED
   ================================ */

.hero-section {
    background: linear-gradient(135deg, #1e40af 0%, #dc2626 50%, #1e3a8a 100%);
    color: white;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 2;
}

/* Hero Floating Elements */
.floating-dot {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: pulse 3s infinite;
}

.floating-dot-1 {
    top: 15%;
    left: 10%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.floating-dot-2 {
    bottom: 20%;
    right: 15%;
    width: 60px;
    height: 60px;
    animation-delay: 1s;
}

.floating-dot-3 {
    top: 40%;
    right: 20%;
    width: 40px;
    height: 40px;
    animation-delay: 2s;
}

/* Hero Content */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
}

.pricing-highlight {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-highlight h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.discount {
    color: #fbbf24;
    font-weight: 700;
}

.price-info {
    font-size: 1.1rem;
}

.price-current {
    color: #10b981;
    font-weight: 700;
    font-size: 1.3rem;
}

.price-old {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
    font-weight: 500;
}

.benefit-icon {
    width: 1rem;
    height: 1rem;
    color: #10b981;
    flex-shrink: 0;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
}

.badge-label {
    font-size: 0.75rem;
    opacity: 0.8;
    display: block;
}

.badge-title {
    font-weight: 600;
    font-size: 0.875rem;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
}

.hosting-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 400px;
    width: 100%;
}

.metrics-display {
    text-align: center;
    margin-bottom: 2rem;
}

.metrics-display h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.server-status {
    margin-bottom: 2rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.2);
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.status-dot {
    width: 0.75rem;
    height: 0.75rem;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.location-info {
    text-align: center;
    opacity: 0.8;
    font-size: 0.875rem;
}

.feature-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.feature-icon {
    text-align: center;
    padding: 1rem 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.5rem;
    color: #10b981;
}

.feature-icon span {
    font-size: 0.75rem;
    display: block;
}

/* ================================
   PERFORMANCE STATS SECTION
   ================================ */

.performance-stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e40af 0%, #dc2626 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.performance-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.performance-stats-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 2;
}

.performance-stats-section .section-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.performance-stats-section .section-title {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.performance-stats-section .gradient-text {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.performance-stats-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Performance Grid */
.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.performance-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out forwards;
}

.performance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.performance-card.turbo::before {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.performance-card.support::before {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.performance-card.migration::before {
    background: linear-gradient(135deg, #10b981, #059669);
}

.performance-card.guarantee::before {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.performance-card.uptime::before {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.performance-card.gdpr::before {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.performance-card:hover::before {
    transform: scaleX(1);
}

.performance-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.2);
}

.performance-card:nth-child(2) { animation-delay: 0.1s; }
.performance-card:nth-child(3) { animation-delay: 0.2s; }
.performance-card:nth-child(4) { animation-delay: 0.3s; }
.performance-card:nth-child(5) { animation-delay: 0.4s; }
.performance-card:nth-child(6) { animation-delay: 0.5s; }

.card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.3s ease;
}

.card-icon svg {
    width: 2rem;
    height: 2rem;
}

.performance-card:hover .card-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.card-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.performance-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.performance-metrics .metric {
    text-align: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.performance-card:hover .performance-metrics .metric {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.metric-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Industry Recognition */
.industry-recognition {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
}

.recognition-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.recognition-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.awards-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.award-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.award-badge:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.badge-icon {
    font-size: 2rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.badge-text {
    text-align: left;
}

.badge-title {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.badge-year {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ================================
   FEATURES COMPARISON SECTION
   ================================ */

.features-comparison-section {
    padding: 4rem 0;
    background: white;
}

.features-comparison-section .section-header {
    margin-bottom: 3rem;
    max-width: 600px;
}

/* Comparison Table */
.comparison-wrapper {
    overflow-x: auto;
    margin-bottom: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    min-width: 800px;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.feature-column {
    padding: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    border-right: 1px solid #e5e7eb;
}

.plan-column {
    padding: 1.5rem;
    text-align: center;
    border-right: 1px solid #e5e7eb;
    position: relative;
}

.plan-column:last-child {
    border-right: none;
}

.plan-column.featured {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    position: relative;
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #dc2626;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.plan-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #dc2626;
}

.plan-price span {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Feature Categories */
.feature-category {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    background: #f9fafb;
}

.category-header {
    grid-column: 1 / -1;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.category-header h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin: 0;
}

/* Feature Rows */
.feature-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid #e5e7eb;
    transition: background-color 0.2s ease;
}

.feature-row:hover {
    background: #f9fafb;
}

.feature-name {
    padding: 1rem 1.5rem;
    font-weight: 500;
    color: #374151;
    border-right: 1px solid #e5e7eb;
}

.feature-value {
    padding: 1rem;
    text-align: center;
    font-weight: 500;
    color: #1f2937;
    border-right: 1px solid #e5e7eb;
}

.feature-value:last-child {
    border-right: none;
}

.feature-value.check {
    color: #10b981;
    font-size: 1.25rem;
}

.feature-value.cross {
    color: #ef4444;
    font-size: 1.25rem;
}

/* Table Footer */
.table-footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    background: #f9fafb;
    padding: 1.5rem 0;
}

.btn-choose {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 1rem;
}

.btn-primary {
    background: #dc2626;
    color: white;
    border: 2px solid #dc2626;
}

.btn-primary:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

/* Additional Info */
.additional-info {
    margin-top: 3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.info-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* ================================
   WHY CHOOSE SECTION
   ================================ */

.why-choose-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23dc2626' fill-opacity='0.03'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #dc2626, #1e40af);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    border-color: #dc2626;
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.feature-icon.speed {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.feature-icon.support {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.feature-icon.migration {
    background: linear-gradient(135deg, #10b981, #059669);
}

.feature-icon.guarantee {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.feature-icon.uptime {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.feature-icon.gdpr {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: auto;
}

.stat {
    text-align: center;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    animation: countUp 0.6s ease-out forwards;
}

.stat:nth-child(2) {
    animation-delay: 0.1s;
}

.stat-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

.feature-card:hover .stat {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border-color: #fca5a5;
}

.feature-card:hover .stat-number {
    color: #dc2626;
}

/* Awards Section */
.awards-section {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.awards-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.awards-section p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.award-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.award-badge {
    font-size: 2rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.award-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.award-info p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

/* Technology Stack */
.tech-stack {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.tech-stack h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.tech-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #dc2626;
    background: white;
}

.tech-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.tech-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    text-align: center;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   PRICING SECTION
   ================================ */

.pricing-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-label {
    font-weight: 500;
    color: #374151;
}

.save-badge {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

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

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

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

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

input:checked + .toggle-slider {
    background-color: #dc2626;
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    border-color: #dc2626;
}

.pricing-card.featured {
    border-color: #dc2626;
    transform: scale(1.05);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #dc2626;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.card-header {
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.plan-description {
    color: #6b7280;
    font-size: 0.875rem;
}

.pricing-info {
    margin-bottom: 2rem;
    text-align: center;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #dc2626;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #dc2626;
    margin: 0 0.25rem;
}

.price-period {
    font-size: 1rem;
    color: #6b7280;
}

.price-note {
    text-align: center;
}

.original-price {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.25rem;
}

.billing-note {
    color: #6b7280;
    font-size: 0.75rem;
    line-height: 1.4;
}

.plan-features {
    margin-bottom: 2rem;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #374151;
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #10b981;
    flex-shrink: 0;
}

.btn-plan {
    width: 100%;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

/* Pricing Notes */
.pricing-notes {
    text-align: center;
    margin-bottom: 3rem;
    color: #6b7280;
}

.pricing-notes p {
    margin-bottom: 0.5rem;
}

/* Customer Stats */
.customer-stats {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #dc2626, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
    font-size: 0.875rem;
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */

.testimonials-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23dc2626' fill-opacity='0.02' fill-rule='evenodd'%3E%3Cpath d='m0 40l40-40h-40z'/%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

/* Main Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.6s ease-out forwards;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #dc2626, #1e40af);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    border-color: #dc2626;
}

.testimonial-card.featured {
    border-color: #dc2626;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    transform: scale(1.02);
}

.testimonial-card.featured::before {
    transform: scaleX(1);
}

.testimonial-card:nth-child(2) { animation-delay: 0.1s; }
.testimonial-card:nth-child(3) { animation-delay: 0.2s; }

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.stars-rating {
    display: flex;
    gap: 0.25rem;
}

.star {
    font-size: 1.25rem;
    color: #fbbf24;
}

.verified-badge {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.testimonial-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.testimonial-quote {
    color: #374151;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid #dc2626;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: #dc2626;
    position: absolute;
    left: -2rem;
    top: -1rem;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #dc2626, #1e40af);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 1rem;
}

.author-role {
    color: #6b7280;
    font-size: 0.875rem;
}

.author-location {
    color: #9ca3af;
    font-size: 0.75rem;
}

/* Secondary Testimonials */
.testimonials-secondary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.testimonial-card-small {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.testimonial-card-small:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #dc2626;
}

.testimonial-card-small .stars-rating {
    margin-bottom: 1rem;
}

.testimonial-card-small .star {
    font-size: 1rem;
}

.testimonial-card-small blockquote {
    color: #374151;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-style: italic;
}

.author-compact {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-compact .author-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.875rem;
}

.author-compact .author-role {
    color: #6b7280;
    font-size: 0.75rem;
}

/* Trust Stats */
.trust-stats {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

/* Support CTA */
.support-cta {
    background: linear-gradient(135deg, #1e40af, #dc2626);
    color: white;
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.support-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    color: white;
}

.cta-content p {
    font-size: 1.125rem;
    color: white;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-cta.primary {
    background: white;
    color: #dc2626;
    border-color: white;
}

.btn-cta.primary:hover {
    background: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: #b91c1c;
}

.btn-cta.secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.8);
}

.btn-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.support-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.support-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.support-feature .feature-icon {
    font-size: 1.25rem;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   HOSTING TYPES SECTION
   ================================ */

.hosting-types-section {
    padding: 4rem 0;
    background: white;
    position: relative;
}

/* Hosting Types Grid */
.hosting-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.hosting-type-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: slideInUp 0.6s ease-out forwards;
}

.hosting-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #dc2626, #1e40af);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.hosting-type-card:hover::before {
    transform: scaleX(1);
}

.hosting-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    border-color: #dc2626;
}

.hosting-type-card.featured {
    border-color: #dc2626;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    transform: scale(1.02);
}

.hosting-type-card.featured::before {
    transform: scaleX(1);
}

.hosting-type-card.featured:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 35px rgba(220, 38, 38, 0.2);
}

.hosting-type-card.featured .card-content h3 {
    color: #dc2626;
}

.hosting-type-card.featured .features-list span {
    color: #b91c1c;
    font-weight: 600;
}

/* Animation delays for staggered effect */
.hosting-type-card:nth-child(2) { animation-delay: 0.1s; }
.hosting-type-card:nth-child(3) { animation-delay: 0.2s; }
.hosting-type-card:nth-child(4) { animation-delay: 0.3s; }
.hosting-type-card:nth-child(5) { animation-delay: 0.4s; }
.hosting-type-card:nth-child(6) { animation-delay: 0.5s; }
.hosting-type-card:nth-child(7) { animation-delay: 0.6s; }
.hosting-type-card:nth-child(8) { animation-delay: 0.7s; }

.featured-badge {
    position: absolute;
    top: -12px;
    right: 1rem;
    background: #dc2626;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.hosting-types-section .card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.card-icon.shared {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.card-icon.wordpress {
    background: linear-gradient(135deg, #0891b2, #0e7490);
}

.card-icon.vps {
    background: linear-gradient(135deg, #10b981, #059669);
}

.card-icon.dedicated {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.card-icon.reseller {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.card-icon.email {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.card-icon.turbo {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.card-icon.cpanel {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.hosting-types-section .card-icon svg {
    width: 2rem;
    height: 2rem;
}

.hosting-type-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-content {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.hosting-type-card .card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hosting-type-card .card-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.features-list span {
    font-size: 0.875rem;
    color: #374151;
    font-weight: 500;
}

.hosting-type-card:hover .features-list span {
    color: #dc2626;
    font-weight: 600;
}

.card-link {
    color: #dc2626;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

.card-link:hover {
    color: #b91c1c;
    transform: translateX(4px);
    text-decoration: none;
}

/* Use Cases Section */
.use-cases-section {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 1rem;
}

.use-cases-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 2rem;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.use-case-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #dc2626;
}

.use-case-icon {
    font-size: 2.5rem;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border-radius: 0.75rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.use-case-card:hover .use-case-icon {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: scale(1.1);
}

.use-case-content {
    flex-grow: 1;
}

.use-case-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    text-transform: capitalize;
}

.use-case-content p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.use-case-link {
    color: #dc2626;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.use-case-link:hover {
    color: #b91c1c;
    text-decoration: none;
}

/* ================================
   FAQ SECTION
   ================================ */

.faq-section {
    padding: 4rem 0;
    background: white;
    position: relative;
}

.faq-section .section-header {
    margin-bottom: 4rem;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
}

.faq-item:nth-child(2) { animation-delay: 0.1s; }
.faq-item:nth-child(3) { animation-delay: 0.2s; }
.faq-item:nth-child(4) { animation-delay: 0.3s; }
.faq-item:nth-child(5) { animation-delay: 0.4s; }

.faq-item:hover {
    border-color: #dc2626;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.faq-item.active {
    border-color: #dc2626;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #dc2626;
}

.faq-item.active .faq-question {
    color: #dc2626;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
}

.faq-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #6b7280;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #dc2626;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f9fafb;
}

.faq-answer.active {
    max-height: 200px;
    padding: 1.5rem;
}

.faq-answer p {
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

/* FAQ CTA */
.faq-cta {
    margin-bottom: 4rem;
}

.cta-card {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #dc2626, #1e40af);
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #6b7280;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-faq {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-faq.primary {
    background: #dc2626;
    color: white;
    border-color: #dc2626;
}

.btn-faq.primary:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
    text-decoration: none;
    color: white;
}

.btn-faq.secondary {
    background: white;
    color: #dc2626;
    border-color: #dc2626;
}

.btn-faq.secondary:hover {
    background: #dc2626;
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Popular Topics */
.popular-topics {
    text-align: center;
}

.popular-topics h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.topic-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    text-decoration: none;
    color: #374151;
    transition: all 0.3s ease;
}

.topic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #dc2626;
    text-decoration: none;
    color: #dc2626;
}

.topic-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.topic-card span {
    font-weight: 500;
    font-size: 0.875rem;
    text-align: center;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

/* Desktop Large (1024px+) */
@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero-subtitle {
        margin-left: 0;
        margin-right: auto;
    }
}

/* Tablet (768px-1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-benefits {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile Large (768px) */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 4rem 0 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-benefits {
        grid-template-columns: 1fr;
    }
    
    .hosting-card {
        padding: 1.5rem;
    }
    
    /* Performance Section Mobile */
    .performance-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .performance-card {
        padding: 1.5rem;
    }
    
    .performance-metrics {
        grid-template-columns: 1fr;
    }
    
    .awards-showcase {
        grid-template-columns: 1fr;
    }
    
    .award-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .badge-text {
        text-align: center;
    }
    
    .industry-recognition {
        padding: 2rem;
    }
    
    /* Comparison Table Mobile */
    .comparison-table {
        min-width: 600px;
    }
    
    .table-header,
    .feature-category,
    .feature-row,
    .table-footer {
        grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    }
    
    .feature-column,
    .plan-column {
        padding: 1rem;
    }
    
    .feature-name {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .feature-value {
        padding: 0.75rem 0.5rem;
        font-size: 0.875rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    /* FAQ Mobile */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-answer.active {
        padding: 1rem;
    }
    
    .cta-card {
        padding: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-faq {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Small (480px) */
@media (max-width: 480px) {
    .comparison-table {
        min-width: 500px;
    }
    
    .plan-header h4 {
        font-size: 1rem;
    }
    
    .plan-price {
        font-size: 1.25rem;
    }
    
    .btn-choose {
        font-size: 0.875rem;
        padding: 0.5rem;
        margin: 0 0.5rem;
    }
    
    .performance-card .card-content h3 {
        font-size: 1.25rem;
    }
    
    .card-icon {
        width: 3rem;
        height: 3rem;
    }
    
    .card-icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .faq-question {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .faq-icon {
        align-self: flex-end;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

/* ================================
   UTILITY CLASSES
   ================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-90 { opacity: 0.9; }

/* ================================
   PRINT STYLES
   ================================ */

@media print {
    .hero-section,
    .performance-stats-section {
        background: white !important;
        color: black !important;
    }
    
    .performance-card,
    .hosting-card,
    .cta-card,
    .info-card {
        background: white !important;
        border: 1px solid #ccc !important;
        box-shadow: none !important;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-faq {
        border: 1px solid #ccc !important;
        background: white !important;
        color: black !important;
    }
}