/* ═══════════════════════════════════════════════════════════
   Template B — Dark & Bold
   Simple Tech Service Pages

   Fonts:  Plus Jakarta Sans (headings), Inter (body/nav/buttons)
   Colors: Orange #FC7B03, Dark #222222, Darker #1A1A1C
   ═══════════════════════════════════════════════════════════ */


/* ── Reset ──────────────────────────────────────────────── */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

svg {
    display: inline-block;
    vertical-align: middle;
}


/* ── Body & Global ──────────────────────────────────────── */

body.stsp-b {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    background: #1A1A1C;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* ── Container ──────────────────────────────────────────── */

.stsp-b-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 52px;
}


/* ── Sections ───────────────────────────────────────────── */

.stsp-b-section {
    padding: 100px 0;
}

.stsp-b-section--dark {
    background: #222222;
}

.stsp-b-section--darker {
    background: #1A1A1C;
}

.stsp-b-section__heading {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.stsp-b-section__subheading {
    font-size: 17px;
    color: rgba(255,255,255,0.5);
    text-align: center;
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.stsp-b-section__heading + .stsp-b-section__subheading {
    margin-top: 0;
}

.stsp-b-section__heading:last-child {
    margin-bottom: 48px;
}


/* ── Buttons ────────────────────────────────────────────── */

.stsp-b-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    padding: 14px 28px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.stsp-b-btn--primary {
    background: #FC7B03;
    color: #FFFFFF;
    border-color: #FC7B03;
}

.stsp-b-btn--primary:hover {
    background: #C45F00;
    border-color: #C45F00;
    color: #FFFFFF;
}

.stsp-b-btn--ghost {
    background: transparent;
    color: #FFFFFF;
    border-color: rgba(255,255,255,0.28);
}

.stsp-b-btn--ghost:hover {
    border-color: rgba(255,255,255,0.65);
    color: #FFFFFF;
}

.stsp-b-btn--lg {
    font-size: 16px;
    padding: 16px 36px;
}

.stsp-b-btn--sm {
    font-size: 14px;
    padding: 10px 20px;
}

.stsp-b-btn__icon {
    display: inline-flex;
    width: 15px;
    height: 15px;
}

.stsp-b-btn__icon svg {
    width: 15px;
    height: 15px;
}


/* ── Orange Link ────────────────────────────────────────── */

.stsp-b-link--orange {
    color: #FC7B03;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.stsp-b-link--orange:hover {
    text-decoration: underline;
}

.stsp-b-link__arrow {
    display: inline-flex;
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.stsp-b-link--orange:hover .stsp-b-link__arrow {
    transform: translateX(3px);
}

.stsp-b-link__arrow svg {
    width: 100%;
    height: 100%;
}


/* ═══════════════════════════════════════════════════════════
   1. HEADER
   ═══════════════════════════════════════════════════════════ */

.stsp-b-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #1A1A1C;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.stsp-b-header--scrolled {
    background: rgba(26,26,28,0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.stsp-b-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 66px;
}

.stsp-b-header__logo img {
    max-height: 36px;
    width: auto;
}

.stsp-b-header__nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.stsp-b-header__nav a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    transition: color 0.2s ease;
    letter-spacing: 0.01em;
}

.stsp-b-header__nav a:hover {
    color: #FC7B03;
}

.stsp-dropdown-chevron {
    width: 10px;
    height: 10px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 2px;
}

.stsp-b-header__dropdown {
    position: relative;
}

.stsp-b-header__dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1A1A1C;
    border: 1px solid #3A3A3E;
    border-radius: 8px;
    padding: 12px 0;
    min-width: 200px;
    z-index: 200;
    margin-top: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.stsp-b-header__dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.stsp-b-header__dropdown:hover .stsp-b-header__dropdown-menu {
    display: block;
}

.stsp-b-header__dropdown-menu a {
    display: block;
    padding: 8px 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

.stsp-b-header__dropdown-menu a:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
}

.stsp-b-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Hamburger */
.stsp-b-header__menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
}

.stsp-b-header__menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.85);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.stsp-b-header__menu-toggle--active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.stsp-b-header__menu-toggle--active span:nth-child(2) {
    opacity: 0;
}

.stsp-b-header__menu-toggle--active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ═══════════════════════════════════════════════════════════
   2. HERO
   ═══════════════════════════════════════════════════════════ */

.stsp-b-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 140px 0;
}

.stsp-b-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 1;
}

.stsp-b-hero__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.stsp-b-hero__eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #FC7B03;
    margin-bottom: 20px;
}

.stsp-b-hero__h1 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.08;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: -0.025em;
}

.stsp-b-hero__tagline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin-bottom: 12px;
}

.stsp-b-hero__desc {
    font-size: 17px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 36px;
    max-width: 560px;
    line-height: 1.7;
}

.stsp-b-hero__ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}


/* ═══════════════════════════════════════════════════════════
   3. LIVE SUPPORT BAR
   ═══════════════════════════════════════════════════════════ */

.stsp-b-livesupport {
    background: #141416;
    border-top: 1px solid #FC7B03;
    border-bottom: 1px solid #FC7B03;
    padding: 14px 0;
}

.stsp-b-livesupport__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.stsp-b-livesupport__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #FFFFFF;
    flex-shrink: 0;
    animation: stsp-b-pulse 1.5s ease-in-out infinite;
}

@keyframes stsp-b-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.6;
    }
}

.stsp-b-livesupport__text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #FFFFFF;
}

.stsp-b-livesupport__phone {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.stsp-b-livesupport__phone:hover {
    opacity: 0.8;
}


/* ═══════════════════════════════════════════════════════════
   4. PAIN POINTS
   ═══════════════════════════════════════════════════════════ */

.stsp-b-pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stsp-b-pain-card {
    background: #2A2A2E;
    border-left: 3px solid #FC7B03;
    border-radius: 12px;
    padding: 32px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stsp-b-pain-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.stsp-b-pain-card__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.stsp-b-pain-card__desc {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.stsp-b-pain-solution {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid #FC7B03;
    border-radius: 12px;
    padding: 32px;
    background: rgba(252,123,3,0.06);
}

.stsp-b-pain-solution__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #FC7B03;
}

.stsp-b-pain-solution__icon svg {
    width: 24px;
    height: 24px;
    color: #FC7B03;
}

.stsp-b-pain-solution p {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════
   5. FEATURES / CAPABILITIES
   ═══════════════════════════════════════════════════════════ */

/* Card grid */
.stsp-b-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stsp-b-feature-card {
    background: #2A2A2E;
    border: 1px solid #3A3A3E;
    border-radius: 16px;
    padding: 34px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.stsp-b-feature-card:hover {
    border-color: #FC7B03;
    box-shadow: 0 0 20px rgba(252,123,3,0.15);
    transform: translateY(-2px);
}

.stsp-b-feature-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FC7B03;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.stsp-b-feature-card__icon svg {
    width: 22px;
    height: 22px;
    color: #FFFFFF;
}

.stsp-b-feature-card__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.stsp-b-feature-card__desc {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-bottom: 16px;
}

.stsp-b-feature-card .stsp-b-link--orange {
    margin-top: auto;
}

/* Accordion layout (features + FAQ shared base) */
.stsp-b-accordion {
    max-width: 760px;
    margin: 0 auto;
}

.stsp-b-accordion__item {
    border-left: 3px solid #FC7B03;
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
    background: #2A2A2E;
    transition: border-color 0.25s ease;
}

.stsp-b-accordion__item:hover,
.stsp-b-accordion__item.is-open {
    border-color: #FC7B03;
}

.stsp-b-accordion__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.stsp-b-accordion__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #FC7B03;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stsp-b-accordion__icon svg {
    width: 20px;
    height: 20px;
    color: #FFFFFF;
}

.stsp-b-accordion__title {
    flex: 1;
    font-size: 15px;
    color: #FFFFFF;
}

.stsp-b-accordion__chevron {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: rgba(255,255,255,0.5);
}

.stsp-b-accordion__item.is-open .stsp-b-accordion__chevron {
    transform: rotate(180deg);
}

.stsp-b-accordion__chevron svg {
    width: 100%;
    height: 100%;
}

.stsp-b-accordion__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.stsp-b-accordion__item.is-open .stsp-b-accordion__panel {
    max-height: 400px;
    padding: 0 20px 20px;
}

.stsp-b-accordion__panel p {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 50px;
}


/* ═══════════════════════════════════════════════════════════
   6. FAQ
   ═══════════════════════════════════════════════════════════ */

.stsp-b-faq {
    max-width: 760px;
    margin: 0 auto;
}

.stsp-b-faq__item {
    border-left: 3px solid #FC7B03;
    margin-bottom: 8px;
    border-radius: 0 8px 8px 0;
    overflow: hidden;
    background: #2A2A2E;
}

.stsp-b-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-align: left;
}

.stsp-b-faq__chevron {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
    color: rgba(255,255,255,0.5);
}

.stsp-b-faq__item.is-open .stsp-b-faq__chevron,
.stsp-b-faq__item--open .stsp-b-faq__chevron {
    transform: rotate(270deg);
}

.stsp-b-faq__chevron svg {
    width: 100%;
    height: 100%;
}

.stsp-b-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.stsp-b-faq__item.is-open .stsp-b-faq__answer,
.stsp-b-faq__item--open .stsp-b-faq__answer {
    max-height: 600px;
    padding: 0 20px 20px;
}

.stsp-b-faq__answer p {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}


/* ═══════════════════════════════════════════════════════════
   7. BRAND PARTNERS & CERTIFICATIONS
   ═══════════════════════════════════════════════════════════ */

.stsp-b-partners-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 32px;
}

.stsp-b-partner {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.25s ease;
}

.stsp-b-partner img {
    max-height: 96px;
    width: auto;
    transition: opacity 0.25s ease;
}

/* Invert Lutron logo to white for dark bg, but keep Control4 logos in original colors */
.stsp-b-partner--lutron img {
    filter: brightness(0) invert(1);
}

.stsp-b-partner:hover img {
    opacity: 0.7;
}

.stsp-b-partner__name {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.02em;
}

.stsp-b-partners-sep {
    display: none;
}

.stsp-b-partners-certs {
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.35);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}


/* ═══════════════════════════════════════════════════════════
   8. PROCESS / HOW IT WORKS — TIMELINE
   ═══════════════════════════════════════════════════════════ */

.stsp-b-timeline {
    display: flex;
    justify-content: center;
    gap: 0;
    position: relative;
    padding: 20px 0;
}

.stsp-b-timeline::before {
    content: '';
    position: absolute;
    top: 44px;
    left: calc(12.5%);
    right: calc(12.5%);
    height: 2px;
    background: #FC7B03;
    z-index: 1;
}

.stsp-b-timeline__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    text-align: center;
    max-width: 240px;
}

.stsp-b-timeline__number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FC7B03;
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.stsp-b-timeline__content {
    text-align: center;
    margin-top: 20px;
    padding: 0 12px;
}

.stsp-b-timeline__title {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin-top: 16px;
    margin-bottom: 6px;
}

.stsp-b-timeline__desc {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-top: 8px;
}


.stsp-b-process__image {
    margin-top: 48px;
}
.stsp-b-process__image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    max-height: 400px;
}


/* ═══════════════════════════════════════════════════════════
   9. VIRTUAL SHOWROOM
   ═══════════════════════════════════════════════════════════ */

.stsp-b-showroom {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1A1A1C;
}

.stsp-b-showroom__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.stsp-b-showroom__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    background: rgba(252, 123, 3, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(252, 123, 3, 0.25);
    border-radius: 16px;
    padding: 56px 48px;
}

.stsp-b-showroom-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(252,123,3,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #FC7B03;
}

.stsp-b-showroom-card__icon svg {
    width: 28px;
    height: 28px;
    color: #FC7B03;
}

.stsp-b-showroom-card__heading {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.stsp-b-showroom-card__desc {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 32px;
}


/* ═══════════════════════════════════════════════════════════
   10. SERVICE AREA
   ═══════════════════════════════════════════════════════════ */

.stsp-b-area-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.stsp-b-area-pill {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid #FC7B03;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #FC7B03;
    transition: background 0.2s ease, color 0.2s ease;
}

.stsp-b-area-pill:hover,
a.stsp-b-area-pill:hover {
    background: #FC7B03;
    color: #FFFFFF;
}

.stsp-b-area__image {
    margin-top: 40px;
    margin-bottom: 40px;
}
.stsp-b-area__image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    max-height: 400px;
}

.stsp-b-area-contact {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.stsp-b-area-contact__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #FC7B03;
    transition: color 0.2s ease;
}

.stsp-b-area-contact__item:hover {
    color: #FFFFFF;
}

.stsp-b-area-contact__icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
}

.stsp-b-area-contact__icon svg {
    width: 100%;
    height: 100%;
}


/* ═══════════════════════════════════════════════════════════
   11. TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */

.stsp-b-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stsp-b-testimonial-card {
    background: #2A2A2E;
    border: 1px solid #3A3A3E;
    border-top: 3px solid #FC7B03;
    border-radius: 12px;
    padding: 34px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stsp-b-testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.stsp-b-testimonial-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.stsp-b-star {
    width: 14px;
    height: 14px;
    color: #FC7B03;
    display: inline-flex;
}

.stsp-b-star svg {
    width: 100%;
    height: 100%;
    fill: #FC7B03;
    stroke: #FC7B03;
}

.stsp-b-testimonial-card__quote {
    font-size: 14px;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 20px;
    border: none;
    padding: 0;
}

.stsp-b-testimonial-card__attr {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stsp-b-testimonial-card__name {
    font-size: 13px;
    font-weight: 600;
    color: #FFFFFF;
}

.stsp-b-testimonial-card__location {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}

.stsp-b-testimonials-placeholder {
    text-align: center;
    font-size: 16px;
    font-style: italic;
    color: rgba(255,255,255,0.5);
    padding: 40px 0;
}


/* ═══════════════════════════════════════════════════════════
   12. CROSS-SELL
   ═══════════════════════════════════════════════════════════ */

.stsp-b-crosssell-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stsp-b-crosssell-card {
    background: #2A2A2E;
    border: 1px solid #3A3A3E;
    border-radius: 16px;
    padding: 34px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.stsp-b-crosssell-card:hover {
    border-color: #FC7B03;
    box-shadow: 0 0 20px rgba(252,123,3,0.15);
    transform: translateY(-2px);
}

.stsp-b-crosssell-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FC7B03;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.stsp-b-crosssell-card__icon svg {
    width: 22px;
    height: 22px;
    color: #FFFFFF;
}

.stsp-b-crosssell-card__title {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.stsp-b-crosssell-card__desc {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-bottom: 16px;
}


/* ═══════════════════════════════════════════════════════════
   13. CONTACT (BRIGHT — Orange Background)
   ═══════════════════════════════════════════════════════════ */

.stsp-b-contact {
    background: #FC7B03;
    padding: 100px 0;
}

.stsp-b-contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: start;
}

.stsp-b-contact__heading {
    font-size: 36px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 16px;
}

.stsp-b-contact__desc {
    font-size: 17px;
    color: rgba(34,34,34,0.75);
    line-height: 1.7;
    margin-bottom: 32px;
}

.stsp-b-contact__details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stsp-b-contact__detail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #222222;
    transition: color 0.2s ease;
}

.stsp-b-contact__detail:hover {
    color: #FFFFFF;
}

.stsp-b-contact__detail-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    color: #222222;
}

.stsp-b-contact__detail-icon svg {
    width: 100%;
    height: 100%;
}

/* Form on orange bg */
.stsp-b-contact__form {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 36px 32px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.stsp-b-contact__form .wpforms-container {
    max-width: 100%;
}

.stsp-b-contact__form .wpforms-form .wpforms-field-label {
    color: #222222;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.stsp-b-contact__form .wpforms-form input[type="text"],
.stsp-b-contact__form .wpforms-form input[type="email"],
.stsp-b-contact__form .wpforms-form input[type="tel"],
.stsp-b-contact__form .wpforms-form input[type="url"],
.stsp-b-contact__form .wpforms-form textarea,
.stsp-b-contact__form .wpforms-form select {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    color: #222222;
    border-radius: 8px;
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: border-color 0.2s ease;
}

.stsp-b-contact__form .wpforms-form input::placeholder,
.stsp-b-contact__form .wpforms-form textarea::placeholder {
    color: #C1C1C1;
}

.stsp-b-contact__form .wpforms-form input:focus,
.stsp-b-contact__form .wpforms-form textarea:focus,
.stsp-b-contact__form .wpforms-form select:focus {
    outline: none;
    border-color: #FC7B03;
}

.stsp-b-contact__form .wpforms-form textarea {
    min-height: 120px;
    resize: vertical;
}

.stsp-b-contact__form button[type="submit"],
.stsp-b-contact__form input[type="submit"],
.stsp-b-contact__form .wpforms-submit,
.stsp-b-contact__form .wpforms-form button[type="submit"],
.stsp-b-contact__form .wpforms-form .wpforms-submit {
    background: #222222 !important;
    color: #FFFFFF !important;
    border: none !important;
    padding: 14px 32px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: 100%;
}

.stsp-b-contact__form button[type="submit"]:hover,
.stsp-b-contact__form input[type="submit"]:hover,
.stsp-b-contact__form .wpforms-submit:hover,
.stsp-b-contact__form .wpforms-form button[type="submit"]:hover,
.stsp-b-contact__form .wpforms-form .wpforms-submit:hover {
    background: #000000 !important;
}

.stsp-b-contact__form .wpforms-form .wpforms-required-label {
    color: #C45F00;
}


/* ═══════════════════════════════════════════════════════════
   14. FOOTER
   ═══════════════════════════════════════════════════════════ */

.stsp-b-footer {
    background: #141416;
    padding: 72px 0 32px;
}

.stsp-b-footer__grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 52px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.stsp-b-footer__logo img {
    max-height: 30px;
    width: auto;
    margin-bottom: 16px;
}

.stsp-b-footer__address {
    font-size: 14px;
    color: rgba(255,255,255,0.35);
    line-height: 1.6;
    margin-bottom: 20px;
    display: block;
    transition: color 0.2s ease;
}

a.stsp-b-footer__address:hover {
    color: rgba(255,255,255,0.6);
}

.stsp-b-footer__social {
    display: flex;
    gap: 8px;
}

.stsp-b-footer__social-link {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.38);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.stsp-b-footer__social-link:hover {
    border-color: rgba(255,255,255,0.35);
    color: #FFFFFF;
}

.stsp-b-footer__social-link svg {
    width: 18px;
    height: 18px;
}

.stsp-b-footer__col-title {
    font-size: 11px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.stsp-b-footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stsp-b-footer__links a {
    font-size: 13px;
    color: rgba(255,255,255,0.38);
    transition: color 0.2s ease;
}

.stsp-b-footer__links a:hover {
    color: #FFFFFF;
}

.stsp-b-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 20px 0 0;
    margin-top: 0;
}

.stsp-b-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stsp-b-footer__bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.28);
}

.stsp-b-footer__bottom a {
    font-size: 12px;
    color: rgba(255,255,255,0.28);
    transition: color 0.2s ease;
}

.stsp-b-footer__bottom a:hover {
    color: #FFFFFF;
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 1024px
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {

    .stsp-b-container {
        padding: 0 36px;
    }

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

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

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


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 768px
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

    .stsp-b-container {
        padding: 0 24px;
    }

    .stsp-b-header__menu-toggle {
        display: flex;
    }

    .stsp-b-header__nav {
        display: none;
        position: absolute;
        top: 66px;
        left: 0;
        right: 0;
        background: #1A1A1C;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        flex-direction: column;
        padding: 20px 24px;
        gap: 16px;
    }

    .stsp-b-header__nav--open {
        display: flex;
    }

    .stsp-b-header__actions .stsp-b-btn {
        font-size: 12px;
        padding: 8px 14px;
    }

    .stsp-b-hero {
        padding: 100px 0;
    }

    .stsp-b-hero__h1 {
        font-size: 36px;
    }

    .stsp-b-hero__tagline {
        font-size: 17px;
    }

    .stsp-b-hero__desc {
        font-size: 15px;
    }

    .stsp-b-hero__ctas {
        flex-direction: column;
    }

    .stsp-b-hero__ctas .stsp-b-btn {
        width: 100%;
        text-align: center;
    }

    .stsp-b-section {
        padding: 64px 0;
    }

    .stsp-b-section__heading {
        font-size: 28px;
    }

    .stsp-b-pain-grid {
        grid-template-columns: 1fr;
    }

    .stsp-b-features-grid {
        grid-template-columns: 1fr;
    }

    .stsp-b-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stsp-b-crosssell-grid {
        grid-template-columns: 1fr;
    }

    /* Timeline vertical stack */
    .stsp-b-timeline {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding-left: 24px;
    }

    .stsp-b-timeline::before {
        top: 44px;
        left: 23px;
        right: auto;
        width: 2px;
        height: calc(100% - 68px);
    }

    .stsp-b-timeline__step {
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
        max-width: none;
        text-align: left;
        padding-bottom: 32px;
    }

    .stsp-b-timeline__content {
        text-align: left;
        margin-top: 0;
        padding: 4px 0 0;
    }

    .stsp-b-timeline__title {
        margin-top: 0;
    }

    .stsp-b-timeline__desc {
        margin-top: 4px;
    }

    .stsp-b-contact {
        padding: 64px 0;
    }

    .stsp-b-contact__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stsp-b-contact__heading {
        font-size: 28px;
    }

    .stsp-b-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .stsp-b-footer__bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .stsp-b-showroom__inner {
        padding: 48px 28px;
        margin: 0 16px;
    }

    .stsp-b-showroom-card__heading {
        font-size: 24px;
    }

    .stsp-b-partners-row {
        gap: 24px;
    }

    .stsp-b-partners-sep {
        display: none;
    }
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 480px
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 480px) {

    .stsp-b-container {
        padding: 0 16px;
    }

    .stsp-b-header__inner {
        height: 58px;
    }

    .stsp-b-header__nav {
        top: 58px;
    }

    .stsp-b-header__logo img {
        max-height: 28px;
    }

    .stsp-b-hero {
        min-height: 480px;
        padding: 80px 0;
    }

    .stsp-b-hero__h1 {
        font-size: 30px;
    }

    .stsp-b-hero__eyebrow {
        font-size: 10px;
    }

    .stsp-b-section {
        padding: 48px 0;
    }

    .stsp-b-section__heading {
        font-size: 24px;
    }

    .stsp-b-section__subheading {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .stsp-b-btn--lg {
        font-size: 15px;
        padding: 14px 28px;
    }

    .stsp-b-pain-card {
        padding: 20px 16px;
    }

    .stsp-b-feature-card {
        padding: 24px 20px;
    }

    .stsp-b-faq__question {
        font-size: 15px;
        padding: 16px;
    }

    .stsp-b-faq__answer {
        padding: 0 16px;
    }

    .stsp-b-faq__item.is-open .stsp-b-faq__answer,
    .stsp-b-faq__item--open .stsp-b-faq__answer {
        padding: 0 16px 16px;
    }

    .stsp-b-contact {
        padding: 48px 0;
    }

    .stsp-b-contact__form {
        padding: 24px 20px;
    }

    .stsp-b-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .stsp-b-area-pill {
        font-size: 13px;
        padding: 5px 14px;
    }

    .stsp-b-crosssell-card {
        padding: 24px 20px;
    }

    .stsp-b-livesupport__text {
        font-size: 11px;
        text-align: center;
    }

    .stsp-b-accordion__panel p {
        padding-left: 0;
    }

    .stsp-b-timeline {
        padding-left: 0;
    }

    .stsp-b-showroom-card {
        padding: 28px 20px;
    }
}
