/* ===== Service Detail Page Styles ===== */

/* Hero */
.svc-hero {
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.95));
}

.svc-hero:before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.1) 0%, transparent 60%);
    z-index: 0;
}

.svc-hero .container {
    position: relative;
    z-index: 1;
}

.svc-hero-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.svc-hero-content {
    flex: 1;
}

.svc-hero-content .breadcrumbs {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.svc-hero-content .breadcrumbs a {
    color: var(--text-secondary, #94a3b8);
    text-decoration: none;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.svc-hero-content .breadcrumbs a:hover {
    color: var(--neon, #06b6d4);
}

.svc-hero-content .breadcrumbs .sep {
    color: rgba(148, 163, 184, 0.3);
}

.svc-hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.svc-hero-content h1 span {
    background: linear-gradient(90deg, var(--accent, #3b82f6), var(--neon, #06b6d4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.svc-hero-content > p {
    font-size: 1.2rem;
    color: var(--text-secondary, #94a3b8);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.svc-hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.svc-hero-image {
    flex: 0 0 auto;
    text-align: center;
}

.svc-icon-large {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--accent, #3b82f6), var(--neon, #06b6d4));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    color: var(--primary, #0f172a);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* Benefits */
.svc-benefits {
    padding: 80px 0;
    background: var(--secondary, #1e293b);
}

.svc-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 50px;
}

.svc-benefit-card {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 24px;
    padding: 35px;
    border: 1px solid rgba(148, 163, 184, 0.15);
    text-align: center;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.svc-benefit-icon {
    font-size: 48px;
    color: var(--neon, #06b6d4);
    margin-bottom: 20px;
}

.svc-benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.svc-benefit-card p {
    color: var(--text-secondary, #94a3b8);
    font-size: 1rem;
    line-height: 1.6;
}

/* Process Steps */
.svc-process {
    padding: 80px 0;
}

.svc-process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 45px;
}

.svc-step {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 24px;
    padding: 35px 28px;
    border: 1px solid rgba(148, 163, 184, 0.15);
    width: 100%;
    max-width: 270px;
    text-align: center;
    position: relative;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.svc-step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--accent, #3b82f6), var(--neon, #06b6d4));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--primary, #0f172a);
    font-size: 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.svc-step-icon {
    font-size: 42px;
    color: var(--neon, #06b6d4);
    margin-bottom: 18px;
    margin-top: 10px;
}

.svc-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.svc-step p {
    color: var(--text-secondary, #94a3b8);
    font-size: 0.98rem;
    line-height: 1.6;
}

/* Use Cases */
.svc-cases {
    padding: 80px 0;
    background: var(--secondary, #1e293b);
}

.svc-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 45px;
}

.svc-case-card {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid rgba(148, 163, 184, 0.15);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.svc-case-icon {
    font-size: 40px;
    color: var(--neon, #06b6d4);
    margin-bottom: 18px;
}

.svc-case-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.svc-case-card p {
    color: var(--text-secondary, #94a3b8);
    font-size: 1rem;
    line-height: 1.6;
}

/* Pricing */
.svc-pricing {
    padding: 80px 0;
}

.svc-pricing-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 45px;
}

.svc-pricing-card {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(148, 163, 184, 0.15);
    text-align: center;
    width: 100%;
    max-width: 340px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.svc-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.svc-pricing-card.popular {
    border-color: rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(6, 182, 212, 0.08));
}

.svc-popular-badge {
    position: absolute;
    top: -14px;
    right: 20px;
    background: linear-gradient(90deg, var(--accent, #3b82f6), var(--neon, #06b6d4));
    color: var(--primary, #0f172a);
    padding: 7px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
}

.svc-pricing-icon {
    font-size: 48px;
    color: var(--neon, #06b6d4);
    margin-bottom: 18px;
}

.svc-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--accent, #3b82f6), var(--neon, #06b6d4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 18px 0;
}

.svc-price span {
    font-size: 1.1rem;
    -webkit-text-fill-color: var(--text-secondary, #94a3b8);
}

.svc-features-list {
    list-style: none;
    margin: 22px 0;
    padding: 0;
    text-align: left;
}

.svc-features-list li {
    padding: 11px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.98rem;
}

.svc-features-list li:last-child {
    border-bottom: none;
}

.svc-features-list li i {
    color: var(--neon, #06b6d4);
    font-size: 12px;
    width: 16px;
    text-align: center;
}

/* FAQ */
.svc-faq {
    padding: 80px 0;
    background: var(--secondary, #1e293b);
}

.svc-faq-container {
    max-width: 850px;
    margin: 45px auto 0;
}

.svc-faq-item {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.15);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.svc-faq-question {
    padding: 20px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--light, #f8fafc);
}

.svc-faq-question i {
    transition: transform 0.3s ease;
    color: var(--neon, #06b6d4);
    font-size: 14px;
}

.svc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.svc-faq-answer-inner {
    padding: 0 28px 22px;
    color: var(--text-secondary, #94a3b8);
    line-height: 1.7;
    font-size: 1rem;
}

.svc-faq-item.active .svc-faq-question i {
    transform: rotate(180deg);
}

.svc-faq-item.active .svc-faq-answer {
    max-height: 500px;
}

/* CTA */
.svc-cta {
    padding: 80px 0;
    text-align: center;
}

.svc-cta .cta-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 24px;
    padding: 60px;
    border: 1px solid rgba(148, 163, 184, 0.15);
}

.svc-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.svc-cta h2 span {
    background: linear-gradient(90deg, var(--accent, #3b82f6), var(--neon, #06b6d4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.svc-cta p {
    font-size: 1.15rem;
    color: var(--text-secondary, #94a3b8);
    margin-bottom: 2rem;
}

/* Section Title */
.svc-section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
    width: 100%;
}

.svc-section-title span {
    background: linear-gradient(90deg, var(--accent, #3b82f6), var(--neon, #06b6d4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.svc-section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 15px auto 0;
    font-size: 1.1rem;
    color: var(--text-secondary, #94a3b8);
}

/* Responsive */
@media (max-width: 1024px) {
    .svc-hero-grid {
        flex-direction: column;
        text-align: center;
    }

    .svc-hero-content .breadcrumbs {
        justify-content: center;
    }

    .svc-hero-actions {
        justify-content: center;
    }

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

@media (max-width: 768px) {
    .svc-hero {
        padding: 140px 0 60px;
    }

    .svc-hero-content h1 {
        font-size: 1.9rem;
    }

    .svc-icon-large {
        width: 140px;
        height: 140px;
        font-size: 56px;
    }

    .svc-section-title {
        font-size: 1.8rem;
    }

    .svc-cta .cta-container {
        padding: 40px 25px;
    }

    .svc-cta h2 {
        font-size: 1.7rem;
    }

    .svc-pricing-card {
        max-width: 100%;
    }

    .svc-step {
        max-width: 100%;
    }
}
