.tm-goals-wrapper {
    max-width: 80rem;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.tm-goals-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tm-goals-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 1rem 0 !important;
    padding: 0 !important;
}

.tm-goals-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.tm-goals-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem 0 !important;
    padding: 0 !important;
}

.tm-goals-title .highlight {
    color: #10b981;
}

.tm-goals-description {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 48rem;
    margin: 0 auto;
}

.tm-goals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.tm-goals-card {
    border-radius: 1.5rem;
    padding: 2rem;
}

.tm-short-goals {
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.tm-long-goals {
    background: #1e293b;
}

.tm-goals-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tm-goals-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    flex-shrink: 0;
}

.tm-long-goals .tm-goals-card-icon {
    background: rgba(96, 165, 250, 0.1);
    color: #60a5fa;
}

.tm-goals-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
}

.tm-goals-card-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #10b981;
    margin: 0;
}

.tm-long-goals .tm-goals-card-subtitle {
    color: #60a5fa;
}

.tm-short-goals-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tm-short-goal-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    background: #f8fafc;
    border-radius: 1rem;
    transition: transform 0.2s;
}

.tm-short-goal-item:hover {
    transform: translateX(5px);
}

.tm-short-goal-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tm-short-goal-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.tm-short-goal-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    color: #1e293b;
}

.tm-short-goal-subtitle {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

.tm-short-goal-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
}

.tm-long-goals-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tm-long-goal-item {
    display: flex;
    gap: 1rem;
}

.tm-long-goal-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: rgba(96, 165, 250, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.tm-long-goal-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: #ffffff;
}

.tm-long-goal-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0;
}

.tm-progress-section {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.tm-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.tm-progress-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tm-progress-badge {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    background: #d1fae5;
    color: #10b981;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 0.5rem;
}

.tm-progress-desc {
    font-size: 0.9375rem;
    color: #64748b;
    margin: 0;
}

.tm-progress-stats {
    text-align: right;
}

.tm-progress-percentage {
    font-size: 2.5rem;
    font-weight: 700;
    color: #10b981;
    line-height: 1;
}

.tm-progress-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-top: 0.25rem;
}

.tm-progress-bar {
    height: 1rem;
    background: #e2e8f0;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.tm-progress-fill {
    height: 100%;
    background: #10b981;
    border-radius: 0.5rem;
    transition: width 1s ease;
}

.tm-progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #64748b;
}

@media (max-width: 1024px) {
    .tm-goals-wrapper {
        padding: 3rem 1.5rem;
    }
    
    .tm-goals-title {
        font-size: 2.5rem;
    }
    
    .tm-goals-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .tm-goals-wrapper {
        padding: 2rem 1rem;
    }
    
    .tm-goals-title {
        font-size: 2rem;
    }
    
    .tm-goals-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tm-goals-card {
        padding: 1.5rem;
    }
    
    .tm-short-goal-value {
        font-size: 1.5rem;
    }
    
    .tm-progress-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .tm-progress-stats {
        text-align: left;
    }
    
    .tm-progress-percentage {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .tm-goals-title {
        font-size: 1.75rem;
    }
    
    .tm-goals-description {
        font-size: 1rem;
    }
    
    .tm-goals-card {
        padding: 1.25rem;
    }
    
    .tm-short-goal-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .tm-short-goal-value {
        align-self: flex-end;
    }
}
