.service-hero {
    background: linear-gradient(135deg, #0f0a18 0%, #1a1429 100%);
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.service-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #6c63ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-hero-subtitle {
    font-size: 1.8rem;
    color: #6c63ff;
    margin-bottom: 1.5rem;
}

.service-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.service-features {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    color: #6c63ff;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1429;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.service-details {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(90, 82, 224, 0.1) 100%);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.detail-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.detail-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1429;
    padding-bottom: 1rem;
    border-bottom: 2px solid #6c63ff;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-list li {
    color: #666;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.detail-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #6c63ff;
}

.service-process {
    padding: 100px 0;
    background-color: #fff;
}

.process-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #1a1429;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #6c63ff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1429;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(135deg, #6c63ff 0%, #5a52e0 100%);
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #6c63ff;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .service-hero-title {
        font-size: 2.5rem;
    }

    .service-hero-subtitle {
        font-size: 1.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* SSS — Hizmet landing (bulut göç vb.) */
.service-faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.service-faq-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 44px;
    padding: 0 20px;
}

.service-faq-head h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #18142a;
    margin: 0 0 12px;
}

.service-faq-subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.service-faq-list {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-faq-item {
    margin-bottom: 14px;
    border-radius: 10px;
    overflow: hidden;
    background: #f8f9fa;
    border: 1px solid #e8e4f8;
    box-shadow: 0 2px 10px rgba(108, 99, 255, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-faq-item:hover {
    border-color: #c7bdf5;
}

.service-faq-item.active {
    border-color: #6c63ff;
    box-shadow: 0 4px 16px rgba(108, 99, 255, 0.15);
    background: #fff;
}

.service-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.2s ease;
}

.service-faq-question:hover {
    color: #6c63ff;
}

.service-faq-toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    font-weight: 300;
    color: #6c63ff;
    background: #f4f1fd;
    border-radius: 8px;
}

.service-faq-item.active .service-faq-toggle {
    background: rgba(108, 99, 255, 0.2);
}

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

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

.service-faq-answer p {
    margin: 0;
    padding: 0 24px 22px;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.service-faq-cta {
    text-align: center;
    margin-top: 40px;
    padding: 0 20px;
}

.service-faq-cta .cta-button {
    display: inline-block;
    background: #6c63ff;
    color: #fff;
}

.service-faq-cta .cta-button:hover {
    background: #5a52e0;
    color: #fff;
}

@media (max-width: 600px) {
    .service-faq-section {
        padding: 50px 0 60px;
    }

    .service-faq-question {
        padding: 16px 18px;
        font-size: 0.98rem;
    }

    .service-faq-answer p {
        padding: 0 18px 18px;
    }
}
