.tmcore-feedback-hero {
    position: relative;
    background: #0B1120;
    color: #fff;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}
.tmcore-feedback-hero-bg-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
    animation: blob 7s infinite;
}
.tmcore-feedback-hero-blob-1 {
    top: -10%;
    left: -10%;
    background: rgba(59, 130, 246, 0.2);
}
.tmcore-feedback-hero-blob-2 {
    bottom: -10%;
    right: -10%;
    background: rgba(249, 115, 22, 0.2);
    animation-delay: 3.5s;
}
@keyframes blob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -50px) scale(1.1); }
}
.tmcore-feedback-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
}
.tmcore-feedback-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(to right, rgba(249, 115, 22, 0.1), rgba(239, 68, 68, 0.1));
    color: #fb923c;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid rgba(249, 115, 22, 0.2);
    margin-bottom: 32px;
}
.tmcore-feedback-hero-title {
    font-size: clamp(36px, 7vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 24px !important;
    letter-spacing: -0.02em;
}
.tmcore-feedback-hero-highlight {
    background: linear-gradient(to right, #fb923c, #f97316, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.tmcore-feedback-hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 32px;
    font-weight: 300;
}
.tmcore-feedback-hero-countdown-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
    margin-bottom: 12px;
    font-weight: 600;
}
.tmcore-feedback-hero-countdown {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px;
}
.tmcore-countdown-item {
    display: flex;
    flex-direction: column;
}
.tmcore-countdown-value {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #334155;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 700;
    color: #f97316;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.1);
}
.tmcore-countdown-label {
    font-size: 10px;
    text-transform: uppercase;
    color: #64748b;
    margin-top: 4px;
    font-weight: 500;
}
.tmcore-feedback-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(to right, #f97316, #dc2626);
    color: #fff;
    padding: 16px 40px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
    transition: all 0.3s ease;
}
.tmcore-feedback-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.6);
    color: #fff;
}
@media (max-width: 768px) {
    .tmcore-feedback-hero {
        padding: 60px 20px;
        min-height: 500px;
    }
    .tmcore-countdown-value {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}
