/* ===================================================
   Dialectical Behaviour Therapy — Design System Compliant CSS
   =================================================== */

/* Hero Section */
.dbt-hero {
    background-color: var(--color-brand-green-dark);
    color: var(--text-inverse);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}
.dbt-hero-title {
    color: var(--text-inverse);
    font-size: var(--font-3xl);
    font-weight: 800;
    line-height: 1.2;
}
.dbt-hero-desc {
    color: rgba(255, 255, 255, 0.92);
    font-size: var(--font-base);
    line-height: 1.7;
    opacity: 0.9;
}
.dbt-hero-btn {
    background-color: var(--color-brand-green-light);
    color: #000;
    font-weight: 700;
    font-size: var(--font-sm);
    border-radius: 30px;
    padding: 12px 40px;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-fast);
    border: none;
}
.dbt-hero-btn:hover {
    background-color: #aee8dd;
    color: #000;
}
.dbt-hero-img-container {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.dbt-hero-img-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.dbt-hero-decor {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.4) 50%, #fff 100%);
}

/* Dynamics Section */
.dbt-dynamics {
    padding: 60px 0;
    background-color: var(--surface-card-base);
}
.dynamics-card {
    background: var(--surface-card-base);
    border: 1px solid var(--border-color-soft);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
.dynamics-card h2 {
    color: var(--color-brand-green);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: var(--font-2xl);
}
.dynamics-card p {
    color: var(--text-body-dark);
    line-height: 1.7;
    font-size: var(--font-base);
}

/* How It Works Section */
.dbt-how {
    padding: 60px 0;
    background-color: var(--surface-card-base);
}
.dbt-how-img {
    border-radius: 40px 40px 40px 0;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.dbt-how-content h2 {
    color: var(--color-brand-green-dark);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: var(--font-2xl);
}
.dbt-how-list {
    padding-left: 20px;
}
.dbt-how-list li {
    margin-bottom: 15px;
    color: var(--text-body-dark);
    line-height: 1.6;
}
.dbt-how-list li strong {
    color: var(--text-main-bold);
}

/* Benefits and Conditions Section */
.dbt-benefits {
    background-color: var(--color-brand-teal);
    color: var(--text-inverse);
    padding: 80px 0;
}
.dbt-benefits h3 {
    font-weight: 600;
    margin-bottom: 30px;
    font-size: var(--font-xl);
}
.dbt-benefits p {
    font-size: var(--font-base);
    line-height: 1.6;
    opacity: 0.95;
}
.dbt-benefits-list {
    list-style: none;
    padding-left: 0;
}
.dbt-benefits-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: var(--font-base);
    opacity: 0.95;
}
.dbt-benefits-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    font-size: var(--font-lg);
}
.benefits-divider {
    border-left: 2px solid var(--color-brand-amber);
    padding-left: 50px;
}
@media (max-width: 991px) {
    .benefits-divider {
        border-left: none;
        border-top: 2px solid var(--color-brand-amber);
        padding-left: 0;
        padding-top: 40px;
        margin-top: 40px;
    }
}

/* CTA Section */
.dbt-cta {
    background-color: var(--color-brand-green-light);
    padding: 80px 0;
    position: relative;
}
.cta-card {
    background: var(--surface-card-base);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.cta-card h2 {
    color: var(--color-brand-green);
    font-weight: 600;
    font-size: var(--font-xl);
    margin-bottom: 20px;
}
.cta-card p {
    color: var(--text-body-dark);
    font-size: var(--font-base);
    margin-bottom: 30px;
    line-height: 1.6;
}
.dbt-cta-btn {
    background-color: var(--color-brand-green-mid);
    color: var(--text-inverse);
    font-weight: 600;
    border-radius: 8px;
    padding: 12px 60px;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-fast);
    border: none;
    font-size: var(--font-sm);
}
.dbt-cta-btn:hover {
    background-color: #4a6a61;
    color: var(--text-inverse);
}
