/* ==================== INTRO SECTION ==================== */
#intro {
    text-align: center;
    padding-bottom: 2rem;
}

.intro-tagline {
    font-size: 1.15rem;
    color: #b0b0b0;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* ==================== HIRE TABS ==================== */
.hire-tabs {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    text-align: left;
}

.hire-tabs input[type="radio"] {
    display: none;
}

.hire-tab-label {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    color: #b0b0b0;
    border-bottom: 2px solid transparent;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.hire-tab-label:hover {
    color: #e0e0e0;
}

#tab-fulltime:checked ~ [for="tab-fulltime"],
#tab-contract:checked ~ [for="tab-contract"] {
    color: #bb86fc;
    border-bottom-color: #bb86fc;
}

.hire-panel {
    display: none;
    background-color: #1e1e1e;
    padding: 1.5rem;
    border-radius: 0 0 8px 8px;
    border: 1px solid #333;
    border-top: 2px solid #bb86fc;
    margin-top: -1px;
}

#tab-fulltime:checked ~ #panel-fulltime,
#tab-contract:checked ~ #panel-contract {
    display: block;
}

.hire-panel p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.hire-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ==================== METRICS GRID ==================== */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.metric-card {
    background: linear-gradient(135deg, #bb86fc, #03dac6);
    padding: 2rem 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(187, 134, 252, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(187, 134, 252, 0.3);
}

.metric-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.95rem;
    color: #121212;
    font-weight: 600;
}

/* ==================== VALUE GRID ==================== */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.value-card {
    background-color: #252525;
    padding: 1.5rem;
    border-radius: 6px;
    border-top: 3px solid #03dac6;
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(187, 134, 252, 0.15);
}

.value-icon {
    font-size: 1.8rem;
    color: #03dac6;
    margin-bottom: 0.8rem;
}

.value-card h3 {
    color: #bb86fc;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b0b0b0;
}

.value-link {
    display: inline-block;
    margin-top: 0.8rem;
    color: #03dac6;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.value-link:hover {
    color: #bb86fc;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.testimonial-card {
    background-color: #1e1e1e;
    padding: 2rem;
    border-radius: 8px;
    border-top: 3px solid #03dac6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background-color: #252525;
    box-shadow: 0 4px 15px rgba(3, 218, 198, 0.2);
    transform: translateY(-3px);
}

.testimonial-text {
    color: #e0e0e0;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: #bb86fc;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.testimonial-title {
    color: #03dac6;
    font-size: 0.85rem;
    font-weight: 500;
}

.testimonial-verify {
    color: #03dac6;
    text-decoration: none;
    font-size: 0.82rem;
    margin-top: 0.3rem;
    transition: color 0.3s;
}

.testimonial-verify:hover {
    color: #bb86fc;
}

/* ==================== BLOG PREVIEW ==================== */
.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.blog-preview-card {
    background-color: #1e1e1e;
    padding: 1.5rem;
    border-left: 4px solid #bb86fc;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.blog-preview-card:hover {
    background-color: #252525;
    box-shadow: 0 4px 12px rgba(187, 134, 252, 0.15);
    transform: translateX(5px);
}

.blog-preview-card h3 {
    color: #bb86fc;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.blog-preview-card p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: #03dac6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: #bb86fc;
}

.blog-cta {
    text-align: center;
    margin: 2rem 0;
}

/* ==================== RESPONSIVE HOME ==================== */
@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

    .blog-preview-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hire-actions {
        flex-direction: column;
    }

    .hire-actions .cta-btn {
        width: 100%;
        text-align: center;
    }
}
