.practice-hero {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: #030A07;
    min-height: 600px;
    display: flex;
    align-items: center;
    margin: 0 !important;
    isolation: isolate;
}

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

.practice-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.practice-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 10, 7, 0.4) 0%, rgba(3, 10, 7, 0.9) 70%, #030A07 100%);
}

.practice-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 6vw, 8.25rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.practice-hero__eyebrow-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
}

.practice-hero__eyebrow-line {
    width: 40px;
    height: 1.5px;
    background: #3FC1D9; /* Teal accent */
}

.practice-hero__eyebrow {
    color: #3FC1D9;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.practice-hero__title {
    max-width: 600px;
    line-height: 1.1;
    color: #fff;
    margin: 0;
}

.practice-hero__card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    padding: 48px;
    border-radius: 0;
}

.practice-hero__card-content {
    position: relative;
    z-index: 2;
    color: #A8A8A8;
}

.practice-hero__card-glow {
    position: absolute;
    top: -20%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(63, 193, 217, 0.1) 0%, rgba(63, 193, 217, 0) 70%);
    pointer-events: none;
}

.practice-hero__bottom-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(63, 193, 217, 0) 0%, rgba(63, 193, 217, 0.4) 50%, rgba(63, 193, 217, 0) 100%);
}

.practice-areas-content {
    position: relative;
}

.practice-areas-content > .practice-hero:first-child::before {
    content: "";
    position: absolute;
    top: -180px;
    left: 0;
    right: 0;
    height: 260px;
    pointer-events: none;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(3, 10, 7, 0) 0%, rgba(3, 10, 7, 0.72) 54%, #030A07 100%),
        radial-gradient(circle at 50% 0%, rgba(32, 80, 70, 0.18), transparent 62%);
}

@media (max-width: 1100px) {
    .practice-hero__inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .practice-hero {
        padding: 100px 0 80px;
    }
}

@media (max-width: 768px) {
    .practice-hero__card {
        padding: 32px;
    }
    
    .practice-hero {
        min-height: auto;
    }

    .practice-areas-content > .practice-hero:first-child::before {
        top: -120px;
        height: 180px;
    }
}
