/* ===================== SERVICE DETAIL ===================== */
.service-detail {
    padding: 100px 5%;
    position: relative;
    z-index: 1;
}

.service-detail.alt {
    background: rgba(30, 61, 42, 0.03);
}

.service-detail-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-detail-inner.reverse {
    direction: rtl;
}

.service-detail-inner.reverse > * {
    direction: ltr;
}

.service-detail-num {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.3;
    font-style: italic;
    line-height: 1;
    margin-bottom: 8px;
}

.service-detail-content .section-tag {
    margin-bottom: 12px;
}

.service-detail-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--primary);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.service-detail-content p {
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.detail-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 28px 0 36px;
}

.detail-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.detail-check {
    color: var(--accent);
    font-size: 1rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-list li div {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.detail-list li div strong {
    color: var(--primary);
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}

/* ===================== VISUAL CARD ===================== */
.service-detail-visual {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.visual-stat {
    text-align: center;
    padding: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    border: 1px solid rgba(30, 61, 42, 0.08);
}

.vs-icon { font-size: 2.4rem; margin-bottom: 12px; }

.vs-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 8px;
}

.vs-val {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.vs-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: italic;
}

.visual-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.vtag {
    padding: 8px 16px;
    background: rgba(30, 61, 42, 0.06);
    border: 1px solid rgba(30, 61, 42, 0.1);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
}

/* ===================== PRICING NOTE ===================== */
.pricing-note {
    padding: 80px 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-note-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 40px 48px;
    flex-wrap: wrap;
}

.pn-icon { font-size: 2.4rem; flex-shrink: 0; }

.pricing-note-inner h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.pricing-note-inner p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    flex: 1;
    min-width: 260px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
    .service-detail-inner,
    .service-detail-inner.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 40px;
    }

    .pricing-note-inner {
        flex-direction: column;
        text-align: center;
        padding: 32px;
    }
}
