/* ==========================================================================
   PIXEL HATCH STUDIO - 2026 HOMEPAGE REDESIGN STYLES
   ========================================================================== */

/* --- 1. HERO SECTION POLISH --- */
.hero-availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(227, 255, 4, 0.08);
    border: 1px solid rgba(227, 255, 4, 0.3);
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #E3FF04;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(227, 255, 4, 0.15);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.hero-availability-badge:hover {
    transform: translateY(-2px);
    border-color: #E3FF04;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #E3FF04;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(227, 255, 4, 0.7);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(227, 255, 4, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(227, 255, 4, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(227, 255, 4, 0); }
}

.hero-proof-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 32px;
}

.hero-proof-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #e0e0e0;
    backdrop-filter: blur(8px);
}

.hero-proof-item i {
    color: #E3FF04;
}

/* --- 2. 2026 BENTO GRID SERVICES --- */
.bento-section {
    position: relative;
    padding: 90px 0;
    background: #0d0d0d;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.bento-card {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card:hover {
    transform: translateY(-6px);
    border-color: rgba(227, 255, 4, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(227, 255, 4, 0.08);
}

.bento-span-7 { grid-column: span 7; }
.bento-span-5 { grid-column: span 5; }
.bento-span-4 { grid-column: span 4; }

@media (max-width: 991px) {
    .bento-span-7, .bento-span-5, .bento-span-4 {
        grid-column: span 12;
    }
}

.bento-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(227, 255, 4, 0.1);
    color: #E3FF04;
    border: 1px solid rgba(227, 255, 4, 0.2);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    width: fit-content;
}

.bento-title {
    font-size: 1.55rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.bento-desc {
    font-size: 0.95rem;
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.bento-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.bento-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #cccccc;
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease, gap 0.3s ease;
}

.bento-link i {
    width: 32px;
    height: 32px;
    background: rgba(227, 255, 4, 0.1);
    color: #E3FF04;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: background 0.3s, transform 0.3s;
}

.bento-card:hover .bento-link {
    color: #E3FF04;
    gap: 14px;
}

.bento-card:hover .bento-link i {
    background: #E3FF04;
    color: #000;
    transform: rotate(45deg);
}

.bento-glow-bg {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(227, 255, 4, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* --- 3. CASE STUDY RESULT METRIC BADGES --- */
.case-metric-badge {
    display: inline-block;
    background: rgba(227, 255, 4, 0.15);
    color: #E3FF04;
    border: 1px solid rgba(227, 255, 4, 0.3);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    backdrop-filter: blur(4px);
}


/* --- FLOATING BACKGROUND ELEMENTS PROPORTION FIX --- */
.floating-element {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.7;
    animation: floatAnimation 6s ease-in-out infinite;
}

.floating-element img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    display: block;
    aspect-ratio: auto !important;
}

.star-1 {
    width: 80px !important;
    top: 8%;
    left: 4%;
}

.brush-1 {
    width: 90px !important;
    top: 12%;
    left: 20%;
    animation-delay: -2s;
}

.star-2 {
    width: 75px !important;
    bottom: 15%;
    right: 6%;
    animation-delay: -4s;
}

.brush-2 {
    width: 60px !important;
    bottom: 10%;
    left: 12%;
    animation-delay: -1.5s;
}

.brush-3 {
    width: 85px !important;
    top: 10%;
    right: 18%;
    animation-delay: -3s;
}

@media (max-width: 768px) {
    .floating-element {
        display: none !important; /* Hide background clutter on mobile for clean UX */
    }
}
