:root {
    --navy-950: #241039;
    --navy-900: #30194d;
    --navy-850: #392157;
    --navy-800: #432960;
    --navy-700: #573b72;
    --blue-500: #9d67f1;
    --blue-400: #b789f6;
    --orange-500: #9d67f1;
    --orange-400: #b789f6;
    --orange-100: #f1e9fd;
    --white: #ffffff;
    --cream: #f6f1de;
    --slate-50: #fbf9f1;
    --slate-100: #f6f1de;
    --slate-200: #e7dfc8;
    --slate-300: #d6c9ad;
    --slate-500: #776b80;
    --slate-600: #62556f;
    --slate-700: #493a58;
    --slate-900: #30194d;
    --success: #9d67f1;
    --shadow-sm: 0 10px 30px rgba(48, 25, 77, 0.08);
    --shadow-md: 0 24px 70px rgba(48, 25, 77, 0.14);
    --shadow-lg: 0 36px 90px rgba(0, 0, 0, 0.22);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

.field[hidden],
[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--slate-900);
    background: var(--white);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
    font-family: "DM Sans", sans-serif;
}

img,
svg {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}

button,
a,
select,
input,
summary {
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.legal-bar {
    position: relative;
    z-index: 50;
    background: var(--navy-950);
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    letter-spacing: 0.02em;
}

.legal-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 34px;
    text-align: center;
}

.legal-bar p {
    margin: 0;
}

.legal-dot {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    background: var(--orange-500);
    box-shadow: 0 0 0 4px rgba(157, 103, 241, 0.16);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(48, 25, 77, 0.08);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: var(--white);
    background: linear-gradient(145deg, var(--orange-400), var(--orange-500));
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(157, 103, 241, 0.24);
}

.brand-mark {
    display: grid;
    place-items: center;

    width: 44px;
    height: 44px;

    background: transparent;

    border-radius: 14px;
    box-shadow: none;

    overflow: hidden;
}

.brand-mark img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}

.brand-copy {
    display: grid;
    line-height: 1.1;
}

.brand-copy strong {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand-copy small {
    margin-top: 5px;
    color: var(--slate-500);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-left: auto;
}

.desktop-nav a {
    position: relative;
    color: var(--slate-700);
    font-size: 14px;
    font-weight: 700;
}

.desktop-nav a::after {
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    content: "";
    background: var(--orange-500);
    transition: width 0.25s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 24px;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 800;
    line-height: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-small {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    font-size: 13px;
}

.button-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--orange-400), var(--orange-500));
    box-shadow: 0 16px 34px rgba(157, 103, 241, 0.27);
}

.button-primary:hover {
    box-shadow: 0 20px 40px rgba(157, 103, 241, 0.36);
}

.button-outline {
    color: var(--navy-900);
    background: transparent;
    border: 1px solid var(--slate-300);
}

.button-outline:hover {
    background: var(--slate-50);
}

.button-light {
    color: var(--navy-900);
    background: var(--white);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.button-outline-dark {
    min-height: 48px;
    color: var(--navy-900);
    background: transparent;
    border: 1px solid var(--slate-300);
}

.button-full {
    width: 100%;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    background:
        linear-gradient(90deg, rgba(36, 16, 57, 0.985) 0%, rgba(48, 25, 77, 0.97) 45%, rgba(48, 25, 77, 0.83) 100%),
        url("https://images.unsplash.com/photo-1605559424843-9e4c228bf1c2?auto=format&fit=crop&w=2000&q=82") center/cover no-repeat;
}

.hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to right, black, transparent 80%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.hero-glow-one {
    top: -180px;
    left: -120px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(157, 103, 241, 0.22), transparent 68%);
}

.hero-glow-two {
    right: 24%;
    bottom: -240px;
    width: 640px;
    height: 640px;
    background: radial-gradient(circle, rgba(157, 103, 241, 0.12), transparent 68%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.78fr);
    align-items: center;
    gap: 72px;
    padding-block: 76px 82px;
}

.hero-content {
    max-width: 660px;
    color: var(--white);
}

.eyebrow,
.section-label,
.form-kicker {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.82);
}

.eyebrow-icon {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    font-size: 12px;
}

.hero h1,
.section-heading h2,
.split-content h2,
.value-content h2,
.faq-intro h2,
.final-cta h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1.04;
}

.hero h1 {
    max-width: 640px;
    font-size: clamp(48px, 5.8vw, 78px);
}

.hero h1 span {
    display: block;
    color: var(--orange-400);
}

.hero-lead {
    max-width: 610px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 34px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    font-weight: 700;
}

.text-link:hover {
    color: var(--white);
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 630px;
    margin-top: 46px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.proof-icon {
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    color: var(--orange-400);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 13px;
    font-size: 12px;
    font-weight: 800;
}

.proof-item div {
    display: grid;
}

.proof-item strong {
    font-size: 13px;
}

.proof-item small {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 11px;
}

.form-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    background: rgba(255, 255, 255, 0.985);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 26px;
    box-shadow: var(--shadow-lg);
}

.form-card-topline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--orange-500), var(--blue-500));
}

.form-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.form-kicker {
    display: block;
    margin-bottom: 6px;
    color: var(--orange-500);
    font-size: 10px;
}

.form-heading h2 {
    margin: 0;
    color: var(--navy-900);
    font-family: "Manrope", sans-serif;
    font-size: 25px;
    letter-spacing: -0.04em;
    line-height: 1.18;
}

.secure-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    color: var(--success);
    background: rgba(157, 103, 241, 0.09);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.secure-badge::before {
    content: "●";
    font-size: 7px;
}

.form-progress {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 20px 0 22px;
}

.form-progress span {
    height: 4px;
    background: var(--slate-200);
    border-radius: 999px;
}

.form-progress .active {
    background: linear-gradient(90deg, var(--orange-500), var(--orange-400));
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.field {
    display: grid;
    gap: 7px;
}

.field-full {
    grid-column: 1 / -1;
}

.field label {
    color: var(--slate-700);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.025em;
}

.field input,
.field select {
    width: 100%;
    height: 47px;
    padding: 0 13px;
    color: var(--slate-900);
    background-color: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 11px;
    outline: none;
    font-size: 13px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field select {
    padding-right: 36px;
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--slate-500) 50%),
        linear-gradient(135deg, var(--slate-500) 50%, transparent 50%);
    background-position:
        calc(100% - 17px) 20px,
        calc(100% - 12px) 20px;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.field input::placeholder {
    color: #9b8fa2;
}

.field input:focus,
.field select:focus {
    background-color: var(--white);
    border-color: var(--blue-500);
    box-shadow: 0 0 0 4px rgba(157, 103, 241, 0.1);
}

.consent-row {
    display: grid;
    grid-template-columns: 17px 1fr;
    gap: 9px;
    margin-top: 16px;
    color: var(--slate-600);
    font-size: 10px;
    line-height: 1.5;
}

.consent-row input {
    width: 15px;
    height: 15px;
    margin: 2px 0 0;
    accent-color: var(--orange-500);
}

.consent-row a,
.consent-copy a {
    color: var(--blue-500);
    text-decoration: underline;
}

.consent-copy {
    margin: 11px 0 16px;
    color: var(--slate-500);
    font-size: 8.5px;
    line-height: 1.5;
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 12px 0 0;
    color: var(--slate-500);
    font-size: 10px;
}

.trust-strip {
    background: var(--cream);
    border-bottom: 1px solid #e7dfc8;
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 116px;
}

.trust-strip-grid div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border-right: 1px solid #ddd3b8;
}

.trust-strip-grid div:first-child {
    border-left: 1px solid #ddd3b8;
}

.trust-strip-grid strong {
    color: var(--navy-900);
    font-family: "Manrope", sans-serif;
    font-size: 20px;
}

.trust-strip-grid span {
    color: var(--slate-500);
    font-size: 12px;
}

.section {
    padding-block: 108px;
}

.section-light {
    background: var(--white);
}

.section-heading {
    max-width: 690px;
    margin-bottom: 50px;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section-label {
    display: inline-block;
    margin-bottom: 13px;
    color: var(--orange-500);
}

.section-label.light {
    color: var(--orange-400);
}

.section-heading h2,
.split-content h2,
.value-content h2,
.faq-intro h2,
.final-cta h2 {
    color: var(--navy-900);
    font-size: clamp(36px, 4.3vw, 54px);
}

.section-heading p,
.section-intro,
.value-content p,
.faq-intro p {
    margin: 20px 0 0;
    color: var(--slate-500);
    font-size: 17px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.step-card {
    position: relative;
    min-height: 320px;
    padding: 34px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(157, 103, 241, 0.35);
    box-shadow: var(--shadow-md);
}

.step-card.featured {
    color: var(--white);
    background: linear-gradient(145deg, var(--navy-900), var(--navy-700));
    border-color: transparent;
    transform: translateY(-14px);
}

.step-number {
    position: absolute;
    top: 26px;
    right: 28px;
    color: rgba(48, 25, 77, 0.08);
    font-family: "Manrope", sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
}

.step-card.featured .step-number {
    color: rgba(255, 255, 255, 0.08);
}

.step-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    color: var(--orange-500);
    background: var(--orange-100);
    border-radius: 17px;
}

.step-card.featured .step-icon {
    color: var(--orange-400);
    background: rgba(255, 255, 255, 0.08);
}

.step-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.step-card h3,
.benefits-list h3,
.case-card h3 {
    margin: 24px 0 10px;
    font-family: "Manrope", sans-serif;
    font-size: 21px;
    letter-spacing: -0.03em;
}

.step-card p,
.benefits-list p,
.case-card p {
    margin: 0;
    color: var(--slate-500);
    font-size: 14px;
}

.step-card.featured p {
    color: rgba(255, 255, 255, 0.64);
}

.section-dark {
    position: relative;
    overflow: hidden;

    min-height: 760px;

    display: flex;
    align-items: center;

    color: var(--white);

    background:
        linear-gradient(
            90deg,
            rgba(36, 16, 57, 0.98) 0%,
            rgba(48, 25, 77, 0.94) 34%,
            rgba(48, 25, 77, 0.72) 58%,
            rgba(48, 25, 77, 0.42) 100%
        ),
        url("assets/images/recovery-background.png")
        right center / cover
        no-repeat;
}

.section-dark .split-section {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: minmax(0, 610px) 1fr;
    align-items: center;
}

.section-dark .split-content {
    max-width: 610px;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 0.94fr;
    align-items: center;
    gap: 82px;
}

.image-card-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: var(--white);
    background: var(--success);
    border-radius: 13px;
    font-weight: 800;
}

.image-card div:last-child {
    display: grid;
}

.image-card strong {
    color: var(--navy-900);
    font-size: 14px;
}

.image-card span {
    color: var(--slate-500);
    font-size: 11px;
}

.split-content h2 {
    color: var(--white);
}

.section-intro {
    color: rgba(255, 255, 255, 0.82);
}

.benefits-list {
    display: grid;
    gap: 26px;
    margin: 34px 0 36px;
}

.benefits-list article {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 16px;
}

.benefit-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: var(--cream);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 13px;
    font-size: 11px;
    font-weight: 800;
}

.benefits-list h3 {
    margin: 0 0 6px;
    color: var(--white);
    font-size: 18px;
}

.benefits-list p {
    color: rgba(255, 255, 255, 0.78);
}

.cases-section {
    background: var(--slate-50);
}

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

.case-card {
    padding: 30px 26px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(48, 25, 77, 0.05);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.case-card:hover {
    transform: translateY(-6px);
    border-color: rgba(157, 103, 241, 0.4);
}

.case-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    background: var(--orange-100);
    border-radius: 16px;
    font-size: 24px;
}

.case-card h3 {
    margin-top: 22px;
}

.value-section {
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(48, 25, 77, 0.98), rgba(67, 41, 96, 0.94)),
        url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1800&q=82") center/cover no-repeat;
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    align-items: center;
    gap: 80px;
}

.value-content h2 {
    color: var(--white);
}

.value-content p {
    color: rgba(255, 255, 255, 0.65);
}

.value-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.value-list div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: 90px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    font-size: 14px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.value-list span {
    display: grid;
    place-items: center;
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
    color: var(--navy-900);
    background: var(--orange-400);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 900;
}

.faq-section {
    background: var(--white);
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    align-items: start;
    gap: 82px;
}

.faq-intro {
    position: sticky;
    top: 120px;
}

.faq-intro .button {
    margin-top: 28px;
}

.faq-list {
    border-top: 1px solid var(--slate-200);
}

.faq-list details {
    border-bottom: 1px solid var(--slate-200);
}

.faq-list summary {
    position: relative;
    padding: 24px 54px 24px 0;
    cursor: pointer;
    list-style: none;
    color: var(--navy-900);
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    position: absolute;
    top: 50%;
    right: 4px;
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    content: "+";
    color: var(--navy-900);
    background: var(--slate-100);
    border-radius: 50%;
    font-size: 20px;
    transform: translateY(-50%);
    transition: transform 0.2s ease, background 0.2s ease;
}

.faq-list details[open] summary::after {
    content: "−";
    color: var(--white);
    background: var(--orange-500);
}

.faq-list details p {
    max-width: 700px;
    margin: -6px 0 24px;
    color: var(--slate-500);
    font-size: 15px;
}

.final-cta {
    padding-block: 72px;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
}

.final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.final-cta h2 {
    max-width: 690px;
    color: var(--white);
    font-size: clamp(34px, 4vw, 52px);
}

.final-cta p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.62);
}

.site-footer {
    color: rgba(255, 255, 255, 0.62);
    background: var(--navy-950);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr repeat(3, 0.8fr);
    gap: 54px;
    padding-block: 72px 50px;
}

.brand-footer {
    color: var(--white);
}

.brand-footer .brand-copy small {
    color: rgba(255, 255, 255, 0.48);
}

.footer-brand p {
    max-width: 430px;
    margin: 22px 0 0;
    font-size: 13px;
}

.footer-grid h3 {
    margin: 0 0 18px;
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
}

.footer-grid > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-grid a,
.footer-grid span {
    margin-bottom: 10px;
    font-size: 12px;
}

.footer-grid a:hover {
    color: var(--white);
}

.footer-disclaimer {
    padding-block: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-disclaimer p {
    margin: 0;
    font-size: 10px;
    line-height: 1.75;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
    font-size: 11px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a:hover {
    color: var(--white);
}

@media (max-width: 1080px) {
    .desktop-nav {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr 430px;
        gap: 40px;
    }

    .hero-proof {
        grid-template-columns: 1fr;
    }

    .split-section,
    .value-grid,
    .faq-layout {
        gap: 50px;
    }

    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero-grid,
    .split-section,
    .value-grid,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .section-dark .image-panel {
    transform: translateY(0);
    }

    .section-dark {
    min-height: auto;

    background:
        linear-gradient(
            180deg,
            rgba(36, 16, 57, 0.96) 0%,
            rgba(48, 25, 77, 0.92) 100%
        ),
        url("assets/images/recovery-background.png")
        center / cover
        no-repeat;
    }

    .section-dark .split-section {
        grid-template-columns: 1fr;
    }

    .section-dark .split-content {
        order: 1;
    }

    .section-dark .image-panel {
        order: 2;
    }

    .hero-grid {
        padding-block: 70px;
    }

    .hero-content {
        max-width: 720px;
    }

    .hero-proof {
        grid-template-columns: repeat(3, 1fr);
    }

    .form-card {
        max-width: 700px;
    }

    .trust-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-strip-grid div:nth-child(3) {
        border-left: 1px solid #ddd3b8;
    }

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

    .step-card.featured {
        transform: none;
    }

    .image-panel {
        min-height: 520px;
    }

    .faq-intro {
        position: static;
    }

    .final-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1.5fr repeat(2, 1fr);
    }

    .footer-grid > div:last-child {
        grid-column: 2 / -1;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }
.legal-bar-inner {
        align-items: flex-start;
        padding-block: 8px;
        text-align: left;
    }

    .header-inner {
        min-height: 70px;
    }

    .header-inner > .button {
        display: none;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
    }

    .brand-copy strong {
        font-size: 14px;
    }

    .brand-copy small {
        font-size: 8px;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        padding-block: 56px;
    }

    .hero h1 {
        font-size: clamp(42px, 13vw, 60px);
    }

    .hero-lead {
        font-size: 16px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 18px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-actions .text-link {
        justify-content: center;
    }

    .hero-proof {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 24px 18px;
        border-radius: 22px;
    }

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

    .field-full {
        grid-column: auto;
    }

    .form-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .trust-strip-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-strip-grid div {
        min-height: 90px;
        text-align: center;
    }

    .section {
        padding-block: 78px;
    }

    .section-heading h2,
    .split-content h2,
    .value-content h2,
    .faq-intro h2,
    .final-cta h2 {
        font-size: clamp(34px, 10vw, 46px);
    }

    .step-card {
        min-height: 0;
        padding: 28px;
    }

    .image-panel {
        min-height: 430px;
    }

    .image-card {
        right: 16px;
        bottom: 16px;
        left: 16px;
    }

    .cases-grid,
    .value-list {
        grid-template-columns: 1fr;
    }

    .faq-list summary {
        font-size: 16px;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-grid > div:last-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        padding-block: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* =========================================================
   LEGAL PAGES
   ========================================================= */

.legal-page {
    background: var(--slate-50);
}

.legal-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(120deg, rgba(36, 16, 57, 0.995), rgba(48, 25, 77, 0.96) 54%, rgba(87, 59, 114, 0.94)),
        radial-gradient(circle at 80% 20%, rgba(157, 103, 241, 0.35), transparent 35%);
}

.legal-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.38;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to right, black, transparent 88%);
}

.legal-hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.legal-hero-glow-one {
    top: -170px;
    right: -80px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(157, 103, 241, 0.3), transparent 68%);
}

.legal-hero-glow-two {
    bottom: -240px;
    left: 12%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(246, 241, 222, 0.12), transparent 68%);
}

.legal-hero-inner {
    position: relative;
    z-index: 1;
    padding-block: 96px 92px;
}

.legal-hero h1 {
    max-width: 900px;
    margin: 18px 0 18px;
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-size: clamp(46px, 6vw, 78px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.legal-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.69);
    font-size: 18px;
}

.policy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.policy-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    backdrop-filter: blur(8px);
}

.legal-content-section {
    padding-block: 74px 100px;
}

.legal-shell {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    align-items: start;
    gap: 54px;
}

.legal-sidebar {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 18px;
}

.legal-sidebar-card,
.legal-help-card {
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
}

.legal-sidebar-label {
    display: block;
    margin-bottom: 12px;
    color: var(--slate-500);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.legal-sidebar nav {
    display: grid;
    gap: 6px;
}

.legal-sidebar nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    padding: 0 12px;
    color: var(--slate-600);
    border-radius: 11px;
    font-size: 13px;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.legal-sidebar nav a:hover {
    color: var(--navy-900);
    background: var(--slate-50);
    transform: translateX(2px);
}

.legal-sidebar nav a.active {
    color: var(--navy-900);
    background: var(--orange-100);
}

.legal-sidebar nav a span {
    color: var(--orange-500);
}

.legal-help-card {
    color: rgba(255, 255, 255, 0.7);
    background: linear-gradient(145deg, var(--navy-900), var(--navy-700));
    border-color: rgba(255, 255, 255, 0.08);
}

.legal-help-card span,
.legal-help-card strong,
.legal-help-card a {
    display: block;
}

.legal-help-card span {
    font-size: 11px;
}

.legal-help-card strong {
    margin: 4px 0 14px;
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
}

.legal-help-card a {
    color: var(--orange-400);
    font-size: 12px;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.legal-document {
    padding: 56px 64px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 26px;
    box-shadow: var(--shadow-md);
}

.legal-document section {
    position: relative;
    padding-block: 44px;
    border-bottom: 1px solid var(--slate-200);
}

.legal-document section:first-of-type {
    padding-top: 12px;
}

.legal-document section:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.legal-section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 25px;
    margin-bottom: 14px;
    color: var(--navy-900);
    background: var(--orange-100);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.legal-document h2 {
    margin: 0 0 18px;
    color: var(--navy-900);
    font-family: "Manrope", sans-serif;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.legal-document h3 {
    margin: 30px 0 10px;
    color: var(--navy-900);
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    letter-spacing: -0.02em;
}

.legal-document p,
.legal-document li,
.legal-document address {
    color: var(--slate-600);
    font-size: 15px;
    line-height: 1.82;
}

.legal-document p {
    margin: 0 0 16px;
}

.legal-document p:last-child {
    margin-bottom: 0;
}

.legal-document ul,
.legal-document ol {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding-left: 24px;
}

.legal-document li::marker {
    color: var(--orange-500);
    font-weight: 800;
}

.legal-document a {
    color: #7740c8;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(157, 103, 241, 0.32);
    text-underline-offset: 3px;
}

.legal-document address {
    padding: 20px 22px;
    background: var(--slate-50);
    border-left: 3px solid var(--orange-500);
    border-radius: 0 14px 14px 0;
    font-style: normal;
}

.legal-callout {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    margin: 28px 0;
    padding: 20px;
    background: var(--orange-100);
    border: 1px solid rgba(157, 103, 241, 0.24);
    border-radius: 16px;
}

.legal-callout-warning {
    margin: 0 0 38px;
    background: #fff9e9;
    border-color: #ead9a9;
}

.legal-callout-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--white);
    background: var(--orange-500);
    border-radius: 12px;
    font-weight: 900;
}

.legal-callout-warning .legal-callout-icon {
    color: var(--navy-900);
    background: var(--cream);
    border: 1px solid #dfcf9f;
}

.legal-callout strong {
    display: block;
    margin-bottom: 4px;
    color: var(--navy-900);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
}

.legal-callout p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
}

.legal-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 18px 0 42px;
}

.legal-card {
    display: block;
    padding: 26px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 17px;
    text-decoration: none !important;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.legal-card:hover {
    transform: translateY(-4px);
    border-color: rgba(157, 103, 241, 0.45);
    box-shadow: var(--shadow-sm);
}

.legal-card > span {
    color: var(--orange-500);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.legal-card h3 {
    margin: 10px 0 8px;
    font-size: 20px;
}

.legal-card p {
    min-height: 74px;
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.65;
}

.legal-card strong {
    color: var(--navy-900);
    font-size: 12px;
}

.agent-card {
    display: grid;
    gap: 8px;
    margin: 22px 0;
    padding: 28px;
    color: rgba(255, 255, 255, 0.72);
    background: linear-gradient(145deg, var(--navy-900), var(--navy-700));
    border-radius: 18px;
}

.agent-card > span {
    color: var(--orange-400);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.agent-card > strong {
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-size: 22px;
}

.agent-card address {
    padding: 0;
    color: rgba(255, 255, 255, 0.72);
    background: transparent;
    border: 0;
}

.agent-card a {
    color: var(--orange-400);
}

.agent-card p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
}

.legal-small-note {
    padding: 16px 18px;
    color: var(--slate-600);
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    font-size: 12px !important;
}

@media (max-width: 980px) {
    .legal-shell {
        grid-template-columns: 1fr;
    }

    .legal-sidebar {
        position: static;
        grid-template-columns: 1.4fr 0.6fr;
    }

    .legal-sidebar-card nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .legal-hero-inner {
        padding-block: 68px 64px;
    }

    .legal-hero h1 {
        font-size: clamp(42px, 13vw, 58px);
    }

    .legal-hero p {
        font-size: 16px;
    }

    .policy-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .legal-content-section {
        padding-block: 40px 70px;
    }

    .legal-sidebar {
        grid-template-columns: 1fr;
    }

    .legal-sidebar-card nav {
        grid-template-columns: 1fr;
    }

    .legal-document {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .legal-document section {
        padding-block: 34px;
    }

    .legal-card-grid {
        grid-template-columns: 1fr;
    }

    .legal-card p {
        min-height: auto;
    }

    .legal-callout {
        grid-template-columns: 1fr;
    }
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step-actions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.form-step-actions .button {
    flex: 1;
}

.form-progress span {
    height: 4px;
    background: var(--slate-200);
    border-radius: 999px;
}

.form-progress span.done,
.form-progress span.active {
    background: linear-gradient(
        90deg,
        var(--orange-500),
        var(--orange-400)
    );
}

.field textarea {
    width: 100%;
    min-height: 110px;
    padding: 13px;
    color: var(--slate-900);
    background-color: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 11px;
    outline: none;
    font-size: 13px;
    line-height: 1.5;
    resize: vertical;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field textarea::placeholder {
    color: #9b8fa2;
}

.field textarea:focus {
    background-color: var(--white);
    border-color: var(--blue-500);
    box-shadow: 0 0 0 4px rgba(157, 103, 241, 0.1);
}

.button .button-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 26px;
    height: 26px;

    margin-left: 4px;

    font-size: 20px;
    font-weight: 900;
    line-height: 1;

    transform: translateY(-1px);

    transition:
        transform 0.22s ease,
        opacity 0.22s ease;
}

.button:hover .button-arrow {
    transform: translate(5px, -1px);
}
.button .button-arrow-back {
    margin-left: 0;
    margin-right: 4px;
}

.button:hover .button-arrow-back {
    transform: translate(-5px, -1px);
}

/* =========================================================
   EMAIL OTP VERIFICATION
   ========================================================= */

.otp-box {
    gap: 12px;
    padding: 14px;
    background: rgba(157, 103, 241, 0.06);
    border: 1px solid rgba(157, 103, 241, 0.18);
    border-radius: 14px;
}

.otp-code-area {
    display: grid;
    gap: 10px;
}

.otp-code-area[hidden] {
    display: none !important;
}

.otp-status {
    margin: 0;
    color: var(--slate-500);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.5;
}

.otp-status.success {
    color: #15803d;
}

.otp-status.error {
    color: #b91c1c;
}

.otp-status.loading {
    color: var(--orange-500);
}

#emailOtp {
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 7px;
}

#sendOtpBtn:disabled,
#verifyOtpBtn:disabled,
#submitLeadBtn:disabled {
    cursor: not-allowed;
    opacity: 0.62;
    transform: none;
}

/* =========================================================
   SUCCESS MODAL
   ========================================================= */

.success-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(17, 12, 28, 0.72);
    backdrop-filter: blur(8px);
}

.success-modal[hidden] {
    display: none !important;
}

.success-modal-card {
    width: min(100%, 420px);
    padding: 34px;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 30px 90px rgba(17, 12, 28, 0.28);
    text-align: center;
}

.success-modal-icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #30194d, #9d67f1);
    color: #ffffff;
    font-size: 30px;
    font-weight: 900;
}

.success-modal-card h3 {
    margin: 0 0 10px;
    color: #30194d;
    font-family: var(--font-heading);
    font-size: 26px;
    line-height: 1.2;
}

.success-modal-card p {
    margin: 0 0 24px;
    color: var(--slate-600);
    font-size: 15px;
    line-height: 1.6;
}

/* =========================================================
   HEADER PHONE
   ========================================================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #30194d;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.header-phone-icon {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(157, 103, 241, 0.14);
    color: #30194d;
    font-size: 14px;
}

.header-phone:hover {
    color: #9d67f1;
}

@media (max-width: 920px) {
    .header-phone span:last-child {
        display: none;
    }
}