/* -------------------------------------------------------------
   #1 HERO
   ------------------------------------------------------------- */

.repair-hero {
    padding: 84px 0 56px;
    background:
        radial-gradient(circle at top right, rgba(13, 137, 255, 0.12), transparent 25%),
        linear-gradient(180deg, #f8fafc 0%, #eef4f8 100%);
}

.repair-hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: center;
}

.repair-hero__points {
    display: grid;
    gap: 12px;
    margin: 24px 0 28px;
}

.repair-hero__point {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
    color: #0f172a;
    font-weight: 700;
}

.repair-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.repair-hero-card {
    padding: 30px;
    border-radius: 28px;
    background: linear-gradient(135deg, #0f172a 0%, #1d2940 55%, #0d89ff 100%);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
    color: #ffffff;
}

.repair-hero-card__badge {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.repair-hero-card h3 {
    margin-bottom: 12px;
    font-size: 1.7rem;
    color: #ffffff;
}

.repair-hero-card p {
    margin: 0 0 22px;
    color: rgba(255,255,255,0.9);
}

.repair-hero-card__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.repair-stat {
    border-radius: 18px;
    padding: 18px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.14);
}

.repair-stat strong {
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
}

.repair-stat span {
    color: rgba(255,255,255,0.88);
    font-size: 0.94rem;
}

/* -------------------------------------------------------------
   #2 SECTION HEAD
   ------------------------------------------------------------- */

.repair-section-head {
    max-width: 820px;
    margin: 0 auto 40px;
}

/* -------------------------------------------------------------
   #3 SERVICES
   ------------------------------------------------------------- */

.repair-services-grid {
    align-items: stretch;
}

.repair-service-card {
    height: 100%;
}

.repair-service-card__icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 137, 255, 0.10);
    font-size: 1.45rem;
    margin-bottom: 18px;
}

.repair-service-card h3 {
    margin-bottom: 10px;
    color: #0f172a;
    font-size: 1.2rem;
}

.repair-service-card p {
    margin: 0;
    color: #475569;
}

/* -------------------------------------------------------------
   #4 DARK PROBLEMS
   ------------------------------------------------------------- */

.repair-dark-section {
    background: linear-gradient(135deg, #020617 0%, #0f172a 100%);
}

.repair-dark-text {
    color: rgba(255,255,255,0.82);
}

.repair-dark-section .tg-title,
.repair-dark-section .tg-eyebrow {
    color: #ffffff;
}

.repair-dark-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    color: #ffffff;
}

.repair-dark-card h3 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 1.12rem;
}

.repair-dark-card p {
    margin: 0;
    color: rgba(255,255,255,0.84);
}

/* -------------------------------------------------------------
   #5 WHY BOX
   ------------------------------------------------------------- */

.repair-why-box {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 28px;
    align-items: center;
    padding: 34px;
    border-radius: 30px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.repair-why-box__right {
    display: grid;
    gap: 14px;
}

.repair-why-item {
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    border-radius: 16px;
    background: rgba(13, 137, 255, 0.06);
    border: 1px solid rgba(13, 137, 255, 0.10);
    color: #0f172a;
    font-weight: 700;
}

/* -------------------------------------------------------------
   #6 CTA
   ------------------------------------------------------------- */

.repair-cta-box {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    padding: 38px;
    border-radius: 30px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.repair-cta-box__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

/* -------------------------------------------------------------
   #7 RESPONSIVE
   ------------------------------------------------------------- */

@media (max-width: 1100px) {
    .repair-hero__grid,
    .repair-why-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .repair-hero {
        padding: 64px 0 40px;
    }

    .repair-hero-card,
    .repair-why-box,
    .repair-cta-box {
        padding: 22px;
        border-radius: 22px;
    }

    .repair-hero-card__stats {
        grid-template-columns: 1fr;
    }

    .repair-cta-box__actions,
    .repair-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }
}