.studio-page-wrap{
    background: linear-gradient(180deg, #f6f9fd 0%, #ffffff 28%, #f7f9fc 100%);
    color:#0f172a;
}
.studio-page-wrap .container{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}
.studio-hero{
    position:relative;
    padding:56px 0 34px;
    background:
        radial-gradient(circle at top left, rgba(46, 91, 153, 0.09), transparent 34%),
        linear-gradient(180deg, #eef4fb 0%, #f8fbff 60%, rgba(248, 251, 255, 0) 100%);
}
.studio-hero__inner{
    display:grid;
    grid-template-columns:1.03fr 0.97fr;
    gap:42px;
    align-items:center;
}
.studio-kicker{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 16px;
    border-radius:999px;
    background:rgba(26,58,95,0.08);
    color:#1a3a5f;
    font-weight:700;
    font-size:0.92rem;
    margin-bottom:18px;
}
.studio-hero h1{
    font-size:clamp(2rem, 3.35vw, 3.45rem);
    line-height:1.08;
    letter-spacing:-0.03em;
    font-weight:750;
    margin-bottom:16px;
    color:#0f172a;
    max-width:760px;
}
.studio-hero__lead{
    font-size:1.04rem;
    line-height:1.72;
    color:#334155;
    max-width:690px;
}
.studio-hero__actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:28px;
}
.studio-hero__platforms{
    margin-top:18px;
    color:#4b5c76;
    font-size:0.98rem;
    line-height:1.65;
    max-width:700px;
}
.studio-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:14px 24px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
    transition:all .2s ease;
}
.studio-btn--primary{
    background:linear-gradient(135deg, #1a3a5f 0%, #245289 100%);
    color:#fff;
    box-shadow:0 18px 40px rgba(36,82,137,0.18);
}
.studio-btn--secondary{
    background:#fff;
    color:#1a3a5f;
    border:1px solid rgba(26,58,95,0.16);
}
.studio-btn:hover{
    transform:translateY(-1px);
}
.studio-hero__visual{
    display:flex;
    justify-content:flex-end;
}
.studio-visual-card{
    width:100%;
    max-width:510px;
    background:linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border:1px solid rgba(15,23,42,0.08);
    border-radius:28px;
    padding:22px;
    box-shadow:0 30px 90px rgba(15,23,42,0.10);
}
.studio-visual-card__top{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:18px;
}
.studio-visual-badge{
    display:inline-flex;
    align-items:center;
    padding:8px 12px;
    border-radius:999px;
    background:#eaf2fb;
    color:#1f4e85;
    font-size:0.84rem;
    font-weight:700;
}
.studio-visual-badge--soft{
    background:#f2f5f9;
    color:#4b5c76;
}
.studio-visual-main{
    background:linear-gradient(180deg, #f4f8fc 0%, #edf3fa 100%);
    border:1px solid rgba(26,58,95,0.07);
    border-radius:22px;
    padding:16px;
    min-height:250px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.studio-visual-main img{
    width:100%;
    max-width:410px;
    height:auto;
    display:block;
    border-radius:18px;
}
.studio-visual-points{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:12px;
    margin-top:16px;
}
.studio-visual-point{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 14px;
    border-radius:16px;
    background:#fff;
    border:1px solid rgba(15,23,42,0.07);
    color:#1a3a5f;
    font-weight:650;
    font-size:0.95rem;
}
.studio-visual-point i{
    color:#245289;
}
.studio-overview-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:20px;
    margin-top:28px;
}
.studio-overview-card{
    background:#fff;
    border:1px solid rgba(15,23,42,0.07);
    border-radius:22px;
    padding:22px;
    box-shadow:0 14px 32px rgba(15,23,42,0.05);
}
.studio-overview-card__icon{
    width:48px;
    height:48px;
    border-radius:14px;
    background:#eef5fb;
    color:#245289;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:1.05rem;
    margin-bottom:14px;
}
.studio-overview-card h3{
    font-size:1.16rem;
    color:#0f172a;
    margin-bottom:8px;
}
.studio-overview-card p{
    color:#475569;
    line-height:1.7;
}
.studio-section{
    padding:28px 0 14px;
}
.studio-section--spacious{
    padding:58px 0 18px;
}
.studio-section-title{
    max-width:860px;
    margin-bottom:28px;
}
.studio-section-title h2{
    font-size:clamp(1.72rem, 2.7vw, 2.75rem);
    line-height:1.1;
    letter-spacing:-0.02em;
    color:#0f172a;
    margin-bottom:12px;
}
.studio-section-title p{
    color:#475569;
    line-height:1.75;
    font-size:1.02rem;
}
.studio-section-title--inverse h2,
.studio-section-title--inverse p{
    color:#fff;
}
.studio-grid{
    display:grid;
    gap:22px;
}
.studio-grid--3{
    grid-template-columns:repeat(3, minmax(0, 1fr));
}
.studio-grid--2{
    grid-template-columns:repeat(2, minmax(0, 1fr));
}
.studio-card{
    background:#fff;
    border:1px solid rgba(15,23,42,0.08);
    border-radius:24px;
    padding:24px;
    box-shadow:0 16px 40px rgba(15,23,42,0.05);
}
.studio-card h3{
    font-size:1.2rem;
    margin:14px 0 10px;
    color:#0f172a;
}
.studio-card p{
    color:#475569;
    line-height:1.7;
}
.studio-card__icon{
    width:52px;
    height:52px;
    border-radius:16px;
    background:#eff5fb;
    color:#1f4e85;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:1.15rem;
}
.studio-list{
    list-style:none;
    padding:0;
    margin:18px 0 0;
    display:grid;
    gap:10px;
}
.studio-list li{
    display:flex;
    gap:10px;
    align-items:flex-start;
    color:#334155;
    line-height:1.6;
}
.studio-list i{
    color:#1f4e85;
    margin-top:5px;
}
.studio-module-action{
    margin-top:18px;
}
.studio-platforms{
    display:grid;
    grid-template-columns:repeat(5, minmax(0, 1fr));
    gap:16px;
}
.studio-platform{
    background:#fff;
    border:1px solid rgba(15,23,42,0.08);
    border-radius:20px;
    padding:18px;
    min-height:148px;
    box-shadow:0 14px 36px rgba(15,23,42,0.05);
}
.studio-platform__label{
    display:inline-block;
    padding:6px 10px;
    border-radius:999px;
    background:#f2f6fb;
    color:#1f4e85;
    font-size:0.82rem;
    font-weight:700;
    margin-bottom:12px;
}
.studio-platform strong{
    display:block;
    font-size:1.05rem;
    color:#0f172a;
    margin-bottom:8px;
}
.studio-platform p{
    color:#475569;
    font-size:0.96rem;
    line-height:1.6;
}
.studio-highlight{
    background:linear-gradient(135deg, #0f172a 0%, #1a3a5f 58%, #245289 100%);
    color:#fff;
    border-radius:30px;
    padding:34px;
    box-shadow:0 28px 70px rgba(15,23,42,0.2);
}
.studio-highlight h2,
.studio-highlight h3,
.studio-highlight p,
.studio-highlight li{
    color:#fff;
}
.studio-highlight .studio-list i{
    color:#9dd2ff;
}
.studio-highlight .studio-btn--secondary{
    border-color:rgba(255,255,255,0.18);
    color:#fff;
    background:rgba(255,255,255,0.06);
}
.studio-note{
    margin-top:16px;
    color:#d8e7f6 !important;
}
.studio-cta{
    padding:64px 0 82px;
}
.studio-cta-box{
    background:#fff;
    border:1px solid rgba(15,23,42,0.08);
    border-radius:28px;
    padding:34px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
    box-shadow:0 18px 44px rgba(15,23,42,0.06);
}
.studio-cta-box h2{
    font-size:clamp(1.7rem, 2.8vw, 2.6rem);
    line-height:1.1;
    color:#0f172a;
    margin-bottom:12px;
}
.studio-cta-box p{
    color:#475569;
    line-height:1.75;
    max-width:700px;
}
.studio-hero__actions--cta{
    margin-top:0;
}
@media (max-width: 1100px){
    .studio-platforms{
        grid-template-columns:repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 980px){
    .studio-hero__inner,
    .studio-grid--3,
    .studio-grid--2,
    .studio-overview-grid,
    .studio-cta-box{
        grid-template-columns:1fr;
        display:grid;
    }
    .studio-platforms{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
    .studio-hero{
        padding-top:38px;
    }
    .studio-hero__visual{
        justify-content:flex-start;
    }
}
@media (max-width: 640px){
    .studio-platforms,
    .studio-visual-points{
        grid-template-columns:1fr;
    }
    .studio-visual-card,
    .studio-overview-card,
    .studio-card,
    .studio-highlight,
    .studio-cta-box{
        padding:22px;
        border-radius:22px;
    }
    .studio-btn{
        width:100%;
    }
    .studio-hero h1{
        font-size:clamp(1.85rem, 9vw, 2.45rem);
    }
}