/* =============================================
   Template C — Minimal Editorial
   Simple Tech Service Pages
   ============================================= */

/* ── Reset & Base ─────────────────────────────── */

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

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

body.stsp-template-c {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #222222;
    background: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::selection {
    background: #FC7B03;
    color: #FFFFFF;
}

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

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

/* ── SECTION DIVIDERS ─────────────────────────── */
.stsp-c-pain::after,
.stsp-c-features::after,
.stsp-c-partners::after,
.stsp-c-process::after,
.stsp-c-showroom::after,
.stsp-c-faq::after,
.stsp-c-area::after,
.stsp-c-testimonials::after,
.stsp-c-crosssell::after {
    content: '';
    display: block;
    width: 120px;
    height: 2px;
    background: #C1C1C1;
    margin: 0 auto;
    position: relative;
    bottom: -60px;
}

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

ul, ol {
    list-style: none;
}

button {
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    border: none;
    background: none;
}

blockquote {
    margin: 0;
    padding: 0;
}

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


/* ── Shared Components ────────────────────────── */

.stsp-c-text-link {
    color: #FC7B03;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: color 0.15s ease, gap 0.15s ease;
}

.stsp-c-text-link:hover {
    color: #C45F00;
    gap: 10px;
}

.stsp-c-text-link__arrow {
    display: inline-flex;
}

.stsp-c-text-link__arrow svg {
    width: 16px;
    height: 16px;
    transition: transform 0.15s ease;
}

.stsp-c-text-link--lg {
    font-size: 17px;
}

.stsp-c-text-link--lg .stsp-c-text-link__arrow svg {
    width: 18px;
    height: 18px;
}

/* Plus/Minus toggle icon */
.stsp-c-plus {
    display: block;
    width: 18px;
    height: 18px;
    position: relative;
}

.stsp-c-plus::before,
.stsp-c-plus::after {
    content: '';
    position: absolute;
    background: #C1C1C1;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.stsp-c-plus::before {
    width: 18px;
    height: 2px;
    top: 8px;
    left: 0;
}

.stsp-c-plus::after {
    width: 2px;
    height: 18px;
    top: 0;
    left: 8px;
}

[aria-expanded="true"] .stsp-c-plus::after {
    transform: rotate(90deg);
    opacity: 0;
}


/* =============================================
   1. HEADER
   ============================================= */

.stsp-c-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
    height: 56px;
    transition: box-shadow 0.15s ease;
}

.stsp-c-header.is-scrolled {
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.stsp-c-header__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 52px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stsp-c-header__logo img {
    max-height: 32px;
    width: auto;
}

.stsp-c-header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stsp-c-header__nav a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #222222;
    transition: color 0.15s ease;
}

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

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

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

.stsp-c-header__dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    z-index: 200;
    margin-top: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

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

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

.stsp-c-header__dropdown-menu a {
    display: block;
    padding: 7px 20px;
    font-size: 13px;
    color: #7A7A7A;
    white-space: nowrap;
}

.stsp-c-header__dropdown-menu a:hover {
    color: #222222;
    background: #F9FAFB;
}

.stsp-c-header__cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stsp-c-header__phone {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #FC7B03;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    transition: color 0.15s ease;
}

.stsp-c-header__phone:hover {
    color: #C45F00;
}

.stsp-c-header__phone-icon {
    display: inline-flex;
}

.stsp-c-header__phone-icon svg {
    width: 16px;
    height: 16px;
    color: #FC7B03;
}

/* Mobile toggle */
.stsp-c-header__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 18px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}

.stsp-c-header__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #222222;
    border-radius: 1px;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.stsp-c-header__toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.stsp-c-header__toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.stsp-c-header__toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* =============================================
   2. HERO
   ============================================= */

.stsp-c-hero {
    position: relative;
    padding: 120px 0 100px;
    text-align: left;
    background-color: #222222;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.stsp-c-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.45) 100%);
    z-index: 1;
}

.stsp-c-hero__content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 52px;
}

.stsp-c-hero__eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.stsp-c-hero__h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 24px;
}

.stsp-c-hero__tagline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #FC7B03;
    margin-bottom: 16px;
}

.stsp-c-hero__description {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    max-width: 560px;
    margin-bottom: 40px;
}

.stsp-c-hero__actions {
    display: flex;
    gap: 16px;
}

.stsp-c-hero__cta-primary {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #FC7B03;
    text-decoration: underline;
    text-underline-offset: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.15s ease;
}

.stsp-c-hero__cta-primary:hover {
    gap: 12px;
}


/* =============================================
   3. LIVE SUPPORT BAR
   ============================================= */

.stsp-c-livebar {
    background: #FC7B03;
    padding: 14px 0;
}

.stsp-c-livebar__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

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

@keyframes stsp-c-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.stsp-c-livebar__text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #FFFFFF;
    letter-spacing: 0.02em;
}

.stsp-c-livebar__phone {
    color: #FFFFFF;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.15s ease;
}

.stsp-c-livebar__phone:hover {
    opacity: 0.8;
}


/* =============================================
   4. PROBLEM / PAIN POINTS
   ============================================= */

.stsp-c-pain {
    background: #FFFFFF;
    padding: 120px 0;
}

.stsp-c-pain__inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 52px;
}

.stsp-c-pain__heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    color: #222222;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.stsp-c-pain__subheading {
    font-size: 16px;
    line-height: 1.75;
    color: #7A7A7A;
    margin-bottom: 56px;
}

.stsp-c-pain__items {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.stsp-c-pain__item {
    /* NO border, NO background — just text */
}

.stsp-c-pain__item {
    border-bottom: 1px solid #E5E7EB;
}

.stsp-c-pain__item-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.stsp-c-pain__item-icon {
    display: inline-flex;
    flex-shrink: 0;
    margin-right: 14px;
}

.stsp-c-pain__item-icon svg {
    width: 20px;
    height: 20px;
    stroke: #FC7B03;
}

.stsp-c-pain__item-trigger .stsp-c-plus {
    flex-shrink: 0;
    margin-left: 16px;
}

.stsp-c-pain__item.is-open .stsp-c-plus::after {
    transform: rotate(90deg);
    opacity: 0;
}

.stsp-c-pain__item.is-open .stsp-c-plus::before,
.stsp-c-pain__item.is-open .stsp-c-plus::after {
    background: #FC7B03;
}

.stsp-c-pain__item-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 0;
}

.stsp-c-pain__item-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.stsp-c-pain__item-desc {
    padding-bottom: 20px;
    font-size: 15px;
    line-height: 1.75;
    color: #7A7A7A;
}

.stsp-c-pain__solution {
    margin-top: 56px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #FC7B03;
    line-height: 1.7;
}


/* =============================================
   5. FEATURES / CAPABILITIES
   ============================================= */

.stsp-c-features {
    background: #FAFAFA;
    padding: 120px 0;
}

.stsp-c-features__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 52px;
}

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

.stsp-c-features__subheading {
    font-size: 16px;
    line-height: 1.75;
    color: #7A7A7A;
    text-align: center;
    max-width: 500px;
    margin: 0 auto 64px;
}

/* Grid Mode */
.stsp-c-features__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stsp-c-features__card {
    padding: 40px;
    border-radius: 12px;
    background: transparent;
    border: none;
    transition: background 0.15s ease, box-shadow 0.15s ease;
}

.stsp-c-features__card:hover {
    background: #FFFFFF;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.stsp-c-features__card-icon {
    display: inline-flex;
    margin-bottom: 16px;
}

.stsp-c-features__card-icon svg {
    width: 24px;
    height: 24px;
    color: #FC7B03;
}

.stsp-c-features__card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 8px;
}

.stsp-c-features__card-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #7A7A7A;
}

/* Accordion Mode */
.stsp-c-features__accordion {
    max-width: 820px;
    margin: 0 auto;
}

.stsp-c-features__acc-item {
    border-bottom: 1px solid #E5E7EB;
}

.stsp-c-features__acc-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
}

.stsp-c-features__acc-icon {
    display: inline-flex;
    flex-shrink: 0;
    margin-right: 16px;
}

.stsp-c-features__acc-icon svg {
    width: 20px;
    height: 20px;
    color: #FC7B03;
}

.stsp-c-features__acc-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #222222;
    text-align: left;
    flex: 1;
}

.stsp-c-features__acc-toggle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #C1C1C1;
    display: inline-flex;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.stsp-c-features__acc-item.is-open .stsp-c-features__acc-toggle {
    transform: rotate(45deg);
}

.stsp-c-features__acc-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.stsp-c-features__acc-panel p {
    font-size: 15px;
    line-height: 1.75;
    color: #7A7A7A;
    padding: 0 0 24px 36px;
}


/* =============================================
   6. BRAND PARTNERS
   ============================================= */

.stsp-c-partners {
    background: #FFFFFF;
    padding: 80px 0;
}

.stsp-c-partners__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 52px;
    text-align: center;
}

.stsp-c-partners__heading {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #7A7A7A;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.stsp-c-partners__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
}

.stsp-c-partners__logo-link {
    display: inline-flex;
    align-items: center;
}

.stsp-c-partners__logo-link img {
    max-height: 96px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.15s ease;
}

.stsp-c-partners__logo-link:hover img {
    opacity: 0.7;
}

.stsp-c-partners__certs {
    font-size: 14px;
    color: #7A7A7A;
    margin-top: 32px;
}


/* =============================================
   7. PROCESS / HOW IT WORKS
   ============================================= */

.stsp-c-process {
    background: #FFFFFF;
    padding: 120px 0;
}

.stsp-c-process__inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 52px;
}

.stsp-c-process__heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    color: #222222;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.stsp-c-process__subheading {
    font-size: 16px;
    line-height: 1.75;
    color: #7A7A7A;
    margin-bottom: 56px;
}

.stsp-c-process__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.stsp-c-process__step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.stsp-c-process__number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #FC7B03;
    line-height: 1;
    flex-shrink: 0;
    min-width: 48px;
}

.stsp-c-process__step-content {
    flex: 1;
}

.stsp-c-process__step-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 6px;
}

.stsp-c-process__step-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #7A7A7A;
}


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


/* =============================================
   8. VIRTUAL SHOWROOM
   ============================================= */

.stsp-c-showroom {
    position: relative;
    padding: 120px 0;
    text-align: center;
    background-color: #222222;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.stsp-c-showroom__inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 48px 44px;
    text-align: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
}

.stsp-c-showroom__heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.stsp-c-showroom__desc {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.stsp-c-showroom__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FC7B03;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 8px;
    transition: background 0.15s ease;
    text-decoration: none;
}

.stsp-c-showroom__btn:hover {
    background: #C45F00;
    color: #FFFFFF;
}


/* =============================================
   9. FAQ
   ============================================= */

.stsp-c-faq {
    background: #FFFFFF;
    padding: 120px 0;
}

.stsp-c-faq__inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 52px;
}

.stsp-c-faq__heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    color: #222222;
    letter-spacing: -0.02em;
    margin-bottom: 48px;
}

.stsp-c-faq__item {
    border-bottom: 1px solid #E5E7EB;
}

.stsp-c-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #222222;
    line-height: 1.4;
}

.stsp-c-faq__toggle {
    display: inline-flex;
    flex-shrink: 0;
}

.stsp-c-faq__item.is-open .stsp-c-plus {
    transform: rotate(45deg);
}

.stsp-c-faq__item.is-open .stsp-c-plus::before,
.stsp-c-faq__item.is-open .stsp-c-plus::after {
    background: #FC7B03;
}

.stsp-c-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.stsp-c-faq__answer p {
    font-size: 15px;
    line-height: 1.75;
    color: #7A7A7A;
    padding: 0 0 24px;
}


/* =============================================
   10. SERVICE AREA
   ============================================= */

.stsp-c-area {
    background: #FAFAFA;
    padding: 100px 0;
}

.stsp-c-area__inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 52px;
}

.stsp-c-area__heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: #222222;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.stsp-c-area__desc {
    font-size: 16px;
    line-height: 1.75;
    color: #7A7A7A;
    margin-bottom: 24px;
    max-width: 600px;
}

.stsp-c-area__communities {
    font-size: 15px;
    line-height: 2;
    color: #555555;
    letter-spacing: 0.02em;
}

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

.stsp-c-area__contact {
    margin-top: 28px;
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    align-items: center;
}

.stsp-c-area__contact a {
    color: #FC7B03;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.stsp-c-area__contact a:hover {
    color: #C45F00;
}


/* =============================================
   11. TESTIMONIALS
   ============================================= */

.stsp-c-testimonials {
    background: #FAFAFA;
    padding: 100px 0;
    text-align: center;
}

.stsp-c-testimonials__inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 52px;
    text-align: center;
}

.stsp-c-testimonials__quote {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 400;
    font-style: italic;
    color: #222222;
    line-height: 1.6;
    margin-bottom: 32px;
}

.stsp-c-testimonials__quote p {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    color: inherit;
    line-height: inherit;
}

.stsp-c-testimonials__quote p::before {
    content: '\201C';
    color: #FC7B03;
}

.stsp-c-testimonials__quote p::after {
    content: '\201D';
    color: #FC7B03;
}

.stsp-c-testimonials__attribution {
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: baseline;
}

.stsp-c-testimonials__name {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #222222;
}

.stsp-c-testimonials__location {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #7A7A7A;
}


/* =============================================
   12. CROSS-SELL
   ============================================= */

.stsp-c-crosssell {
    background: #FFFFFF;
    padding: 120px 0;
}

.stsp-c-crosssell__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 52px;
}

.stsp-c-crosssell__heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    color: #222222;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 56px;
}

.stsp-c-crosssell__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stsp-c-crosssell__card {
    padding: 40px;
    border-radius: 12px;
    border: none;
    transition: background 0.15s ease;
}

.stsp-c-crosssell__card:hover {
    background: #FAFAFA;
}

.stsp-c-crosssell__icon {
    display: inline-flex;
    margin-bottom: 16px;
}

.stsp-c-crosssell__icon svg {
    width: 24px;
    height: 24px;
    color: #FC7B03;
}

.stsp-c-crosssell__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 8px;
}

.stsp-c-crosssell__desc {
    font-size: 14px;
    line-height: 1.7;
    color: #7A7A7A;
    margin-bottom: 16px;
}


/* =============================================
   13. CONTACT
   ============================================= */

.stsp-c-contact {
    background: #222222;
    padding: 120px 0;
}

.stsp-c-contact__inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 52px;
    text-align: center;
}

.stsp-c-contact__heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.stsp-c-contact__desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
}

.stsp-c-contact__phone {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #FC7B03;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    transition: color 0.15s ease;
}

.stsp-c-contact__phone:hover {
    color: #FFFFFF;
}

.stsp-c-contact__email {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 48px;
    transition: text-decoration 0.15s ease;
}

.stsp-c-contact__email:hover {
    text-decoration: underline;
}

.stsp-c-contact__form {
    text-align: left;
}

/* WPForms overrides inside contact section */
.stsp-c-contact__form .wpforms-container {
    max-width: 100%;
}

.stsp-c-contact__form .wpforms-form input[type="text"],
.stsp-c-contact__form .wpforms-form input[type="email"],
.stsp-c-contact__form .wpforms-form input[type="tel"],
.stsp-c-contact__form .wpforms-form input[type="url"],
.stsp-c-contact__form .wpforms-form textarea,
.stsp-c-contact__form .wpforms-form select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    border-radius: 8px;
    padding: 14px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: border-color 0.15s ease;
}

.stsp-c-contact__form .wpforms-form input::placeholder,
.stsp-c-contact__form .wpforms-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

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

.stsp-c-contact__form .wpforms-form label,
.stsp-c-contact__form .wpforms-form .wpforms-field-label {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

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

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


/* =============================================
   14. FOOTER
   ============================================= */

.stsp-c-footer {
    background: #FFFFFF;
    padding: 48px 0 32px;
    border-top: 1px solid #E5E7EB;
}

.stsp-c-footer__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 52px;
}

.stsp-c-footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 32px;
    border-bottom: 1px solid #E5E7EB;
    gap: 24px;
    flex-wrap: wrap;
}

.stsp-c-footer__logo img {
    max-height: 28px;
    width: auto;
}

.stsp-c-footer__links {
    display: flex;
    gap: 24px;
}

.stsp-c-footer__col-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #222222;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.stsp-c-footer__col a {
    display: block;
    margin-bottom: 8px;
}

.stsp-c-footer__links a {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #7A7A7A;
    transition: color 0.15s ease;
}

.stsp-c-footer__links a:hover {
    color: #222222;
}

.stsp-c-footer__social {
    display: flex;
    gap: 12px;
}

.stsp-c-footer__social a {
    display: inline-flex;
    width: 20px;
    height: 20px;
    color: #C1C1C1;
    transition: color 0.15s ease;
}

.stsp-c-footer__social a:hover {
    color: #222222;
}

.stsp-c-footer__social a svg {
    width: 20px;
    height: 20px;
}

.stsp-c-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    gap: 16px;
    flex-wrap: wrap;
}

.stsp-c-footer__bottom p {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #C1C1C1;
}

.stsp-c-footer__credit a {
    color: #C1C1C1;
    transition: color 0.15s ease;
}

.stsp-c-footer__credit a:hover {
    color: #222222;
}


/* =============================================
   RESPONSIVE — 768px
   ============================================= */

@media (max-width: 768px) {

    /* Header */
    .stsp-c-header__nav {
        display: none;
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        background: #FFFFFF;
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid #E5E7EB;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    }

    .stsp-c-header__nav.is-open {
        display: flex;
    }

    .stsp-c-header__toggle {
        display: flex;
    }

    .stsp-c-header__cta {
        display: none;
    }

    .stsp-c-header__inner {
        padding: 0 24px;
    }

    /* Hero */
    .stsp-c-hero {
        padding: 80px 0 60px;
    }

    .stsp-c-hero__content {
        padding: 0 24px;
    }

    /* Live Bar */
    .stsp-c-livebar__inner {
        padding: 0 24px;
    }

    /* Pain */
    .stsp-c-pain {
        padding: 80px 0;
    }

    .stsp-c-pain__inner {
        padding: 0 24px;
    }

    .stsp-c-pain__items {
        gap: 40px;
    }

    /* Features */
    .stsp-c-features {
        padding: 80px 0;
    }

    .stsp-c-features__inner {
        padding: 0 24px;
    }

    .stsp-c-features__grid {
        grid-template-columns: 1fr;
    }

    .stsp-c-features__card {
        padding: 32px;
    }

    /* Partners */
    .stsp-c-partners {
        padding: 64px 0;
    }

    .stsp-c-partners__inner {
        padding: 0 24px;
    }

    .stsp-c-partners__logos {
        gap: 32px;
    }

    .stsp-c-partners__logo-link img {
        max-height: 36px;
    }

    /* Process */
    .stsp-c-process {
        padding: 80px 0;
    }

    .stsp-c-process__inner {
        padding: 0 24px;
    }

    .stsp-c-process__step {
        gap: 20px;
    }

    .stsp-c-process__number {
        font-size: 40px;
        min-width: 44px;
    }

    /* Showroom */
    .stsp-c-showroom {
        padding: 64px 0;
    }

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

    /* FAQ */
    .stsp-c-faq {
        padding: 80px 0;
    }

    .stsp-c-faq__inner {
        padding: 0 24px;
    }

    /* Area */
    .stsp-c-area {
        padding: 48px 0;
    }

    .stsp-c-area__inner {
        padding: 0 24px;
    }

    /* Testimonials */
    .stsp-c-testimonials {
        padding: 80px 0;
    }

    .stsp-c-testimonials__inner {
        padding: 0 24px;
    }

    /* Cross-sell */
    .stsp-c-crosssell {
        padding: 80px 0;
    }

    .stsp-c-crosssell__inner {
        padding: 0 24px;
    }

    .stsp-c-crosssell__grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .stsp-c-contact {
        padding: 80px 0;
    }

    .stsp-c-contact__inner {
        padding: 0 24px;
    }

    /* Footer */
    .stsp-c-footer__inner {
        padding: 0 24px;
    }

    .stsp-c-footer__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .stsp-c-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* =============================================
   RESPONSIVE — 480px
   ============================================= */

@media (max-width: 480px) {

    body.stsp-template-c {
        font-size: 15px;
    }

    /* Reduce all inner padding to 20px */
    .stsp-c-header__inner,
    .stsp-c-hero__content,
    .stsp-c-livebar__inner,
    .stsp-c-pain__inner,
    .stsp-c-features__inner,
    .stsp-c-partners__inner,
    .stsp-c-process__inner,
    .stsp-c-faq__inner,
    .stsp-c-area__inner,
    .stsp-c-testimonials__inner,
    .stsp-c-crosssell__inner,
    .stsp-c-contact__inner,
    .stsp-c-footer__inner {
        padding: 0 20px;
    }

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

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

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

    .stsp-c-livebar__inner {
        flex-direction: column;
        gap: 8px;
    }

    .stsp-c-pain {
        padding: 64px 0;
    }

    .stsp-c-pain__items {
        gap: 32px;
    }

    .stsp-c-features {
        padding: 64px 0;
    }

    .stsp-c-features__card {
        padding: 28px;
    }

    .stsp-c-partners {
        padding: 48px 0;
    }

    .stsp-c-partners__logos {
        gap: 24px;
    }

    .stsp-c-process {
        padding: 64px 0;
    }

    .stsp-c-process__step {
        flex-direction: column;
        gap: 8px;
    }

    .stsp-c-process__number {
        font-size: 36px;
    }

    .stsp-c-showroom {
        padding: 48px 0;
    }

    .stsp-c-faq {
        padding: 64px 0;
    }

    .stsp-c-faq__question {
        font-size: 15px;
        padding: 20px 0;
    }

    .stsp-c-area {
        padding: 40px 0;
    }

    .stsp-c-area__contact {
        flex-direction: column;
        gap: 12px;
    }

    .stsp-c-testimonials {
        padding: 64px 0;
    }

    .stsp-c-testimonials__quote {
        font-size: 20px;
    }

    .stsp-c-crosssell {
        padding: 64px 0;
    }

    .stsp-c-crosssell__heading {
        font-size: 26px;
    }

    .stsp-c-crosssell__card {
        padding: 28px;
    }

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

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

    .stsp-c-contact__phone {
        font-size: 28px;
    }

    .stsp-c-footer__links {
        flex-direction: column;
        gap: 12px;
    }
}
