/* Shared product page styles */
.services-overview {
    padding: 5rem 0;
    background: var(--section-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(100, 181, 246, 0.2);
    border-color: rgba(100, 181, 246, 0.4);
}

.service-icon {
    font-size: 2.4rem;
    margin-bottom: 1.25rem;
    color: var(--service-icon);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--h2);
}

.service-card p {
    margin-bottom: 1rem;
    color: var(--text);
    opacity: 0.9;
    line-height: 1.55;
}

.service-features {
    list-style: none;
    margin-top: 1rem;
    padding-left: 0;
}

.service-features li {
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li::before {
    content: "-";
    color: var(--service-icon);
    font-weight: 700;
}

.process-section {
    padding: 5rem 0;
    background: var(--section-bg);
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
    padding-left: 2rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    height: 100%;
    width: 2px;
    background: var(--cta);
    opacity: 0.3;
}

.process-step {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 4.5rem;
    display: flex;
    align-items: center;
    min-height: 80px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--cta);
    color: white;
    display: grid;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 10px 20px var(--cta-shadow);
}

.step-content {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    flex: 1;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(100, 181, 246, 0.1);
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--h2);
}

.step-content p {
    color: var(--text);
    opacity: 0.9;
    line-height: 1.55;
}

.platform-section {
    padding: 5rem 0;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.platform-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: 72px 1fr;
    align-items: center;
    align-items: flex-start;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.platform-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(100, 181, 246, 0.15);
}

.platform-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--tech-hover);
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    color: var(--tech-icon);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.platform-card h3 {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    color: var(--h2);
}

.platform-card p {
    margin: 0;
    color: var(--text);
    opacity: 0.9;
    line-height: 1.55;
}

.faq-section {
    padding: 5rem 0;
}

.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(100, 181, 246, 0.4);
}

.faq-question {
    padding: 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.05rem;
    color: var(--h2);
    margin: 0;
}

.faq-question i {
    color: var(--service-icon);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.4rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    color: var(--text);
    padding-bottom: 1.4rem;
    margin: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 280px;
    padding-top: 0;
}

@media (max-width: 768px) {
    .process-timeline {
        padding-left: 1rem;
    }

    .process-step {
        padding-left: 2rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
}


