/* =========================================
   PHASE 2: HIGH-END POLISH
   ========================================= */

/* 1. Ambient Lighting (Background Blobs) */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(41, 198, 204, 0.08) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(60px);
}

.about::before {
    content: '';
    position: absolute;
    left: -20%;
    top: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 77, 77, 0.05) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(50px);
}

/* 2. Text Gradients */
.text-gradient {
    background: linear-gradient(135deg, #fff 30%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-gradient-danger {
    background: linear-gradient(135deg, #fff 30%, #ff4d4d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* 3. Glassmorphism & Card Polish */
.musterbox-card {
    background: rgba(20, 20, 20, 0.6);
    /* More transparency */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.comp-card {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
}

.comp-card.good {
    background: linear-gradient(145deg, rgba(15, 24, 24, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid rgba(41, 198, 204, 0.3);
}

/* 4. Form UX Polish */
.form-input {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.form-input:focus {
    background: rgba(41, 198, 204, 0.05);
    border-color: var(--color-accent);
    box-shadow: 0 0 15px rgba(41, 198, 204, 0.2);
}

/* 5. Trust Logos Styling */
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.trust-item:hover {
    opacity: 1;
}

.trust-logo-icon {
    font-size: 1.5rem;
}

.trust-logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* 6. Modal Polish */
.cal-grid {
    gap: 5px;
    /* Tighter grid */
}

.cal-day {
    border-radius: 4px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.cal-day:not(.active):hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.cal-day.active {
    background: var(--color-accent);
    color: #000;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(41, 198, 204, 0.4);
}