.hosting-hero {
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-bg);
    padding: 120px 20px 60px;
    text-align: center;
}

.hosting-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hosting-hero p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

.comparison-section {
    padding: 80px 0;
    background: var(--darker-bg);
}

.comparison-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.comparison-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.comparison-intro h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.comparison-intro p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.comparison-card {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.comparison-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2);
    transform: scale(1.05);
}

.comparison-card.featured::before {
    content: 'BEST VALUE';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gradient-1);
    color: white;
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(0, 212, 255, 0.3);
}

.comparison-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

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

.card-header {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-header img {
    margin-bottom: 0.5rem;
}

.card-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-header .provider-name {
    color: var(--primary-color);
}

.card-header .provider-name.godaddy {
    color: #1bdbdb;
}

.card-header .provider-name.squarespace {
    color: #ffffff;
}

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

.price-year1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.price-year1-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.price-year2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.price-year2-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

.price-increase {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.price-stable {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.chart-container {
    margin: 3rem 0;
    padding: 0;
}

.chart-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

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

.chart-wrapper {
    min-width: 0;
}

.individual-chart {
    position: relative;
    padding: 20px 20px 50px 20px;
    background: var(--dark-bg);
    border-radius: 15px;
    height: 400px;
    width: 100%;
}

.chart-provider-label {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.chart-provider-label.godaddy {
    color: #1bdbdb;
}

.chart-provider-label.squarespace {
    color: #ffffff;
}

.chart-provider-label.squarespace span {
    color: #ffffff;
}

.provider-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.provider-logo svg {
    height: 30px;
    width: auto;
}

.individual-y-axis {
    position: absolute;
    left: 0;
    top: 20px;
    bottom: 50px;
    width: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 10px;
}

.y-axis-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-align: right;
    font-weight: 500;
}

.individual-x-axis {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    border-top: 2px solid rgba(0, 212, 255, 0.3);
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding-top: 10px;
}

.x-axis-label {
    font-size: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
    text-align: center;
    flex: 1;
}

.individual-bars {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    width: 100%;
    align-items: flex-end;
    justify-content: center;
    height: calc(100% - 40px);
    padding-top: 0;
}

.bar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 45px;
    height: 100%;
    justify-content: flex-end;
}

.bar {
    width: 100%;
    border-radius: 8px 8px 0 0;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 0.3rem 0.2rem;
    color: white;
    font-weight: 600;
    font-size: 0.7rem;
    cursor: pointer;
    min-height: 15px;
}

.bar:hover {
    opacity: 0.9;
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.bar-year1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bar-year2 {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
}

.bar-ibyt {
    background: #00d4ff;
}

.bar-godaddy {
    background: linear-gradient(135deg, #1bdbdb 0%, #00b8b8 100%);
}

.bar-squarespace {
    background: #ff0000;
}

.bar-value {
    position: absolute;
    top: -30px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    background: rgba(10, 14, 39, 0.95);
    padding: 3px 6px;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.bar:hover .bar-value {
    opacity: 1;
}

.bar-year-label {
    margin-top: 0.4rem;
    font-size: 0.7rem;
    color: var(--text-primary);
    font-weight: 600;
    text-align: center;
}

.chart-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chart-total {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: var(--light-bg);
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    text-align: center;
    width: 100%;
}

.chart-total.expensive {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.chart-total.affordable {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.chart-total-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.chart-total-label .icon {
    font-size: 1rem;
}

.chart-total-amount {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chart-total.expensive .chart-total-amount {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chart-total.affordable .chart-total-amount {
    background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-disclaimer {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 10px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.pricing-disclaimer h4 {
    color: #ffc107;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-disclaimer p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.pricing-disclaimer ul {
    color: var(--text-secondary);
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.pricing-disclaimer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.pricing-disclaimer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.savings-section {
    background: var(--dark-bg);
    padding: 80px 0;
}

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

.savings-card {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.savings-amount {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.savings-label {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.savings-description {
    color: var(--text-primary);
    font-weight: 600;
}

.cta-section {
    padding: 80px 0;
    background: var(--darker-bg);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .comparison-cards {
        grid-template-columns: 1fr;
    }
    
    .comparison-card.featured {
        transform: scale(1);
    }
    
    .charts-grid {
        grid-template-columns: 1fr;
    }
    
    .individual-chart {
        height: 350px;
        min-width: 100%;
    }
    
    .savings-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .individual-chart {
        padding: 15px 15px 45px 15px;
        height: 300px;
    }
    
    .individual-x-axis {
        left: 0;
    }
    
    .x-axis-label {
        font-size: 0.65rem;
    }
    
    .bar {
        min-width: 35px;
        font-size: 0.65rem;
    }
    
    .bar-value {
        font-size: 0.65rem;
        top: -25px;
    }
    
    .bar-year-label {
        font-size: 0.65rem;
    }
}
    </style>
