/* =========================================================
   Shopify / Service Page Modules
   Matches Figma: Desktop 4820:6371, Mobile 4906:9831
   Each module stands alone — no wrapper required.
   ========================================================= */

/* Graceful-degradation visibility reset.
   The theme's animations.css sets .will-animate { visibility: hidden }.
   shopify-animations.js re-hides and animates selectively; until JS loads
   (or if it fails), our module content should still render. */
.sh-hero .will-animate,
.sh-intro .will-animate,
.sh-services .will-animate,
.sh-fit .will-animate,
.sh-process .will-animate,
.sh-stats .will-animate,
.sh-featured .will-animate,
.sh-finalcta .will-animate {
    visibility: visible;
}

/* Reset stray <p> margins from wpautop inside module wrappers */
.sh-hero-sub p,
.sh-intro-copy p,
.sh-service-body p,
.sh-process-body p,
.sh-featured-body p,
.sh-finalcta-sub p,
.sh-fit-notfit-body p,
.sh-intro-sub-col p,
.sh-fit-list p p {
    margin: 0;
}

.sh-hero-sub p + p,
.sh-intro-copy p + p,
.sh-service-body p + p,
.sh-process-body p + p,
.sh-featured-body p + p,
.sh-finalcta-sub p + p,
.sh-fit-notfit-body p + p,
.sh-intro-sub-col p + p {
    margin-top: 0.5em;
}

/* Shared helpers scoped to module class names */
.sh-eyebrow {
    font-family: 'PP Neue Montreal', 'Neue Montreal', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #fff;
}

.sh-eyebrow-dark {
    color: #101010;
}

.sh-section-title {
    font-family: 'PP Neue Montreal', 'Neue Montreal', sans-serif;
    font-weight: 400;
    font-size: 60px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 12px 0 0;
}

.sh-section-title-dark {
    color: #101010;
}

.sh-rule {
    height: 1px;
    border: 0;
    background: rgba(255, 255, 255, 0.14);
    margin: 0 0 40px;
}

/* List reset inside modules */
.sh-fit-list,
.sh-process-list,
.sh-services-grid,
.sh-stats-grid,
.sh-faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Dark background for sections that need to sit on the page's dark body */
.sh-hero,
.sh-intro,
.sh-services,
.sh-fit,
.sh-stats,
.sh-reviews,
.sh-faq,
.sh-finalcta,
.sh-featured {
    background: #101010;
    color: #fff;
}

/* =========================================================
   BUTTONS (scoped to hero + final CTA)
   ========================================================= */
.sh-hero .btn,
.sh-finalcta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 31px;
    border-radius: 8px;
    font-family: 'Neue Montreal', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    cursor: pointer;
}

.sh-hero .btn .text-wrap,
.sh-finalcta .btn .text-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    height: 24px;
}

.sh-hero .btn .text,
.sh-finalcta .btn .text {
    display: block;
    transition: transform 0.4s ease;
}

.sh-hero .btn .text-hover,
.sh-finalcta .btn .text-hover {
    position: absolute;
    left: 0;
    top: 100%;
}

.sh-hero .btn:hover .text-default,
.sh-finalcta .btn:hover .text-default { transform: translateY(-100%); }
.sh-hero .btn:hover .text-hover,
.sh-finalcta .btn:hover .text-hover  { transform: translateY(-100%); }

.sh-btn-light {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.sh-btn-dark {
    background: #101010;
    color: #fff;
    border-color: #101010;
}

.sh-btn-dark:hover {
    background: #000;
    border-color: #000;
}

/* =========================================================
   HERO
   ========================================================= */
.sh-hero {
    position: relative;
    margin: 16px 20px 0;
    height: 850px;
    border-radius: 20px;
    overflow: hidden;
    isolation: isolate;
}

.sh-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.sh-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgb(210, 100, 83)  0%,
        rgb(209, 99, 82)   4.22%,
        rgb(205, 94, 77)   9.45%,
        rgb(204, 91, 73)   14.55%,
        rgb(198, 85, 69)   21.35%,
        rgb(192, 78, 61)   28.01%,
        rgb(179, 67, 52)   38.21%,
        rgb(167, 57, 42)   46.45%,
        rgb(149, 47, 29)   57.43%,
        rgb(131, 40, 22)   70.25%,
        rgb(133, 40, 23)   84.14%,
        rgb(126, 40, 27)   100%
    );
}

.sh-hero-texture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: overlay;
    opacity: 0.7;
}

.sh-hero-inner {
    position: relative;
    height: 100%;
    padding: 184px 40px 40px;
    display: flex;
    flex-direction: column;
}

.sh-hero-title {
    font-family: 'PP Neue Montreal', 'Neue Montreal', sans-serif;
    font-weight: 500;
    font-size: 80px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #fff;
    max-width: 720px;
    margin: 0;
}

.sh-hero-sub {
    font-family: 'PP Neue Montreal', 'Neue Montreal', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: #fff;
    max-width: 380px;
    margin: auto 0 0;
}

.sh-hero-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}

.sh-hero-shopify {
    width: 160px;
    height: auto;
}

.sh-hero-shopify-text {
    font-family: 'Neue Montreal', sans-serif;
    font-size: 32px;
    color: #fff;
    opacity: 0.9;
}

/* =========================================================
   INTRO STATEMENT
   ========================================================= */
.sh-intro {
    padding: 100px 0;
}

.sh-intro-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.sh-intro-copy {
    font-family: 'Neue Montreal', sans-serif;
    font-weight: 400;
    font-size: 60px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0;
}

.sh-intro-copy p {
    margin: 0;
}

.sh-intro-sub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 720px;
    margin: 80px 0 0 auto;
    padding-right: 40px;
}

.sh-intro-sub-col p {
    font-family: 'Neue Montreal', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.8);
    margin: 12px 0 0;
}

.sh-intro-sub-title {
    font-family: 'PP Neue Montreal', 'Neue Montreal', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.6;
    color: #fff;
    margin: 0;
}

/* =========================================================
   SERVICES
   ========================================================= */
.sh-services {
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
}

.sh-services-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.sh-services-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, #101010 0%, rgba(16,16,16,0) 30%, rgba(16,16,16,0) 70%, #101010 100%),
        radial-gradient(ellipse at center, rgba(255,255,255,0.04), rgba(16,16,16,1) 70%);
}

.sh-services-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.sh-services .container {
    position: relative;
    z-index: 1;
}

.sh-services-head {
    margin-bottom: 60px;
}

.sh-services-head .sh-section-title {
    max-width: 720px;
}

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

.sh-service-card {
    position: relative;
    border-radius: 12px;
    padding: 31px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.sh-service-card-featured {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: none;
    border-color: transparent;
}

.sh-service-title {
    font-family: 'PP Neue Montreal', 'Neue Montreal', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #fff;
    margin: 0 0 16px;
}

.sh-service-card-featured .sh-service-title {
    color: #000;
}

.sh-service-body {
    font-family: 'Neue Montreal', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.sh-service-card-featured .sh-service-body {
    color: rgba(0, 0, 0, 0.8);
}

/* =========================================================
   GOOD FIT
   ========================================================= */
.sh-fit {
    padding: 140px 0;
}

.sh-fit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.sh-fit-left .sh-section-title {
    margin-bottom: 60px;
}

.sh-fit-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 60px;
    margin: 0;
}

.sh-fit-list li {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 28px 0;
}

.sh-fit-list li:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.sh-fit-list p {
    font-family: 'PP Neue Montreal', 'Neue Montreal', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    color: #fff;
    margin: 0;
}

.sh-fit-list p strong {
    font-weight: 500;
}

.sh-fit-notfit {
    margin-top: 48px;
    max-width: 555px;
}

.sh-fit-notfit p {
    font-family: 'Neue Montreal', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.6);
    margin: 16px 0 0;
}

.sh-fit-quote {
    background: #fff;
    border-radius: 12px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 520px;
}

.sh-fit-quote blockquote {
    margin: 0;
    font-family: 'PP Neue Montreal', 'Neue Montreal', sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #101010;
}

.sh-fit-quote blockquote p {
    margin: 0;
}

.sh-fit-quote blockquote p + p {
    margin-top: 20px;
}

.sh-fit-quote-attr {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 48px;
}

.sh-fit-quote-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #e4e4e4;
}

.sh-fit-quote-avatar-placeholder {
    background: linear-gradient(135deg, #d6d6d6, #a2a2a2);
}

.sh-fit-quote-name {
    font-family: 'Neue Montreal', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #101010;
    margin: 0;
}

.sh-fit-quote-role {
    font-family: 'Neue Montreal', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: #101010;
    margin: 6px 0 0;
}

/* =========================================================
   PROCESS
   ========================================================= */
.sh-process {
    background: #fff;
    color: #101010;
    padding: 100px 0;
}

.sh-process-head {
    margin-bottom: 60px;
}

.sh-process-head .sh-section-title {
    max-width: 640px;
}

.sh-process-list {
    border-top: 1px solid rgba(16, 16, 16, 0.15);
}

.sh-process-row {
    display: grid;
    grid-template-columns: 120px 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid rgba(16, 16, 16, 0.15);
}

.sh-process-num {
    font-family: 'PP Supply Mono', 'Neue Montreal', monospace;
    font-weight: 400;
    font-size: 20px;
    color: #101010;
}

.sh-process-title {
    font-family: 'PP Neue Montreal', 'Neue Montreal', sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #101010;
    margin: 0;
}

.sh-process-body {
    font-family: 'Neue Montreal', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: rgba(16, 16, 16, 0.6);
    margin: 0;
}

/* =========================================================
   STATS
   ========================================================= */
.sh-stats {
    padding: 140px 0;
}

.sh-stats-head {
    margin-bottom: 60px;
    max-width: 400px;
}

.sh-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    align-items: end;
    min-height: 380px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.sh-stat {
    padding: 32px 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.sh-stat:last-child {
    border-right: 0;
}

.sh-stat-num {
    font-family: 'PP Neue Montreal', 'Neue Montreal', sans-serif;
    font-weight: 400;
    font-size: 80px;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: #fff;
}

.sh-stat-label {
    font-family: 'PP Neue Montreal', 'Neue Montreal', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.3;
    color: #fff;
    margin: 24px 0 0;
    max-width: 260px;
}

/* Stagger rows to match the Figma vertical offset feel */
.sh-stats-grid .sh-stat:nth-child(1) { padding-top: 120px; }
.sh-stats-grid .sh-stat:nth-child(2) { padding-top: 0; }
.sh-stats-grid .sh-stat:nth-child(3) { padding-top: 160px; }

/* =========================================================
   FEATURED WORK
   ========================================================= */
.sh-featured {
    padding: 40px 0 100px;
}

.sh-featured-card {
    position: relative;
    background: #f5f3ef;
    border-radius: 16px;
    overflow: hidden;
    min-height: 720px;
    padding: 60px;
}

.sh-featured-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sh-featured-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.25) 35%, rgba(255,255,255,0) 70%);
}

.sh-featured-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}

.sh-featured-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.sh-featured-head {
    margin-bottom: 40px;
}

.sh-featured-body {
    font-family: 'Neue Montreal', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    color: #000;
    max-width: 380px;
    margin: 120px 0 0;
}

.sh-featured-corner {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #000;
    z-index: 2;
}

.sh-featured-cta {
    position: absolute;
    right: 60px;
    bottom: 60px;
    z-index: 2;
    display: flex;
    align-items: stretch;
    gap: 0;
    width: 280px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: background 0.3s ease;
}

.sh-featured-cta:hover {
    background: rgba(255, 255, 255, 0.2);
}

.sh-featured-cta-text {
    flex: 1;
    padding: 16px 16px 16px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
}

.sh-featured-cta-label {
    font-family: 'Neue Montreal', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sh-featured-cta-link {
    font-family: 'Neue Montreal', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    max-width: 130px;
}

.sh-featured-cta-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    background: rgba(255, 255, 255, 0.8);
    color: #101010;
}

.sh-featured-cta-arrow svg {
    transform: rotate(45deg);
}

/* =========================================================
   RESULTS / REVIEWS
   ========================================================= */
.sh-reviews {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.sh-reviews-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sh-reviews-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, #101010 0%, rgba(16,16,16,0) 30%, rgba(16,16,16,0) 70%, #101010 100%);
    z-index: 1;
}

.sh-reviews-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.sh-reviews .container {
    position: relative;
    z-index: 1;
}

.sh-reviews-head {
    max-width: 720px;
    margin-bottom: 80px;
}

.sh-reviews-head .sh-eyebrow {
    margin-top: 16px;
}

.sh-reviews-swiper {
    position: relative;
    overflow: visible;
}

.sh-review-card {
    width: 740px;
    max-width: 100%;
    min-height: 400px;
    padding: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.sh-review-quote {
    font-family: 'PP Neue Montreal', 'Neue Montreal', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    color: #fff;
    margin: 0;
    max-width: 560px;
}

.sh-review-foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 40px;
}

.sh-review-name {
    font-family: 'PP Neue Montreal', 'Neue Montreal', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    color: #fff;
    margin: 0;
}

.sh-review-role {
    font-family: 'PP Neue Montreal', 'Neue Montreal', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.6);
    margin: 8px 0 0;
}

.sh-review-logo {
    height: 24px;
    width: auto;
    opacity: 0.9;
}

.sh-review-index {
    position: absolute;
    top: 40px;
    right: 40px;
    font-family: 'Neue Montreal', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #fff;
}

.sh-reviews-nav {
    position: absolute;
    top: -64px;
    right: 0;
    display: flex;
    gap: 20px;
    z-index: 2;
}

.sh-reviews-nav button {
    background: transparent;
    border: 0;
    width: 24px;
    height: 24px;
    padding: 0;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sh-reviews-track {
    height: 4px;
    background: #2b2b2b;
    border-radius: 2px;
    margin-top: 40px;
    overflow: hidden;
}

.sh-reviews-track-fill {
    width: 19%;
    height: 100%;
    background: #fff;
    border-radius: 2px;
    transition: width 0.4s ease;
}

/* =========================================================
   FAQ
   ========================================================= */
.sh-faq {
    padding: 140px 0;
}

.sh-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.sh-faq-left .sh-section-title {
    max-width: 420px;
}

.sh-faq-eyebrow {
    margin-top: 20px;
}

.sh-faq-list {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.sh-faq-item {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 24px 0;
}

.sh-faq-item[open] {
    padding-bottom: 32px;
}

.sh-faq-q {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-family: 'Neue Montreal', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    color: #fff;
}

.sh-faq-q::-webkit-details-marker { display: none; }

.sh-faq-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #fff;
    transition: transform 0.3s ease;
}

.sh-faq-item[open] .sh-faq-toggle {
    transform: rotate(45deg);
}

.sh-faq-a {
    padding-top: 20px;
    max-width: 640px;
}

.sh-faq-a p {
    font-family: 'Neue Montreal', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.sh-finalcta {
    padding: 0 0 80px;
}

.sh-finalcta-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 760px;
    padding: 60px;
    background: #e9e3d5;
}

.sh-finalcta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sh-finalcta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sh-finalcta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: inherit;
}

.sh-finalcta-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: inherit;
    padding-top: 260px;
    max-width: 640px;
}

.sh-finalcta-title {
    font-family: 'PP Neue Montreal', 'Neue Montreal', sans-serif;
    font-weight: 500;
    font-size: 80px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #101010;
    margin: 0;
    max-width: 620px;
}

.sh-finalcta-sub {
    font-family: 'PP Neue Montreal', 'Neue Montreal', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.4;
    color: #101010;
    margin: 56px 0 0;
    max-width: 340px;
}

.sh-finalcta-actions {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 32px;
}

.sh-finalcta-link {
    font-family: 'Neue Montreal', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    color: #101010;
    transition: opacity 0.3s ease;
}

.sh-finalcta-link:hover {
    opacity: 0.7;
}

/* =========================================================
   BREAKPOINTS
   ========================================================= */

/* Large desktop tweaks */
@media (max-width: 1280px) {
    .sh-hero-title          { font-size: 64px; }
    .sh-intro-copy          { font-size: 44px; }
    .sh-section-title { font-size: 48px; }
    .sh-finalcta-title      { font-size: 64px; }
    .sh-stat-num            { font-size: 64px; }
    .sh-fit-quote blockquote{ font-size: 28px; }
}

/* Tablet */
@media (max-width: 1024px) {
    .sh-hero                { height: 720px; }
    .sh-hero-inner          { padding: 120px 24px 32px; }
    .sh-hero-title          { font-size: 56px; }

    .sh-intro               { padding: 80px 0; }
    .sh-intro-grid          { grid-template-columns: 1fr; gap: 32px; }
    .sh-intro-copy          { font-size: 36px; }
    .sh-intro-sub           { grid-template-columns: 1fr; gap: 32px; margin: 56px 0 0; padding-right: 0; }

    .sh-services            { padding: 100px 0; }
    .sh-services-grid       { grid-template-columns: repeat(2, 1fr); }
    .sh-service-card        { height: auto; min-height: 260px; }

    .sh-fit                 { padding: 100px 0; }
    .sh-fit-grid            { grid-template-columns: 1fr; gap: 40px; }
    .sh-fit-list            { grid-template-columns: 1fr; }
    .sh-fit-list li:nth-last-child(-n+2) { border-bottom: 0; }
    .sh-fit-list li:last-child { border-bottom: 1px solid rgba(255,255,255,0.14); }
    .sh-fit-quote           { padding: 40px; min-height: 0; }
    .sh-fit-quote blockquote{ font-size: 24px; }

    .sh-process             { padding: 80px 0; }
    .sh-process-row         { grid-template-columns: 60px 1fr; grid-template-rows: auto auto; gap: 12px 24px; padding: 32px 0; }
    .sh-process-num         { grid-row: 1; }
    .sh-process-title       { grid-row: 1; font-size: 28px; }
    .sh-process-body        { grid-column: 2; grid-row: 2; }

    .sh-stats               { padding: 100px 0; }
    .sh-stats-grid          { grid-template-columns: 1fr; border: 0; min-height: 0; }
    .sh-stats-grid .sh-stat:nth-child(n) { padding: 40px 0; }
    .sh-stat                { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.14); }
    .sh-stat-num            { font-size: 60px; }

    .sh-featured            { padding: 40px 0 80px; }
    .sh-featured-card       { padding: 40px; min-height: 560px; }
    .sh-featured-body       { margin-top: 60px; }
    .sh-featured-cta        { right: 40px; bottom: 40px; }

    .sh-reviews             { padding: 80px 0; }
    .sh-review-card         { width: calc(100vw - 80px); max-width: 560px; }

    .sh-faq                 { padding: 100px 0; }
    .sh-faq-grid            { grid-template-columns: 1fr; gap: 40px; }

    .sh-finalcta-card       { padding: 40px; min-height: 600px; }
    .sh-finalcta-title      { font-size: 48px; }
    .sh-finalcta-content    { padding-top: 200px; }
}

/* Mobile */
@media (max-width: 767px) {
    /* container padding already handled by theme default on mobile */

    .sh-hero                { margin: 16px 12px 0; height: 620px; border-radius: 12px; }
    .sh-hero-inner          { padding: 103px 16px 24px; }
    .sh-hero-title          { font-size: 40px; max-width: 347px; }
    .sh-hero-sub            { font-size: 16px; max-width: 297px; margin-top: 24px; }
    .sh-hero-foot           { flex-direction: column; align-items: stretch; gap: 24px; margin-top: auto; }
    .sh-hero-foot .btn      { justify-content: center; width: 100%; padding: 12px; }
    .sh-hero-foot .btn .text-wrap { height: 20px; }
    .sh-hero-shopify        { width: 160px; align-self: flex-start; }

    .sh-intro               { padding: 60px 0 40px; }
    .sh-intro-copy          { font-size: 28px; }
    .sh-intro-sub           { margin-top: 40px; gap: 24px; }
    .sh-intro-sub-col p     { font-size: 14px; }

    .sh-services            { padding: 60px 0 40px; }
    .sh-services-head       { margin-bottom: 32px; }
    .sh-section-title { font-size: 28px; }
    .sh-services-grid       { grid-template-columns: 1fr; gap: 12px; }
    .sh-service-card        { padding: 23px; min-height: 233px; }
    .sh-service-title       { font-size: 20px; }

    .sh-fit                 { padding: 60px 0; }
    .sh-fit-list            { gap: 0; }
    .sh-fit-list li         { padding: 20px 0; }
    .sh-fit-list p          { font-size: 18px; }
    .sh-fit-quote           { padding: 24px; }
    .sh-fit-quote blockquote{ font-size: 20px; }
    .sh-fit-quote-attr      { margin-top: 32px; }

    .sh-process             { padding: 60px 0; }
    .sh-process-head        { margin-bottom: 40px; }
    .sh-process-title       { font-size: 24px; }
    .sh-process-row         { grid-template-columns: 40px 1fr; padding: 24px 0; }
    .sh-process-num         { font-size: 16px; }

    .sh-stats               { padding: 60px 0; }
    .sh-stat-num            { font-size: 60px; }
    .sh-stat-label          { font-size: 16px; }

    .sh-featured            { padding: 40px 0; }
    .sh-featured-card       { padding: 24px; min-height: 700px; border-radius: 12px; }
    .sh-featured-content    { max-width: 100%; }
    .sh-featured-body       { font-size: 16px; margin-top: 40px; max-width: 100%; }
    .sh-featured-cta        { position: static; width: 100%; margin-top: 32px; height: 72px; }

    .sh-reviews             { padding: 60px 0; }
    .sh-reviews-head        { margin-bottom: 40px; }
    .sh-review-card         { width: 320px; min-height: 400px; padding: 20px; }
    .sh-review-quote        { font-size: 16px; }
    .sh-review-name         { font-size: 16px; }
    .sh-review-role         { font-size: 16px; }
    .sh-reviews-nav         { top: -44px; }

    .sh-faq                 { padding: 60px 0; }
    .sh-faq-left .sh-section-title  { font-size: 28px; }
    .sh-faq-q               { font-size: 16px; }
    .sh-faq-a p             { font-size: 14px; }

    .sh-finalcta            { padding: 0 0 40px; }
    .sh-finalcta-card       { padding: 24px; min-height: 700px; }
    .sh-finalcta-title      { font-size: 40px; }
    .sh-finalcta-sub        { font-size: 16px; margin-top: 40px; }
    .sh-finalcta-actions    { flex-direction: column; align-items: flex-start; gap: 20px; margin-top: 40px; }
    .sh-finalcta-content    { padding-top: 0; justify-content: flex-start; gap: 16px; }
}

/* Extra small */
@media (max-width: 450px) {
    .sh-hero-title          { font-size: 36px; }
    .sh-finalcta-title      { font-size: 36px; }
}

/* =========================================================
   FINAL CTA — FORM VARIANT
   Same rounded card / glass overlay as .sh-finalcta, but the
   right side hosts the contact form for direct conversion.
   ========================================================= */
.sh-finalcta-form .sh-finalcta-card {
    min-height: 0;
}

.sh-finalcta-form .sh-finalcta-formgrid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.sh-finalcta-form .sh-finalcta-content {
    padding-top: 0;
    max-width: none;
    min-height: 0;
    justify-content: flex-end;
    gap: 32px;
}

.sh-finalcta-form .sh-finalcta-title {
    max-width: 520px;
}

.sh-finalcta-form .sh-finalcta-sub {
    margin-top: 24px;
    max-width: 420px;
}

.sh-finalcta-form .sh-finalcta-call {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 32px;
    color: #101010;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.sh-finalcta-form .sh-finalcta-call:hover {
    opacity: 0.7;
}

.sh-finalcta-form .sh-finalcta-call-label {
    font-family: 'PP Neue Montreal', 'Neue Montreal', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    opacity: 0.7;
}

.sh-finalcta-form .sh-finalcta-call-link {
    font-family: 'PP Neue Montreal', 'Neue Montreal', sans-serif;
    font-size: 20px;
    font-weight: 500;
}

.sh-finalcta-form .sh-finalcta-form-wrap {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(16, 16, 16, 0.08);
    border-radius: 12px;
    padding: 32px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Form element scoping — works for the global cta-v2 shortcode AND
   for plain CF7 markup. Light card, so text is dark. */
.sh-finalcta-form .sh-finalcta-form-wrap .cta-v2-form,
.sh-finalcta-form .sh-finalcta-form-wrap form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 0;
}

.sh-finalcta-form .sh-finalcta-form-wrap .cta-v2-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sh-finalcta-form .sh-finalcta-form-wrap .cta-v2-label,
.sh-finalcta-form .sh-finalcta-form-wrap label {
    font-family: 'PP Neue Montreal', 'Neue Montreal', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #101010;
    line-height: 1.4;
}

.sh-finalcta-form .sh-finalcta-form-wrap .cta-v2-input,
.sh-finalcta-form .sh-finalcta-form-wrap .cta-v2-textarea,
.sh-finalcta-form .sh-finalcta-form-wrap input[type="text"],
.sh-finalcta-form .sh-finalcta-form-wrap input[type="email"],
.sh-finalcta-form .sh-finalcta-form-wrap input[type="tel"],
.sh-finalcta-form .sh-finalcta-form-wrap input[type="url"],
.sh-finalcta-form .sh-finalcta-form-wrap textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(16, 16, 16, 0.18);
    padding: 10px 0;
    color: #101010;
    outline: none;
    font-family: 'PP Neue Montreal', 'Neue Montreal', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

.sh-finalcta-form .sh-finalcta-form-wrap .cta-v2-input::placeholder,
.sh-finalcta-form .sh-finalcta-form-wrap .cta-v2-textarea::placeholder,
.sh-finalcta-form .sh-finalcta-form-wrap input::placeholder,
.sh-finalcta-form .sh-finalcta-form-wrap textarea::placeholder {
    color: rgba(16, 16, 16, 0.55);
    font-family: 'PP Neue Montreal', 'Neue Montreal', sans-serif;
    font-size: 14px;
}

.sh-finalcta-form .sh-finalcta-form-wrap .cta-v2-input:focus,
.sh-finalcta-form .sh-finalcta-form-wrap .cta-v2-textarea:focus,
.sh-finalcta-form .sh-finalcta-form-wrap input:focus,
.sh-finalcta-form .sh-finalcta-form-wrap textarea:focus {
    border-bottom-color: #101010;
}

.sh-finalcta-form .sh-finalcta-form-wrap .cta-v2-textarea,
.sh-finalcta-form .sh-finalcta-form-wrap textarea {
    resize: vertical;
    min-height: 80px;
}

.sh-finalcta-form .sh-finalcta-form-wrap .cta-v2-services-title,
.sh-finalcta-form .sh-finalcta-form-wrap .cta-v2-field-title {
    color: #101010;
    font-size: 14px;
    font-weight: 500;
}

.sh-finalcta-form .sh-finalcta-form-wrap .cta-v2-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.sh-finalcta-form .sh-finalcta-form-wrap .cta-v2-chip {
    color: #101010;
    font-family: 'PP Neue Montreal', 'Neue Montreal', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    padding: 8px 14px;
    border-radius: 8px;
    background: rgba(16, 16, 16, 0.05);
    border: 1px solid rgba(16, 16, 16, 0.12);
    cursor: pointer;
    transition: all .25s ease;
    user-select: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sh-finalcta-form .sh-finalcta-form-wrap .cta-v2-chip:hover {
    transform: translateY(-1px);
}

.sh-finalcta-form .sh-finalcta-form-wrap .cta-v2-chip-input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}

.sh-finalcta-form .sh-finalcta-form-wrap .cta-v2-chip-input:checked + .cta-v2-chip,
.sh-finalcta-form .sh-finalcta-form-wrap .cta-v2-chip.is-active {
    background: #101010;
    border-color: #101010;
    color: #fff;
}

.sh-finalcta-form .sh-finalcta-form-wrap .cta-v2-submit,
.sh-finalcta-form .sh-finalcta-form-wrap button[type="submit"],
.sh-finalcta-form .sh-finalcta-form-wrap input[type="submit"] {
    align-self: flex-start;
    background: #101010;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    color: #fff;
    font-family: 'Neue Montreal', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity .25s ease, transform .25s ease;
    margin-top: 8px;
}

.sh-finalcta-form .sh-finalcta-form-wrap .cta-v2-submit:hover,
.sh-finalcta-form .sh-finalcta-form-wrap button[type="submit"]:hover,
.sh-finalcta-form .sh-finalcta-form-wrap input[type="submit"]:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Tablet */
@media (max-width: 1024px) {
    .sh-finalcta-form .sh-finalcta-formgrid { grid-template-columns: 1fr; gap: 32px; }
    .sh-finalcta-form .sh-finalcta-content { justify-content: flex-start; }
}

/* Mobile */
@media (max-width: 767px) {
    .sh-finalcta-form .sh-finalcta-card { padding: 24px; min-height: 0; }
    .sh-finalcta-form .sh-finalcta-formgrid { gap: 24px; }
    .sh-finalcta-form .sh-finalcta-form-wrap { padding: 20px; }
    .sh-finalcta-form .sh-finalcta-call { margin-top: 16px; }
}
