.gradient-text {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 50%, #2a7d7b 100%);
    /* mh-amber, mh-gold, mh-teal */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advantage-card {
    transition: all 0.4s ease;
    background: linear-gradient(145deg, #fef3c7 0%, #ffffff 100%);
    /* mh-cream to white */
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #d97706, #f59e0b, #2a7d7b);
    /* mh-amber, mh-gold, mh-teal */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(217, 119, 6, 0.25);
    /* mh-amber */
}

.advantage-icon {
    transition: all 0.5s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.15) rotate(5deg);
    color: #f59e0b;
    /* mh-gold */
}

.gradient-button {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 50%, #2a7d7b 100%);
    /* mh-amber, mh-gold, mh-teal */
    background-size: 200% auto;
    transition: all 0.5s ease;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
    /* mh-amber */
}

.gradient-button:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -3px rgba(217, 119, 6, 0.4);
    /* mh-amber */
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

.pattern-bg {
    background-image:
        radial-gradient(#d97706 0.5px, transparent 0.5px),
        radial-gradient(#d97706 0.5px, #fef3c7 0.5px);
    /* mh-amber, mh-cream */
    background-size: 20px 20px;
    background-position:
        0 0,
        10px 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    /* mh-amber, mh-gold */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d97706;
    /* mh-amber */
    animation: pulse-slow 2s infinite;
}
