/* ══════════════════════════════════════════════════
   services.css — ZSM Digital Services Page
   Hero, service offers, pricing logic, proof, FAQ, CTA
   ══════════════════════════════════════════════════ */

/* ── Hero ── */
.services-hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 20px 80px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(255, 255, 255, 0.03) 0%, transparent 70%),
        var(--bg-color);
}

.services-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: 1;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, black 20%, transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, black 20%, transparent 72%);
}

.services-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 12px;
    color: #999;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.services-hero h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 24px;
    line-height: 1.1;
    color: white;
    letter-spacing: -0.03em;
    font-style: italic;
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.services-hero h1 strong {
    font-weight: 400;
}

.services-hero p {
    font-size: 1.1rem;
    color: #666;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

/* ── Offers Section ── */
.offers-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.offers-section > h2 {
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.offers-section > h2 .highlight {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(180deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.offers-intro {
    color: #888;
    font-size: 1rem;
    text-align: center;
    max-width: 620px;
    margin: 0 auto 64px;
    line-height: 1.6;
    font-weight: 300;
}

/* ── Offer Card ── */
.offer-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 32px;
    transition: border-color 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.offer-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255, 255, 255, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.offer-card:hover::after {
    opacity: 1;
}

.offer-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.offer-card:nth-child(even) .offer-info {
    order: 2;
}

.offer-card:nth-child(even) .offer-detail {
    order: 1;
}

/* Left: info side */
.offer-info {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.offer-card:nth-child(even) .offer-info {
    border-right: none;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.offer-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.offer-info h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.offer-for {
    font-size: 0.92rem;
    color: #999;
    line-height: 1.6;
    margin-bottom: 20px;
}

.offer-outcome {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 28px;
    padding-left: 16px;
    border-left: 2px solid rgba(255, 255, 255, 0.12);
}

.offer-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 8px;
}

.offer-price {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.03em;
}

.offer-price-note {
    font-size: 0.82rem;
    color: #666;
}

.offer-price-context {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.5;
}

.offer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #000;
    padding: 13px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: fit-content;
}

.offer-cta-btn:hover {
    background: #e5e5e5;
    transform: translateY(-1px);
}

.offer-cta-btn.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.offer-cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Right: detail side */
.offer-detail {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-detail h4 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 500;
}

.offer-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.offer-includes li {
    padding: 9px 0;
    color: #aaa;
    font-size: 0.88rem;
    line-height: 1.5;
    position: relative;
    padding-left: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.offer-includes li:last-child {
    border-bottom: none;
}

.offer-includes li::before {
    content: '✓';
    color: #fff;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.offer-tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.offer-tech-pill {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 11px;
    color: #999;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ── Pricing Logic Section ── */
.pricing-logic {
    padding: 100px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-logic h2 {
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.pricing-logic h2 .highlight {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(180deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-logic-intro {
    text-align: center;
    color: #888;
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto 56px;
    line-height: 1.6;
    font-weight: 300;
}

.pricing-factors {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.pricing-factor {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.pricing-factor::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.pricing-factor:hover::after {
    opacity: 1;
}

.pricing-factor:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.pricing-factor-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-factor-icon svg {
    width: 18px;
    height: 18px;
    stroke: #888;
    fill: none;
    stroke-width: 1.5;
}

.pricing-factor h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.pricing-factor p {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.55;
}

.pricing-logic-note {
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 24px 32px;
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
}

.pricing-logic-note strong {
    color: #fff;
    font-weight: 500;
}

/* ── Proof / Social Proof Section ── */
.proof-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.proof-section > h2 {
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 56px;
    letter-spacing: -0.02em;
}

.proof-section > h2 .highlight {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(180deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.proof-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.proof-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.proof-card-quote {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 24px;
    flex-grow: 1;
}

.proof-card-attr {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.proof-card-avatar {
    width: 32px;
    height: 32px;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    background: #111;
}

.proof-card-name {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
}

.proof-card-role {
    font-size: 11px;
    color: var(--text-muted);
}

.proof-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.proof-stat {
    text-align: center;
    padding: 28px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.4s ease;
}

.proof-stat:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.proof-stat-value {
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: -0.03em;
}

.proof-stat-label {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
}

/* ── Services FAQ ── */
.services-faq {
    padding: 100px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.services-faq h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 50px;
}

/* ── Services Final CTA —— */
.services-cta {
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-cta-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 64px 56px;
    max-width: 620px;
    width: 100%;
    text-align: center;
    overflow: hidden;
    transition: border-color 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.services-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
}

.services-cta-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255, 255, 255, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.services-cta-card:hover::after {
    opacity: 1;
}

.services-cta-card:hover {
    border-color: rgba(255, 255, 255, 0.16);
}

.services-cta-card h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: -0.02em;
}

.services-cta-card p {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 32px;
    line-height: 1.65;
}

.services-cta-card .offer-cta-btn {
    margin: 0 auto;
}

.services-cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-top: 24px;
}

.services-cta-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #555;
}

.services-cta-trust svg {
    width: 11px;
    height: 11px;
    opacity: 0.5;
    flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .services-hero h1 {
        font-size: 2.8rem;
    }

    .offer-card {
        grid-template-columns: 1fr;
    }

    .offer-card:nth-child(even) .offer-info {
        order: 1;
    }

    .offer-card:nth-child(even) .offer-detail {
        order: 2;
    }

    .offer-info {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .offer-card:nth-child(even) .offer-info {
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .pricing-factors {
        grid-template-columns: 1fr;
    }

    .proof-grid {
        grid-template-columns: 1fr;
    }

    .proof-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-hero {
        padding: 120px 20px 60px;
    }

    .services-hero h1 {
        font-size: 2.2rem;
    }

    .offer-info,
    .offer-detail {
        padding: 32px 24px;
    }

    .offer-price {
        font-size: 1.6rem;
    }

    .proof-stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .services-cta-card {
        padding: 48px 24px;
    }

    .services-cta-card h3 {
        font-size: 1.6rem;
    }
}
