/* 
    EASYBOOST TOOLS "MICRO-SAAS" v17.0 
    Concept: Compact, Raycast/Linear Style, 1px Laser Hovers
    Prefix: .eb-micro-
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

.eb-micro-wrapper {
    background-color: #000000;
    padding: 60px 0; /* Bohat choti padding */
    font-family: 'Inter', sans-serif;
    color: #fff;
    position: relative;
}

/* Very subtle grid background */
.eb-micro-wrapper::before {
    content: ''; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 24px 24px; z-index: 0; pointer-events: none;
    mask-image: radial-gradient(circle at top center, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at top center, black 0%, transparent 80%);
}

.eb-micro-container {
    max-width: 1000px; /* Chota aur compact container */
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* --- 1. SLEEK HEADER --- */
.eb-micro-header {
    text-align: center;
    margin-bottom: 40px;
}

.eb-micro-header h2 {
    font-size: 28px; /* Chhota Font */
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 10px;
    color: #eaeaea;
}

.eb-micro-header p {
    font-size: 14px;
    color: #888;
    margin: 0;
}

/* --- 2. THIN COMPARISON STRIP --- */
.eb-micro-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #050505;
    border: 1px solid #1a1a1a;
    border-radius: 8px; /* Sharp corners */
    padding: 12px 20px;
    margin-bottom: 30px;
}

.eb-strip-bad {
    font-size: 12px;
    color: #666;
    display: flex; align-items: center; gap: 8px;
}
.eb-strip-bad i { color: #FF2E63; opacity: 0.5; }

.eb-strip-good {
    font-size: 13px;
    font-weight: 500;
    color: #e2e8f0;
    display: flex; align-items: center; gap: 8px;
}
.eb-strip-good i { color: #00C2FF; animation: microPulse 2s infinite; }

@keyframes microPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }

/* --- 3. MICRO-BENTO GRID (The Main Tools) --- */
.eb-micro-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Ek line mein */
    gap: 15px; /* Bohat tight gap */
}

.eb-micro-card {
    background: #030303;
    border: 1px solid #111111;
    border-radius: 12px; /* Small radius */
    padding: 20px 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: default;
}

/* The 1px Laser Top Border (Premium Apple/Linear Effect) */
.eb-micro-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; width: 100%; height: 1px;
    background: transparent;
    transition: 0.4s ease;
}

.eb-micro-card:hover {
    background: #080808;
    border-color: #222;
    transform: translateY(-2px); /* Very slight lift */
}

/* Specific Laser Colors */
.card-wa:hover::before { background: linear-gradient(90deg, transparent, #25d366, transparent); }
.card-crm:hover::before { background: linear-gradient(90deg, transparent, #00C2FF, transparent); }
.card-seo:hover::before { background: linear-gradient(90deg, transparent, #FF9933, transparent); }
.card-mail:hover::before { background: linear-gradient(90deg, transparent, #FF2E63, transparent); }

/* Tiny Glowing Icons */
.eb-micro-icon {
    width: 32px; height: 32px;
    background: #000;
    border: 1px solid #222;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.card-wa .eb-micro-icon { color: #25d366; }
.card-crm .eb-micro-icon { color: #00C2FF; }
.card-seo .eb-micro-icon { color: #FF9933; }
.card-mail .eb-micro-icon { color: #FF2E63; }

.eb-micro-card:hover .eb-micro-icon {
    border-color: currentColor;
    background: rgba(255,255,255,0.05);
    transform: scale(1.05);
}

.eb-micro-title {
    font-size: 14px;
    font-weight: 500;
    color: #e2e8f0;
    margin-bottom: 6px;
}

.eb-micro-desc {
    font-size: 12px; /* Very compact reading text */
    color: #777;
    line-height: 1.5;
    margin: 0;
}

/* --- 4. THE EQUATION PILL --- */
.eb-micro-pill-wrap {
    text-align: center;
    margin-top: 40px;
}

.eb-micro-pill {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #050505;
    border: 1px solid #1a1a1a;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: #888;
    letter-spacing: 1px;
}

.eb-micro-pill span { color: #fff; }
.eb-micro-pill .highlight { color: #00C2FF; }

/* Responsive */
@media (max-width: 992px) {
    .eb-micro-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .eb-micro-grid { grid-template-columns: 1fr; gap: 10px; }
    .eb-micro-strip { flex-direction: column; gap: 10px; text-align: center; }
}