.about { background: var(--bg); }

.text-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 48px 52px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,123,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.text-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange2), var(--green), var(--purple));
    border-radius: var(--radius) var(--radius) 0 0;
}
.text-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.text-card p {
    font-size: clamp(0.93rem, 1.8vw, 1.06rem);
    color: var(--text2);
    margin-bottom: 18px;
    line-height: 1.85;
}
.text-card p:last-child { margin-bottom: 0; }

.highlight {
    text-align: center;
    font-weight: 600;
    font-size: 1.08em !important;
    color: var(--text) !important;
    margin-top: 26px !important;
}
.highlight strong {
    background: linear-gradient(90deg, var(--orange), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}
