/* home.css
   Home page only. */

/* ---------- how we can help ---------- */

/* split layout: copy holds the left rail, cards run two up on the right. this is
   deliberately not another centred heading over an even grid. */
.how-we-help {
    display: flex;
    flex: 1;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    padding: 90px var(--gutter);
    box-sizing: border-box;
    background-color: #f6f8fa;
}

.how-we-help .intro {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    min-width: 280px;
    max-width: 420px;
    position: sticky;
    top: 120px;
}

.how-we-help .intro h5 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(11px, 1.2vw, 13px);
    letter-spacing: 1.8px;
    font-weight: 700;
    color: #0872bd;
}

.how-we-help .intro h2 {
    font-family: "Lora", serif;
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 600;
    color: #0d2b4a;
    line-height: 1.15;
}

.how-we-help .intro p {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(13px, 1.4vw, 15px);
    color: rgba(1, 1, 1, 0.6);
    line-height: 1.8;
}

.how-we-help .intro .view-all {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    align-self: flex-start;
    min-height: 46px;
    margin-top: 6px;
    text-decoration: none;
    color: #075d9b;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: clamp(11px, 1.2vw, 13px);
    letter-spacing: 0.6px;
    border-bottom: 2px solid rgba(8, 114, 189, 0.35);
    transition: gap 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.how-we-help .intro .view-all:hover {
    gap: 14px;
    color: #0872bd;
    border-color: #0872bd;
}

.how-we-help .intro .view-all i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(19px, 2vw, 23px);
}

.how-we-help .cards {
    display: grid;
    flex: 1.5;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
    min-width: 300px;
}

.how-we-help .cards .card {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
    padding: 22px 20px;
    box-sizing: border-box;
    text-decoration: none;
    background-color: white;
    border: 1px solid rgba(1, 1, 1, 0.07);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

/* accent rail that fills in on hover */
.how-we-help .cards .card::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 3px;
    background-image: linear-gradient(180deg, #0872bd, #6aa9dd);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.how-we-help .cards .card:hover::before {
    transform: scaleY(1);
}

.how-we-help .cards .card:hover {
    transform: translateY(-6px);
    border-color: rgba(8, 114, 189, 0.3);
    box-shadow: 0 18px 38px rgba(13, 43, 74, 0.13);
}

.how-we-help .cards .card > i {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(8, 114, 189, 0.09);
    color: #075d9b;
    border-radius: 9px;
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: clamp(17px, 1.9vw, 20px);
    transition: background-color 0.4s ease, color 0.4s ease;
}

.how-we-help .cards .card:hover > i {
    background-color: #075d9b;
    color: white;
}

.how-we-help .cards .card .text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.how-we-help .cards .card .text h4 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(13px, 1.4vw, 15px);
    color: #0d2b4a;
}

.how-we-help .cards .card .text p {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(11px, 1.2vw, 12.5px);
    color: rgba(1, 1, 1, 0.58);
    line-height: 1.65;
}

.how-we-help .cards .card .go {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    align-self: center;
    color: rgba(8, 114, 189, 0.35);
    font-size: 20px;
    transition: transform 0.35s ease, color 0.35s ease;
}

.how-we-help .cards .card:hover .go {
    color: #0872bd;
    transform: translateX(4px);
}

/* ---------- why choose ---------- */

.why-choose {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    padding: 95px var(--gutter);
    box-sizing: border-box;
    background-image: linear-gradient(125deg, #0a2540, #0d3a63);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: "";
    position: absolute;
    bottom: -180px;
    left: -140px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background-color: rgba(8, 114, 189, 0.14);
}

.why-choose .left,
.why-choose .right {
    position: relative;
    z-index: 1;
}

.why-choose .left {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 15px;
    min-width: 300px;
    max-width: 520px;
}

.why-choose .left h5 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(11px, 1.2vw, 13px);
    letter-spacing: 1.8px;
    font-weight: 700;
    color: #6aa9dd;
}

.why-choose .left h2 {
    font-family: "Lora", serif;
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 600;
    line-height: 1.15;
}

.why-choose .left > p {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(13px, 1.4vw, 15px);
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
}

.why-choose .left .points {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-top: 6px;
}

.why-choose .left .points .point {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 11px;
}

.why-choose .left .points .point i {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(8, 114, 189, 0.3);
    color: #8cc3ee;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    min-width: 25px;
    font-size: 11px;
}

.why-choose .left .points .point p {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(12px, 1.3vw, 14px);
    color: rgba(255, 255, 255, 0.88);
}

.why-choose .left .cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    align-self: flex-start;
    min-height: 52px;
    padding: 0 26px;
    margin-top: 10px;
    box-sizing: border-box;
    background-color: #0872bd;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: clamp(11px, 1.2vw, 13px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.why-choose .left .cta:hover {
    background-color: #0d82d4;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(8, 114, 189, 0.45);
}

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

.why-choose .left .cta:hover i {
    transform: translateX(5px);
}

/* landscape consultation photo, framed as a card on the navy */
.why-choose .right {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    max-width: 560px;
}

.why-choose .right .shot {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 30px 62px rgba(1, 1, 1, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-choose .right .shot img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 1.1s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.why-choose .right:hover .shot img {
    transform: scale(1.08);
}

/* ---------- our process ---------- */

/* a spine with markers, not numbered badges over clip art. the step titles
   are sentences, so they carry the section without decoration. */
.our-process {
    display: flex;
    flex: 1;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    padding: 95px var(--gutter);
    box-sizing: border-box;
    background-color: white;
}

.our-process .intro {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    min-width: 280px;
    max-width: 400px;
    position: sticky;
    top: 120px;
}

.our-process .intro h5 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(11px, 1.2vw, 13px);
    letter-spacing: 1.8px;
    font-weight: 700;
    color: #0872bd;
}

.our-process .intro h2 {
    font-family: "Lora", serif;
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 600;
    color: #0d2b4a;
    line-height: 1.15;
}

.our-process .intro p {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(13px, 1.4vw, 15px);
    color: rgba(1, 1, 1, 0.6);
    line-height: 1.8;
}

.our-process .track {
    display: flex;
    flex: 1.4;
    flex-direction: column;
    min-width: 300px;
    position: relative;
}

/* the spine */
.our-process .track::before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 6px;
    width: 2px;
    background-image: linear-gradient(180deg, #0872bd, rgba(8, 114, 189, 0.15));
}

.our-process .track .step {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 0 34px 34px;
    position: relative;
}

.our-process .track .step:last-child {
    padding-bottom: 0;
}

/* marker on the spine */
.our-process .track .step::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: white;
    border: 3px solid #0872bd;
    transition: transform 0.35s ease, background-color 0.35s ease;
}

.our-process .track .step:hover::before {
    background-color: #0872bd;
    transform: scale(1.25);
}

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

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

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

.our-process .track .step h4 {
    font-family: "Lora", serif;
    font-size: clamp(18px, 2.1vw, 23px);
    font-weight: 600;
    color: #0d2b4a;
    line-height: 1.3;
}

.our-process .track .step p {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(12px, 1.35vw, 14.5px);
    color: rgba(1, 1, 1, 0.62);
    line-height: 1.8;
    max-width: 560px;
}

/* ---------- case results ---------- */

/* dark band on purpose: three white card grids in a row is what makes a page
   feel generated. the numbers are the sell, so the first one gets the stage. */
.case-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 90px var(--gutter);
    box-sizing: border-box;
    background-image: linear-gradient(155deg, #061c33, #0d3a63 70%, #0a2a4a);
    color: white;
    position: relative;
    overflow: hidden;
}

.case-results::before {
    content: "";
    position: absolute;
    top: -160px;
    right: -120px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background-color: rgba(8, 114, 189, 0.16);
}

.case-results .heading,
.case-results .results,
.case-results .disclaimer {
    position: relative;
    z-index: 1;
}

.case-results .heading h2 {
    color: white;
}

.case-results .heading p {
    color: rgba(255, 255, 255, 0.66);
}

.case-results .results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
    width: 100%;
}

.case-results .results .result {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 9px;
    padding: 28px 26px;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 10px;
    transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1), background-color 0.4s ease, border-color 0.4s ease;
}

.case-results .results .result:hover {
    transform: translateY(-7px);
    background-color: rgba(255, 255, 255, 0.09);
    border-color: rgba(106, 169, 221, 0.55);
}

.case-results .results .result > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background-color: rgba(124, 184, 232, 0.16);
    color: #7cb8e8;
    font-size: clamp(18px, 2vw, 21px);
    margin-bottom: 4px;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.case-results .results .result:hover > i {
    background-color: #7cb8e8;
    color: #0a2540;
}

.case-results .results .result b {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(11px, 1.2vw, 13px);
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.case-results .results .result p {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(11px, 1.2vw, 13px);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.case-results .disclaimer {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(10px, 1.1vw, 12px);
    color: rgba(255, 255, 255, 0.42);
    margin-top: 32px;
    text-align: center;
    font-style: italic;
}

/* ---------- attorney ---------- */

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

.attorney .left {
    display: flex;
    flex: 1;
    align-items: flex-end;
    justify-content: center;
    min-width: 280px;
    position: relative;
}

.attorney .left::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 82%;
    height: 88%;
    border-radius: 10px;
    background-image: linear-gradient(160deg, #0a2540, #0d3a63);
    z-index: 0;
}

.attorney .left img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
    max-height: 520px;
    transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.attorney .left:hover img {
    transform: translateY(-10px);
}

.attorney .right {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    min-width: 300px;
}

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

.attorney .right h2 {
    font-family: "Lora", serif;
    font-size: clamp(28px, 3.8vw, 42px);
    font-weight: 600;
    color: #0d2b4a;
}

.attorney .right p {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(12px, 1.3vw, 14px);
    color: rgba(1, 1, 1, 0.65);
    line-height: 1.85;
}

.attorney .right .credentials {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 12px;
    padding: 22px 0;
    border-top: 1px solid rgba(1, 1, 1, 0.08);
    border-bottom: 1px solid rgba(1, 1, 1, 0.08);
}

.attorney .right .credentials .credential {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3px;
}

.attorney .right .credentials .credential b {
    font-family: "Lora", serif;
    font-size: clamp(22px, 2.7vw, 30px);
    color: #075d9b;
}

.attorney .right .credentials .credential p {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(10px, 1.1vw, 12px);
    color: rgba(1, 1, 1, 0.55);
}

.attorney .right button,
.attorney .right a.cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    align-self: flex-start;
    background-color: #075d9b;
    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(11px, 1.2vw, 13px);
    margin-top: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.attorney .right button:hover,
.attorney .right a.cta:hover {
    background-color: #0872bd;
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(8, 114, 189, 0.35);
}

.attorney .right button i,
.attorney .right a.cta i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(20px, 2.2vw, 24px);
    transition: transform 0.3s ease;
}

.attorney .right button:hover i,
.attorney .right a.cta:hover i {
    transform: translateX(5px);
}


/* ---------- testimonials ---------- */

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

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

/* even cards, level tops and bottoms. the attribution is pinned to the
   floor of each card so the row reads as one band. */
.testimonials .reviews .review {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
    padding: 30px 28px;
    box-sizing: border-box;
    background-color: white;
    border: 1px solid rgba(1, 1, 1, 0.07);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(13, 43, 74, 0.04);
    transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.testimonials .reviews .review:nth-child(2) {
    transition-delay: 0.1s;
}

.testimonials .reviews .review:nth-child(3) {
    transition-delay: 0.2s;
}

.testimonials .reviews .review:hover {
    transform: translateY(-6px);
    border-color: rgba(8, 114, 189, 0.28);
    box-shadow: 0 20px 44px rgba(13, 43, 74, 0.13);
}

.testimonials .reviews .review .stars {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 3px;
    color: #e8a33d;
    font-size: 14px;
}

.testimonials .reviews .review .stars i {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials .reviews .review > p {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(13px, 1.35vw, 14.5px);
    color: rgba(1, 1, 1, 0.72);
    line-height: 1.8;
}

.testimonials .reviews .review .person {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(1, 1, 1, 0.08);
    width: 100%;
    box-sizing: border-box;
}

/* initials, not a stock face: these are real clients, not stock models */
.testimonials .reviews .review .person .avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background-image: linear-gradient(140deg, #0872bd, #075d9b);
    color: white;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.testimonials .reviews .review .person .who {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonials .reviews .review .person .who b {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(12px, 1.3vw, 14px);
    color: #0d2b4a;
}

.testimonials .reviews .review .person .who span {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(10px, 1.1vw, 12px);
    color: rgba(1, 1, 1, 0.5);
}

/* ---------- faq ---------- */

.faq {
    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;
}

.faq .left {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    min-width: 280px;
    position: sticky;
    top: 120px;
}

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

.faq .left h2 {
    font-family: "Lora", serif;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 600;
    color: #0d2b4a;
}

.faq .left p {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(12px, 1.3vw, 14px);
    color: rgba(1, 1, 1, 0.6);
    line-height: 1.8;
    max-width: 85%;
}

.faq .left button,
.faq .left a.cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    align-self: flex-start;
    background-color: #075d9b;
    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(11px, 1.2vw, 13px);
    margin-top: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.faq .left button:hover,
.faq .left a.cta:hover {
    background-color: #0872bd;
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(8, 114, 189, 0.35);
}

.faq .left button i,
.faq .left a.cta i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(20px, 2.2vw, 24px);
    transition: transform 0.3s ease;
}

.faq .left button:hover i,
.faq .left a.cta:hover i {
    transform: translateX(5px);
}

.faq .right {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 12px;
    min-width: 300px;
}

.faq .right .question {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(1, 1, 1, 0.09);
    border-radius: 8px;
    background-color: #f6f8fa;
    overflow: hidden;
    transition: border-color 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease;
}

.faq .right .question:hover {
    border-color: rgba(8, 114, 189, 0.35);
}

.faq .right .question.open {
    background-color: white;
    border-color: rgba(8, 114, 189, 0.35);
    box-shadow: 0 12px 30px rgba(13, 43, 74, 0.1);
}

.faq .right .question .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 20px 22px;
    cursor: pointer;
}

.faq .right .question .top h4 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(12px, 1.4vw, 15px);
    color: #0d2b4a;
    font-weight: 600;
}

.faq .right .question .top i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #075d9b;
    font-size: clamp(17px, 1.8vw, 20px);
    transition: transform 0.4s ease;
}

.faq .right .question.open .top i {
    transform: rotate(180deg);
}

.faq .right .question .answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, padding 0.45s ease;
    padding: 0 22px;
}

.faq .right .question.open .answer {
    max-height: 260px;
    padding: 0 22px 22px 22px;
}

.faq .right .question .answer p {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(11px, 1.2vw, 13px);
    color: rgba(1, 1, 1, 0.62);
    line-height: 1.85;
}


/* ---------- photographic backdrops ---------- */

/* courthouse behind the results band, held right back so the numbers lead */
.case-results {
    background-image:
        linear-gradient(155deg, rgba(6, 28, 51, 0.94), rgba(13, 58, 99, 0.9) 70%, rgba(10, 42, 74, 0.95)),
        url(/static/images/courthouse.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* client meeting behind the process steps */
.our-process {
    position: relative;
    overflow: hidden;
}

.our-process::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 248, 250, 0.99)),
        url(/static/images/consultation.jpg);
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.our-process .heading,
.our-process .steps {
    position: relative;
    z-index: 1;
}
