.gh-problems {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 8%, rgba(215, 185, 76, .16), transparent 28%),
        linear-gradient(135deg, #07172e 0%, #0c213d 48%, #0f2d50 100%);
    padding: 82px 0;
    color: #fff;
}

.gh-problems::before,
.gh-problems::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.gh-problems::before {
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .15));
}

.gh-problems::after {
    width: 360px;
    height: 360px;
    right: -140px;
    bottom: -180px;
    border-radius: 999px;
    background: rgba(215, 185, 76, .13);
    filter: blur(4px);
}

.gh-problems__inner {
    position: relative;
    z-index: 1;
    width: min(100% - 48px, 1600px);
    margin: 0 auto;
}

.gh-electronics__inner {
    display: grid;
    grid-template-columns: minmax(0, 39%) minmax(0, 61%);
    gap: 46px;
    align-items: center;
}

.gh-electronics__content {
    max-width: 560px;
}

.gh-problems__label {
    margin: 0 0 12px;
    color: #d7b94c;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 3px;
    line-height: 1;
    text-transform: uppercase;
}

.gh-problems h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 3.55vw, 58px);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: -.055em;
}

.gh-problems__intro {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(16px, 1.15vw, 19px);
    line-height: 1.62;
}

.gh-problems__seo {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .64);
    font-size: 15px;
    line-height: 1.65;
}

.gh-problems__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.gh-problems__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    transition: transform .28s ease, background .28s ease, box-shadow .28s ease, border-color .28s ease, color .28s ease;
}

.gh-problems__btn--primary {
    background: #d7b94c;
    color: #07172e;
    box-shadow: 0 16px 38px rgba(215, 185, 76, .24);
}

.gh-problems__btn--secondary {
    border: 1px solid rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.gh-problems__btn:hover,
.gh-problems__btn:focus-visible {
    transform: translateY(-2px);
}

.gh-problems__btn--primary:hover,
.gh-problems__btn--primary:focus-visible {
    background: #f0d36a;
    box-shadow: 0 20px 48px rgba(215, 185, 76, .32);
}

.gh-problems__btn--secondary:hover,
.gh-problems__btn--secondary:focus-visible {
    border-color: #d7b94c;
    background: rgba(255, 255, 255, .13);
}

.gh-electronics__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.gh-electronics-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 100%;
    padding: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .055) 55%, rgba(215, 185, 76, .07)),
        radial-gradient(circle at 100% 0, rgba(215, 185, 76, .12), transparent 34%);
    box-shadow: 0 22px 54px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}

.gh-electronics-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    border-radius: 22px 0 0 22px;
    background: linear-gradient(180deg, #d7b94c, rgba(215, 185, 76, .18));
    transition: background .28s ease, box-shadow .28s ease;
}

.gh-electronics-card::after {
    content: "";
    position: absolute;
    inset: 1px 1px auto 1px;
    height: 44%;
    border-radius: 22px 22px 100px 100px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .095), transparent);
    pointer-events: none;
}

.gh-electronics-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, .22);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .07) 55%, rgba(215, 185, 76, .1)),
        radial-gradient(circle at 100% 0, rgba(215, 185, 76, .16), transparent 34%);
    box-shadow: 0 30px 74px rgba(0, 0, 0, .32), 0 0 34px rgba(215, 185, 76, .12), inset 0 1px 0 rgba(255, 255, 255, .15);
}

.gh-electronics-card:hover::before {
    background: linear-gradient(180deg, #f0d36a, rgba(215, 185, 76, .42));
    box-shadow: 0 0 24px rgba(240, 211, 106, .42);
}

.gh-electronics-card__top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.gh-electronics-card__icon {
    position: relative;
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(220, 180, 55, .45);
    border-radius: 16px;
    background: rgba(7, 23, 46, .68);
    color: #d7b94c;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06), 0 12px 28px rgba(0, 0, 0, .18);
    transition: background .28s ease, color .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.gh-electronics-card:hover .gh-electronics-card__icon {
    border-color: rgba(240, 211, 106, .88);
    background: #d7b94c;
    color: #07172e;
    box-shadow: 0 18px 34px rgba(215, 185, 76, .2);
}

.gh-electronics-card__icon span,
.gh-electronics-card__icon span::before,
.gh-electronics-card__icon span::after {
    position: absolute;
    content: "";
    display: block;
}

.gh-electronics-card__icon--module span {
    width: 27px;
    height: 20px;
    border: 2px solid currentColor;
    border-radius: 5px;
}

.gh-electronics-card__icon--module span::before,
.gh-electronics-card__icon--module span::after {
    top: -7px;
    width: 2px;
    height: 5px;
    background: currentColor;
    box-shadow: 8px 0 currentColor, 16px 0 currentColor, 24px 0 currentColor;
}

.gh-electronics-card__icon--module span::after {
    top: auto;
    bottom: -7px;
}

.gh-electronics-card__icon--circuit span {
    width: 28px;
    height: 28px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.gh-electronics-card__icon--circuit span::before {
    width: 8px;
    height: 8px;
    inset: 8px;
    border-radius: 50%;
    background: currentColor;
}

.gh-electronics-card__icon--circuit span::after {
    width: 30px;
    height: 2px;
    top: 13px;
    left: -1px;
    background: currentColor;
    transform: rotate(-35deg);
}

.gh-electronics-card__icon--dashboard span {
    width: 30px;
    height: 20px;
    border: 2px solid currentColor;
    border-radius: 14px 14px 7px 7px;
}

.gh-electronics-card__icon--dashboard span::before {
    width: 12px;
    height: 2px;
    left: 8px;
    bottom: 5px;
    background: currentColor;
    transform-origin: left center;
    transform: rotate(-28deg);
}

.gh-electronics-card__icon--tractor span {
    width: 23px;
    height: 13px;
    border: 2px solid currentColor;
    border-radius: 4px;
}

.gh-electronics-card__icon--tractor span::before {
    width: 15px;
    height: 15px;
    left: -5px;
    bottom: -11px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.gh-electronics-card__icon--tractor span::after {
    width: 10px;
    height: 10px;
    right: -8px;
    bottom: -8px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.gh-electronics-card__icon--software span {
    width: 28px;
    height: 22px;
    border: 2px solid currentColor;
    border-radius: 5px;
}

.gh-electronics-card__icon--software span::before {
    width: 10px;
    height: 10px;
    left: 7px;
    top: 4px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
}

.gh-electronics-card__icon--immobiliser span {
    width: 24px;
    height: 18px;
    border: 2px solid currentColor;
    border-radius: 5px;
}

.gh-electronics-card__icon--immobiliser span::before {
    width: 12px;
    height: 10px;
    left: 4px;
    top: -12px;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
}

.gh-electronics-card__icon--immobiliser span::after {
    width: 5px;
    height: 5px;
    left: 8px;
    top: 5px;
    border-radius: 50%;
    background: currentColor;
}

.gh-electronics-card__body {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
}

.gh-electronics-card__category {
    max-width: 210px;
    margin: 4px 0 0;
    color: #d7b94c;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    line-height: 1.35;
    text-align: right;
    text-transform: uppercase;
}

.gh-electronics-card h3 {
    margin: 0 0 11px;
    color: #fff;
    font-size: clamp(20px, 1.45vw, 22px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -.03em;
}

.gh-electronics-card__body > p {
    margin: 0;
    color: rgba(226, 232, 240, .78);
    font-size: 15px;
    line-height: 1.55;
}

.gh-electronics-card__bottom {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: auto;
}

.gh-electronics-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.gh-electronics-card__chips span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    background: rgba(5, 16, 32, .58);
    color: rgba(255, 255, 255, .84);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.gh-electronics-card__link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 6px;
    color: #d7b94c;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.gh-electronics-card__link span {
    display: inline-block;
    transition: transform .28s ease;
}

.gh-electronics-card:hover .gh-electronics-card__link span,
.gh-electronics-card__link:hover span,
.gh-electronics-card__link:focus-visible span {
    transform: translateX(4px);
}

@media (max-width: 1100px) {
    .gh-problems {
        padding: 70px 0;
    }

    .gh-electronics__inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .gh-electronics__content {
        max-width: 880px;
    }
}

@media (max-width: 720px) {
    .gh-problems {
        padding: 58px 0;
    }

    .gh-problems__inner {
        width: min(100% - 32px, 1600px);
    }

    .gh-problems h2 {
        font-size: 32px;
    }

    .gh-electronics__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gh-electronics-card {
        gap: 16px;
        padding: 22px;
    }

    .gh-electronics-card__icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }

    .gh-electronics-card__category {
        max-width: 170px;
        font-size: 10px;
    }

    .gh-problems__actions {
        flex-direction: column;
    }

    .gh-problems__btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gh-electronics-card,
    .gh-problems__btn {
        transition: none;
    }

    .gh-electronics-card:hover,
    .gh-problems__btn:hover {
        transform: none;
    }
}
