:root {
    --ink: #191718;
    --brand: #FCB318;
    --surface: #FFFFFF;
    --field: #F1F1F1;
    --muted: #B3B3B3;
    --shell-width: 1333px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
    color: var(--ink);
    background-color: var(--surface);
    overflow-x: hidden;
}

.shell {
    width: 100%;
    max-width: var(--shell-width);
    margin-inline: auto;
    padding-inline: 24px;
}

.preview-ribbon {
    position: sticky;
    top: 0;
    z-index: 60;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
    padding: 10px 18px;
    background-color: #191718;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
}

.preview-ribbon-mark {
    padding: 3px 10px;
    border-radius: 999px;
    background-color: var(--brand);
    color: var(--ink);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.preview-ribbon-note {
    flex: 1;
    min-width: 200px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12.5px;
    font-weight: 400;
}

.preview-ribbon-back {
    flex: 0 0 auto;
    color: var(--brand);
    font-size: 12.5px;
    font-weight: 600;
}

.hero {
    background-color: var(--section-bg, var(--ink));
    color: var(--section-ink, var(--surface));
    padding-block: 75px 69px;
}

.hero-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 48px;
}

.hero-copy,
.hero-aside {
    flex: 1 1 100%;
    max-width: 100%;
}

.hero-aside {
    scroll-margin-top: 24px;
}

.hero-brand {
    display: inline-block;
    margin-bottom: 48px;
}

.hero-brand img {
    display: block;
    width: 225px;
    max-width: 60vw;
    height: auto;
}

.hero-title {
    margin: 0;
    font-weight: 700;
    font-size: clamp(2.125rem, 4.219vw, 3.797rem);
    line-height: 1.14;
    letter-spacing: -0.01em;
}

.hero-title .title-accent {
    color: var(--section-accent, var(--brand));
}

.hero-lede {
    margin: 32px 0 0;
    font-weight: 400;
    font-size: clamp(1.0625rem, 2.587vw, 2.328rem);
    line-height: 1.18;
    max-width: 620px;
}

.hero-disclaimer {
    margin: 50px 0 0;
    font-weight: 400;
    font-size: clamp(0.75rem, 1.042vw, 0.9375rem);
    line-height: 1.125;
    color: var(--section-ink, var(--surface));
    max-width: 556px;
    padding-left: 9px;
    text-indent: -9px;
}

.screening-card {
    display: flex;
    flex-direction: column;
    background-color: var(--surface);
    color: var(--ink);
    border-radius: 21px;
    padding: 37px;
    min-height: 659px;
}

.step-track {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin: 0 0 53px;
    padding: 0;
    list-style: none;
}

.step-track::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: var(--ink);
}

.step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}

.step-dot {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--muted);
}

.step-dot::after {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--surface);
}

.step[data-state='active'] .step-dot {
    background-color: var(--brand);
}

.step[data-state='active'] .step-dot::after {
    width: 14px;
    height: 14px;
    background-color: var(--ink);
}

.step-number {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    line-height: 1;
}

.step[data-state='active'] .step-number {
    font-weight: 700;
    color: var(--ink);
}

.question-bar {
    display: flex;
    align-items: stretch;
    background-color: var(--field);
    border-radius: 10px;
    overflow: hidden;
    min-height: 60px;
}

.question-index {
    flex: 0 0 60px;
    display: grid;
    place-items: center;
    background-color: var(--brand);
    font-size: 19px;
    font-weight: 700;
}

.question-text {
    margin: 0;
    align-self: center;
    padding: 10px 18px;
    font-size: 17.5px;
    font-weight: 500;
    line-height: 1.25;
}

.choice-list {
    display: flex;
    flex-direction: column;
    gap: 17px;
    margin: 31px 0 0;
    padding: 0 0 0 31px;
    list-style: none;
}

.choice {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}

.choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.choice-marker {
    display: grid;
    place-items: center;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--muted);
    transition: background-color 0.15s ease;
}

.choice-marker::after {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--surface);
    transition: width 0.15s ease, height 0.15s ease, background-color 0.15s ease;
}

.choice:hover .choice-marker {
    background-color: #9c9c9c;
}

.choice input:checked ~ .choice-marker {
    background-color: var(--brand);
}

.choice input:checked ~ .choice-marker::after {
    width: 14px;
    height: 14px;
    background-color: var(--ink);
}

.choice input:focus-visible ~ .choice-marker {
    outline: 2px solid var(--ink);
    outline-offset: 3px;
}

.choice-label {
    font-size: 17.8px;
    font-weight: 400;
    line-height: 1.2;
}

.start-button {
    margin-top: auto;
    width: 100%;
    min-height: 60px;
    padding: 12px 20px;
    border: 0;
    border-radius: 8px;
    background-color: var(--brand);
    color: #000000;
    font-family: inherit;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color 0.15s ease, transform 0.15s ease;
}

.start-button:hover {
    background-color: #e9a410;
}

.start-button:active {
    transform: translateY(1px);
}

.attorney {
    background-color: var(--section-bg, transparent);
    color: var(--section-ink, inherit);
}

.attorney-stage {
    position: relative;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.attorney-stage::before {
    content: '';
    position: absolute;
    inset: -5%;
    background-image: var(--attorney-backdrop);
    background-size: cover;
    background-position: center;
    filter: blur(34px) saturate(1.05);
}

.attorney-photo-wrap {
    position: relative;
    width: 100%;
    max-width: 1440px;
    container-type: inline-size;
}

.attorney-photo {
    display: block;
    width: 100%;
    height: auto;
}

.attorney-band {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 19.53%;
    display: flex;
    align-items: center;
}

.attorney-band-inner {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.attorney-identity p,
.attorney-credentials p {
    color: var(--section-ink, var(--ink));
}

.attorney-name {
    margin: 0;
    font-size: 3.507cqw;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.01em;
}

.attorney-firm {
    margin: 0.83cqw 0 0;
    font-size: 2.424cqw;
    font-weight: 400;
    line-height: 1.15;
    text-align: center;
    padding-left: 2.22cqw;
}

.attorney-credentials p {
    margin: 0;
}

.attorney-credentials {
    text-align: right;
}

.attorney-credentials p {
    font-size: 2cqw;
    font-weight: 400;
    line-height: 1.22;
}

.stats {
    background-color: var(--section-bg, transparent);
    color: var(--section-ink, inherit);
    padding-block: 78px;
}

.stat-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(28px, 4.5vw, 65px);
    max-width: 1263px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 247px;
    padding: 20px 14px 8px;
    background-color: var(--surface);
    border: 2px solid var(--ink);
    border-radius: 20px;
    box-shadow: 13px 15px 0 var(--ink);
    text-align: center;
}

.stat-icon {
    display: block;
    width: auto;
    height: 56px;
}

.stat-value {
    margin: 12px 0 0;
    font-size: 73.4px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    margin: 10px 0 0;
    font-size: 29px;
    font-weight: 400;
    line-height: 1.17;
}

.overview {
    background-color: var(--section-bg, var(--brand));
    color: var(--section-ink, inherit);
    padding-block: 68px 74px;
}

.overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 550px) minmax(0, 627px);
    justify-content: space-between;
    gap: 40px;
}

.overview-title {
    margin: 0;
    font-size: 104px;
    font-weight: 700;
    line-height: 1.01;
    letter-spacing: -0.02em;
}

.overview-title-lead {
    color: var(--section-ink, var(--ink));
}

.overview-title-accent {
    color: var(--section-accent, var(--surface));
}

.overview-intro,
.overview-detail {
    margin: 0;
    font-size: 30.8px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--section-ink, var(--ink));
    max-width: 545px;
}

.overview-intro {
    margin-top: 78px;
}

.overview-detail {
    margin-top: 29px;
}

.consult-cta {
    position: relative;
    display: flex;
    align-items: flex-end;
    margin-top: 92px;
}

.consult-cta-pill {
    display: flex;
    align-items: center;
    min-height: 87px;
    width: 100%;
    max-width: 550px;
    padding: 12px 260px 12px 40px;
    border-radius: 999px;
    background-color: var(--surface);
    color: var(--ink);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: transform 0.15s ease;
}

.consult-cta-pill:hover {
    transform: translateY(-2px);
}

.consult-cta-photo {
    position: absolute;
    right: 57px;
    bottom: 0;
    width: 202px;
    height: 163px;
    object-fit: cover;
    object-position: center bottom;
    pointer-events: none;
}

.overview-media {
    margin-top: 15px;
}

.video-frame {
    display: block;
    position: relative;
    border: 4px solid var(--ink);
    border-radius: 44px;
    padding: 39px 52px 39px 39px;
    text-decoration: none;
}

.video-frame::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 31px;
    border-radius: 0 40px 40px 0;
    background-color: var(--ink);
}

.video-screen {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: var(--ink);
}

.video-trigger {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
}

.video-trigger[disabled] {
    cursor: default;
}

.video-cover {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 112px;
    height: 112px;
    transform: translate(-50%, -50%);
    border: 3px solid var(--surface);
    border-radius: 50%;
}

.video-play::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 54%;
    width: 0;
    height: 0;
    transform: translate(-50%, -50%);
    border-top: 26px solid transparent;
    border-bottom: 26px solid transparent;
    border-left: 42px solid var(--surface);
}

.benefit-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 37px;
    margin: 37px 0 0;
    padding: 0;
    list-style: none;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    min-height: 123px;
    border-radius: 14px;
    overflow: hidden;
    background-color: var(--surface);
}

.benefit-title {
    margin: 0;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    background-color: var(--ink);
    color: var(--brand);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
}

.benefit-text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 8px 16px;
    color: var(--ink);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.25;
    text-align: center;
}

.sectors {
    background-color: var(--section-bg, #eff1f0);
    color: var(--section-ink, inherit);
    padding-block: 70px;
}

.sectors-heading {
    margin: 0;
    text-align: center;
    font-size: 76.6px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.sector-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 38px 36px;
    margin: 56px 0 0;
    padding: 0;
    list-style: none;
}

.sector-card {
    display: flex;
    flex: 0 0 calc((100% - 108px) / 4);
    flex-direction: column;
    align-items: center;
    min-height: 294px;
    padding: 33px 28px 20px;
    background-color: var(--surface);
    color: var(--ink);
    border-radius: 20px;
    text-align: center;
}

.sector-icon {
    display: block;
    width: auto;
    height: 73px;
}

.sector-divider {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 31px;
}

.sector-title {
    margin: 20px 0 0;
    font-size: 22.65px;
    font-weight: 700;
    line-height: 1.32;
}

.sector-note {
    margin: 2px 0 0;
    font-size: 17.6px;
    font-weight: 400;
    line-height: 1.25;
}

.sectors-disclaimer {
    max-width: 980px;
    margin: 35px auto 0;
    text-align: center;
    font-size: 25.9px;
    font-weight: 400;
    line-height: 1.3;
}

.team {
    background-color: var(--section-bg, transparent);
    color: var(--section-ink, inherit);
    padding-block: 75px 74px;
}

.team-heading {
    margin: 0;
    text-align: center;
    font-size: 68.9px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.team-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 33px;
    max-width: 1179px;
    margin: 58px auto 0;
    padding: 0;
    list-style: none;
}

.team-member {
    text-align: center;
}

.team-photo {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 18%;
}

.team-name {
    margin: 34px 0 0;
    font-size: 22.6px;
    font-weight: 700;
    line-height: 1.2;
}

.team-registry {
    margin: 12px 0 0;
    font-size: 22.6px;
    font-weight: 700;
    line-height: 1.2;
}

.team-address {
    margin: 13px 0 0;
    font-size: 19.6px;
    font-weight: 400;
    line-height: 1.12;
}

.contact {
    display: flex;
    align-items: center;
    min-height: 810px;
    background-color: var(--section-bg, var(--brand));
    background-image: var(--contact-backdrop);
    background-size: cover;
    background-position: center;
}

.contact-copy {
    max-width: 660px;
}

.contact-mark {
    display: block;
    width: 150px;
    height: auto;
}

.contact-title {
    margin: 39px 0 0;
    font-size: 49.5px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.contact-title-lead,
.contact-title-accent {
    display: block;
}

.contact-title-lead {
    color: var(--section-ink, var(--surface));
}

.contact-title-accent {
    color: var(--section-accent, var(--ink));
}

.contact .consult-cta {
    margin-top: 78px;
}

.contact .consult-cta-pill {
    width: 534px;
    max-width: 534px;
}

.process {
    background-color: var(--section-bg, transparent);
    color: var(--section-ink, inherit);
    padding-block: 71px 75px;
}

.process-heading {
    margin: 0;
    text-align: center;
    font-size: 69px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.process-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 37px;
    max-width: 1291px;
    margin: 68px auto 0;
    padding: 0;
    list-style: none;
    counter-reset: none;
}

.process-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 39px;
    left: 50%;
    width: calc(100% + 37px);
    height: 3px;
    background-color: var(--ink);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 50%;
    width: 3px;
    height: 46px;
    transform: translateX(-50%);
    background-color: var(--ink);
}

.process-badge {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 80px;
    height: 80px;
    border: 8px solid var(--section-accent, var(--brand));
    border-radius: 50%;
    background-color: var(--ink);
    color: var(--section-accent, var(--brand));
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
}

.process-card {
    width: 100%;
    margin-top: 46px;
    border-radius: 12px;
    overflow: hidden;
}

.process-card-title {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 75px;
    margin: 0;
    padding: 10px 18px;
    background-color: var(--brand);
    font-size: 22.5px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
}

.process-card-text {
    min-height: 144px;
    margin: 0;
    padding: 18px 37px;
    background-color: var(--field);
    font-size: 15.3px;
    font-weight: 400;
    line-height: 1.35;
    text-align: center;
}

.reviews {
    background-color: var(--section-bg, var(--field));
    color: var(--section-ink, inherit);
    padding-block: 69px 75px;
}

.reviews-heading {
    margin: 0;
    text-align: center;
    font-size: 68px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.reviews-summary {
    margin: 18px 0 0;
    text-align: center;
    font-size: 22px;
    font-weight: 400;
}

.reviews-carousel {
    display: flex;
    align-items: center;
    gap: 38px;
    max-width: 1178px;
    margin: 23px auto 0;
}

.reviews-arrow {
    display: grid;
    flex: 0 0 73px;
    place-items: center;
    width: 73px;
    height: 73px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background-color: var(--surface);
    color: #8d8d8d;
    cursor: pointer;
    transition: color 0.15s ease, transform 0.15s ease;
}

.reviews-arrow:hover {
    color: var(--ink);
    transform: scale(1.04);
}

.reviews-arrow svg {
    width: 36px;
    height: 36px;
    stroke-width: 2.4;
}

.reviews-track {
    display: flex;
    flex: 1;
    min-width: 0;
    gap: 37px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-block: 6px;
}

.reviews-track::-webkit-scrollbar {
    display: none;
}

.review-card {
    display: flex;
    flex: 0 0 294px;
    flex-direction: column;
    min-height: 294px;
    padding: 26px 24px 24px;
    border-radius: 18px;
    background-color: var(--surface);
    color: var(--ink);
    scroll-snap-align: start;
}

.review-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: start;
}

.review-avatar {
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background-color: var(--ink);
    color: var(--brand);
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}

.review-identity p {
    margin: 0;
}

.review-author {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.15;
}


.review-date {
    margin-top: 7px;
    font-size: 14.5px;
    font-weight: 400;
    color: #6d6d6d;
}

.review-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-top: 9px;
}

.review-star {
    width: 17px;
    height: 17px;
    fill: var(--brand);
}

.review-verified {
    width: 15px;
    height: 15px;
    margin-left: 4px;
    fill: #1a73e8;
}

.review-source {
    width: 30px;
    height: 30px;
}

.review-text {
    display: -webkit-box;
    margin: 17px 0 0;
    overflow: hidden;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.42;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
}

.guide {
    background-color: var(--section-bg, transparent);
    color: var(--section-ink, inherit);
    padding-block: 69px 75px;
}

.guide-heading {
    margin: 0;
    font-size: 76.6px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.guide-grid {
    display: grid;
    grid-template-columns: 719fr 570fr;
    align-items: stretch;
    margin-top: 75px;
}

.guide-promo {
    display: flex;
    align-items: center;
    min-height: 291px;
    padding: 32px 42px;
    border-radius: 18px 0 0 18px;
    background-color: var(--brand);
}

.guide-promo-text {
    margin: 0;
    font-size: 45.1px;
    font-weight: 700;
    line-height: 1.28;
}

.guide-form {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 291px;
    padding: 17px 37px 24px;
    border-radius: 0 18px 18px 0;
    background-color: var(--field);
}

.guide-icon {
    position: absolute;
    top: -130px;
    left: 50%;
    display: grid;
    place-items: center;
    width: 130px;
    height: 130px;
    transform: translateX(-50%);
    background-color: var(--brand);
}

.guide-icon img {
    display: block;
    width: 78px;
    height: auto;
}

.guide-arrow {
    display: block;
    width: 24px;
    height: auto;
}

.guide-form-title {
    margin: 16px 0 0;
    font-size: 22.6px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.guide-email {
    width: 100%;
    min-height: 60px;
    margin-top: 17px;
    padding: 12px 22px;
    border: 0;
    border-radius: 10px;
    background-color: var(--surface);
    color: var(--ink);
    font-family: inherit;
    font-size: 18px;
    text-align: center;
}

.guide-email::placeholder {
    color: #6f6f6f;
    opacity: 1;
}

.guide-email:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

.guide-submit {
    width: 100%;
    min-height: 60px;
    margin-top: 16px;
    padding: 12px 20px;
    border: 0;
    border-radius: 10px;
    background-color: var(--brand);
    color: var(--ink);
    font-family: inherit;
    font-size: 25.9px;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.guide-submit:hover {
    background-color: #e9a410;
}

.guide-warning {
    margin: 12px 0 0;
    color: #c0392b;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
}

.guide-done {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.guide-done-text {
    margin: 18px 0 0;
    color: var(--ink);
    font-size: 21px;
    font-weight: 500;
    line-height: 1.35;
}

.guide-download {
    display: grid;
    place-items: center;
    font-size: 21px;
    text-decoration: none;
}

[x-cloak] {
    display: none !important;
}

.faq {
    position: relative;
    background-color: var(--section-bg, var(--field));
    color: var(--section-ink, inherit);
    padding-block: 52px 97px;
}

.faq-heading {
    margin: 0;
    text-align: center;
    font-size: 76.5px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 1027px;
    margin: 64px auto 0;
    padding: 0;
    list-style: none;
}

.faq-item {
    border-radius: 30px;
    background-color: var(--surface);
    box-shadow: 0 2px 10px rgba(25, 23, 24, 0.06);
    transition: box-shadow 0.2s ease;
}

.faq-item.is-open {
    box-shadow: 0 12px 30px rgba(25, 23, 24, 0.14);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    min-height: 60px;
    padding: 15px 28px;
    border: 0;
    border-radius: 30px;
    background: none;
    color: var(--ink);
    font-family: inherit;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    text-align: left;
    cursor: pointer;
}

.faq-question-text {
    flex: 1;
    min-width: 0;
}

.faq-marker {
    flex: 0 0 auto;
    font-size: 15px;
    color: var(--brand);
    transition: transform 0.24s ease;
}

.faq-item.is-open .faq-marker {
    transform: rotate(180deg);
}

.faq-answer-shell {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.28s ease;
}

.faq-item.is-open .faq-answer-shell {
    grid-template-rows: 1fr;
}

.faq-answer {
    overflow: hidden;
    min-height: 0;
    visibility: hidden;
    padding-inline: 28px;
    color: var(--ink);
    font-size: 15.5px;
    font-weight: 400;
    line-height: 1.55;
}

.faq-item.is-open .faq-answer {
    visibility: visible;
}

.faq-answer > :first-child {
    margin-top: 0;
}

.faq-item.is-open .faq-answer {
    padding-bottom: 24px;
}

@media (prefers-reduced-motion: reduce) {
    .faq-answer-shell,
    .faq-marker {
        transition: none;
    }
}

.quick-actions {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-height: 88vh;
    transform: translate(100%, -50%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.quick-actions-shown {
    transform: translate(0, -50%);
    opacity: 1;
    pointer-events: auto;
}

.quick-action {
    display: grid;
    place-items: center;
    width: 44px;
    min-height: 139px;
    padding-block: 20px;
    border-radius: 12px 0 0 12px;
    box-shadow: -6px 0 18px rgba(25, 23, 24, 0.14);
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    transition: width 0.18s ease;
}

.quick-action span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    max-height: 100%;
    overflow: hidden;
}

.quick-action-analysis {
    background-color: var(--tab-one, var(--ink));
    color: var(--tab-one-ink, var(--brand));
}

.quick-action-start {
    background-color: var(--tab-two, #4ade80);
    color: var(--tab-two-ink, var(--ink));
}

.quick-action:hover {
    width: 50px;
}

.site-footer {
    background-color: var(--section-bg, var(--ink));
    color: var(--section-ink, var(--surface));
    padding-block: 75px 111px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 263fr 702fr 320fr;
}

.footer-logo {
    display: block;
    width: 187px;
    height: auto;
}

.footer-about {
    margin: 50px 0 0;
    font-size: 15.5px;
    font-weight: 400;
    line-height: 1.42;
}

.footer-copyright {
    margin: 118px 0 0;
    font-size: 15.5px;
    font-weight: 400;
    line-height: 1.42;
}

.footer-title {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
}

.office-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 38px;
    margin: 40px 0 0;
    padding: 0;
    list-style: none;
}

.office-city {
    margin: 0;
    color: var(--section-accent, var(--brand));
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.office-tag {
    font-weight: 400;
}

.office-address {
    margin: 6px 0 0;
    font-size: 15.5px;
    font-weight: 400;
    line-height: 1.4;
}

.footer-legal-text {
    margin: 26px 0 0;
    font-size: 15.5px;
    font-weight: 400;
    line-height: 1.42;
}

.legal-links {
    margin: 44px 0 0;
    padding: 0;
    list-style: none;
}

.legal-links li + li {
    margin-top: 13px;
}

.legal-links a {
    color: var(--surface);
    font-size: 15.5px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.15s ease;
}

.legal-links a:hover {
    color: var(--brand);
}

@media (min-width: 992px) {
    .hero {
        min-height: 810px;
    }

    .hero-grid {
        flex-wrap: nowrap;
        gap: 0;
    }

    .hero-copy {
        flex: 0 0 55.7%;
        max-width: 55.7%;
        padding-right: 40px;
    }

    .hero-aside {
        flex: 0 0 44.3%;
        max-width: 44.3%;
    }
}

@media (max-width: 991.98px) {
    .hero {
        padding-block: 44px 52px;
    }

    .hero-brand {
        margin-bottom: 40px;
    }

    .hero-lede {
        margin-top: 20px;
        max-width: 100%;
    }

    .hero-disclaimer {
        margin-top: 28px;
    }

    .screening-card {
        min-height: 0;
        padding: 26px 22px;
    }

    .step-track {
        margin-bottom: 34px;
    }

    .choice-list {
        gap: 14px;
        padding-left: 8px;
        margin-top: 22px;
    }

    .choice-label {
        font-size: 17px;
    }

    .question-text {
        font-size: 16px;
    }

    .start-button {
        margin-top: 34px;
        font-size: 16px;
    }

    .attorney-stage::before {
        display: none;
    }

    .attorney-photo {
        aspect-ratio: 1752 / 787;
        object-fit: cover;
        object-position: center top;
    }

    .attorney-band {
        position: static;
        height: auto;
        background-color: var(--brand);
        padding-block: 20px;
    }

    .attorney-band-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .stats {
        padding-block: 48px;
    }

    .stat-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
        max-width: none;
    }

    .stat-card {
        min-height: 0;
        padding: 18px 12px 20px;
        border-radius: 14px;
        box-shadow: 8px 10px 0 var(--ink);
    }

    .stat-icon {
        height: 42px;
    }

    .stat-value {
        font-size: 46px;
    }

    .stat-label {
        font-size: 19px;
    }

    .overview {
        padding-block: 44px 52px;
    }

    .overview-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }

    .overview-title {
        font-size: clamp(2.5rem, 9vw, 4.5rem);
        line-height: 1.05;
    }

    .overview-intro,
    .overview-detail {
        font-size: 19px;
        max-width: 100%;
    }

    .overview-intro {
        margin-top: 32px;
    }

    .overview-detail {
        margin-top: 20px;
    }

    .consult-cta {
        margin-top: 40px;
    }

    .consult-cta-pill {
        max-width: 100%;
        min-height: 72px;
        padding: 12px 150px 12px 24px;
        font-size: 18px;
    }

    .consult-cta-photo {
        right: 20px;
        width: 132px;
        height: 106px;
    }

    .overview-media {
        margin-top: 0;
    }

    .video-frame {
        border-width: 3px;
        border-radius: 26px;
        padding: 18px 26px 18px 18px;
    }

    .video-frame::after {
        width: 18px;
        border-radius: 0 23px 23px 0;
    }

    .video-play {
        width: 68px;
        height: 68px;
        border-width: 2px;
    }

    .video-play::after {
        border-top-width: 15px;
        border-bottom-width: 15px;
        border-left-width: 25px;
    }

    .benefit-list {
        gap: 18px;
        margin-top: 24px;
    }

    .benefit-card {
        min-height: 0;
    }

    .benefit-title {
        min-height: 40px;
        font-size: 15px;
    }

    .benefit-text {
        padding: 10px 12px;
        font-size: 14px;
    }

    .attorney-name {
        font-size: 26px;
    }

    .attorney-firm {
        font-size: 18px;
        text-align: left;
        margin-top: 4px;
        padding-left: 0;
    }

    .attorney-credentials {
        text-align: left;
    }

    .attorney-credentials p {
        font-size: 15px;
        line-height: 1.35;
    }
}

@media (max-width: 991.98px) {
    .sectors {
        padding-block: 46px;
    }

    .sectors-heading {
        font-size: 34px;
    }

    .sector-list {
        gap: 20px;
        margin-top: 32px;
    }

    .sector-card {
        flex: 0 0 calc(50% - 10px);
        width: auto;
        min-height: 0;
        padding: 22px 14px 18px;
        border-radius: 14px;
    }

    .sector-icon {
        height: 52px;
    }

    .sector-divider {
        margin-top: 18px;
    }

    .sector-title {
        margin-top: 14px;
        font-size: 17px;
    }

    .sector-note {
        font-size: 15px;
    }

    .sectors-disclaimer {
        margin-top: 26px;
        font-size: 15px;
    }

    .team {
        padding-block: 46px;
    }

    .team-heading {
        font-size: 30px;
    }

    .team-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
        margin-top: 32px;
    }

    .team-name,
    .team-registry {
        font-size: 16px;
    }

    .team-name {
        margin-top: 16px;
    }

    .team-registry {
        margin-top: 8px;
    }

    .team-address {
        margin-top: 8px;
        font-size: 14px;
    }

    .contact {
        min-height: 0;
        padding-block: 46px;
        background-image: none;
    }

    .contact-copy {
        max-width: 100%;
    }

    .contact-mark {
        width: 96px;
    }

    .contact-title {
        margin-top: 24px;
        font-size: 26px;
        line-height: 1.4;
    }

    .contact .consult-cta {
        margin-top: 28px;
    }

    .process {
        padding-block: 46px;
    }

    .process-heading {
        font-size: 28px;
    }

    .process-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px 20px;
        margin-top: 34px;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

    .process-step::before {
        top: 58px;
        height: 22px;
        width: 2px;
    }

    .process-badge {
        width: 58px;
        height: 58px;
        border-width: 6px;
        font-size: 24px;
    }

    .process-card {
        margin-top: 22px;
        border-radius: 10px;
    }

    .process-card-title {
        min-height: 56px;
        font-size: 16px;
    }

    .process-card-text {
        min-height: 0;
        padding: 14px 14px 18px;
        font-size: 14.5px;
    }

    .reviews {
        padding-block: 46px;
    }

    .reviews-heading {
        font-size: 30px;
    }

    .reviews-summary {
        margin-top: 12px;
        font-size: 16px;
    }

    .reviews-carousel {
        gap: 14px;
        margin-top: 26px;
    }

    .reviews-arrow {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
    }

    .reviews-arrow svg {
        width: 24px;
        height: 24px;
    }

    .reviews-track {
        gap: 20px;
    }

    .review-card {
        flex-basis: 258px;
        min-height: 0;
        padding: 20px 18px;
        border-radius: 14px;
    }

    .review-avatar {
        width: 58px;
        height: 58px;
        font-size: 23px;
    }

    .review-author {
        font-size: 16px;
    }

    .review-date {
        margin-top: 5px;
        font-size: 13px;
    }

    .review-star {
        width: 14px;
        height: 14px;
    }

    .review-source {
        width: 24px;
        height: 24px;
    }

    .review-text {
        margin-top: 13px;
        font-size: 13.5px;
        -webkit-line-clamp: 7;
    }

    .guide {
        padding-block: 46px;
    }

    .guide-heading {
        font-size: 30px;
    }

    .guide-grid {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    .guide-promo {
        min-height: 0;
        padding: 24px 22px;
        border-radius: 14px 14px 0 0;
    }

    .guide-promo-text {
        font-size: 21px;
    }

    .guide-form {
        min-height: 0;
        padding: 22px 20px;
        border-radius: 0 0 14px 14px;
    }

    .guide-icon {
        position: static;
        width: 96px;
        height: 96px;
        margin: 0 auto 6px;
        transform: none;
        border-radius: 10px;
    }

    .guide-icon img {
        width: 56px;
    }

    .guide-form-title {
        margin-top: 12px;
        font-size: 16px;
    }

    .guide-email,
    .guide-submit {
        min-height: 50px;
        font-size: 15px;
    }

    .guide-submit {
        font-size: 16px;
    }

    .faq {
        padding-block: 44px 56px;
    }

    .faq-heading {
        font-size: 30px;
    }

    .faq-list {
        gap: 10px;
        margin-top: 30px;
        max-width: 100%;
    }

    .faq-item {
        border-radius: 20px;
    }

    .faq-question {
        gap: 14px;
        min-height: 54px;
        padding: 14px 18px;
        border-radius: 20px;
        font-size: 15.5px;
    }

    .faq-marker {
        font-size: 13px;
    }

    .faq-answer {
        padding-inline: 18px;
        font-size: 14.5px;
        line-height: 1.5;
    }

    .faq-item.is-open .faq-answer {
        padding-bottom: 18px;
    }

    .quick-actions {
        gap: 12px;
        max-height: 76vh;
    }

    .quick-action {
        width: 36px;
        min-height: 104px;
        padding-block: 14px;
        font-size: 10.5px;
        line-height: 1.2;
    }

    .quick-action:hover {
        width: 36px;
    }

    .site-footer {
        padding-block: 44px 52px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-about {
        margin-top: 20px;
    }

    .footer-copyright {
        margin-top: 24px;
    }

    .footer-title {
        font-size: 20px;
    }

    .office-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 20px;
        margin-top: 22px;
    }

    .footer-legal-text {
        margin-top: 16px;
    }

    .legal-links {
        margin-top: 24px;
    }
}

@media (max-width: 575.98px) {
    .shell {
        padding-inline: 18px;
    }

    .step-dot,
    .choice-marker {
        width: 26px;
        height: 26px;
        flex-basis: 26px;
    }

    .step-track::before {
        top: 12px;
    }

    .question-index {
        flex-basis: 50px;
    }

    .start-button {
        font-size: 15px;
    }

    .stat-list {
        gap: 18px;
    }

    .stat-card {
        box-shadow: 6px 8px 0 var(--ink);
    }

    .stat-value {
        font-size: 36px;
    }

    .stat-label {
        font-size: 16px;
    }

    .benefit-list {
        grid-template-columns: minmax(0, 1fr);
    }

    .consult-cta-pill {
        padding-right: 120px;
        font-size: 16px;
    }

    .consult-cta-photo {
        right: 12px;
        width: 106px;
        height: 86px;
    }
}

.legal-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background-color: rgba(25, 23, 24, 0.62);
    animation: legal-modal-fade 0.16s ease-out;
}

@keyframes legal-modal-fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.legal-modal-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 760px;
    max-height: 86vh;
    border-radius: 18px;
    background-color: var(--surface);
    box-shadow: 0 30px 70px rgba(25, 23, 24, 0.34);
    overflow: hidden;
}

.legal-modal-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 26px 32px 18px;
    border-bottom: 1px solid #eceded;
}

.legal-modal-title {
    margin: 0;
    color: var(--ink);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.25;
}

.legal-modal-close {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background-color: var(--field);
    color: var(--ink);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.legal-modal-close:hover {
    background-color: var(--brand);
}

.legal-modal-body {
    padding: 22px 32px 30px;
    overflow-y: auto;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.75;
}

.legal-modal-body h2 {
    margin: 26px 0 10px;
    font-size: 20px;
    font-weight: 700;
}

.legal-modal-body h3 {
    margin: 22px 0 8px;
    font-size: 17px;
    font-weight: 600;
}

.legal-modal-body h2:first-child,
.legal-modal-body h3:first-child,
.legal-modal-body p:first-child {
    margin-top: 0;
}

.legal-modal-body p {
    margin: 0 0 14px;
}

.legal-modal-body ul,
.legal-modal-body ol {
    margin: 0 0 16px;
    padding-left: 22px;
}

.legal-modal-body li {
    margin-bottom: 7px;
}

.legal-modal-body a {
    color: #a97400;
    text-decoration: underline;
}

@media (max-width: 767.98px) {
    .legal-modal {
        padding: 12px;
    }

    .legal-modal-card {
        max-height: 92vh;
    }

    .legal-modal-head {
        padding: 20px 20px 14px;
    }

    .legal-modal-title {
        font-size: 21px;
    }

    .legal-modal-body {
        padding: 18px 20px 24px;
        font-size: 15px;
    }
}

.screening-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 34px;
}

.back-button {
    flex: 0 0 auto;
    padding: 0 22px;
    height: 64px;
    border: 2px solid var(--field);
    border-radius: 12px;
    background-color: var(--surface);
    color: var(--ink);
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.15s ease;
}

.back-button:hover {
    border-color: var(--muted);
}

.screening-actions .start-button {
    flex: 1;
}

.screening-progress {
    margin: 12px 0 -8px;
    color: var(--muted);
    font-size: 14px;
    text-align: center;
}

.screening-error {
    margin: 8px 0 0;
    color: #c0392b;
    font-size: 14px;
    font-weight: 500;
}

.screening-error-block {
    margin-bottom: 14px;
}

.contact-block {
    margin-top: 4px;
}

.contact-heading {
    margin: 0 0 16px;
    color: var(--ink);
    font-size: 22px;
    font-weight: 700;
}

.contact-field {
    margin-bottom: 14px;
}

.contact-label {
    display: block;
    margin-bottom: 6px;
    color: var(--ink);
    font-size: 15px;
    font-weight: 500;
}

.contact-input {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid var(--field);
    border-radius: 12px;
    background-color: var(--field);
    color: var(--ink);
    font-family: inherit;
    font-size: 16px;
}

.contact-input::placeholder {
    color: var(--muted);
}

.contact-input:focus {
    border-color: var(--brand);
    background-color: var(--surface);
    outline: none;
}

.contact-input.is-wrong {
    border-color: #c0392b;
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 18px;
    cursor: pointer;
}

.consent input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.consent-marker {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    margin-top: 2px;
    border: 2px solid var(--muted);
    border-radius: 6px;
    background-color: var(--surface);
    transition: border-color 0.15s ease, background-color 0.15s ease;
}

.consent-marker::after {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 3px;
    background-color: transparent;
    transition: background-color 0.15s ease;
}

.consent input:checked + .consent-marker {
    border-color: var(--brand);
}

.consent input:checked + .consent-marker::after {
    background-color: var(--brand);
}

.consent input:focus-visible + .consent-marker {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

.consent.is-wrong .consent-marker {
    border-color: #c0392b;
}

.consent-text {
    color: var(--ink);
    font-size: 15px;
    line-height: 1.5;
}

.screening-done {
    padding: 26px 4px 10px;
    text-align: center;
}

.screening-done-mark {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background-color: var(--brand);
    color: var(--ink);
    font-size: 30px;
}

.screening-done-heading {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 26px;
    font-weight: 700;
}

.screening-done-text {
    margin: 0;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
}

.screening-card.htmx-request {
    opacity: 0.55;
    pointer-events: none;
    transition: opacity 0.12s ease;
}

.screening-error-notice {
    margin: 18px 0 0;
    padding: 12px 16px;
    border-radius: 10px;
    background-color: #fdecea;
    text-align: center;
}

.screening-question + .screening-question {
    margin-top: 32px;
}

.screening-question .choice-list {
    margin-bottom: 0;
}

.contact-block {
    margin-top: 32px;
    padding-top: 30px;
    border-top: 1px solid var(--field);
}

.consent-link {
    color: #a97400;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.consent-link:hover {
    color: var(--ink);
}

@keyframes choice-confirm {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(252, 179, 24, 0.55);
    }

    45% {
        transform: scale(1.14);
        box-shadow: 0 0 0 7px rgba(252, 179, 24, 0.28);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 11px rgba(252, 179, 24, 0);
    }
}

.choice input:checked ~ .choice-marker {
    animation: choice-confirm 0.42s ease-out;
}

.choice input:checked ~ .choice-label {
    font-weight: 500;
}

.screening-card.htmx-request {
    opacity: 1;
    pointer-events: none;
}

.screening-card.htmx-request .choice input:not(:checked) ~ .choice-marker,
.screening-card.htmx-request .choice input:not(:checked) ~ .choice-label {
    opacity: 0.4;
    transition: opacity 0.18s ease;
}
