.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--neo-bg);
    border-radius: 50px;
    box-shadow:
        4px 4px 8px var(--neo-shadow-dark),
        -4px -4px 8px var(--neo-shadow-light);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.hero-badge i {
    font-size: 0.875rem;
}



/* ========== SERVICES OVERVIEW ========== */
.services-overview {
    padding: 3rem 2rem;
    background: var(--neo-bg);
}

.services-overview .container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 calc(24px + 2rem);
    box-sizing: border-box;
}

.section-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.section-intro h1,
.section-intro h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.section-intro p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

/* ========== SERVICE CARD ========== */
.service-card {
    background: var(--neo-bg);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    box-shadow:
        10px 10px 20px var(--neo-shadow-dark),
        -10px -10px 20px var(--neo-shadow-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card.featured {
    border: 2px solid var(--primary-color);
}

.card-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow:
        14px 14px 28px var(--neo-shadow-dark),
        -14px -14px 28px var(--neo-shadow-light);
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow:
        4px 4px 8px rgba(255, 107, 53, 0.3),
        -2px -2px 6px rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-10deg);
}

.service-icon.ai {
    background: linear-gradient(135deg, #6366f1, #22d3ee);
}

.service-icon.ads {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.service-icon.automation {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.service-icon.chatbot {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.service-icon.webdev {
    background: linear-gradient(135deg, #fa709a, #fee140);
}

.service-icon.mobile {
    background: linear-gradient(135deg, #10b981, #3b82f6);
}

.service-meta h3 {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.service-tagline {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-benefits {
    margin-bottom: 1.5rem;
}

.service-benefits h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.service-benefits li i {
    color: var(--primary-color);
    font-size: 0.875rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.service-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    background: var(--neo-bg);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow:
        3px 3px 6px var(--neo-shadow-dark),
        -3px -3px 6px var(--neo-shadow-light);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    transform: translateY(-2px);
    box-shadow:
        4px 4px 8px var(--neo-shadow-dark),
        -4px -4px 8px var(--neo-shadow-light);
}

.service-outcome {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 140, 66, 0.05));
    border-radius: 12px;
    border-left: 3px solid var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-outcome i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.service-outcome span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.service-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.service-cta i {
    transition: transform 0.3s ease;
}

.service-cta:hover i {
    transform: translateX(4px);
}

/* ========== WORK PROCESS ========== */
.work-process {
    padding: 3rem 2rem;
    background: var(--neo-bg);
}

.work-process .container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 calc(24px + 2rem);
    box-sizing: border-box;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem;
}

.process-step {
    position: relative;
}

.process-card {
    background: var(--neo-bg);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow:
        8px 8px 16px var(--neo-shadow-dark),
        -8px -8px 16px var(--neo-shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow:
        10px 10px 20px var(--neo-shadow-dark),
        -10px -10px 20px var(--neo-shadow-light);
}

.step-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1.4;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.process-step h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* ========== PRICING PHILOSOPHY ========== */
.pricing-philosophy {
    padding: 3rem 2rem;
    background: var(--neo-bg);
}

.pricing-philosophy .container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 calc(24px + 2rem);
    box-sizing: border-box;
}

.pricing-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pricing-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-text > p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.pricing-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.pricing-point {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.pricing-point i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.pricing-point h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.pricing-point p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.pricing-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.pricing-card {
    background: var(--neo-bg);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow:
        8px 8px 16px var(--neo-shadow-dark),
        -8px -8px 16px var(--neo-shadow-light);
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow:
        10px 10px 20px var(--neo-shadow-dark),
        -10px -10px 20px var(--neo-shadow-light);
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.pricing-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.pricing-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 3rem 2rem;
    background: var(--neo-bg);
}

.faq-section .container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0 calc(24px + 2rem);
    box-sizing: border-box;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.faq-item {
    background: var(--neo-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        6px 6px 12px var(--neo-shadow-dark),
        -6px -6px 12px var(--neo-shadow-light);
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow:
        8px 8px 16px var(--neo-shadow-dark),
        -8px -8px 16px var(--neo-shadow-light);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-question i {
    font-size: 1rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* ========== CTA SECTION ========== */
.services-cta {
    padding: 5rem 2rem;
    background: var(--neo-bg);
}

.services-cta .container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0 calc(24px + 2rem);
    box-sizing: border-box;
}

.services-cta .cta-content {
    background: var(--neo-bg);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow:
        12px 12px 24px var(--neo-shadow-dark),
        -12px -12px 24px var(--neo-shadow-light);
}

.services-cta h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-cta .cta-content > p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.btn-primary-large,
.btn-secondary-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: auto;
}

.btn-primary-large {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary-large {
    background: var(--neo-bg);
    color: var(--text-dark);
    box-shadow:
        6px 6px 12px var(--neo-shadow-dark),
        -6px -6px 12px var(--neo-shadow-light);
}

.btn-secondary-large:hover {
    transform: translateY(-2px);
    box-shadow:
        8px 8px 16px var(--neo-shadow-dark),
        -8px -8px 16px var(--neo-shadow-light);
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.cta-note i {
    color: var(--primary-color);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ========================================
   RESPONSIVE - DESKTOP FIRST APPROACH
   Using max-width to simplify for smaller screens
   ======================================== */

/* ========== LARGE DESKTOP & BELOW (1199px) ========== */
@media (max-width: 1199px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-step:nth-child(4),
    .process-step:nth-child(5) {
        grid-column: span 1;
    }
}

/* ========== TABLET & BELOW (1023px) ========== */
@media (max-width: 991px) {
    /* Update container padding for tablet */
    .services-overview .container,
    .work-process .container,
    .pricing-philosophy .container,
    .faq-section .container,
    .services-cta .container {
        padding: 0 calc(20px + 1.5rem);
    }
}

@media (max-width: 1023px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========== MOBILE & BELOW (767px) ========== */
@media (max-width: 768px) {
    /* Update container padding for mobile */
    .services-overview .container,
    .work-process .container,
    .pricing-philosophy .container,
    .faq-section .container,
    .services-cta .container {
        padding: 0 1.4rem;
    }
}

@media (max-width: 767px) {
    html,
    body {
        overflow-x: visible;
    }

    .services-overview {
        padding: 3rem 0;
    }

    .section-intro h1,
    .section-intro h2 {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 3.25rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .service-meta h3 {
        font-size: 1.5rem;
    }

    /* Keep cards concise on mobile */
    .card-badge {
        position: static;
        display: inline-block;
        margin-bottom: 0.75rem;
    }

    .service-header {
        margin-bottom: 1rem;
    }

    .service-description {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        margin-bottom: 1.25rem;
    }

    .service-benefits,
    .service-tech,
    .service-outcome {
        display: none;
    }

    .service-card {
        cursor: pointer;
    }

    .service-card::after {
        content: "Tap to expand";
        display: block;
        margin-top: 0.75rem;
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--text-light);
        text-align: center;
        opacity: 0.85;
    }

    .service-card.is-expanded .service-description {
        display: block;
        -webkit-line-clamp: unset;
        overflow: visible;
    }

    .service-card.is-expanded .service-benefits,
    .service-card.is-expanded .service-outcome {
        display: block;
    }

    .service-card.is-expanded .service-tech {
        display: flex;
    }

    .service-card.is-expanded::after {
        content: "Tap to collapse";
    }

    .work-process {
        padding: 0;
        --stack-nav: 6.5rem;
        --stack-header: 7.5rem;
    }

    .process-grid {
        display: block;
        position: relative;
    }

    .pricing-philosophy {
        padding: 3rem 0;
    }

    .pricing-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pricing-visual {
        display: none;
    }

    .faq-section {
        padding: 3rem 0;
    }

    .services-cta {
        padding: 5rem 0;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-note span {
        font-size: 0.8rem;
    }

    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
    }

    .work-process .container {
        padding: 0 1.4rem;
    }

    .work-process .section-intro {
        position: sticky;
        top: var(--stack-nav);
        z-index: 6;
        padding: 1.75rem 0 1rem;
        margin-bottom: 0;
        background: var(--neo-bg);
    }

    /* Stacked scroll cards on mobile */
    .process-step {
        position: sticky;
        top: calc(var(--stack-nav) + var(--stack-header));
        height: calc(100svh - var(--stack-nav) - var(--stack-header));
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 0 0 1.5rem;
        transform: none;
    }

    .process-step:last-child {
        margin-bottom: 0;
    }

    .process-card {
        width: 100%;
        height: auto;
        display: block;
    }

    .process-step:nth-child(1) { z-index: 1; }
    .process-step:nth-child(2) { z-index: 2; }
    .process-step:nth-child(3) { z-index: 3; }
    .process-step:nth-child(4) { z-index: 4; }
    .process-step:nth-child(5) { z-index: 5; }

    .work-process.stack-header-release {
    }

    .work-process.stack-header-release .section-intro {
        position: static;
        background: transparent;
        padding: 2rem 0 1rem;
    }

    .work-process.stack-header-release .process-step {
    }

}

/* ========== SMALL MOBILE & BELOW (480px) ========== */
@media (max-width: 480px) {
    /* Update container padding for small mobile */
    .services-overview .container,
    .work-process .container,
    .pricing-philosophy .container,
    .faq-section .container,
    .services-cta .container {
        padding: 0 1.4rem;
    }

    .section-intro h1,
    .section-intro h2 {
        font-size: 2rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .card-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.75rem;
    }

    .service-meta h3 {
        font-size: 1.25rem;
    }

    .services-cta h2 {
        font-size: 1.75rem;
    }
}

/* ========== TOUCH DEVICE OPTIMIZATIONS ========== */
@media (hover: none) and (pointer: coarse) {
    .service-card:active {
        transform: scale(0.98);
    }

    .process-card:active,
    .pricing-card:active {
        transform: scale(0.98);
    }
}
