/**
 * APP.CSS - Stili per Simulatore Fiscale Italia 2026
 * Design elegante su sfondo grigio chiaro con tipografia raffinata
 */

/* ═══════════════════════════════════════════════════════════════════
   CSS VARIABLES
   ═══════════════════════════════════════════════════════════════════ */

:root {
    /* Colori principali */
    --bg-main: #f5f5f7;
    --bg-card: #ffffff;
    --bg-input: #fafafa;
    --bg-hover: #f0f0f2;
    
    /* Testo */
    --text-primary: #1d1d1f;
    --text-secondary: #6e6e73;
    --text-muted: #86868b;
    --text-light: #aeaeb2;
    
    /* Accent */
    --accent-primary: #0071e3;
    --accent-hover: #0077ed;
    --accent-light: rgba(0, 113, 227, 0.1);
    
    /* Semantici */
    --success: #34c759;
    --success-light: rgba(52, 199, 89, 0.1);
    --warning: #ff9f0a;
    --warning-light: rgba(255, 159, 10, 0.1);
    --danger: #ff3b30;
    --danger-light: rgba(255, 59, 48, 0.1);
    
    /* Bordi e ombre */
    --border-color: rgba(0, 0, 0, 0.08);
    --border-focus: var(--accent-primary);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);
    
    /* Spaziature */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    
    /* Transizioni */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

/* ═══════════════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════════════ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.5;
    min-height: 100vh;
}

/* ═══════════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════════ */

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

/* ═══════════════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════════════ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.app-wrapper {
    padding: 40px 0 80px;
}

/* ═══════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════ */

.app-header {
    text-align: center;
    margin-bottom: 48px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #009246 0%, #009246 33%, #ffffff 33%, #ffffff 66%, #ce2b37 66%, #ce2b37 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    color: white;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.app-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.year-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-primary);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.app-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════════════════════════ */

.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: box-shadow var(--transition-base);
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.card-header {
    padding: 20px 24px 16px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
}

.card-icon svg {
    width: 20px;
    height: 20px;
}

.card-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
}

.card-body {
    padding: 24px;
}

/* ═══════════════════════════════════════════════════════════════════
   FORM ELEMENTS
   ═══════════════════════════════════════════════════════════════════ */

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-label .required {
    color: var(--danger);
}

.form-input,
.form-select {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text-primary);
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    -webkit-appearance: none;
    appearance: none;
}

.form-input:hover,
.form-select:hover {
    border-color: rgba(0, 0, 0, 0.15);
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px var(--accent-light);
    background: var(--bg-card);
}

.form-input::placeholder {
    color: var(--text-light);
}

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2386868b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
    cursor: pointer;
}

/* Input con prefisso euro */
.input-euro {
    position: relative;
}

.input-euro::before {
    content: '€';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    pointer-events: none;
    z-index: 1;
}

.input-euro .form-input {
    padding-left: 32px;
}

/* Input con suffisso percentuale */
.input-percent {
    position: relative;
}

.input-percent::after {
    content: '%';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    pointer-events: none;
}

.input-percent .form-input {
    padding-right: 36px;
}

/* Checkbox & Switch */
.form-switch {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 10px 0;
}

.form-switch input {
    display: none;
}

.switch-track {
    width: 44px;
    height: 26px;
    background: var(--text-light);
    border-radius: 13px;
    position: relative;
    transition: background var(--transition-fast);
    flex-shrink: 0;
}

.switch-thumb {
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-fast);
}

.form-switch input:checked + .switch-track {
    background: var(--accent-primary);
}

.form-switch input:checked + .switch-track .switch-thumb {
    transform: translateX(18px);
}

.switch-label {
    font-size: 14px;
    color: var(--text-primary);
}

/* ═══════════════════════════════════════════════════════════════════
   COSTS TABLE - Design elegante per inserimento costi
   ═══════════════════════════════════════════════════════════════════ */

.costs-section {
    margin-top: 32px;
}

.costs-category {
    margin-bottom: 24px;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--bg-hover);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background var(--transition-fast);
    user-select: none;
}

.category-header:hover {
    background: #e8e8ed;
}

.category-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-icon {
    width: 32px;
    height: 32px;
    background: var(--bg-card);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
}

.category-icon svg {
    width: 16px;
    height: 16px;
}

.category-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.category-chevron {
    color: var(--text-muted);
    transition: transform var(--transition-fast);
}

.category-header[aria-expanded="true"] .category-chevron {
    transform: rotate(180deg);
}

.category-total {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-primary);
    margin-right: 12px;
}

.category-content {
    display: none;
    padding: 16px 0;
}

.category-content.show {
    display: block;
}

/* Singola voce di costo */
.cost-item {
    display: grid;
    grid-template-columns: 1fr 140px 80px;
    gap: 16px;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    transition: background var(--transition-fast);
}

.cost-item:hover {
    background: var(--bg-hover);
}

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

.cost-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cost-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.cost-note {
    font-size: 12px;
    color: var(--text-muted);
}

.cost-input {
    position: relative;
}

.cost-input input {
    width: 100%;
    height: 36px;
    padding: 0 10px 0 24px;
    font-size: 14px;
    text-align: right;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: all var(--transition-fast);
}

.cost-input input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px var(--accent-light);
}

.cost-input::before {
    content: '€';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: var(--text-muted);
}

.cost-deducibility {
    text-align: center;
}

.deducibility-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 28px;
    padding: 0 10px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 14px;
}

.deducibility-badge.full {
    background: var(--success-light);
    color: var(--success);
}

.deducibility-badge.partial {
    background: var(--warning-light);
    color: #cc7a00;
}

/* ═══════════════════════════════════════════════════════════════════
   SOCI SECTION
   ═══════════════════════════════════════════════════════════════════ */

.soci-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.socio-card {
    background: var(--bg-hover);
    border-radius: var(--radius-md);
    padding: 16px;
    position: relative;
}

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

.socio-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.socio-number {
    width: 28px;
    height: 28px;
    background: var(--accent-primary);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
}

.socio-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.btn-remove-socio {
    width: 28px;
    height: 28px;
    border: none;
    background: var(--danger-light);
    color: var(--danger);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.btn-remove-socio:hover {
    background: var(--danger);
    color: white;
}

.socio-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.btn-add-socio {
    width: 100%;
    height: 48px;
    border: 2px dashed var(--border-color);
    background: transparent;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-fast);
}

.btn-add-socio:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: var(--accent-light);
}

/* ═══════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 28px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
}

.btn-primary {
    background: var(--accent-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--bg-hover);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: #e8e8ed;
}

.actions-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

/* ═══════════════════════════════════════════════════════════════════
   RESULTS SECTION
   ═══════════════════════════════════════════════════════════════════ */

#results-section {
    display: none;
    animation: fadeInUp 0.5s ease;
}

#results-section.visible {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Recommendation Box */
.recommendation-box {
    background: linear-gradient(135deg, var(--success-light) 0%, rgba(0, 113, 227, 0.08) 100%);
    border: 1px solid rgba(52, 199, 89, 0.2);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}

.recommendation-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.recommendation-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 8px;
}

.recommendation-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.recommendation-savings {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(52, 199, 89, 0.2);
}

.savings-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.savings-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--success);
    margin-top: 4px;
}

/* Result Cards Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.result-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
    padding: 24px;
    position: relative;
    transition: all var(--transition-base);
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.result-card.forfettario::before { background: linear-gradient(90deg, #34c759, #30d158); }
.result-card.ordinaria::before { background: linear-gradient(90deg, #ff9f0a, #ffb340); }
.result-card.snc::before { background: linear-gradient(90deg, #5ac8fa, #64d2ff); }
.result-card.sas::before { background: linear-gradient(90deg, #af52de, #bf5af2); }
.result-card.srl::before { background: linear-gradient(90deg, #ff375f, #ff6482); }

.result-card.best {
    border-color: var(--success);
    box-shadow: 0 0 0 3px var(--success-light), var(--shadow-md);
}

.result-card.best::after {
    content: '★ MIGLIORE';
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--success);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.result-card.not-available {
    opacity: 0.5;
}

.result-card.not-available::after {
    content: 'NON DISPONIBILE';
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--danger);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

.result-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.result-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.forfettario .result-icon { background: rgba(52, 199, 89, 0.15); color: #34c759; }
.ordinaria .result-icon { background: rgba(255, 159, 10, 0.15); color: #ff9f0a; }
.snc .result-icon { background: rgba(90, 200, 250, 0.15); color: #5ac8fa; }
.sas .result-icon { background: rgba(175, 82, 222, 0.15); color: #af52de; }
.srl .result-icon { background: rgba(255, 55, 95, 0.15); color: #ff375f; }

.result-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.result-subtitle {
    font-size: 13px;
    color: var(--text-muted);
}

.result-total {
    text-align: center;
    padding: 20px;
    background: var(--bg-hover);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.result-total-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.result-total-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
}

.result-total-percent {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.result-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-color);
}

.breakdown-row:last-child {
    border-bottom: none;
}

.breakdown-label {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.breakdown-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.result-net {
    margin-top: 16px;
    padding: 16px;
    background: linear-gradient(135deg, var(--success-light) 0%, rgba(52, 199, 89, 0.05) 100%);
    border: 1px solid rgba(52, 199, 89, 0.2);
    border-radius: var(--radius-md);
    text-align: center;
}

.result-net-label {
    font-size: 12px;
    color: var(--success);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.result-net-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--success);
    margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════════
   COMPARISON TABLE
   ═══════════════════════════════════════════════════════════════════ */

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.comparison-table th {
    text-align: left;
    padding: 14px 16px;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-hover);
    border-bottom: 1px solid var(--border-color);
}

.comparison-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

.comparison-table tbody tr:hover {
    background: var(--bg-hover);
}

.comparison-table .highlight {
    font-weight: 600;
    color: var(--success);
}

/* ═══════════════════════════════════════════════════════════════════
   CHARTS
   ═══════════════════════════════════════════════════════════════════ */

.charts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.chart-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
    padding: 24px;
}

.chart-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chart-title svg {
    color: var(--accent-primary);
}

/* ═══════════════════════════════════════════════════════════════════
   LOADING
   ═══════════════════════════════════════════════════════════════════ */

.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(245, 245, 247, 0.9);
    backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.loading-overlay.visible {
    display: flex;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--border-color);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */

.app-footer {
    text-align: center;
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
}

.footer-text {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-disclaimer {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .app-title {
        font-size: 24px;
    }
    
    .cost-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .cost-deducibility {
        text-align: left;
    }
    
    .socio-fields {
        grid-template-columns: 1fr;
    }
    
    .charts-grid {
        grid-template-columns: 1fr;
    }
    
    .actions-bar {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .comparison-table {
        display: block;
        overflow-x: auto;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════════ */

.section-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title svg {
    color: var(--accent-primary);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
