@media (max-width: 768px) {
    body[data-page="services"] .services-hero {
        height: min(70vh, 560px);
        min-height: 420px;
        padding: 64px 0 64px;
        margin-top: 16px;
    }

    body[data-page="services"] .hero-background {
        top: 0;
        height: 100%;
    }

    body[data-page="services"] .hero-video {
        max-height: 70vh;
        object-position: center;
    }

    body[data-page="services"] .hero-content {
        padding: 0 var(--spacing-md);
    }

    body[data-page="services"] .hero-title {
        font-size: clamp(1.85rem, 7vw, 2.6rem);
        margin-bottom: 0;
    }

    body[data-page="services"] .hero-subtitle {
        font-size: 0.95rem;
        max-width: 32ch;
        line-height: 1.65;
        margin-top: 16px;
    }

    body[data-page="services"] .services-section {
        padding: 64px 0 80px;
    }
    
    /* Disable background video on mobile for performance */
    body[data-page="services"] .services-bg-videos,
    body[data-page="services"] .bg-video {
        display: none !important;
    }

    body[data-page="services"] .process-section {
        padding: 64px 0 80px;   /* Üst: 64px (yeni bölüm başlıyor hissi), Alt: 80px (Process'in bittiği nokta net algılansın) */
    }

    body[data-page="services"] .services-cta {
        padding: 64px 0 72px;   /* Üst: 64px (Home/About standardı), Alt: 72px (Home/About standardı) */
    }

    body[data-page="services"] .services-cta .container {
        max-width: 36rem;       /* +YENİ: Home/About ile aynı standard (CTA içeriği odaklı) */
        padding: 0 var(--spacing-sm); /* +YENİ: Home/About ile aynı standard */
    }

    body[data-page="services"] .services-intro {
        margin-bottom: 48px;
        padding: 32px 0;
    }

    body[data-page="services"] .services-intro-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
        margin-bottom: 1.5rem;
    }

    body[data-page="services"] .services-intro-text {
        font-size: 0.95rem;
        max-width: 32ch;
        line-height: 1.65;
        margin-top: 0;
    }

    /* ========================================
       MOBILE ACCORDION DESIGN
       Collapsible service cards
       ======================================== */
    
    /* Container padding for screen edges */
    body[data-page="services"] .services-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    body[data-page="services"] .services-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem;
        margin-top: 0;
    }

    /* Accordion card - solid background */
    body[data-page="services"] .service-item {
        padding: 0;
        min-width: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        border-radius: 16px;
        background: #111111 !important;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    body[data-page="services"] .service-item:hover {
        transform: none;
        box-shadow: none;
    }
    
    body[data-page="services"] .service-item.is-expanded {
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    }

    /* Clickable header bar */
    body[data-page="services"] .service-header {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        padding: 1.25rem 1.5rem;
        padding-right: 3.5rem;
        margin-bottom: 0;
        cursor: pointer;
        position: relative;
        transition: background 0.2s ease;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
    }

    body[data-page="services"] .service-header:active {
        background: rgba(255, 255, 255, 0.03);
    }

    /* Expand/collapse indicator (chevron) */
    body[data-page="services"] .service-header::after {
        content: '';
        position: absolute;
        right: 1.5rem;
        top: 50%;
        width: 10px;
        height: 10px;
        border-right: 2px solid rgba(255, 255, 255, 0.5);
        border-bottom: 2px solid rgba(255, 255, 255, 0.5);
        transform: translateY(-50%) rotate(45deg);
        transition: transform 0.3s ease;
        pointer-events: none;
    }

    body[data-page="services"] .service-item.is-expanded .service-header::after {
        transform: translateY(-25%) rotate(-135deg);
    }

    body[data-page="services"] .service-icon {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
    }

    body[data-page="services"] .service-icon svg {
        width: 22px;
        height: 22px;
    }

    body[data-page="services"] .service-title {
        font-size: 1.125rem;
        margin-bottom: 0;
        line-height: 1.35;
        font-weight: 600;
        color: #ffffff;
        letter-spacing: -0.01em;
    }

    /* Collapsible content area */
    body[data-page="services"] .service-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.3s ease;
        opacity: 0;
        padding: 0 1.5rem;
    }

    body[data-page="services"] .service-item.is-expanded .service-content {
        max-height: 800px;
        padding: 0.5rem 1.5rem 1.5rem;
        opacity: 1;
    }

    /* Separator line */
    body[data-page="services"] .service-item.is-expanded .service-content::before {
        content: '';
        display: block;
        height: 1px;
        background: rgba(255, 255, 255, 0.08);
        margin-bottom: 1.25rem;
    }

    /* Image placeholder area */
    body[data-page="services"] .service-image {
        width: 100%;
        height: 160px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
        border-radius: 12px;
        margin-bottom: 1.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px dashed rgba(255, 255, 255, 0.08);
    }

    body[data-page="services"] .service-image-placeholder {
        color: rgba(255, 255, 255, 0.25);
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

    body[data-page="services"] .service-description {
        font-size: 1.0625rem;
        max-width: none;
        line-height: 1.8;
        margin-top: 0;
        margin-bottom: 1.5rem;
        color: rgba(255, 255, 255, 0.9);
        letter-spacing: 0.01em;
    }

    body[data-page="services"] .service-features {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        padding: 1.25rem;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    body[data-page="services"] .feature-group {
        margin-bottom: 0;
    }

    body[data-page="services"] .feature-title {
        font-size: 0.9375rem;
        margin-bottom: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: rgba(255, 255, 255, 0.7);
        font-weight: 600;
    }

    body[data-page="services"] .feature-list {
        padding-left: 0;
        margin-top: 0;
    }

    body[data-page="services"] .feature-list li {
        font-size: 1rem;
        padding-left: 1.5rem;
        line-height: 1.7;
        margin-bottom: 0.625rem;
        color: rgba(255, 255, 255, 0.85);
        position: relative;
    }

    body[data-page="services"] .feature-list li::before {
        left: 0;
        color: rgba(255, 255, 255, 0.5);
    }

    body[data-page="services"] .feature-list li:last-child {
        margin-bottom: 0;
    }

    body[data-page="services"] .service-footer {
        padding-top: 0.5rem;
        margin-top: 0;
    }

    body[data-page="services"] .service-cta {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1.0625rem;
        min-height: 54px;
        background: #ffffff;
        color: #000000;
        border-radius: 12px;
        font-weight: 600;
        letter-spacing: 0.01em;
    }

    body[data-page="services"] .service-cta:hover {
        background: #f5f5f5;
    }

    body[data-page="services"] .process-header {
        margin-bottom: 1.5rem;  /* 32px → 1.5rem (Home/About ile aynı standard, daha dengeli) */
    }

    body[data-page="services"] .process-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    body[data-page="services"] .process-subtitle {
        font-size: 0.95rem;
    }

    /* Process grid - 2 columns balanced */
    body[data-page="services"] .process-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }

    body[data-page="services"] .process-step {
        padding: 1.25rem;
    }

    body[data-page="services"] .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

    body[data-page="services"] .step-title {
        font-size: 0.9375rem;
        margin-bottom: 0.5rem;
    }

    body[data-page="services"] .step-description {
        font-size: 0.8125rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.75);
    }

    body[data-page="services"] .cta-content {
        padding: 0;             /* +YENİ: Container padding yeterli, gereksiz padding kaldırma */
    }

    body[data-page="services"] .cta-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem); /* clamp(1.6rem, 6.5vw, 2.3rem) → clamp(1.6rem, 6vw, 2.2rem) (Home/About ile aynı) */
        margin-bottom: 1.5rem;   /* +YENİ: Başlık ile açıklama arası boşluk (Home/About standardı) */
    }

    body[data-page="services"] .cta-description {
        font-size: 0.95rem;
        max-width: 32ch;        /* +YENİ: Optimal satır uzunluğu (Home/About ile aynı) */
        line-height: 1.65;       /* +YENİ: Mobil için optimize edilmiş satır yüksekliği */
        margin-bottom: 2rem;     /* 24px → 2rem (Home/About ile aynı standard) */
        margin-top: 0;          /* +YENİ: Gereksiz üst boşluk kontrolü */
    }

    body[data-page="services"] .cta-actions {
        gap: 0.75rem;            /* 12px → 0.75rem (Home/About ile aynı standard) */
        margin-top: 0;          /* 20px → 0 (cta-description margin-bottom yeterli) */
    }

    body[data-page="services"] .cta-button {
        width: 100%;
        max-width: 320px;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    body[data-page="services"] .modal-content {
        max-height: 85vh;
    }

    body[data-page="services"] .modal-header,
    body[data-page="services"] .modal-body,
    body[data-page="services"] .modal-footer {
        padding: 20px;
    }

    body[data-page="services"] .modal-title {
        font-size: 1.2rem;
    }

    body[data-page="services"] .modal-features h4,
    body[data-page="services"] .modal-technologies h4 {
        font-size: 1rem;
    }

    body[data-page="services"] .tech-grid {
        gap: 8px;
    }

    body[data-page="services"] .tech-item {
        font-size: 0.7rem;
    }
}
