.home-page {
    --home-ink: #071829;
    --home-slate: #40546a;
    --home-muted: #6f8194;
    --home-line: #dce6ef;
    --home-cloud: #f4f8fb;
    --home-blue: #3d8df5;
    --home-blue-dark: #1769cf;
    --home-blue-soft: #eaf4ff;
    --home-cyan: #35d3c1;
    --home-white: #ffffff;
    color: var(--home-ink);
    overflow: hidden;
}

.home-page *,
.home-page *::before,
.home-page *::after {
    box-sizing: border-box;
}

.home-hero {
    position: relative;
    padding: clamp(72px, 8vw, 112px) 0 0;
    background:
        linear-gradient(rgba(22, 105, 207, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22, 105, 207, .035) 1px, transparent 1px),
        radial-gradient(circle at 86% 10%, rgba(53, 211, 193, .14), transparent 24%),
        radial-gradient(circle at 8% 12%, rgba(61, 141, 245, .11), transparent 25%),
        linear-gradient(180deg, #f8fbfe 0%, #ffffff 72%);
    background-size: 42px 42px, 42px 42px, auto, auto, auto;
}

.home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(440px, .96fr);
    gap: clamp(48px, 7vw, 94px);
    align-items: center;
}

.home-kicker,
.home-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--home-blue-dark);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .1em;
    line-height: 1.25;
    text-transform: uppercase;
}

.home-kicker {
    padding: 8px 12px;
    border: 1px solid #cfe4fb;
    border-radius: 999px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 9px 26px rgba(43, 111, 185, .06);
}

.home-kicker > i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--home-cyan);
    box-shadow: 0 0 0 5px rgba(53, 211, 193, .12);
}

.home-hero h1 {
    max-width: 760px;
    margin: 22px 0 0;
    color: var(--home-ink);
    font-size: clamp(3rem, 5.1vw, 5.25rem);
    font-weight: 870;
    letter-spacing: -.064em;
    line-height: .98;
}

.home-hero h1 span {
    color: transparent;
    background: linear-gradient(105deg, #1769cf 0%, #3d8df5 54%, #1eb7a5 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.home-lead {
    max-width: 700px;
    margin: 24px 0 0;
    color: var(--home-slate);
    font-size: clamp(1.05rem, 1.7vw, 1.2rem);
    line-height: 1.72;
}

.home-lead strong {
    color: #173550;
    font-weight: 750;
}

.home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 31px;
}

.home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 13px 19px;
    border: 1px solid transparent;
    border-radius: 11px;
    font-size: .9rem;
    font-weight: 810;
    line-height: 1;
    text-decoration: none;
    transition: color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

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

.home-button-primary {
    color: var(--home-white);
    background: linear-gradient(135deg, var(--home-blue-dark), var(--home-blue));
    box-shadow: 0 14px 30px rgba(23, 105, 207, .24);
}

.home-button-primary:hover {
    color: var(--home-white);
    background: linear-gradient(135deg, #0e5cb9, #2f82ee);
    box-shadow: 0 17px 37px rgba(23, 105, 207, .32);
}

.home-button-secondary {
    border-color: #cfdbe6;
    color: var(--home-ink);
    background: rgba(255, 255, 255, .86);
}

.home-button-secondary:hover {
    border-color: #9bc8f8;
    color: #0c5fbf;
    background: var(--home-white);
}

.home-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 23px 0 0;
    padding: 0;
    color: #6a7d91;
    font-size: .78rem;
    font-weight: 680;
    list-style: none;
}

.home-trust li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.home-trust i {
    color: #1eb79c;
    font-size: .76rem;
}

.home-product {
    position: relative;
    min-height: 480px;
    display: grid;
    place-items: center;
}

.home-product::before {
    content: "";
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(61, 141, 245, .13), rgba(53, 211, 193, .05) 49%, transparent 70%);
}

.home-product-window {
    position: relative;
    z-index: 2;
    width: min(100%, 520px);
    overflow: hidden;
    border: 1px solid #203b55;
    border-radius: 17px;
    color: #dcecff;
    background: #0a1c2e;
    box-shadow: 0 38px 84px rgba(7, 24, 41, .25), 0 0 0 1px rgba(255, 255, 255, .025) inset;
}

.home-product-topbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 44px;
    padding: 0 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    color: #7890a8;
    font-size: .63rem;
    font-weight: 700;
}

.home-product-dots {
    display: flex;
    gap: 5px;
}

.home-product-dots i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff7d74;
}

.home-product-dots i:nth-child(2) { background: #e7c764; }
.home-product-dots i:nth-child(3) { background: #45c697; }

.home-online {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #72b6a4;
}

.home-online > i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #35d3a8;
    box-shadow: 0 0 9px rgba(53, 211, 168, .65);
}

.home-product-body {
    padding: 22px;
}

.home-product-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-product-heading > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.home-product-heading small,
.home-product-heading > span {
    color: #6f879f;
    font-size: .62rem;
}

.home-product-heading strong {
    font-size: .9rem;
}

.home-product-heading > span {
    padding: 6px 9px;
    border: 1px solid #27425d;
    border-radius: 7px;
}

.home-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
    margin-top: 17px;
}

.home-metrics article,
.home-chart,
.home-connections {
    border: 1px solid rgba(255, 255, 255, .075);
    border-radius: 10px;
    background: rgba(255, 255, 255, .025);
}

.home-metrics article {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 12px;
}

.home-metrics article > i {
    display: grid;
    place-items: center;
    width: 25px;
    height: 25px;
    margin-bottom: 10px;
    border-radius: 7px;
    color: #6cb4ff;
    background: rgba(61, 141, 245, .13);
    font-size: .72rem;
}

.home-metrics article:nth-child(2) > i {
    color: #55d8c7;
    background: rgba(53, 211, 193, .11);
}

.home-metrics span,
.home-chart > span,
.home-connections > span {
    color: #70889f;
    font-size: .57rem;
}

.home-metrics strong {
    margin-top: 4px;
    overflow: hidden;
    color: #e1efff;
    font-size: .69rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-metrics small {
    margin-top: 5px;
    overflow: hidden;
    color: #718aa2;
    font-size: .51rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-product-bottom {
    display: grid;
    grid-template-columns: 1.07fr .93fr;
    gap: 9px;
    margin-top: 9px;
}

.home-chart,
.home-connections {
    min-height: 140px;
    padding: 12px;
}

.home-chart > div {
    display: flex;
    align-items: end;
    gap: 6px;
    height: 91px;
    padding-top: 14px;
}

.home-chart > div i {
    flex: 1;
    height: var(--height);
    min-height: 8px;
    border-radius: 4px 4px 2px 2px;
    background: linear-gradient(180deg, #59abff, #276fc1);
}

.home-chart > div i:nth-child(even) {
    background: linear-gradient(180deg, #48d6c2, #238b8a);
}

.home-connections ul {
    display: grid;
    gap: 10px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.home-connections li {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 7px;
    align-items: center;
    color: #9aafc4;
    font-size: .55rem;
}

.home-connections li > i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4da4ff;
}

.home-connections li:nth-child(2) > i { background: #43cfbc; }
.home-connections li:nth-child(3) > i { background: #8e83ff; }

.home-connections b {
    color: #64cdb1;
    font-size: .49rem;
    font-weight: 700;
}

.home-floating {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 13px;
    border: 1px solid #d6e7f7;
    border-radius: 11px;
    color: var(--home-ink);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 17px 42px rgba(7, 24, 41, .14);
    backdrop-filter: blur(10px);
}

.home-floating > i {
    display: grid;
    place-items: center;
    width: 29px;
    height: 29px;
    border-radius: 8px;
    color: #0e62c2;
    background: #e8f3ff;
}

.home-floating > span {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: var(--home-muted);
    font-size: .56rem;
}

.home-floating strong {
    color: #193651;
    font-size: .65rem;
}

.home-floating-top {
    top: 42px;
    right: -16px;
}

.home-floating-bottom {
    bottom: 34px;
    left: -24px;
}

.home-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: clamp(58px, 7vw, 92px);
    border-top: 1px solid var(--home-line);
}

.home-proof > div {
    padding: 24px 28px 29px;
}

.home-proof > div:first-child {
    padding-left: 0;
}

.home-proof > div + div {
    border-left: 1px solid var(--home-line);
}

.home-proof strong,
.home-proof span {
    display: block;
}

.home-proof strong {
    font-size: .85rem;
    font-weight: 820;
}

.home-proof span {
    margin-top: 4px;
    color: var(--home-muted);
    font-size: .72rem;
}

.home-section {
    padding: clamp(80px, 9vw, 122px) 0;
}

.home-section-heading {
    max-width: 780px;
    margin-bottom: 44px;
}

.home-section-heading-split {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(310px, .85fr);
    gap: clamp(42px, 7vw, 96px);
    align-items: end;
    max-width: none;
}

.home-section-heading h2,
.home-fit h2,
.home-faq h2,
.home-final h2 {
    margin: 13px 0 0;
    color: var(--home-ink);
    font-size: clamp(2.3rem, 4.2vw, 4rem);
    font-weight: 860;
    letter-spacing: -.055em;
    line-height: 1.03;
}

.home-section-heading > p,
.home-section-heading-split > p,
.home-faq-intro > p,
.home-final-card p {
    margin: 17px 0 0;
    color: var(--home-muted);
    font-size: 1rem;
    line-height: 1.72;
}

.home-services {
    background: var(--home-white);
}

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

.home-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 340px;
    padding: clamp(25px, 3vw, 36px);
    overflow: hidden;
    border: 1px solid var(--home-line);
    border-radius: 20px;
    background: var(--home-white);
    box-shadow: 0 14px 38px rgba(7, 24, 41, .045);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.home-service-card::after {
    content: "";
    position: absolute;
    right: -65px;
    bottom: -85px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(61, 141, 245, .1), transparent 68%);
    pointer-events: none;
}

.home-service-card:hover {
    border-color: #acd2fb;
    box-shadow: 0 23px 55px rgba(26, 102, 183, .11);
    transform: translateY(-4px);
}

.home-service-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    border: 1px solid #cce2fa;
    border-radius: 13px;
    color: var(--home-blue-dark);
    background: var(--home-blue-soft);
    font-size: 1.15rem;
}

.home-service-card > small {
    color: var(--home-blue-dark);
    font-size: .66rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.home-service-card h3 {
    margin: 9px 0 0;
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    font-weight: 830;
    letter-spacing: -.035em;
}

.home-service-card p {
    max-width: 530px;
    margin: 13px 0 0;
    color: var(--home-muted);
    font-size: .94rem;
    line-height: 1.68;
}

.home-service-card > a {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    margin-top: auto;
    padding-top: 25px;
    color: var(--home-ink);
    font-size: .82rem;
    font-weight: 800;
    text-decoration: none;
}

.home-service-card > a i {
    color: var(--home-blue-dark);
    transition: transform .18s ease;
}

.home-service-card > a:hover i {
    transform: translateX(3px);
}

.home-fit {
    color: var(--home-white);
    background:
        radial-gradient(circle at 14% 12%, rgba(61, 141, 245, .15), transparent 25%),
        linear-gradient(145deg, #071829, #0b2137);
}

.home-fit-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
    gap: clamp(55px, 9vw, 125px);
    align-items: center;
}

.home-fit .home-eyebrow {
    color: #78b9ff;
}

.home-fit h2 {
    color: var(--home-white);
}

.home-fit-copy p {
    max-width: 530px;
    margin: 20px 0 0;
    color: #9eb1c4;
    font-size: 1rem;
    line-height: 1.72;
}

.home-fit-copy > a,
.home-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 26px;
    color: #83c0ff;
    font-size: .85rem;
    font-weight: 800;
    text-decoration: none;
}

.home-fit-points {
    border-top: 1px solid rgba(255, 255, 255, .11);
}

.home-fit-points article {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.home-fit-points article > span {
    color: var(--home-cyan);
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .1em;
}

.home-fit-points h3 {
    margin: 0;
    color: #eaf4ff;
    font-size: 1.1rem;
    font-weight: 790;
}

.home-fit-points p {
    margin: 7px 0 0;
    color: #8ea4b9;
    font-size: .88rem;
    line-height: 1.6;
}

.home-cases {
    background: var(--home-cloud);
}

.home-case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}

.home-case-grid > article {
    display: flex;
    flex-direction: column;
    min-height: 355px;
    padding: 27px;
    border: 1px solid #d8e3ed;
    border-radius: 19px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 13px 35px rgba(7, 24, 41, .045);
}

.home-case-tag {
    align-self: flex-start;
    padding: 6px 9px;
    border: 1px solid #cfe4fb;
    border-radius: 999px;
    color: #1769cf;
    background: #eef7ff;
    font-size: .62rem;
    font-weight: 820;
}

.home-case-grid h3 {
    margin: 48px 0 0;
    font-size: 1.43rem;
    font-weight: 820;
    letter-spacing: -.033em;
    line-height: 1.15;
}

.home-case-grid p {
    margin: 14px 0 0;
    color: var(--home-muted);
    font-size: .88rem;
    line-height: 1.65;
}

.home-case-grid ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: auto 0 0;
    padding: 25px 0 0;
    list-style: none;
}

.home-case-grid li {
    padding: 6px 8px;
    border: 1px solid #dae5ee;
    border-radius: 7px;
    color: #52677c;
    background: #f8fafc;
    font-size: .64rem;
    font-weight: 730;
}

.home-cases-action {
    margin-top: 28px;
}

.home-cases .home-text-link {
    margin-top: 0;
    color: var(--home-blue-dark);
}

.home-process {
    background: var(--home-white);
}

.home-process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-process-grid::before {
    content: "";
    position: absolute;
    top: 18px;
    right: 8%;
    left: 8%;
    height: 1px;
    background: linear-gradient(90deg, #9bcafb, #d4e8fb, #9ee2d8);
}

.home-process-grid li {
    position: relative;
    z-index: 1;
    min-height: 205px;
    padding: 0 25px 0 0;
}

.home-process-grid li + li {
    padding-left: 25px;
    border-left: 1px solid var(--home-line);
}

.home-process-grid li > span {
    display: grid;
    place-items: center;
    width: 37px;
    height: 37px;
    border: 1px solid #a5cffb;
    border-radius: 50%;
    color: var(--home-blue-dark);
    background: var(--home-white);
    box-shadow: 0 0 0 7px var(--home-white);
    font-size: .62rem;
    font-weight: 900;
}

.home-process-grid h3 {
    margin: 27px 0 0;
    font-size: 1.12rem;
    font-weight: 820;
}

.home-process-grid p {
    margin: 8px 0 0;
    color: var(--home-muted);
    font-size: .86rem;
    line-height: 1.62;
}

.home-faq {
    background: var(--home-cloud);
}

.home-faq-grid {
    display: grid;
    grid-template-columns: minmax(0, .75fr) minmax(500px, 1.25fr);
    gap: clamp(55px, 9vw, 120px);
    align-items: start;
}

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

.home-faq h2 {
    font-size: clamp(2.2rem, 3.8vw, 3.55rem);
}

.home-accordion {
    border-top: 1px solid #ccd9e5;
}

.home-accordion details {
    border-bottom: 1px solid #ccd9e5;
}

.home-accordion summary {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 22px 0;
    cursor: pointer;
    font-size: .96rem;
    font-weight: 780;
    list-style: none;
}

.home-accordion summary::-webkit-details-marker {
    display: none;
}

.home-accordion summary i {
    display: grid;
    place-items: center;
    width: 27px;
    height: 27px;
    border: 1px solid #bdcddd;
    border-radius: 50%;
    color: var(--home-blue-dark);
    transition: transform .18s ease;
}

.home-accordion details[open] summary i {
    transform: rotate(45deg);
}

.home-accordion details p {
    max-width: 700px;
    margin: -3px 50px 22px 0;
    color: var(--home-muted);
    font-size: .88rem;
    line-height: 1.68;
}

.home-final {
    padding: clamp(75px, 9vw, 115px) 0;
    background: var(--home-white);
}

.home-final-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 52px;
    align-items: end;
    padding: clamp(38px, 6vw, 70px);
    overflow: hidden;
    border: 1px solid #1d4163;
    border-radius: 27px;
    color: var(--home-white);
    background:
        radial-gradient(circle at 92% 0, rgba(53, 211, 193, .17), transparent 27%),
        radial-gradient(circle at 7% 100%, rgba(61, 141, 245, .22), transparent 32%),
        linear-gradient(135deg, #0c2d4f, #071829);
    box-shadow: 0 30px 70px rgba(7, 24, 41, .18);
}

.home-final .home-eyebrow {
    color: #7ec0ff;
}

.home-final h2 {
    max-width: 740px;
    color: var(--home-white);
    font-size: clamp(2.25rem, 4vw, 3.85rem);
}

.home-final-card p {
    max-width: 680px;
    color: #a7bad0;
}

.home-final-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 232px;
}

.home-button-light {
    width: 100%;
    color: var(--home-ink);
    background: var(--home-white);
    box-shadow: 0 15px 33px rgba(0, 0, 0, .17);
}

.home-button-light:hover {
    color: #0c5ebd;
    background: #f1f8ff;
}

.home-final-action small {
    color: #7890a8;
    font-size: .65rem;
}

@media (max-width: 1080px) {
    .home-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(390px, .9fr);
        gap: 40px;
    }

    .home-floating-top { right: 0; }
    .home-floating-bottom { left: 0; }
}

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

    .home-hero-copy {
        max-width: 760px;
    }

    .home-product {
        width: min(100%, 640px);
        margin-inline: auto;
    }

    .home-section-heading-split {
        gap: 13px;
    }

    .home-section-heading-split > p {
        max-width: 720px;
    }

    .home-fit-grid {
        gap: 48px;
    }

    .home-case-grid {
        grid-template-columns: 1fr;
    }

    .home-case-grid > article {
        min-height: 285px;
    }

    .home-case-grid h3 {
        margin-top: 35px;
    }

    .home-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 35px 0;
    }

    .home-process-grid::before {
        display: none;
    }

    .home-process-grid li:nth-child(3) {
        padding-left: 0;
        border-left: 0;
    }

    .home-faq-grid {
        gap: 39px;
    }

    .home-faq-intro {
        position: static;
    }

    .home-final-card {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .home-final-action {
        align-items: flex-start;
        min-width: 0;
    }

    .home-button-light {
        width: auto;
    }
}

@media (max-width: 680px) {
    .home-hero {
        padding-top: 58px;
    }

    .home-kicker {
        padding: 7px 10px;
        font-size: .62rem;
        letter-spacing: .075em;
    }

    .home-hero h1 {
        font-size: clamp(2.7rem, 13.5vw, 4rem);
    }

    .home-actions {
        display: grid;
    }

    .home-button {
        width: 100%;
    }

    .home-trust {
        display: grid;
    }

    .home-product {
        min-height: 400px;
    }

    .home-product::before {
        width: 340px;
        height: 340px;
    }

    .home-product-body {
        padding: 14px;
    }

    .home-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-metrics article:last-child {
        display: none;
    }

    .home-product-bottom {
        grid-template-columns: 1fr;
    }

    .home-connections {
        display: none;
    }

    .home-floating-top {
        top: 18px;
        right: -4px;
    }

    .home-floating-bottom {
        bottom: 0;
        left: 8px;
    }

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

    .home-proof > div,
    .home-proof > div:first-child {
        padding: 16px 0;
    }

    .home-proof > div + div {
        border-top: 1px solid var(--home-line);
        border-left: 0;
    }

    .home-section {
        padding: 75px 0;
    }

    .home-service-grid {
        grid-template-columns: 1fr;
    }

    .home-service-card {
        min-height: 320px;
    }

    .home-fit-points article {
        grid-template-columns: 36px 1fr;
        gap: 12px;
    }

    .home-process-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .home-process-grid li,
    .home-process-grid li + li,
    .home-process-grid li:nth-child(3) {
        min-height: 0;
        padding: 0 0 30px;
        border-left: 0;
    }

    .home-process-grid li + li {
        padding-top: 25px;
        border-top: 1px solid var(--home-line);
    }

    .home-process-grid h3 {
        margin-top: 16px;
    }

    .home-accordion summary {
        font-size: .9rem;
    }

    .home-accordion details p {
        margin-right: 0;
    }

    .home-final-card {
        gap: 34px;
        padding: 31px 23px;
        border-radius: 21px;
    }

    .home-button-light {
        width: 100%;
    }
}
