.studio-page {
    overflow-y: auto !important;
    display: block !important;
    background: #050505;
}

.studio-nav {
    padding: 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.back-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--primary-red);
}

.studio-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 10;
}

.pre-title {
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 800;
    font-size: 0.8rem;
}

.huge-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1;
    margin: 1rem 0 3rem 0;
}

.red-text {
    color: var(--primary-red);
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
}

.long-text {
    margin-bottom: 5rem;
}

.long-text p {
    text-align: left;
    max-width: 100%;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #999;
    line-height: 1.8;
}

.lead {
    font-size: 1.4rem !important;
    color: #eee !important;
    font-weight: 500;
}

/* New Clean Typography Layout (No Boxes) */
.grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 8rem;
    text-align: left;
}

.card {
    background: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.card-icon {
    font-size: 2.5rem;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 12px;
}

.card-content {
    flex: 1;
}

.card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: white;
    font-weight: 800;
}

.card p {
    font-size: 1.1rem;
    color: #888;
    margin: 0;
    text-align: left;
    line-height: 1.7;
    max-width: 700px;
}

.deep-vision {
    margin-bottom: 8rem;
    border-top: 1px solid #111;
    padding-top: 6rem;
}

.vision-box {
    background: transparent;
    padding: 0;
    border: none;
}

.vision-box h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: 2px;
    font-weight: 900;
}

.vision-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.step {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.step-num {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-red);
    opacity: 0.2;
    display: block;
    margin-bottom: -1rem;
}

.step-content h4 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.step-content p {
    color: #666;
    text-align: center;
    line-height: 1.6;
}

.cta-box {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #111, #000);
    border-radius: 40px;
    color: white;
    border: 1px solid #222;
}

.cta-box p {
    color: white;
    font-weight: 900;
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.cta-box .btn {
    display: inline-flex;
    margin: 0 auto;
    background: white;
    color: black;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .huge-title { font-size: 3rem; }
    .card { flex-direction: column; gap: 1rem; }
    .card-icon { min-width: 50px; height: 50px; font-size: 2rem; }
    .vision-steps { grid-template-columns: 1fr; }
    .step { text-align: left; align-items: flex-start; }
    .step-content p { text-align: left; }
    .cta-box p { font-size: 1.5rem; }
}
