/* ============================================
   SERVICE PAGE - Detailed Service Template
   v1.0 - Web Geliştirme & Other Services
   ============================================ */

/* --- SERVICE HERO SECTION --- */
.service-hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 160px 0 140px;
    background-color: #080912;
}

.service-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('../images/hero-images/hero-nebula-fancy.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.service-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom,
            rgba(5, 5, 8, 0.5) 0%,
            rgba(5, 5, 8, 0.4) 40%,
            rgba(5, 5, 8, 0.8) 80%,
            #080912 100%);
}

.service-hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-hero-content .section-tag-cosmic {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #2dd4bf;
    background: rgba(45, 212, 191, 0.1);
    border: 1px solid rgba(45, 212, 191, 0.3);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: var(--spacing-md);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.service-hero-content h1 {
    font-size: clamp(3rem, 7vw, 5rem);
    color: #fff;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    line-height: 1.1;
}

.service-hero-content .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto var(--spacing-lg);
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border: 1px solid rgba(45, 212, 191, 0.4);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
}

.hero-cta-btn:hover {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
    border-color: #2dd4bf;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(45, 212, 191, 0.2);
}

.hero-cta-btn .btn-arrow {
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.service-hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent 0%, #080912 100%);
    pointer-events: none;
    z-index: 3;
}




/* ============================================
   SERVICE DESCRIPTION SECTION
   ============================================ */

.service-desc-section {
    position: relative;
    padding: 100px 0;
    background: #080912;
}

.desc-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-tag-hollow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.desc-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2;
}

.desc-text-main {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.6;
}

.desc-text-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.desc-visual {
    position: relative;
}

.desc-card.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.code-decoration {
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9rem;
    color: #a6accd;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.code-line {
    display: block;
}

.code-line.indent {
    padding-left: 20px;
}

.c-blue {
    color: #89ddff;
}

.c-purple {
    color: #c792ea;
}

.c-green {
    color: #c3e88d;
}

.c-yellow {
    color: #ffcb6b;
}

.c-orange {
    color: #f78c6c;
}

.card-glow-element {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(45, 212, 191, 0.2);
    filter: blur(80px);
    border-radius: 50%;
    animation: pulseGlow 5s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }

    100% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

@media (max-width: 992px) {
    .desc-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .desc-content h2 {
        font-size: 2rem;
    }
}

/* ============================================
   SECTORS SECTION
   ============================================ */

.service-sectors-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #080912 0%, #0a0b16 50%, #080912 100%);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.sector-card {
    --sector-color: 45, 212, 191;
    --sector-hex: #2dd4bf;

    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 35px 25px;
    transition: all 0.4s ease;
    position: relative;
}

/* Sector Color Variations */
.sector-card:nth-child(1) {
    --sector-color: 59, 130, 246;
    --sector-hex: #3b82f6;
}

.sector-card:nth-child(2) {
    --sector-color: 168, 85, 247;
    --sector-hex: #a855f7;
}

.sector-card:nth-child(3) {
    --sector-color: 236, 72, 153;
    --sector-hex: #ec4899;
}

.sector-card:nth-child(4) {
    --sector-color: 251, 191, 36;
    --sector-hex: #fbbf24;
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--sector-hex), transparent);
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.sector-card:hover {
    background: rgba(var(--sector-color), 0.05);
    border-color: rgba(var(--sector-color), 0.2);
    transform: translateY(-5px);
}

.sector-card:hover::before {
    opacity: 1;
}

.sector-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 20px;
}

.sector-card h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}

.sector-card>p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 20px;
}

.sector-features {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 15px;
}

.sector-features li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    padding: 6px 0;
    padding-left: 18px;
    position: relative;
}

.sector-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sector-hex);
    font-size: 0.75rem;
}

@media (max-width: 1200px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ============================================
   IMPACT STATISTICS SECTION
   ============================================ */

.service-impact-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #080912 0%, #0d0f1a 50%, #080912 100%);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.impact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.impact-card:hover {
    background: rgba(45, 212, 191, 0.05);
    border-color: rgba(45, 212, 191, 0.2);
    transform: translateY(-8px);
}

.impact-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2dd4bf;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(45, 212, 191, 0.4);
}

.impact-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.impact-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .impact-number {
        font-size: 2.5rem;
    }
}

/* ============================================
   BENEFITS SECTION (AI & Automation)
   ============================================ */

.service-benefits-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #080912 0%, #0a0c15 50%, #080912 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 40px 35px;
    transition: all 0.4s ease;
}

.benefit-card:hover {
    background: rgba(45, 212, 191, 0.05);
    border-color: rgba(45, 212, 191, 0.2);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.benefit-card p strong {
    color: #2dd4bf;
}

@media (max-width: 968px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   USECASES SECTION (AI & Automation)
   ============================================ */

.service-usecases-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #080912 0%, #0d0f1a 50%, #080912 100%);
}

.usecases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.usecase-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.usecase-card:hover {
    background: rgba(129, 140, 248, 0.08);
    border-color: rgba(129, 140, 248, 0.25);
    transform: translateY(-5px);
}

.usecase-icon {
    font-size: 2.2rem;
    margin-bottom: 15px;
    display: block;
}

.usecase-card h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}

.usecase-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .usecases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .usecases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ============================================
   PLATFORMS SECTION
   ============================================ */

.service-platforms-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #080912 0%, #0a0b16 50%, #080912 100%);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.platform-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.platform-card:hover {
    background: rgba(var(--platform-color, 45, 212, 191), 0.08);
    border-color: rgba(var(--platform-color, 45, 212, 191), 0.25);
    transform: translateY(-6px);
}

.platform-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.platform-card:hover .platform-icon {
    transform: scale(1.1);
}

.platform-card h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}

.platform-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Platform color variations */
.platform-google {
    --platform-color: 66, 133, 244;
}

.platform-meta {
    --platform-color: 24, 119, 242;
}

.platform-instagram {
    --platform-color: 221, 42, 123;
}

.platform-tiktok {
    --platform-color: 255, 0, 80;
}

.platform-youtube {
    --platform-color: 255, 0, 0;
}

.platform-linkedin {
    --platform-color: 10, 102, 194;
}

@media (max-width: 1200px) {
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ============================================
   WHY US SECTION
   ============================================ */

.service-whyus-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #080912 0%, #0a0b16 50%, #080912 100%);
}

.service-whyus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, #080912 0%, rgba(8, 9, 18, 0.7) 40%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-intro .section-tag-cosmic {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #2dd4bf;
    background: rgba(45, 212, 191, 0.1);
    border: 1px solid rgba(45, 212, 191, 0.3);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: var(--spacing-md);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-intro h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.section-intro p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}

.whyus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.whyus-card {
    --card-color: 45, 212, 191;
    --card-hex: #2dd4bf;

    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-top: 2px solid rgba(var(--card-color), 0.4);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

/* Color Variations */
.whyus-card:nth-child(1) {
    --card-color: 45, 212, 191;
    --card-hex: #2dd4bf;
}

.whyus-card:nth-child(2) {
    --card-color: 168, 85, 247;
    --card-hex: #a855f7;
}

.whyus-card:nth-child(3) {
    --card-color: 236, 72, 153;
    --card-hex: #ec4899;
}

.whyus-card:nth-child(4) {
    --card-color: 251, 191, 36;
    --card-hex: #fbbf24;
}

.whyus-card:nth-child(5) {
    --card-color: 59, 130, 246;
    --card-hex: #3b82f6;
}

.whyus-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--card-hex);
    transition: all 0.4s ease;
    box-shadow: 0 0 10px rgba(var(--card-color), 0.5);
}

.whyus-card:hover {
    background: rgba(var(--card-color), 0.05);
    border-color: rgba(var(--card-color), 0.2);
    border-top-color: var(--card-hex);
    transform: translateY(-5px);
}

.whyus-card:hover::before {
    width: 100%;
}

.whyus-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.whyus-card h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.whyus-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}


/* ============================================
   TECHNOLOGIES SECTION
   ============================================ */

.service-tech-section {
    position: relative;
    padding: 100px 0;
    background: #080912;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.tech-item {
    --tech-color: 45, 212, 191;
    --tech-hex: #2dd4bf;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    width: 130px;
    min-width: 130px;
}

/* Tech Color Variations */
.tech-item:nth-child(1) {
    --tech-color: 59, 130, 246;
    --tech-hex: #3b82f6;
}

.tech-item:nth-child(2) {
    --tech-color: 16, 185, 129;
    --tech-hex: #10b981;
}

.tech-item:nth-child(3) {
    --tech-color: 59, 130, 246;
    --tech-hex: #3b82f6;
}

.tech-item:nth-child(4) {
    --tech-color: 34, 197, 94;
    --tech-hex: #22c55e;
}

.tech-item:nth-child(5) {
    --tech-color: 139, 92, 246;
    --tech-hex: #8b5cf6;
}

.tech-item:nth-child(6) {
    --tech-color: 59, 130, 246;
    --tech-hex: #3b82f6;
}

.tech-item:nth-child(7) {
    --tech-color: 255, 255, 255;
    --tech-hex: #ffffff;
}

.tech-item:nth-child(8) {
    --tech-color: 56, 189, 248;
    --tech-hex: #38bdf8;
}

.tech-item:hover {
    background: rgba(var(--tech-color), 0.1);
    border-color: rgba(var(--tech-color), 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(var(--tech-color), 0.15);
}

.tech-icon {
    font-size: 2rem;
}

.tech-name {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}



/* ============================================
   SERVICE REFERENCES
   ============================================ */

.service-refs-section {
    position: relative;
    padding: 100px 0;
    background: #080912;
}

.service-refs-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.service-ref-card {
    --ref-color: 45, 212, 191;
    --ref-hex: #2dd4bf;

    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 350px;
    flex: 0 1 350px;
}

/* Reference Card Color Variations */
.service-ref-card:nth-child(1) {
    --ref-color: 59, 130, 246;
    --ref-hex: #3b82f6;
}

.service-ref-card:nth-child(2) {
    --ref-color: 168, 85, 247;
    --ref-hex: #a855f7;
}

.service-ref-card:nth-child(3) {
    --ref-color: 236, 72, 153;
    --ref-hex: #ec4899;
}

.service-ref-card:hover {
    background: rgba(var(--ref-color), 0.05);
    border-color: rgba(var(--ref-color), 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(var(--ref-color), 0.1);
}

.service-ref-card .ref-logo {
    font-size: 2.5rem;
}

.service-ref-card .ref-info h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 8px;
}

.service-ref-card .ref-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.service-ref-card .ref-link {
    color: #2dd4bf;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-ref-card .ref-link:hover {
    color: #fff;
}

.refs-more {
    text-align: center;
}

.refs-more-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.refs-more-link:hover {
    color: #2dd4bf;
}


/* ============================================
   SERVICE PRODUCTS SECTION
   ============================================ */

.service-products-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #080912 0%, #0a0b16 50%, #080912 100%);
}

.service-products-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.service-product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 35px;
    max-width: 700px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 35px;
    transition: all 0.3s ease;
}

.service-product-card:hover {
    background: rgba(45, 212, 191, 0.03);
    border-color: rgba(45, 212, 191, 0.2);
    transform: translateY(-5px);
}

.product-icon-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon-large {
    font-size: 4.5rem;
    display: block;
    line-height: 1;
}

.product-info {
    flex: 1;
}

.product-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    color: #2dd4bf;
    background: rgba(45, 212, 191, 0.08);
    border: 1px solid rgba(45, 212, 191, 0.25);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.service-product-card h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.service-product-card p {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: 22px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 22px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
}

.product-features li {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2dd4bf;
    font-size: 0.75rem;
}

.product-cta {
    display: inline-block;
    color: #2dd4bf;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-cta:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .service-product-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .product-features {
        grid-template-columns: 1fr;
    }

    .product-features li {
        text-align: left;
    }
}


/* ============================================
   CTA SECTION
   ============================================ */

.service-cta-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #080912 0%, #0a0b16 50%, #080912 100%);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--spacing-lg);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border: 1px solid rgba(45, 212, 191, 0.4);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
}

.cta-primary:hover {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
    border-color: #2dd4bf;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(45, 212, 191, 0.2);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 30px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}


/* ============================================
   FOOTER FIX
   ============================================ */

.service-footer-wrapper {
    background-color: #080912;
    position: relative;
    z-index: 5;
}

.service-footer-wrapper .nebula-footer {
    padding-top: 180px;
}

.service-footer-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to bottom, #080912 0%, rgba(8, 9, 18, 0.7) 30%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}


/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
    .whyus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-grid {
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .service-refs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-hero-section {
        min-height: 70vh;
        padding: 140px 0 120px;
    }

    .whyus-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tech-grid {
        gap: 10px;
    }

    .process-timeline::before {
        left: 20px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .process-step {
        gap: 25px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .tech-item {
        width: 100px;
        min-width: 100px;
    }

    .service-hero-content h1 {
        font-size: 2.5rem;
    }
}