.texp-section {
    background: #f7f9fc;
    padding: 70px 0 50px;
}

.texp-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem;
}

.texp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-orange);
    margin-bottom: 1rem;
}

.texp-eyebrow::before {
    content: "";
    width: 16px;
    height: 2px;
    background: var(--c-orange);
    border-radius: 2px;
}

.texp-header h2 {
    font-family: var(--fh);
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--c-navy);
    margin: 0 0 0.5rem;
}

.texp-header h2 .texp-gradient {
    background: #ee5735;
    -webkit-background-clip: text;
    background-clip: text;
    color: #fff0;
    display: block;
}

.texp-header p {
    font-size: 1rem;
    color: var(--c-text2);
    line-height: 1.7;
    margin: 1rem 0 0;
}

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

.texp-card {
    background: #fff;
    border: 1.5px solid var(--c-border);
    border-radius: 16px;
    padding: 1.6rem 1.5rem;
    position: relative;
    transition: all 0.25s ease;
    overflow: hidden;
}

.texp-card:hover {
    background: linear-gradient(199deg, #140a9b 0%, #2b1b79 30%, #4a2470 40%, #7a2f5f 62%, #ad3a30 88%, #d94e0f 100%);
    border: 1.5px solid var(--c-orange);
    box-shadow:
        0 0 0 1px rgb(255 90 31 / 0.15),
        0 0 25px rgb(255 90 31 / 0.35),
        0 20px 40px rgb(0 0 0 / 0.4);
    transform: translateY(-3px);
}

.texp-card:hover::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgb(255 255 255 / 0.12) 1px, transparent 1px);
    background-size: 16px 16px;
    opacity: 0.5;
    pointer-events: none;
    border-left: 4px solid #ee5735;
}

.texp-card:hover h4 {
    color: #fff;
    position: relative;
    z-index: 1;
}

.texp-card:hover p {
    color: rgb(255 255 255 / 0.75);
    position: relative;
    z-index: 1;
}

.texp-card:hover .texp-arrow {
    border-color: rgb(255 255 255 / 0.3);
    color: #fff;
    background: var(--c-orange);
    position: relative;
    z-index: 1;
}

.texp-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.service-action-button-container {
    position: absolute;
    right: 20px;
    bottom: 20px;
    border: 1px solid #e7ecf3;
    border-radius: 999px;
    background: #fff;
    padding: 4px;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-action-button-container div svg {
    width: 20px;
    height: 20px;
    fill: #5b6b82;
}

.texp-card h4 {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--c-navy);
    margin: 0 0 0rem;
    line-height: 1.3;
}

.texp-card p {
    font-size: 0.84rem;
    color: var(--c-text2);
    line-height: 1.65;
    margin: 0 0 1.2rem;
}

.texp-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-navy);
    transition: all 0.25s ease;
}

.texp-arrow svg {
    width: 15px;
    height: 15px;
    stroke-width: 2;
}

.texp-card:hover .texp-arrow {
    background: var(--c-blue);
    border-color: var(--c-blue);
    color: #fff;
}

.texp-card.texp-featured {
    background: linear-gradient(199deg, #140a9b 0%, #2b1b79 30%, #4a2470 40%, #7a2f5f 62%, #ad3a30 88%, #d94e0f 100%);
    border: 1.5px solid var(--c-orange);
    box-shadow:
        0 0 0 1px rgb(255 90 31 / 0.15),
        0 0 25px rgb(255 90 31 / 0.35),
        0 20px 40px rgb(0 0 0 / 0.4);
}

.texp-card.texp-featured::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgb(255 255 255 / 0.12) 1px, transparent 1px);
    background-size: 16px 16px;
    opacity: 0.5;
    pointer-events: none;
    border-left: 4px solid #ee5735;
}

.texp-card.texp-featured h4 {
    color: #fff;
    position: relative;
    z-index: 1;
}

.texp-card.texp-featured p {
    color: rgb(255 255 255 / 0.75);
    position: relative;
    z-index: 1;
}

.texp-card.texp-featured .texp-arrow {
    border-color: rgb(255 255 255 / 0.3);
    color: #fff;
    position: relative;
    z-index: 1;
}

.texp-card.texp-featured:hover .texp-arrow {
    background: var(--c-orange);
    border-color: var(--c-orange);
}

.texp-card.texp-featured:hover {
    transform: translateY(-3px);
}

.texp-cta {
    margin-top: 3rem;
    background: linear-gradient(120deg, #0b1220 0%, #101b3f 55%, #1a1040 100%);
    border-radius: 22px;
    padding: 1.8rem 2.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.texp-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgb(255 255 255 / 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    mask-image: radial-gradient(ellipse 70% 100% at 100% 50%, rgb(0 0 0 / 0.7), transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 70% 100% at 100% 50%, rgb(0 0 0 / 0.7), transparent 75%);
    pointer-events: none;
}

.texp-cta-left {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    z-index: 1;
    flex: 1 1 320px;
}

.texp-cta-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    flex-shrink: 0;
    background: rgb(255 255 255 / 0.08);
    border: 1px solid rgb(255 255 255 / 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.texp-cta-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.7;
}

.texp-cta-left h3 {
    font-family: var(--fh);
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.3rem;
}

.texp-cta-left p {
    font-size: 0.85rem;
    color: rgb(255 255 255 / 0.65);
    margin: 0;
    line-height: 1.5;
}

.texp-cta-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.texp-btn-orange {
    background: var(--c-orange);
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.8rem 1.5rem;
    border-radius: 9px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    border: 1px solid var(--c-orange);
}

.texp-btn-orange:hover {
    background: var(--c-orange-dark, #d94f04);
    color: #fff;
    transform: translateY(-1px);
}

.texp-btn-orange svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    stroke-width: 2.5;
}

.texp-btn-outline {
    background: #fff0;
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.8rem 1.5rem;
    border-radius: 9px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    border: 1.5px solid rgb(255 255 255 / 0.25);
}

.texp-btn-outline:hover {
    border-color: rgb(255 255 255 / 0.6);
    background: rgb(255 255 255 / 0.06);
    color: #fff;
}

.texp-btn-outline svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    stroke-width: 2;
}

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

@media (max-width: 640px) {
    .texp-section {
        padding: 70px 0;
    }

    .texp-grid {
        grid-template-columns: 1fr;
    }

    .texp-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.75rem;
    }

    .texp-cta-actions {
        width: 100%;
        flex-direction: column !important;
    }

    .texp-btn-orange,
    .texp-btn-outline {
        justify-content: center;
        flex: 1;
    }

    .texp-cta-actions a {
        display: flex !important;
        justify-content: center !important;
    }

    .texp-cta-actions svg {
        width: 30px !important;
    }
}