/* Premium Tech Assistance Hero Redesign */
.tech_premium-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    overflow: hidden;
    background-color: #f8f9fa;
}

.tech_premium-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.tech_premium-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(.2px) brightness(1);
    transform: scale(1.1);
}

.tech_premium-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(163 163 163 / 90%) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.tech_premium-hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.tech_hero-content__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #444;
    margin-bottom: 24px;
}

.tech_hero-content__badge-dot {
    width: 6px;
    height: 6px;
    background: #B91C1C;
    border-radius: 50%;
}

.tech_hero-content__title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    color: #0A0A0A;
    margin-bottom: 24px;
}

.tech_hero-content__title span {
    color: #B91C1C;
}

.tech_hero-content__description {
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.6;
    color: #fff;
    max-width: 540px;
    margin-bottom: 40px;
}

.tech_hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 580px;
}

.tech_hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tech_hero-feature-item i {
    font-size: 20px;
    color: #B91C1C;
}

.tech_hero-feature-item span {
    font-weight: 600;
    font-size: 15px;
    color: #1F2937;
}

/* Pricing Card */
.tech_pricing-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.tech_pricing-card__label {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    color: #444;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.tech_pricing-card__price-subtext {
    display: block;
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 8px;
}

.tech_pricing-card__price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2px;
    font-weight: 800;
    color: #0A0A0A;
    margin-bottom: 12px;
}

.tech_pricing-card__currency {
    font-size: 24px;
    margin-top: 10px;
}

.tech_pricing-card__amount {
    font-size: 72px;
    line-height: 1;
}

.tech_pricing-card__decimal {
    font-size: 24px;
    margin-top: 10px;
}

.tech_pricing-card__status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #B91C1C;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 32px;
}

.tech_pricing-card__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.tech_pricing-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.tech_pricing-card__btn--primary {
    background: #0A0A0A;
    color: #FFFFFF;
}

.tech_pricing-card__btn--primary:hover {
    background: #262626;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.tech_pricing-card__btn--secondary {
    background: transparent;
    color: #0A0A0A;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.tech_pricing-card__btn--secondary:hover {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.2);
}

.tech_pricing-card__social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.tech_social-avatars {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech_social-avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #FFF;
    margin-left: -8px;
}

.tech_social-avatars img:first-child {
    margin-left: 0;
}

.tech_social-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tech_social-stars {
    display: flex;
    gap: 2px;
    color: #FBBF24;
    font-size: 12px;
    margin-bottom: 4px;
}

.tech_social-count {
    font-size: 12px;
    font-weight: 700;
    color: #4B5563;
}

@media (max-width: 1024px) {
    .tech_premium-hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .tech_hero-content__description {
        margin: 0 auto 40px;
    }

    .tech_hero-features {
        margin: 0 auto;
    }

    .tech_pricing-card {
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .tech_hero-features {
        grid-template-columns: 1fr;
    }
    .tech_pricing-card__amount {
        font-size: 56px;
    }
}

/* Common Problems Section */
.tech_problems-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.tech_problems-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.tech_problems-header {
    text-align: center;
    margin-bottom: 60px;
}

.tech_problems-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #B91C1C;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.tech_problems-subtitle {
    font-size: 18px;
    color: #4B5563;
    max-width: 700px;
    margin: 0 auto;
}

.tech_problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tech_problem-card {
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 42px;
    padding: 56px 32px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    cursor: pointer;
}

.tech_problem-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
    border-color: #f3f4f6;
}

.tech_problem-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
}

.tech_problem-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 20px;
    padding: 16px;
    margin-bottom: 32px;
}

.tech_problem-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tech_problem-text {
    font-size: 20px;
    font-weight: 800;
    color: #741b1b;
    line-height: 1.3;
    margin-bottom: 32px;
    max-width: 200px;
}

.tech_view-solution {
    font-size: 14px;
    font-weight: 800;
    color: #741b1b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tech_problem-card:hover .tech_view-solution {
    opacity: 1;
    transform: translateY(0);
}

/* Dark Card Variation Redesign */
.tech_problem-card--dark {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: none;
    padding: 56px 40px;
}

.tech_problem-card--dark .tech_problem-card-inner {
    gap: 20px;
}

.tech_problem-card--dark .tech_problem-title--small {
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    margin-top: 12px;
}

.tech_problem-card--dark .tech_problem-description {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.tech_problem-icon--bubble {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
}

.tech_problem-btn {
    margin-top: 12px;
    background: #ffffff;
    color: #0f172a;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.tech_problem-btn:hover {
    background: #f1f5f9;
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .tech_problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .tech_problems-grid {
        grid-template-columns: 1fr;
    }
    .tech_problems-section {
        padding: 60px 0;
    }
}
