.development-section {
    background-color: #FCF9F1;
    padding: 120px 5%;
    font-family: 'DM Sans', sans-serif;
    color: #2D3748;
    overflow: hidden;
    width: 100%;
}

.dev-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT COLUMN */
.dev-left {
    display: flex;
    flex-direction: column;
}

.dev-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #4A90E2;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-family: 'Comfortaa', sans-serif;
}

.dev-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1A202C;
    line-height: 1.1;
    margin-bottom: 24px;
    font-family: 'Comfortaa', sans-serif;
    word-wrap: break-word;
}

.dev-main-subtitle {
    font-size: 1.25rem;
    color: #4A5568;
    line-height: 1.5;
    margin-bottom: 40px;
}

.dev-sub-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 8px;
    font-family: 'Comfortaa', sans-serif;
}

.dev-sub-subtitle {
    font-size: 1rem;
    color: #718096;
    margin-bottom: 32px;
}

.dev-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dev-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.dev-checklist-item:last-child {
    border-bottom: none;
}

.dev-check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    fill: #E07A93;
    margin-top: 2px;
}

.dev-check-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 4px;
}

.dev-check-content p {
    font-size: 0.95rem;
    color: #4A5568;
    line-height: 1.5;
}

.dev-note {
    font-size: 0.8rem;
    color: #A0AEC0;
    margin-top: -8px;
}

/* RIGHT COLUMN - DASHBOARD MOCKUP */
.dev-right {
    position: relative;
    width: 100%;
    min-width: 0;
    height: 650px;
}

.dev-dashboard-image {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 55vw;
    max-width: none;
    height: auto;
    border-radius: 24px 0 0 24px;
    box-shadow: -20px 30px 80px rgba(0, 0, 0, 0.2), -10px 10px 30px rgba(0, 0, 0, 0.1);
}

.dash-sidebar {
    width: 220px;
    background-color: #F7FAFC;
    border-right: 1px solid #E2E8F0;
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
}

.dash-logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.dash-logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #4A90E2, #48BCA2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dash-logo-icon svg {
    width: 18px;
    height: 18px;
    fill: #FFF;
}

.dash-logo-text {
    font-weight: 700;
    font-size: 1rem;
    color: #2D3748;
    line-height: 1.2;
}

.dash-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    padding: 8px;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    border: 1px solid #E2E8F0;
}

.dash-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #EDF2F7;
    background-image: url('https://i.pravatar.cc/100?img=47');
    background-size: cover;
}

.dash-user-info p {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2D3748;
}

.dash-user-info span {
    font-size: 0.75rem;
    color: #718096;
}

.dash-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dash-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    color: #718096;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: default;
}

.dash-menu-item svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.dash-menu-item.active {
    background-color: #EBF4FF;
    color: #4A90E2;
}

.dash-main {
    flex-grow: 1;
    padding: 40px;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.dash-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D3748;
}

.dash-kpi-row {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.dash-kpi-card {
    flex: 1;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dash-kpi-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dash-kpi-value {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2D3748;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.dash-kpi-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 100px;
    background-color: #E6FFFA;
    color: #38B2AC;
    font-size: 0.75rem;
    font-weight: 700;
}

.dash-kpi-badge svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.dash-chart-card {
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.dash-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.dash-chart-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #2D3748;
}

.dash-chart-legend {
    display: flex;
    gap: 16px;
}

.dash-chart-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #718096;
}

.dash-legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dash-legend-dot.target {
    background-color: #CBD5E0;
}

.dash-legend-dot.progress {
    background-color: #4A90E2;
}

.dash-chart-area {
    flex-grow: 1;
    position: relative;
    background-image: linear-gradient(to bottom, #EDF2F7 1px, transparent 1px);
    background-size: 100% 25%;
    display: flex;
    align-items: flex-end;
}

.dash-chart-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

@media (max-width: 1024px) {
    .dev-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dev-right {
        height: auto;
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .dev-dashboard-image {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: 24px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 768px) {
    .development-section {
        padding: 60px 5%;
    }

    .dev-main-title {
        font-size: 2rem;
    }

    .dash-sidebar {
        display: none;
    }

    .dash-main {
        padding: 24px;
    }

    .dash-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .dash-kpi-row {
        flex-direction: column;
    }

    .dev-right {
        margin-top: 10px;
    }
}