/*===================================================
Project: SublimeArc UI/UX Studio
Design Language: Studio Minimalist
====================================================*/

:root {
    --studio-white: #FFFFFF;
    --studio-carbon: #444444;
    --studio-blue: #007BFF;
    --studio-green: #2ECC40;
    --studio-border: #EEEEEE;
    --studio-bg-alt: #F9F9F9;
}

/* --- Hero & Breadcrumbs --- */
.breadcrumbs {
    padding: 80px 0 40px;
    background: var(--studio-white);
}

.breadcrumbs h2.title {
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #666;
    max-width: 800px;
}

/* --- Manifesto --- */
.manifesto-section {
    padding: 60px 0 100px;
}

.manifesto-body {
    position: relative;
    padding-left: 30px;
    border-left: 4px solid var(--studio-green);
}

.manifesto-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #555;
    font-weight: 400;
}

/* --- Competencies Grid --- */
.studio-competencies {
    padding: 80px 0;
}

.competency-card {
    background: var(--boxColor) !important;
    border: 1px solid var(--studio-border) !important;
    padding: 40px !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border-radius: var(--border-radius) !important;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
}

.competency-card:hover {
    border-color: var(--studio-green) !important;
    transform: translateY(-10px);
    box-shadow: 0 15px 45px 0 rgba(46, 204, 64, 0.1);
}

.competency-card i {
    font-size: 3.5rem;
    color: var(--studio-blue);
    margin-bottom: 2rem;
    display: inline-block;
}

.competency-card h3 {
    color: var(--studio-carbon);
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* --- Tech Stack (Bento Style) --- */
.tech-stack-section {
    background: #f8fafc;
    padding: 100px 0;
    margin: 40px 0;
    border-top: 1px solid var(--studio-border);
    border-bottom: 1px solid var(--studio-border);
}

.tech-card {
    background: var(--studio-white);
    padding: 30px;
    border: 1px solid var(--studio-border);
    height: 100%;
    transition: 0.3s ease;
    border-radius: var(--border-radius);
}

.tech-card:hover {
    border-color: var(--studio-blue);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.tech-card h5 {
    color: var(--studio-carbon);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.tech-card h5::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--studio-border);
    margin-left: 15px;
}

.tool-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tool-item {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    background: #f1f5f9;
    padding: 6px 14px;
    border-radius: 50px;
    color: #475569;
    font-weight: 600;
    border: 1px solid transparent;
}

.tool-item.lead {
    background: rgba(46, 204, 64, 0.1);
    color: var(--studio-green);
    border-color: var(--studio-green);
}

/* --- FAQ --- */
.faq-section {
    padding: 100px 0;
}

.faq-item {
    border: 1px solid var(--studio-border);
    border-radius: var(--border-radius);
    padding: 24px;
    margin-bottom: 20px;
    background: var(--studio-white);
    transition: 0.3s ease;
}

.faq-item:hover {
    border-color: var(--studio-blue);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--studio-carbon);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding-top: 20px;
    color: #64748b;
    line-height: 1.8;
    max-width: 95%;
    font-size: 1.1rem;
}

/* --- Strategic Closer --- */
.studio-closer {
    padding: 120px 0;
    background: #f8fafc;
    border-top: 1px solid var(--studio-border);
}

.studio-closer .title {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.btn-audit {
    background: var(--studio-green) !important;
    color: white !important;
    padding: 18px 45px !important;
    font-size: 1.1rem !important;
    border-radius: 0 !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 800;
    transition: 0.3s all ease;
    border: none;
}

.btn-audit:hover {
    background: #25a034 !important;
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(46, 204, 64, 0.2);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .breadcrumbs h2.title {
        font-size: 2.5rem;
    }
    .manifesto-body {
        padding-left: 20px;
        margin-top: 40px;
    }
}
