﻿.studio-home {
    color: var(--text);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    padding-bottom: 48px;
}

.studio-page-hero {
    position: relative;
    overflow: hidden;
    margin: 24px 0 0;
    padding: clamp(40px, 6vw, 72px);
    border-radius: var(--hero-radius);
    background: linear-gradient(150deg, var(--blue) 0%, #0060B0 55%, #004F99 100%);
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    box-shadow: 0 24px 60px rgba(0, 80, 180, 0.18);
}

    .studio-page-hero::after {
        content: "";
        position: absolute;
        top: 0;
        right: -90px;
        width: 420px;
        height: 100%;
        background: rgba(255, 255, 255, 0.05);
        transform: skewX(-14deg);
        pointer-events: none;
    }

.studio-page-hero-inner,
.studio-hero-stats {
    position: relative;
    z-index: 1;
}

.studio-eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #7DD3FA;
}

.studio-page-title {
    margin: 0 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.4px;
}

    .studio-page-title em {
        font-style: italic;
        font-weight: 400;
        color: #7DD3FA;
    }

.studio-page-lead {
    max-width: 720px;
    margin: 0 0 28px;
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
}

.studio-page-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.studio-hero-stats {
    display: grid;
    gap: 12px;
}

.studio-hero-stat {
    padding: 18px 18px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(4px);
}

.studio-hero-stat-label {
    margin-bottom: 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #7DD3FA;
}

.studio-hero-stat-title {
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
}

.studio-hero-stat-text {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
}

.studio-trust-strip {
    margin: 0;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    background: var(--blue-lt);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    border-radius: 0 0 18px 18px;
}

.studio-trust-item {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    white-space: nowrap;
}

.studio-trust-divider {
    width: 1px;
    height: 18px;
    background: var(--border);
}

.studio-section {
    padding: clamp(48px, 7vw, 88px) 0 0;
}

.studio-section-label {
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--blue);
}

.studio-section-title {
    margin: 0 0 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.3px;
}

    .studio-section-title em {
        font-style: italic;
        font-weight: 400;
        color: var(--blue);
    }

.studio-section-subtitle {
    max-width: 620px;
    margin: 0 0 36px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-lt);
}

.studio-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.studio-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 360px;
    padding: clamp(22px, 2.6vw, 32px);
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #FFFFFF;
    box-shadow: 0 8px 26px rgba(0, 80, 180, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

    .studio-card:hover {
        transform: translateY(-4px);
        border-color: rgba(0, 113, 206, 0.35);
        box-shadow: 0 18px 40px rgba(0, 80, 180, 0.12);
    }

.studio-card-top {
    display: flex;
    flex-direction: column;
}

.studio-card-tag {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 16px;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--blue-lt);
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.studio-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 12px;
    border: 1px solid rgba(0, 113, 206, 0.16);
    background: var(--blue-lt);
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.studio-card-title {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--text);
}

.studio-card-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-lt);
}

.studio-card-footer {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--gray-lt);
}

@media (max-width: 1100px) {
    .studio-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .studio-page-hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .studio-card-grid {
        grid-template-columns: 1fr;
    }

    .studio-page-actions {
        flex-direction: column;
        align-items: stretch;
    }

        .studio-page-actions .studio-btn {
            width: 100%;
        }

    .studio-trust-divider {
        display: none;
    }

    .studio-page-hero {
        margin-top: 16px;
        padding: 28px 20px;
    }
}

.studio-signout-btn {
    background: none;
    border: none;
    color: var(--studio-text-muted);
    padding: 0.4rem;
    margin-left: 0.5rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

    .studio-signout-btn:hover {
        color: var(--studio-danger, #dc3545);
        background: rgba(220, 53, 69, 0.08);
    }

    .studio-signout-btn i {
        font-size: 0.95rem;
    }