/* =========================================================
   STYLE LAB LANDING PAGE
   Modern / Fashion / Tech
========================================================= */

.stylelab-landing-page {
    background: linear-gradient(to bottom, #f8f8f8 0%, #ffffff 35%, #f5f5f7 100%);
    color: #111;
}

/* =========================================================
   GLOBAL HELPERS
========================================================= */

.sl-section-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #6b7280;
}

.sl-section-heading {
    max-width: 820px;
    margin-bottom: 40px;
}

.sl-section-heading h2 {
    font-size: clamp(30px, 5vw, 52px);
    line-height: 1.1;
    font-weight: 700;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
    color: #111;
}

.sl-section-heading p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}

.sl-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.sl-card-glass {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(17, 17, 17, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-radius: 28px;
}

.sl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: all 0.25s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.sl-btn-primary {
    background: #111;
    color: #fff;
}

.sl-btn-primary:hover {
    background: #222;
    transform: translateY(-1px);
}

.sl-btn-secondary {
    background: #fff;
    color: #111;
    border: 1px solid rgba(17, 17, 17, 0.12);
}

.sl-btn-secondary:hover {
    background: #f3f4f6;
    transform: translateY(-1px);
}

.sl-btn-ghost {
    background: transparent;
    color: #111;
    border: 1px solid rgba(17, 17, 17, 0.12);
}

.sl-btn-ghost:hover {
    background: rgba(17, 17, 17, 0.04);
    transform: translateY(-1px);
}

.sl-text-link {
    text-decoration: none;
    color: #111;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.2s ease;
}

.sl-text-link:hover {
    opacity: 0.7;
}

/* =========================================================
   HERO SECTION
========================================================= */

.sl-hero-section {
    position: relative;
    overflow: hidden;
    padding: 90px 20px 80px;
    background:
        radial-gradient(circle at top left, rgba(115, 115, 255, 0.10), transparent 30%),
        radial-gradient(circle at top right, rgba(0, 0, 0, 0.05), transparent 35%),
        linear-gradient(135deg, #ffffff 0%, #f4f4f6 55%, #efeff3 100%);
}

.sl-hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(255,255,255,0.2), rgba(255,255,255,0));
}

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

.sl-hero-text {
    max-width: 650px;
}

.sl-hero-kicker {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 16px;
}

.sl-hero-title {
    font-size: clamp(40px, 7vw, 82px);
    line-height: 0.95;
    letter-spacing: -2px;
    font-weight: 800;
    margin: 0 0 24px 0;
    color: #111;
}

.sl-hero-subtitle {
    font-size: 19px;
    line-height: 1.8;
    color: #4b5563;
    max-width: 620px;
    margin-bottom: 34px;
}

.sl-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

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

.sl-hero-image-card {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 16px;
    border-radius: 32px;
}

.sl-hero-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center top;
    border-radius: 24px;
    display: block;
    background: #f3f4f6;
}

.sl-hero-image-caption {
    padding: 14px 8px 4px;
    font-size: 14px;
    color: #4b5563;
    text-align: center;
    letter-spacing: 0.3px;
}

/* =========================================================
   BRAND SECTION
========================================================= */

.sl-brand-section {
    padding: 80px 20px 40px;
}

.sl-brand-inner {
    text-align: center;
}

/* =========================================================
   FEATURES
========================================================= */

.sl-features-section {
    padding: 60px 20px 90px;
}

.sl-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.sl-feature-card {
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 26px;
    padding: 30px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sl-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.sl-feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, #111 0%, #444 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
}

.sl-feature-card h3 {
    font-size: 22px;
    margin: 0 0 14px 0;
    font-weight: 700;
    color: #111;
}

.sl-feature-card p {
    font-size: 15px;
    line-height: 1.75;
    color: #4b5563;
    margin: 0;
}

/* =========================================================
   HOW IT WORKS
========================================================= */

.sl-how-section {
    padding: 90px 20px;
    background: linear-gradient(to bottom, #ffffff 0%, #f7f7f9 100%);
}

.sl-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.sl-how-step {
    background: #fff;
    border-radius: 26px;
    padding: 34px 28px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    text-align: center;
}

.sl-step-number {
    width: 58px;
    height: 58px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sl-how-step h3 {
    font-size: 22px;
    margin: 0 0 12px 0;
    color: #111;
}

.sl-how-step p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
}

/* =========================================================
   INSPIRATION
========================================================= */

.sl-inspiration-section {
    padding: 90px 20px;
}

.sl-slider-block {
    margin-bottom: 50px;
}

.sl-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.sl-slider-header h3 {
    font-size: 28px;
    margin: 0;
    color: #111;
    font-weight: 700;
}

.sl-slider-placeholder {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.sl-placeholder-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sl-placeholder-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.sl-placeholder-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #f3f4f6;
}

.sl-placeholder-card p {
    margin: 0;
    padding: 18px 18px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #111;
}

/* =========================================================
   STUDIO
========================================================= */

.sl-studio-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #111 0%, #1b1b1f 40%, #26262d 100%);
    color: #fff;
}

.sl-studio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.sl-studio-image-wrapper {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 30px;
    padding: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.sl-studio-image,
.sl-studio-video {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: center;
    border-radius: 22px;
    display: block;
    background: rgba(255,255,255,0.04);
}

.sl-studio-text .sl-section-kicker {
    color: rgba(255,255,255,0.65);
}

.sl-studio-text h2 {
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.08;
    letter-spacing: -1px;
    margin: 0 0 18px 0;
    color: #fff;
}

.sl-studio-text p {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255,255,255,0.80);
    margin: 0 0 18px 0;
}

.sl-inline-actions {
    margin-top: 28px;
}

.sl-studio-section .sl-btn-primary {
    background: #fff;
    color: #111;
}

.sl-studio-section .sl-btn-primary:hover {
    background: #f1f1f1;
}

/* =========================================================
   PERSONAL SECTION
========================================================= */

.sl-personal-section {
    padding: 90px 20px;
}

.sl-personal-card {
    padding: 48px 32px;
}

/* =========================================================
   VISION
========================================================= */

.sl-vision-section {
    padding: 40px 20px 100px;
}

.sl-vision-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: stretch;
}

.sl-vision-text p {
    font-size: 17px;
    line-height: 1.9;
    color: #4b5563;
    margin-bottom: 18px;
}

.sl-vision-quote {
    padding: 38px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sl-vision-quote blockquote {
    margin: 0;
    font-size: 28px;
    line-height: 1.5;
    font-weight: 600;
    color: #111;
    text-align: center;
    letter-spacing: -0.5px;
}

/* =========================================================
   CTA
========================================================= */

.sl-cta-section {
    padding: 0 20px 100px;
}

.sl-cta-card {
    text-align: center;
    background: linear-gradient(135deg, #f4f4f7 0%, #ffffff 55%, #efeff4 100%);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 34px;
    padding: 60px 28px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.sl-cta-card h2 {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.08;
    letter-spacing: -1px;
    margin: 0 0 16px 0;
    color: #111;
}

.sl-cta-card p {
    max-width: 760px;
    margin: 0 auto 28px;
    font-size: 17px;
    line-height: 1.85;
    color: #4b5563;
}

.sl-cta-buttons {
    justify-content: center;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
    .sl-hero-inner,
    .sl-studio-grid,
    .sl-vision-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .sl-slider-placeholder {
        grid-template-columns: repeat(2, 1fr);
    }

    .sl-how-grid {
        grid-template-columns: 1fr;
    }

    .sl-hero-text,
    .sl-section-heading {
        max-width: 100%;
    }

    .sl-hero-visual,
    .sl-studio-visual {
        justify-content: flex-start;
    }

    .sl-hero-image-card,
    .sl-studio-image-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 820px) {
    .sl-hero-section,
    .sl-brand-section,
    .sl-features-section,
    .sl-how-section,
    .sl-inspiration-section,
    .sl-studio-section,
    .sl-personal-section,
    .sl-vision-section,
    .sl-cta-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .sl-hero-section {
        padding-top: 42px;
        padding-bottom: 52px;
    }

    .sl-brand-section {
        padding-top: 56px;
        padding-bottom: 24px;
    }

    .sl-features-section,
    .sl-how-section,
    .sl-inspiration-section,
    .sl-studio-section,
    .sl-personal-section,
    .sl-vision-section {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .sl-cta-section {
        padding-bottom: 64px;
    }

    .sl-hero-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sl-hero-text {
        order: 1;
    }

    .sl-hero-visual {
        order: 2;
    }

    .sl-studio-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .sl-feature-grid,
.sl-how-grid,
.sl-vision-grid {
    grid-template-columns: 1fr;
}

.sl-slider-placeholder {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

    .sl-slider-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 18px;
    }

    .sl-hero-kicker,
    .sl-section-kicker {
        font-size: 11px;
        letter-spacing: 2.4px;
        margin-bottom: 10px;
    }

    .sl-hero-title {
        font-size: clamp(34px, 10vw, 52px);
        line-height: 1.02;
        letter-spacing: -1.4px;
        margin-bottom: 16px;
    }

    .sl-hero-subtitle,
    .sl-section-heading p,
    .sl-studio-text p,
    .sl-vision-text p,
    .sl-cta-card p {
        font-size: 15px;
        line-height: 1.7;
    }

    .sl-section-heading h2,
    .sl-studio-text h2,
    .sl-cta-card h2 {
        font-size: clamp(28px, 8vw, 36px);
        line-height: 1.12;
        letter-spacing: -0.8px;
        margin-bottom: 14px;
    }

    .sl-slider-header h3,
    .sl-feature-card h3,
    .sl-how-step h3 {
        font-size: 21px;
    }

    .sl-hero-buttons,
    .sl-cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
    }

    .sl-btn {
        width: 100%;
        min-height: 50px;
        padding: 0 20px;
    }

    .sl-hero-image-card,
    .sl-studio-image-wrapper,
    .sl-feature-card,
    .sl-how-step,
    .sl-personal-card,
    .sl-cta-card,
    .sl-placeholder-card {
        border-radius: 22px;
    }

    .sl-hero-image-card,
    .sl-studio-image-wrapper {
        padding: 10px;
    }

    .sl-hero-image {
        height: 240px;
        width: 100%;
        object-fit: cover;
        object-position: center top;
        border-radius: 16px;
    }

    .sl-studio-image,
    .sl-studio-video {
        height: 240px;
        width: 100%;
        object-fit: cover;
        border-radius: 16px;
    }

    .sl-placeholder-card img {
    height: 160px;
    width: 100%;
    object-fit: contain;
    object-position: center;
    background: #f6f6f8;
    padding: 6px;
}

.sl-placeholder-card p {
    padding: 10px 10px 12px;
    font-size: 13px;
}

    .sl-feature-card,
    .sl-how-step {
        padding: 24px 20px;
    }

    .sl-personal-card {
        padding: 34px 20px;
    }

    .sl-cta-card {
        padding: 40px 20px;
    }

    .sl-vision-quote {
        padding: 28px 22px;
    }

    .sl-vision-quote blockquote {
        font-size: 22px;
        line-height: 1.45;
    }
}

@media (max-width: 480px) {
    .sl-hero-section,
    .sl-brand-section,
    .sl-features-section,
    .sl-how-section,
    .sl-inspiration-section,
    .sl-studio-section,
    .sl-personal-section,
    .sl-vision-section,
    .sl-cta-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .sl-hero-section {
        padding-top: 34px;
        padding-bottom: 46px;
    }

    .sl-hero-title {
        font-size: 32px;
        line-height: 1.02;
    }

    .sl-section-heading h2,
    .sl-studio-text h2,
    .sl-cta-card h2 {
        font-size: 26px;
    }

    .sl-hero-subtitle,
    .sl-section-heading p,
    .sl-studio-text p,
    .sl-vision-text p,
    .sl-feature-card p,
    .sl-how-step p,
    .sl-cta-card p {
        font-size: 14px;
        line-height: 1.65;
    }

    .sl-feature-card,
    .sl-how-step {
        padding: 22px 18px;
    }

    .sl-personal-card,
    .sl-cta-card {
        padding: 30px 18px;
    }

    .sl-hero-image {
        height: 200px;
    }

    .sl-studio-image,
    .sl-studio-video {
        height: 560px;
    }

    .sl-placeholder-card img {
        height: 180px;
        object-fit: contain;
        padding: 6px;
    }

    .sl-vision-quote blockquote {
        font-size: 20px;
    }
}