/* Connectivity & Hosting Page */

.services-hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, rgba(26, 26, 26, 0.8) 100%);
    padding: 90px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero .hero-content {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-hero h1 {
    font-size: 48px;
    background: linear-gradient(135deg, #00c853, #00ff6b, #1de9b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    margin-bottom: 15px;
}

.services-hero p {
    color: #c0c0e0;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.services-hero .hero-accent {
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 107, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.services-nav {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.services-nav a {
    color: #00ff6b;
    text-decoration: none;
    border: 1px solid rgba(0, 200, 83, 0.4);
    padding: 8px 22px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.25s;
}

.services-nav a:hover {
    background: rgba(0, 200, 83, 0.12);
    box-shadow: 0 0 12px rgba(0, 200, 83, 0.3);
}

/* Price sections */
.price-section {
    padding: 80px 20px;
    background: var(--dark-bg);
    position: relative;
}

.price-section.alt {
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.6), var(--dark-bg));
}

.price-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00c853, transparent);
}

.price-section h2 {
    font-size: 40px;
    background: linear-gradient(135deg, #00c853, #00ff6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    font-weight: 900;
    margin-bottom: 10px;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 22px;
    margin-top: 45px;
}

/* Price card */
.price-card {
    background: rgba(24, 24, 24, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 30px 24px;
    text-align: center;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 200, 83, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.price-card.popular {
    border-color: #00c853;
    background: linear-gradient(180deg, rgba(0, 200, 83, 0.1), rgba(24, 24, 24, 0.95));
    box-shadow: 0 0 25px rgba(0, 200, 83, 0.2);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00c853, #00ff6b);
    color: #000;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 14px;
    border-radius: 12px;
    white-space: nowrap;
}

.plan-name {
    font-size: 22px;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 12px;
}

.plan-price {
    font-size: 34px;
    font-weight: 900;
    background: linear-gradient(135deg, #00c853, #00ff6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 22px;
    line-height: 1;
}

.plan-price span {
    font-size: 14px;
    font-weight: 600;
    color: #7a7a92;
    -webkit-text-fill-color: #7a7a92;
}

.plan-specs {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
    flex: 1;
}

.plan-specs li {
    color: #c0c0e0;
    font-size: 14px;
    padding: 8px 0 8px 26px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.plan-specs li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff6b;
    font-weight: 900;
}

.plan-btn {
    width: 100%;
    text-align: center;
    padding: 12px;
    font-weight: 700;
}

/* Pricing note */
.price-note {
    background: rgba(18, 18, 18, 0.9);
    padding: 35px 20px;
    text-align: center;
    border-top: 1px solid rgba(0, 200, 83, 0.15);
}

.price-note p {
    color: #8080a0;
    font-size: 15px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.price-note a {
    color: #00ff6b;
    text-decoration: none;
    font-weight: 600;
}

.price-note a:hover { text-decoration: underline; }

@media (max-width: 640px) {
    .services-hero h1 { font-size: 34px; }
    .price-section h2 { font-size: 30px; }
    .price-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .price-card { padding: 24px 16px; }
    .plan-price { font-size: 28px; }
}

@media (max-width: 420px) {
    .price-grid { grid-template-columns: 1fr; }
}
