/* Neural Showrooms Page - Light Theme (Matches Who We Are & Culture Pages) */

/* Inline Text Links */
.inline-text-link {
    color: var(--neural-purple, #3c1361);
    text-decoration: underline;
    text-decoration-color: rgba(60, 19, 97, 0.3);
    text-underline-offset: 2px;
    transition: all 0.3s ease;
    position: relative;
}

.inline-text-link:hover {
    text-decoration-color: rgba(217, 119, 6, 0.8);
    color: var(--neural-orange, #d97706);
}

body {
    background: #FFFFFF;
    color: #111827;
    font-family: var(--font-primary);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.6;
    -moz-osx-font-smoothing: grayscale;
}

main {
    background: #FFFFFF;
}

/* ==========================================================================
   Gradient Text Utility
   ========================================================================== */
.neural-gradient-text {
    background: linear-gradient(135deg, var(--neural-purple, #3c1361), var(--neural-orange, #d97706));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* ==========================================================================
   Hero Section - Matches Culture/Who We Are Pattern
   ========================================================================== */
.showrooms-hero {
    padding-top: calc(var(--header-height, 90px) + 4rem);
    padding-bottom: 5rem;
    background: #FFFFFF url('/assets/images/ecommerce/Hero-1.webp') no-repeat center center;
    background-size: cover;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.showrooms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.55);
    pointer-events: none;
}

.showrooms-hero .container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
}

.showrooms-hero .hero-content {
    display: block;
}

.showrooms-hero .hero-text-content {
    max-width: 650px;
}

.showrooms-hero .hero-heading {
    font-family: var(--font-primary);
    color: var(--text-primary, #111827);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: var(--font-weight-extra-light, 200);
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin: 0 0 2.5rem 0;
}

.showrooms-hero .hero-tagline {
    font-family: var(--font-primary);
    color: var(--np-orange, #EA580C);
    font-size: 1.125rem;
    font-weight: var(--font-weight-medium, 500);
    margin-bottom: var(--space-md, 1rem);
}

.showrooms-hero .hero-description {
    font-family: var(--font-primary);
    color: var(--text-primary, #111827);
    font-size: 1.125rem;
    line-height: 1.8;
    font-weight: var(--font-weight-light, 300);
    margin: 0 0 1.75rem 0;
}

.showrooms-hero .hero-description:last-child {
    margin-bottom: 0;
}

.showrooms-hero .hero-description:first-of-type {
    font-size: 1.25rem;
    color: var(--text-primary, #374151);
}

/* ==========================================================================
   Section Styling
   ========================================================================== */
.neural-section {
    padding: 5rem 0;
    background: #FFFFFF;
    position: relative;
}

.neural-section:nth-of-type(even) {
    background: #FAFAFA;
}

.neural-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Section Headlines */
.section-headline {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    color: var(--text-primary, #111827);
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin: 0 0 3rem 0;
    position: relative;
    display: inline-block;
}

.section-headline::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--neural-purple, #3c1361), var(--neural-orange, #d97706));
    margin-top: 0.875rem;
}

.neural-text-orange {
    color: var(--neural-orange, #d97706);
}

/* ==========================================================================
   Carousel Section - Matches Culture Page
   ========================================================================== */
.carousel-section {
    padding: 5rem 0;
}

.carousel-wrapper {
    position: relative;
}

.carousel-track {
    position: relative;
    margin: 0 4rem;
}

.carousel-slide {
    min-width: 100%;
    padding: 3rem;
    background: #FFFFFF;
    border: 1px solid var(--np-mid-grey, #E5E7EB);
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(10px);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                visibility 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}

.slide-content {
    flex: 0 0 65%;
    min-width: 0;
}

.slide-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.slide-image img {
    max-width: 180px;
    max-height: 180px;
    object-fit: contain;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateY(0);
}

.slide-label {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--np-orange, #EA580C);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 1rem;
}

.slide-headline {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 300;
    color: var(--text-primary, #111827);
    letter-spacing: -0.015em;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
}

.slide-paragraph {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: var(--font-weight-light, 300);
    color: var(--text-secondary, #6B7280);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 0 1rem 0;
}

.slide-paragraph:last-child {
    margin-bottom: 0;
}

.slide-paragraph a {
    color: var(--np-purple, #3C1361);
    text-decoration: underline;
    text-decoration-color: rgba(60, 19, 97, 0.3);
    text-underline-offset: 2px;
    transition: all 0.3s ease;
}

.slide-paragraph a:hover {
    color: var(--np-orange, #EA580C);
    text-decoration-color: rgba(234, 88, 12, 0.6);
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--np-mid-grey, #E5E7EB);
    background: var(--np-white, #FFFFFF);
    color: var(--text-secondary, #6B7280);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-btn--prev {
    left: 0;
}

.carousel-btn--next {
    right: 0;
}

.carousel-btn:hover {
    border-color: var(--np-purple, #3C1361);
    color: var(--np-purple, #3C1361);
    background: var(--np-white, #FFFFFF);
    box-shadow: 0 4px 16px rgba(60, 19, 97, 0.1);
    transform: translateY(-50%) scale(1.05);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.625rem;
    margin-top: 2rem;
}

.carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--np-mid-grey, #D1D5DB);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 0;
}

.carousel-indicator:hover {
    background: var(--np-grey, #9CA3AF);
    transform: scale(1.2);
}

.carousel-indicator.active {
    background: var(--np-purple, #3C1361);
    width: 24px;
    border-radius: 4px;
}

/* ==========================================================================
   Infrastructure Problem Section - Full Width Statement
   ========================================================================== */
.infrastructure-section {
    background: linear-gradient(135deg, #111827 0%, #1F2937 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.infrastructure-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(60, 19, 97, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(234, 88, 12, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.infrastructure-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
}

.infrastructure-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.infrastructure-headline {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: #FFFFFF;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 2rem 0;
}

.infrastructure-lead {
    font-family: var(--font-primary);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    color: var(--np-orange, #EA580C);
    line-height: 1.4;
    margin: 0 0 2.5rem 0;
}

.infrastructure-text {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.infrastructure-text p {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0 0 1.5rem 0;
}

.infrastructure-text p:last-child {
    margin-bottom: 0;
}

.infrastructure-emphasis {
    font-weight: 500 !important;
    color: #FFFFFF !important;
    font-size: 1.25rem !important;
    margin-top: 2rem !important;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Differentiators Section - 4 Card Grid
   ========================================================================== */
.differentiators-section {
    background: #FFFFFF;
}

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

.differentiator-card {
    background: var(--np-white, #FFFFFF);
    border: 1px solid var(--np-mid-grey, #E5E7EB);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.differentiator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--np-purple, #3C1361), var(--np-orange, #EA580C));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.differentiator-card:hover::before {
    transform: scaleX(1);
}

.differentiator-card:hover {
    transform: translateY(-6px);
    border-color: rgba(60, 19, 97, 0.2);
    box-shadow: 0 16px 40px rgba(60, 19, 97, 0.1);
}

.differentiator-card__title {
    font-family: var(--font-primary);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--text-primary, #111827);
    margin: 0 0 1rem 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.differentiator-card__description {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary, #6B7280);
    font-weight: 400;
    margin: 0;
}

/* ==========================================================================
   Industries Section - Card Grid
   ========================================================================== */
.industries-section {
    background: #FAFAFA;
}

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

.industry-card {
    background: var(--np-white, #FFFFFF);
    border: 1px solid var(--np-mid-grey, #E5E7EB);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    display: block;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--np-purple, #3C1361), var(--np-orange, #EA580C));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.industry-card:hover::before {
    transform: scaleX(1);
}

.industry-card:hover {
    transform: translateY(-4px);
    border-color: rgba(60, 19, 97, 0.15);
    box-shadow: 0 12px 32px rgba(60, 19, 97, 0.08);
}

.industry-card__title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 500;
    color: #111827;
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.industry-card:hover .industry-card__title {
    color: #3C1361;
}

.industry-card__description {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #6B7280;
    font-weight: 400;
    margin: 0 0 1rem 0;
}

.industry-card:hover .industry-card__description {
    color: #6B7280;
}

.industry-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 500;
    color: #3C1361;
}

.industry-card:hover .industry-card__link {
    color: #EA580C;
}

.industry-card__arrow {
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-card__arrow {
    transform: translateX(4px);
}

/* ==========================================================================
   Services Section - 60/40 Split Layout
   ========================================================================== */
.services-section {
    background: #FFFFFF;
}

.services-layout {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 3rem;
    align-items: center;
}

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

.service-card {
    background: var(--np-white, #FFFFFF);
    border: 1px solid var(--np-mid-grey, #E5E7EB);
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--np-purple, #3C1361), var(--np-orange, #EA580C));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover::before,
.service-card.active::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: rgba(60, 19, 97, 0.15);
    box-shadow: 0 8px 24px rgba(60, 19, 97, 0.08);
}

.service-card.active {
    border-color: rgba(60, 19, 97, 0.25);
    box-shadow: 0 8px 24px rgba(60, 19, 97, 0.12);
}

.service-title {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    color: #111827;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.service-card.active .service-title {
    color: #3C1361;
}

.service-description {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    line-height: 1.6;
    color: #6B7280;
    font-weight: 400;
    margin: 0;
}

/* Services Preview - Device Mockup */
.services-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* iPhone Device Mockup - Pure CSS */
.device-mockup {
    position: relative;
}

.device-mockup--iphone {
    width: 280px;
    max-width: 100%;
}

.device-mockup__frame {
    background: #1a1a1a;
    border-radius: 44px;
    padding: 12px;
    box-shadow:
        0 0 0 2px #333,
        0 25px 50px -12px rgba(0, 0, 0, 0.4),
        inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    position: relative;
}

.device-mockup__notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 18px;
    background: #1a1a1a;
    border-radius: 0 0 14px 14px;
    z-index: 10;
}

.device-mockup__notch::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
}

.device-mockup__screen {
    background: #000;
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 9 / 19.5;
    position: relative;
}

.device-mockup__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.device-mockup__image.active {
    opacity: 1;
}


.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.services-cta__text {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 300;
    color: #6B7280;
    margin: 0;
}

/* ==========================================================================
   Q&A Grid Section
   ========================================================================== */
.qa-grid-section {
    background: #FFFFFF;
    padding: 5rem 0;
}

.qa-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.qa-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    align-items: start;
}

.qa-row:first-of-type {
    padding-top: 0;
}

.qa-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.qa-question {
    font-family: var(--font-primary);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 400;
    color: #111827;
    line-height: 1.3;
}

.qa-answer {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 300;
    color: #374151;
    line-height: 1.7;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
/* Tablet landscape */
@media (max-width: 1024px) {
    .differentiators-grid {
        gap: 1.5rem;
    }

    .industries-grid {
        gap: 1.25rem;
    }

    .services-layout {
        grid-template-columns: 55% 45%;
        gap: 2rem;
    }

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

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

/* Tablet portrait */
@media (max-width: 900px) {
    .services-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .services-preview {
        order: -1;
    }

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

    .qa-row {
        grid-template-columns: 1fr 1.5fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .showrooms-hero {
        min-height: auto;
        padding-top: calc(var(--header-height, 70px) + 2rem);
        padding-bottom: 3rem;
    }

    .showrooms-hero::before {
        display: none;
    }

    .showrooms-hero .container {
        padding: 0 var(--space-lg, 1.5rem);
    }

    .showrooms-hero .hero-heading {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: 1.5rem;
    }

    .showrooms-hero .hero-description {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }

    .showrooms-hero .hero-description:first-of-type {
        font-size: 1.0625rem;
    }

    .showrooms-hero .hero-tagline {
        font-size: 1rem;
    }

    .neural-section {
        padding: 3.5rem 0;
    }

    .neural-container {
        padding: 0 1.5rem;
    }

    .infrastructure-section {
        padding: 4rem 0;
    }

    .infrastructure-container {
        padding: 0 1.5rem;
    }

    .infrastructure-headline {
        font-size: 1.75rem;
    }

    .infrastructure-lead {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    .infrastructure-text p {
        font-size: 1rem;
    }

    .infrastructure-emphasis {
        font-size: 1.0625rem !important;
    }

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

    .differentiator-card {
        padding: 1.75rem 1.5rem;
    }

    .differentiator-card:hover {
        transform: none;
    }

    .differentiator-card__title {
        font-size: 1.125rem;
    }

    .differentiator-card__description {
        font-size: 0.9375rem;
    }

    .section-headline {
        font-size: 1.375rem;
        margin-bottom: 2rem;
    }

    .section-headline::after {
        width: 32px;
        margin-top: 0.75rem;
    }

    .carousel-track {
        margin: 0;
    }

    .carousel-slide {
        padding: 1.75rem 1.5rem;
        gap: 1.5rem;
    }

    .slide-image {
        width: 120px;
        height: 120px;
        order: -1;
    }

    .slide-headline {
        font-size: 1.375rem;
    }

    .slide-paragraph {
        font-size: 0.9375rem;
    }

    .carousel-btn {
        display: none;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .industry-card {
        padding: 1.5rem 1.25rem;
    }

    .industry-card:hover {
        transform: none;
    }

    .industry-card__title {
        font-size: 1.125rem;
    }

    .industry-card__description {
        font-size: 0.9375rem;
    }

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

    .services-preview {
        position: relative;
        top: 0;
        order: -1;
    }

    .device-mockup--iphone {
        width: 220px;
    }

    .device-mockup__frame {
        border-radius: 36px;
        padding: 10px;
    }

    .device-mockup__notch {
        width: 80px;
        height: 24px;
        border-radius: 0 0 14px 14px;
    }

    .device-mockup__screen {
        border-radius: 26px;
    }

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

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

    .service-title {
        font-size: 1rem;
    }

    .service-description {
        font-size: 0.875rem;
    }

    .qa-grid-section {
        padding: 3.5rem 0;
    }

    .qa-grid-container {
        padding: 0 1.5rem;
    }

    .qa-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 0;
    }

    .qa-question {
        font-size: 1.125rem;
    }

    .qa-answer {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .showrooms-hero .hero-heading {
        font-size: 1.625rem;
    }

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

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

    .infrastructure-headline {
        font-size: 1.5rem;
    }

    .infrastructure-lead {
        font-size: 1rem;
    }

    .differentiator-card {
        padding: 1.25rem 1rem;
    }

    .industry-card {
        padding: 1.25rem 1rem;
    }

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

/* ==========================================================================
   Touch Device Optimizations
   ========================================================================== */
@media (hover: none) and (pointer: coarse) {
    /* Ensure touch targets are at least 44x44px */
    .service-card {
        min-height: 44px;
    }

    .carousel-indicator {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .carousel-indicator::after {
        content: '';
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: inherit;
    }

    .carousel-indicator.active::after {
        width: 24px;
        border-radius: 4px;
    }

    /* Remove hover effects on touch devices */
    .industry-card:hover,
    .service-card:hover,
    .differentiator-card:hover {
        transform: none;
        box-shadow: none;
    }

    .industry-card:active,
    .service-card:active,
    .differentiator-card:active {
        transform: scale(0.98);
    }

    /* Better tap feedback */
    .service-card {
        -webkit-tap-highlight-color: rgba(60, 19, 97, 0.1);
    }

    .industry-card {
        -webkit-tap-highlight-color: rgba(60, 19, 97, 0.1);
    }
}

/* ==========================================================================
   Reduced Motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
    }

    .industry-card:hover,
    .service-card:hover {
        transform: none;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
    .neural-section {
        background: white !important;
        padding: 2rem 0;
    }

    .industry-card,
    .service-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
