/**
 * Showroom Pages - Creative Section Styles
 * Framer-inspired motion meets Rick Rubin minimalism
 * Neural Partners design system
 */

/* ==========================================================================
   Section Base - Clean Canvas
   ========================================================================== */
.showroom-section {
    position: relative;
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--neutral-warm, #FAF9F7);
    overflow: hidden;
}

.showroom-section--white {
    background: #FFFFFF;
}

.showroom-section--contrast {
    background: #111827;
}

.showroom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.showroom-container--wide {
    max-width: 1400px;
}

/* ==========================================================================
   Section Headers - Minimal & Bold
   ========================================================================== */
.showroom-header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.showroom-header--left {
    text-align: left;
}

.showroom-header__eyebrow {
    display: block;
    color: var(--neural-purple, #3c1361);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.showroom-header__title {
    color: #111827;
    font-family: var(--font-primary, 'Open Sans', system-ui, sans-serif);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 200;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    letter-spacing: 0.02em;
}

.showroom-section--contrast .showroom-header__title {
    color: #FFFFFF;
}

.showroom-header__subtitle {
    color: #6B7280;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 300;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
}

.showroom-section--contrast .showroom-header__subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.showroom-header--left .showroom-header__subtitle {
    margin: 0;
}

/* ==========================================================================
   Industry Cards - Landing Page Grid (Framer-style hover)
   ========================================================================== */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.industry-card {
    position: relative;
    padding: 2.5rem;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}

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

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(60, 19, 97, 0.1);
    border-color: rgba(60, 19, 97, 0.15);
}

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

.industry-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(60, 19, 97, 0.08), rgba(217, 119, 6, 0.08));
    border-radius: 12px;
    color: var(--neural-purple, #3c1361);
    font-size: 1.5rem;
}

.industry-card__title {
    color: #111827;
    font-size: 1.35rem;
    font-weight: 400;
    margin: 0 0 0.75rem 0;
    transition: color 0.3s ease;
}

.industry-card:hover .industry-card__title {
    color: var(--neural-purple, #3c1361);
}

.industry-card__description {
    color: #6B7280;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.65;
    margin: 0 0 1.25rem 0;
}

.industry-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--neural-purple, #3c1361);
    font-size: 0.85rem;
    font-weight: 500;
}

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

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

/* ==========================================================================
   Manifesto Block - Rick Rubin Inspired Statement
   ========================================================================== */
.manifesto-block {
    position: relative;
    padding: clamp(3rem, 6vw, 5rem);
    background: #FFFFFF;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.manifesto-block::before {
    content: '"';
    position: absolute;
    top: 2rem;
    left: 3rem;
    font-size: 6rem;
    font-weight: 200;
    line-height: 1;
    color: rgba(60, 19, 97, 0.08);
    font-family: Georgia, serif;
}

.manifesto-block__text {
    color: #111827;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 300;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.manifesto-block__text strong {
    color: var(--neural-purple, #3c1361);
    font-weight: 400;
}

/* ==========================================================================
   Service Showcase - Asymmetric Grid (Framer Layout)
   ========================================================================== */
.service-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.service-showcase__item {
    padding: 2rem;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-showcase__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.service-showcase__item--featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(60, 19, 97, 0.03) 0%, rgba(217, 119, 6, 0.02) 100%);
}

.service-showcase__number {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background: linear-gradient(135deg, var(--neural-purple, #3c1361), var(--neural-orange, #d97706));
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 1.25rem;
}

.service-showcase__title {
    color: #111827;
    font-size: 1.15rem;
    font-weight: 500;
    margin: 0 0 0.75rem 0;
}

.service-showcase__description {
    color: #6B7280;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.65;
    margin: 0;
}

.service-showcase__list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.service-showcase__list li {
    position: relative;
    padding-left: 1.25rem;
    color: #6B7280;
    font-size: 0.85rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.service-showcase__list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--neural-orange, #d97706);
}

/* ==========================================================================
   Stats Strip - Minimal Impact Numbers
   ========================================================================== */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.stats-strip__item {
    text-align: center;
}

.stats-strip__number {
    display: block;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 200;
    background: linear-gradient(135deg, var(--neural-purple, #3c1361), var(--neural-orange, #d97706));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stats-strip__label {
    color: #6B7280;
    font-size: 0.9rem;
    font-weight: 400;
}

/* Contrast version */
.showroom-section--contrast .stats-strip {
    border-color: rgba(255, 255, 255, 0.1);
}

.showroom-section--contrast .stats-strip__label {
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   Why Choose - Split Panel (Rick Rubin Clarity)
   ========================================================================== */
.why-choose {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.why-choose__intro {
    position: sticky;
    top: calc(var(--header-height, 75px) + 2rem);
}

.why-choose__intro-title {
    color: #111827;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 200;
    line-height: 1.3;
    margin: 0 0 1rem 0;
}

.why-choose__intro-text {
    color: #6B7280;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    margin: 0;
}

.why-choose__reasons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.why-choose__reason {
    padding: 1.75rem 2rem;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.why-choose__reason:hover {
    border-color: rgba(60, 19, 97, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.why-choose__reason-number {
    display: inline-block;
    color: var(--neural-orange, #d97706);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.why-choose__reason-title {
    color: #111827;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0 0 0.5rem 0;
}

.why-choose__reason-text {
    color: #6B7280;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   CTA Section - Gradient Statement
   ========================================================================== */
.showroom-cta {
    position: relative;
    padding: clamp(3rem, 6vw, 5rem);
    background: linear-gradient(135deg, var(--neural-purple, #3c1361) 0%, #1a0829 100%);
    border-radius: 24px;
    text-align: center;
    overflow: hidden;
}

.showroom-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.showroom-cta__content {
    position: relative;
    z-index: 1;
}

.showroom-cta__title {
    color: #FFFFFF;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 300;
    margin: 0 0 1rem 0;
}

.showroom-cta__text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 550px;
    margin: 0 auto 2rem;
}

.showroom-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--neural-purple, #3c1361);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.showroom-cta__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.showroom-faq {
    background: #FFFFFF;
}

/* ==========================================================================
   Related Showrooms - Compact Links
   ========================================================================== */
.related-showrooms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.related-showroom {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-showroom:hover {
    border-color: rgba(60, 19, 97, 0.2);
    transform: translateX(4px);
}

.related-showroom__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(60, 19, 97, 0.06);
    border-radius: 10px;
    color: var(--neural-purple, #3c1361);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.related-showroom__text {
    flex: 1;
}

.related-showroom__title {
    color: #111827;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0 0 0.25rem 0;
}

.related-showroom__subtitle {
    color: #9CA3AF;
    font-size: 0.8rem;
    font-weight: 400;
    margin: 0;
}

.related-showroom__arrow {
    color: var(--neural-orange, #d97706);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.related-showroom:hover .related-showroom__arrow {
    transform: translateX(4px);
}

/* ==========================================================================
   Text Links
   ========================================================================== */
.showroom-section .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.2s ease;
}

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

.showroom-section--contrast .text-link {
    color: var(--neural-orange, #d97706);
    text-decoration-color: rgba(217, 119, 6, 0.4);
}

.showroom-section--contrast .text-link:hover {
    color: #FFFFFF;
    text-decoration-color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .industry-grid {
        gap: 1.25rem;
    }

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

    .service-showcase__item--featured {
        grid-column: span 2;
    }

    .why-choose {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-choose__intro {
        position: static;
    }
}

@media (max-width: 768px) {
    .industry-grid {
        grid-template-columns: 1fr;
    }

    .service-showcase {
        grid-template-columns: 1fr;
    }

    .service-showcase__item--featured {
        grid-column: span 1;
    }

    .stats-strip {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .manifesto-block {
        padding: 2rem;
    }

    .manifesto-block::before {
        font-size: 4rem;
        top: 1rem;
        left: 1.5rem;
    }

    .related-showrooms {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .industry-card {
        padding: 1.75rem;
    }

    .service-showcase__item {
        padding: 1.5rem;
    }

    .showroom-cta {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   Reduced Motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    .industry-card,
    .service-showcase__item,
    .why-choose__reason,
    .related-showroom,
    .showroom-cta__button {
        transition: none;
    }

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