/* practice.css
   Practice area pages and the practice areas index. */

/* ---------- practice hero ---------- */

.practice-hero {
    background-image: none;
}

.practice-hero .blur {
    background-image: linear-gradient(to right, rgba(6, 22, 40, 0.92), rgba(6, 22, 40, 0.5) 55%, rgba(6, 22, 40, 0.75));
}


/* ---------- practice help section ---------- */

.pa-help {
    display: flex;
    flex: 1;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 55px;
    padding: 85px var(--gutter);
    box-sizing: border-box;
    background-color: white;
}

.pa-help .left {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    min-width: 300px;
}

.pa-help .left h5 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(11px, 1.2vw, 13px);
    letter-spacing: 1.5px;
    color: #0872bd;
}

.pa-help .left h2 {
    font-family: "Lora", serif;
    font-size: clamp(26px, 3.3vw, 36px);
    font-weight: 600;
    color: #0d2b4a;
    line-height: 1.25;
}

.pa-help .left h2 i {
    color: #0872bd;
    font-style: normal;
}

.pa-help .left > p {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(12px, 1.4vw, 14px);
    color: rgba(1, 1, 1, 0.62);
    line-height: 1.85;
}

.pa-help .left .benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 12px;
}

.pa-help .left .benefits .benefit {
    display: flex;
    flex: 1 1 44%;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    min-width: 200px;
}

.pa-help .left .benefits .benefit i {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(8, 114, 189, 0.1);
    color: #075d9b;
    border-radius: 8px;
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 15px;
    transition: background-color 0.35s ease, transform 0.35s ease;
}

.pa-help .left .benefits .benefit:hover i {
    background-color: #075d9b;
    color: white;
    transform: translateY(-3px);
}

.pa-help .left .benefits .benefit .text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pa-help .left .benefits .benefit .text h4 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(12px, 1.3vw, 14px);
    color: #0d2b4a;
}

.pa-help .left .benefits .benefit .text p {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(10px, 1.1vw, 12px);
    color: rgba(1, 1, 1, 0.55);
    line-height: 1.7;
}

.pa-help .right {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 26px 55px rgba(13, 43, 74, 0.18);
}

.pa-help .right img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    display: block;
}

.pa-help .right .stats-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 30px 28px;
    box-sizing: border-box;
    background-image: linear-gradient(135deg, #0a2540, #0d3a63);
    color: white;
}

.pa-help .right .stats-card h3 {
    font-family: "Lora", serif;
    font-size: clamp(19px, 2.2vw, 25px);
    font-weight: 600;
    line-height: 1.3;
}

.pa-help .right .stats-card > p {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(11px, 1.2vw, 13px);
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
}

.pa-help .right .stats-card .stats {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 12px;
}

.pa-help .right .stats-card .stats .stat {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 3px;
    min-width: 105px;
    padding-right: 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.pa-help .right .stats-card .stats .stat:last-child {
    border-right: none;
    padding-right: 0;
}

.pa-help .right .stats-card .stats .stat b {
    font-family: "Lora", serif;
    font-size: clamp(21px, 2.4vw, 28px);
    color: #6aa9dd;
    white-space: nowrap;
}

.pa-help .right .stats-card .stats .stat span {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(9px, 1.0vw, 11px);
    color: rgba(255, 255, 255, 0.65);
}


/* ---------- practice process ---------- */

.pa-process {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 85px var(--gutter);
    box-sizing: border-box;
    background-color: #f6f8fa;
}

.pa-process .steps {
    display: flex;
    flex: 1;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    width: 100%;
    position: relative;
}

.pa-process .steps .step {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    min-width: 190px;
    max-width: 260px;
    padding: 0 14px;
    box-sizing: border-box;
    text-align: center;
    position: relative;
}

.pa-process .steps .step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 32px;
    left: calc(50% + 42px);
    right: calc(-50% + 42px);
    border-top: 2px dotted rgba(8, 114, 189, 0.35);
}

.pa-process .steps .step:nth-child(2) {
    transition-delay: 0.1s;
}

.pa-process .steps .step:nth-child(3) {
    transition-delay: 0.2s;
}

.pa-process .steps .step:nth-child(4) {
    transition-delay: 0.3s;
}

.pa-process .steps .step i {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #075d9b;
    color: white;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    font-size: clamp(20px, 2.2vw, 24px);
    box-shadow: 0 12px 26px rgba(8, 114, 189, 0.3);
    transition: transform 0.4s ease, background-color 0.4s ease;
}

.pa-process .steps .step:hover i {
    background-color: #0872bd;
    transform: translateY(-5px) scale(1.05);
}

.pa-process .steps .step h4 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(12px, 1.3vw, 14px);
    color: #0d2b4a;
    margin-top: 6px;
}

.pa-process .steps .step p {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(10px, 1.1vw, 12px);
    color: rgba(1, 1, 1, 0.55);
    line-height: 1.7;
}


/* ---------- practice cta card ---------- */

.pa-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 26px;
    width: 100%;
    margin-top: 60px;
    padding: 30px 34px;
    box-sizing: border-box;
    border-radius: 10px;
    background-image: linear-gradient(120deg, #0a2540, #0d3a63);
    color: white;
}

.pa-cta .text {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.pa-cta .text > i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6aa9dd;
    font-size: clamp(26px, 3vw, 34px);
}

.pa-cta .text .words {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pa-cta .text .words h3 {
    font-family: "Lora", serif;
    font-size: clamp(18px, 2.1vw, 24px);
    font-weight: 600;
}

.pa-cta .text .words p {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(11px, 1.2vw, 13px);
    color: rgba(255, 255, 255, 0.72);
}

.pa-cta .action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pa-cta .action button,
.pa-cta .action a.cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: #0872bd;
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 24px;
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: clamp(10px, 1.2vw, 13px);
    white-space: nowrap;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pa-cta .action button:hover,
.pa-cta .action a.cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(8, 114, 189, 0.45);
}

.pa-cta .action button i,
.pa-cta .action a.cta i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(18px, 2vw, 22px);
    transition: transform 0.3s ease;
}

.pa-cta .action button:hover i,
.pa-cta .action a.cta:hover i {
    transform: translateX(5px);
}

.pa-cta .action .no-fee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(10px, 1.1vw, 12px);
    color: rgba(255, 255, 255, 0.7);
}

.pa-cta .action .no-fee i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6aa9dd;
}


/* ---------- practice areas index ---------- */

.pa-index {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 75px var(--gutter);
    box-sizing: border-box;
    background-color: white;
}

.pa-index .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    width: 100%;
}

.pa-index .grid .pa-tile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    text-decoration: none;
    padding: 30px 28px;
    box-sizing: border-box;
    border-radius: 10px;
    background-color: #f6f8fa;
    border: 1px solid rgba(1, 1, 1, 0.07);
    transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.4s ease, background-color 0.4s ease, border-color 0.4s ease;
}

.pa-index .grid .pa-tile:hover {
    transform: translateY(-8px);
    background-color: white;
    border-color: rgba(8, 114, 189, 0.35);
    box-shadow: 0 20px 44px rgba(13, 43, 74, 0.14);
}

.pa-index .grid .pa-tile > i {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #075d9b;
    color: white;
    border-radius: 10px;
    width: 50px;
    height: 50px;
    font-size: clamp(19px, 2.1vw, 23px);
    transition: transform 0.4s ease, background-color 0.4s ease;
}

.pa-index .grid .pa-tile:hover > i {
    background-color: #0872bd;
    transform: rotate(-6deg) scale(1.06);
}

.pa-index .grid .pa-tile h4 {
    font-family: "Lora", serif;
    font-size: clamp(17px, 2vw, 21px);
    font-weight: 600;
    color: #0d2b4a;
    margin-top: 6px;
}

.pa-index .grid .pa-tile p {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(11px, 1.2vw, 13px);
    color: rgba(1, 1, 1, 0.6);
    line-height: 1.75;
}

.pa-index .grid .pa-tile span {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    margin-top: auto;
    padding-top: 12px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: clamp(10px, 1.1vw, 12px);
    color: #075d9b;
    transition: gap 0.3s ease;
}

.pa-index .grid .pa-tile:hover span {
    gap: 12px;
}

.pa-index .grid .pa-tile span i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
