/* Shop Category Landing Pages — MyProfile */

.shop-category-page {
    overflow-x: hidden;
    --sc-grid-gap: 24px;
    --sc-cell-radius: 49px;
    --sc-cell-min-h: 440px;
    --sc-section-y: 80px;
}

/* ── Hero ── */
.sc-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.sc-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    filter: blur(2px);
    transition: transform 8s ease;
}

.sc-hero:hover .sc-hero-bg {
    transform: scale(1.12);
}

.sc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.97) 0%,
        rgba(255, 255, 255, 0.88) 45%,
        rgba(242, 242, 242, 0.75) 100%
    );
}

.sc-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.sc-hero-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--sc-accent, #000);
    margin-bottom: 16px;
}

.sc-hero-title {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.05;
    color: #111;
    margin-bottom: 24px;
}

.sc-hero-accent {
    display: block;
    font-weight: 800;
    color: var(--sc-accent, #000);
}

.sc-hero-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    max-width: 520px;
    margin-bottom: 32px;
}

.sc-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}

.sc-hero-btn-outline {
    background: transparent !important;
    border: 2px solid #000 !important;
    color: #000 !important;
}

.sc-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sc-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f2f2f2;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.sc-hero-tag i {
    color: var(--sc-accent, #000);
}

.sc-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sc-hero-visual-frame {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1;
    background: linear-gradient(145deg, #f2f2f2 0%, #fff 50%, #f9f9f9 100%);
    border-radius: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.sc-hero-visual-frame::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 52px;
    background: linear-gradient(135deg, var(--sc-accent, #000), transparent 60%);
    opacity: 0.25;
    z-index: -1;
}

.sc-hero-product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
    transition: transform 0.5s ease;
}

.sc-hero-visual-frame:hover .sc-hero-product-img {
    transform: scale(1.04) translateY(-6px);
}

/* ── Section headings ── */
.sc-section-head {
    margin-bottom: 48px;
}

.sc-section-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sc-accent, #666);
    margin-bottom: 12px;
}

.sc-section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #111;
    line-height: 1.15;
}

.sc-section-title span {
    color: var(--sc-accent, #000);
}

/* ── Spotlight grid (NFC-style product cards) ── */
.sc-spotlight-section {
    padding: var(--sc-section-y) 15px;
}

.sc-spotlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--sc-grid-gap);
    align-items: stretch;
}

.sc-spotlight-stack {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: var(--sc-grid-gap);
    min-height: 100%;
}

.sc-spotlight-card {
    background: #f2f2f2;
    border-radius: 35px;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.sc-spotlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.sc-spotlight-large {
    min-height: var(--sc-cell-min-h);
    height: 100%;
    padding: 48px;
    display: flex;
    flex-direction: column;
}

.sc-spotlight-small {
    flex: 1;
    padding: 36px;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.sc-spotlight-content {
    position: relative;
    z-index: 2;
    max-width: 55%;
}

.sc-spotlight-large .sc-spotlight-content {
    max-width: 65%;
}

.sc-spotlight-content h3 {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.sc-spotlight-content p {
    font-size: 15px;
    color: #606060;
    line-height: 1.6;
    margin: 0;
    letter-spacing: 0.3px;
}

.sc-spotlight-image {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 75%;
    width: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    pointer-events: none;
}

.sc-spotlight-large .sc-spotlight-image {
    height: 85%;
    width: 55%;
}

.sc-spotlight-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
    border-radius: 0 0 35px 0;
    transition: transform 0.4s ease;
}

.sc-spotlight-card:hover .sc-spotlight-image img {
    transform: scale(1.05) translateY(-8px);
}

/* ── Features — unified 2×2 grid ── */
.sc-features-section {
    padding: var(--sc-section-y) 15px;
}

.sc-features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(var(--sc-cell-min-h), auto);
    gap: var(--sc-grid-gap);
    align-items: stretch;
}

.sc-feature-cell {
    border-radius: var(--sc-cell-radius);
    background: #f2f2f2;
    overflow: hidden;
    min-height: var(--sc-cell-min-h);
    height: 100%;
}

.sc-feature-cell--media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
}

.sc-feature-cell--text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 52px;
}

.sc-feature-image-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--sc-accent, #000) 0%, transparent 70%);
    opacity: 0.06;
    pointer-events: none;
}

.sc-feature-image {
    position: relative;
    z-index: 1;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 340px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.45s ease;
}

.sc-feature-cell--media:hover .sc-feature-image {
    transform: scale(1.04);
}

.sc-feature-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--sc-accent, #000);
    margin-bottom: 16px;
}

.sc-feature-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #111;
    line-height: 1.2;
    margin-bottom: 20px;
}

.sc-feature-title span {
    color: var(--sc-accent, #000);
}

.sc-feature-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 24px;
    max-width: 42ch;
}

.sc-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sc-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #333;
    margin-bottom: 12px;
}

.sc-feature-list li:last-child {
    margin-bottom: 0;
}

.sc-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0)), #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

/* ── Gallery mosaic ── */
.sc-gallery-section {
    padding: 80px 0;
    background: #fafafa;
}

.sc-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, 240px);
    gap: var(--sc-grid-gap);
}

.sc-gallery-item {
    position: relative;
    border-radius: 35px;
    overflow: hidden;
    background: #f2f2f2;
}

.sc-gallery-item-1 {
    grid-column: span 2;
    grid-row: span 2;
}

.sc-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sc-gallery-item:hover img {
    transform: scale(1.06);
}

.sc-gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.sc-gallery-item:hover .sc-gallery-label {
    opacity: 1;
}

.sc-gallery-label span {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ── Benefits ── */
.sc-benefits-section {
    padding: var(--sc-section-y) 15px;
}

.sc-benefits-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--sc-grid-gap) !important;
    align-items: stretch;
}

.sc-benefit-card {
    height: 100% !important;
    min-height: 180px;
    padding: 36px !important;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sc-benefit-card:hover {
    transform: translateY(-3px);
}

/* ── Steps (How It Works) ── */
.sc-steps-section {
    padding: var(--sc-section-y) 0;
    background: #fff;
}

.sc-steps-section .sc-section-head {
    margin-bottom: 56px;
}

.sc-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--sc-grid-gap);
    align-items: stretch;
}

.sc-step-card {
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 4px;
}

.sc-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0)), #000;
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 16px;
    flex-shrink: 0;
}

.sc-step-image-wrap {
    width: 100%;
    aspect-ratio: 1;
    max-width: 100%;
    background: #f2f2f2;
    border-radius: 35px;
    overflow: hidden;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    flex-shrink: 0;
}

.sc-step-image-wrap img {
    width: auto;
    height: auto;
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s ease;
}

.sc-step-card:hover .sc-step-image-wrap img {
    transform: scale(1.06);
}

.sc-step-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 96px;
}

.sc-step-body h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #111;
    line-height: 1.35;
    min-height: 2.7em;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 200px;
}

.sc-step-body p {
    font-size: 14px;
    color: #666;
    line-height: 1.55;
    margin: 0;
    max-width: 210px;
    min-height: 2.8em;
}

/* ── CTA ── */
.sc-cta-section {
    padding: 80px 0 100px;
}

.sc-cta-inner {
    background: linear-gradient(135deg, #111 0%, #2a2a2a 100%);
    border-radius: 49px;
    padding: 64px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.sc-cta-inner::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--sc-accent, #fff);
    opacity: 0.12;
    pointer-events: none;
}

.sc-cta-content {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 260px;
}

.sc-cta-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.sc-cta-content h2 span {
    color: var(--sc-accent, #fff);
}

.sc-cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin: 0;
    max-width: 480px;
}

.sc-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
    z-index: 1;
}

/* ── Full-bleed banner sections (iHealth-style) ── */
.sc-full-banner {
    position: relative;
    width: 100%;
    min-height: min(85vh, 680px);
    display: flex;
    align-items: center;
    overflow: hidden;
    margin: 0;
}

.sc-full-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 10s ease;
}

.sc-full-banner:hover .sc-full-banner-bg {
    transform: scale(1.1);
}

.sc-full-banner-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.sc-full-banner--light .sc-full-banner-overlay {
    background: linear-gradient(
        105deg,
        rgba(255, 255, 255, 0.96) 0%,
        rgba(255, 255, 255, 0.88) 38%,
        rgba(255, 255, 255, 0.35) 62%,
        rgba(255, 255, 255, 0.08) 100%
    );
}

.sc-full-banner--dark .sc-full-banner-overlay {
    background: linear-gradient(
        285deg,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.72) 40%,
        rgba(0, 0, 0, 0.35) 65%,
        rgba(0, 0, 0, 0.15) 100%
    );
}

.sc-full-banner--right.sc-full-banner--light .sc-full-banner-overlay {
    background: linear-gradient(
        255deg,
        rgba(255, 255, 255, 0.96) 0%,
        rgba(255, 255, 255, 0.88) 38%,
        rgba(255, 255, 255, 0.35) 62%,
        rgba(255, 255, 255, 0.08) 100%
    );
}

.sc-full-banner-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 15px;
}

.sc-full-banner-content {
    max-width: 520px;
}

.sc-full-banner--right .sc-full-banner-inner {
    display: flex;
    justify-content: flex-end;
}

.sc-full-banner--right .sc-full-banner-content {
    text-align: right;
}

.sc-full-banner-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--sc-accent, #000);
    margin-bottom: 16px;
}

.sc-full-banner-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #111;
}

.sc-full-banner--dark .sc-full-banner-title {
    color: #fff;
}

.sc-full-banner-desc {
    font-size: 17px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 24px;
}

.sc-full-banner--dark .sc-full-banner-desc {
    color: rgba(255, 255, 255, 0.82);
}

.sc-full-banner-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sc-full-banner--right .sc-full-banner-badges {
    justify-content: flex-end;
}

.sc-full-banner-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 40px;
    font-size: 13px;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.5px;
}

.sc-full-banner--dark .sc-full-banner-badge {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    backdrop-filter: blur(8px);
}

/* ── Full-width product showcase (3-column) ── */
.sc-full-showcase {
    padding: 100px 0;
    background: #fff;
}

.sc-full-showcase-desc {
    font-size: 17px;
    color: #666;
    max-width: 560px;
    margin: 16px auto 0;
    line-height: 1.65;
}

.sc-full-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--sc-grid-gap);
    margin-top: 56px;
    align-items: stretch;
}

.sc-full-showcase-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sc-full-showcase-image-wrap {
    position: relative;
    background: linear-gradient(180deg, #f8f8f8 0%, #f2f2f2 100%);
    border-radius: var(--sc-cell-radius);
    padding: 48px 32px 32px;
    min-height: 340px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.sc-full-showcase-item:hover .sc-full-showcase-image-wrap {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.1);
}

.sc-full-showcase-glow {
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 50%;
    border-radius: 50%;
    background: var(--item-accent, var(--sc-accent));
    opacity: 0.12;
    filter: blur(40px);
    transition: opacity 0.4s ease;
}

.sc-full-showcase-item:hover .sc-full-showcase-glow {
    opacity: 0.22;
}

.sc-full-showcase-image-wrap img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 260px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.45s ease;
}

.sc-full-showcase-item:hover .sc-full-showcase-image-wrap img {
    transform: scale(1.06) translateY(-6px);
}

.sc-full-showcase-label {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    letter-spacing: 0.3px;
}

/* ── Full-bleed immersive parallax banner ── */
.sc-full-immersive {
    position: relative;
    width: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
}

.sc-full-immersive-bg {
    position: absolute;
    inset: -10% 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transform: scale(1.08);
}

.sc-full-immersive-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.65) 100%
    );
}

.sc-full-immersive-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 24px;
    max-width: 720px;
}

.sc-full-immersive-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.sc-full-immersive-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

/* ── Scroll reveal ── */
.sc-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.sc-reveal.sc-visible {
    opacity: 1;
    transform: translateY(0);
}

.sc-reveal-delay-1 { transition-delay: 0.1s; }
.sc-reveal-delay-2 { transition-delay: 0.2s; }
.sc-reveal-delay-3 { transition-delay: 0.3s; }

.sc-hero .sc-reveal-delay {
    transition-delay: 0.15s;
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .sc-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sc-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .sc-hero-actions,
    .sc-hero-tags {
        justify-content: center;
    }

    .sc-spotlight-grid {
        grid-template-columns: 1fr;
    }

    .sc-spotlight-stack {
        grid-template-rows: auto;
    }

    .sc-spotlight-large,
    .sc-spotlight-small {
        min-height: 280px;
    }

    .sc-features-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .sc-feature-cell {
        min-height: 320px;
    }

    .sc-feature-cell--text {
        padding: 40px 32px;
    }

    .sc-benefits-grid {
        grid-template-columns: 1fr !important;
    }

    .sc-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .sc-gallery-item-1 {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 280px;
    }

    .sc-gallery-item {
        min-height: 200px;
    }

    .sc-steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px var(--sc-grid-gap);
    }

    .sc-step-image-wrap {
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .sc-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 48px 32px;
    }

    .sc-cta-actions {
        justify-content: center;
        width: 100%;
    }

    .sc-full-banner {
        min-height: 560px;
    }

    .sc-full-banner--right .sc-full-banner-inner {
        justify-content: flex-start;
    }

    .sc-full-banner--right .sc-full-banner-content {
        text-align: left;
    }

    .sc-full-banner--right .sc-full-banner-badges {
        justify-content: flex-start;
    }

    .sc-full-showcase-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sc-full-showcase-image-wrap {
        min-height: 280px;
    }

    .sc-full-immersive-bg {
        background-attachment: scroll;
    }
}

@media (max-width: 576px) {
    .sc-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .sc-spotlight-large,
    .sc-spotlight-small {
        padding: 28px;
        min-height: 260px;
    }

    .sc-spotlight-content {
        max-width: 100%;
    }

    .sc-spotlight-image {
        width: 65%;
        height: 60%;
        opacity: 0.9;
    }

    .sc-feature-cell--text {
        padding: 36px 28px;
    }

    .sc-feature-cell--media {
        padding: 32px 24px;
        min-height: 260px;
    }

    .sc-feature-image {
        max-height: 240px;
    }

    .sc-gallery-grid {
        grid-template-columns: 1fr;
    }

    .sc-gallery-item-1 {
        grid-column: span 1;
        min-height: 240px;
    }

    .sc-steps-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .sc-step-body h3,
    .sc-step-body p {
        min-height: auto;
        max-width: 100%;
    }
}

/* Dark mode */
.dark-mode-main-background-color .sc-hero-overlay {
    background: linear-gradient(
        135deg,
        rgba(18, 18, 18, 0.97) 0%,
        rgba(24, 24, 24, 0.92) 45%,
        rgba(30, 30, 30, 0.85) 100%
    );
}

.dark-mode-main-background-color .sc-hero-title,
.dark-mode-main-background-color .sc-section-title,
.dark-mode-main-background-color .sc-spotlight-content h3,
.dark-mode-main-background-color .sc-feature-title,
.dark-mode-main-background-color .sc-step-body h3 {
    color: #fff;
}

.dark-mode-main-background-color .sc-step-body p {
    color: #aaa;
}

.dark-mode-main-background-color .sc-hero-desc,
.dark-mode-main-background-color .sc-spotlight-content p,
.dark-mode-main-background-color .sc-feature-desc {
    color: #aaa;
}

.dark-mode-main-background-color .sc-hero-tag {
    background: #2a2a2a;
    color: #ddd;
}

.dark-mode-main-background-color .sc-hero-visual-frame,
.dark-mode-main-background-color .sc-spotlight-card,
.dark-mode-main-background-color .sc-feature-cell,
.dark-mode-main-background-color .sc-gallery-item,
.dark-mode-main-background-color .sc-step-image-wrap {
    background: #1e1e1e;
}

.dark-mode-main-background-color .sc-gallery-section {
    background: #141414;
}

.dark-mode-main-background-color .sc-feature-list li {
    color: #ccc;
}

.dark-mode-main-background-color .sc-full-showcase {
    background: #121212;
}

.dark-mode-main-background-color .sc-full-showcase-label,
.dark-mode-main-background-color .sc-full-showcase-desc {
    color: #aaa;
}

.dark-mode-main-background-color .sc-full-banner--light .sc-full-banner-title {
    color: #fff;
}

.dark-mode-main-background-color .sc-full-banner--light .sc-full-banner-desc {
    color: #bbb;
}

.dark-mode-main-background-color .sc-full-banner--light .sc-full-banner-overlay {
    background: linear-gradient(
        105deg,
        rgba(18, 18, 18, 0.96) 0%,
        rgba(24, 24, 24, 0.88) 38%,
        rgba(30, 30, 30, 0.45) 62%,
        rgba(30, 30, 30, 0.15) 100%
    );
}

.dark-mode-main-background-color .sc-full-showcase-image-wrap {
    background: linear-gradient(180deg, #1e1e1e 0%, #161616 100%);
}
