/* ================================================
   services.html — Page-specific styles
   Requires: v8.css
   ================================================ */

/* Page header override — wider subtitle */
.page-header p {
    max-width: 560px;
}

/* ======================== */
/* Service Blocks           */
/* ======================== */

.service-block {
    margin-bottom: 4rem;
}

.service-block:last-child {
    margin-bottom: 0;
}

.service-block h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: -0.015em;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.service-block p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.service-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.service-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

/* ======================== */
/* Deliverables List        */
/* ======================== */

.deliverables {
    list-style: none;
    margin: 1.25rem 0;
}

.deliverables li {
    padding: 0.6rem 0;
    padding-left: 1.6rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.deliverables li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.5;
}

.deliverables li strong {
    color: var(--text);
}

/* ======================== */
/* Pricing Note             */
/* ======================== */

.pricing-note {
    background: rgba(13, 148, 136, 0.04);
    border-left: 3px solid var(--accent);
    padding: 1rem 1.5rem;
    border-radius: 0 6px 6px 0;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pricing-note strong {
    color: var(--text);
}

/* ======================== */
/* Service Separator        */
/* ======================== */

.service-sep {
    height: 1px;
    background: var(--border);
    margin: 4rem 0;
}

/* ======================== */
/* Hosting Cards            */
/* ======================== */

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

.hosting-card {
    padding: 2rem 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.6);
    transition: all 0.4s ease;
    position: relative;
}

.hosting-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), rgba(13, 148, 136, 0.15));
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hosting-card:hover::before {
    opacity: 1;
}

.hosting-card:hover {
    border-color: var(--border-accent);
    box-shadow: 0 8px 30px rgba(21, 26, 46, 0.06);
    transform: translateY(-3px);
}

.hosting-price {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--accent);
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.hosting-price span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.hosting-card h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    letter-spacing: -0.015em;
}

.hosting-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

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

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-item h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: -0.015em;
    margin-bottom: 0.6rem;
    color: var(--text);
    cursor: default;
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.faq-item p a {
    color: var(--accent);
    text-decoration: none;
}

.faq-item p a:hover {
    text-decoration: underline;
}

/* ======================== */
/* Responsive: 900px        */
/* ======================== */

@media (max-width: 900px) {
    .hosting-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}
