:root {
    --ink: #17203a;
    --ink-soft: #5e6780;
    --primary: #536de0;
    --primary-dark: #3e56c5;
    --primary-pale: #e8ecff;
    --lilac: #ae87e8;
    --mint: #65c8ad;
    --peach: #f3a582;
    --surface: #ffffff;
    --surface-soft: #f5f7fc;
    --line: #e5e8f1;
    --success: #1f9d74;
    --danger: #d84e64;
    --shadow: 0 24px 70px rgba(51, 65, 120, .13);
    --radius-lg: 30px;
    --radius-md: 22px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    color: var(--ink);
    background: #fbfcff;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--lilac), var(--mint));
    content: "";
}

::selection {
    color: #fff;
    background: var(--primary);
}

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

button,
input,
textarea {
    font: inherit;
}

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

svg {
    display: block;
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    border-radius: 10px;
    color: #fff;
    background: var(--ink);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    border-bottom: 1px solid rgba(229, 232, 241, .75);
    background: rgba(251, 252, 255, .84);
    backdrop-filter: blur(18px);
}

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

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.5px;
}

.logo-accent {
    color: var(--primary);
}

.logo-mark,
.mini-logo {
    display: flex;
    width: 30px;
    height: 30px;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    padding: 6px;
    border-radius: 9px;
    background: var(--ink);
}

.logo-mark span,
.mini-logo i {
    display: block;
    width: 4px;
    border-radius: 4px;
    background: #fff;
}

.logo-mark span:nth-child(1),
.mini-logo i:nth-child(1) {
    height: 8px;
}

.logo-mark span:nth-child(2),
.mini-logo i:nth-child(2) {
    height: 15px;
    background: #9db0ff;
}

.logo-mark span:nth-child(3),
.mini-logo i:nth-child(3) {
    height: 11px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 36px;
    color: #616a80;
    font-size: 14px;
    font-weight: 600;
}

.desktop-nav a,
.text-link {
    transition: color .2s ease;
}

.desktop-nav a:hover,
.text-link:hover {
    color: var(--primary);
}

.button {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 25px;
    border: 0;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 750;
    line-height: 1;
    transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

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

.button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible,
.captcha-refresh:focus-visible {
    outline: 3px solid rgba(83, 109, 224, .25);
    outline-offset: 3px;
}

.button svg {
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

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

.button-ghost {
    border: 1px solid var(--line);
    background: #fff;
}

.button-ghost:hover {
    border-color: #ccd3ef;
    box-shadow: 0 10px 24px rgba(55, 67, 109, .08);
}

.button-primary {
    color: #fff;
    background: var(--primary);
    box-shadow: 0 15px 30px rgba(83, 109, 224, .26);
}

.button-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 18px 34px rgba(83, 109, 224, .34);
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 690px;
    padding: 92px 0 96px;
    background:
        radial-gradient(circle at 6% 12%, rgba(232, 236, 255, .9), transparent 25%),
        linear-gradient(180deg, #fbfcff 0%, #f7f8fe 100%);
}

.hero::after {
    position: absolute;
    right: -130px;
    bottom: -190px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(83, 109, 224, .09);
    border-radius: 50%;
    content: "";
}

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

.hero-glow-one {
    top: 40px;
    right: 6%;
    width: 430px;
    height: 430px;
    background: rgba(219, 224, 253, .57);
}

.hero-glow-two {
    right: 31%;
    bottom: 8%;
    width: 170px;
    height: 170px;
    background: rgba(217, 245, 237, .5);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    grid-template-columns: .93fr 1.07fr;
    gap: 62px;
}

.hero-copy {
    max-width: 610px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 19px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.45px;
    text-transform: uppercase;
}

.eyebrow {
    padding: 7px 12px;
    border: 1px solid #dce2fa;
    border-radius: 99px;
    background: rgba(255, 255, 255, .75);
}

.status-dot {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mint);
}

.status-dot::after {
    position: absolute;
    inset: -4px;
    border: 1px solid var(--mint);
    border-radius: inherit;
    content: "";
    animation: ping 2s infinite;
}

@keyframes ping {
    0%, 100% { opacity: .7; transform: scale(.6); }
    60% { opacity: 0; transform: scale(1.2); }
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 680px;
    margin-bottom: 24px;
    font-size: clamp(48px, 5.2vw, 72px);
    line-height: 1.02;
    letter-spacing: -3.8px;
}

h1 span {
    position: relative;
    color: var(--primary);
}

h1 span::after {
    position: absolute;
    right: 1%;
    bottom: -8px;
    left: 1%;
    height: 8px;
    border-radius: 50%;
    background: rgba(83, 109, 224, .13);
    content: "";
    transform: rotate(-1deg);
}

.hero-lead {
    max-width: 580px;
    margin-bottom: 34px;
    color: var(--ink-soft);
    font-size: 19px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 29px;
}

.text-link {
    position: relative;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
}

.text-link::after {
    position: absolute;
    right: 0;
    bottom: -4px;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
}

.hero-points {
    display: flex;
    gap: 25px;
    margin: 32px 0 0;
    padding: 0;
    color: #697187;
    font-size: 13px;
    font-weight: 600;
    list-style: none;
}

.hero-points li {
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero-points svg {
    width: 18px;
    height: 18px;
    padding: 3px;
    border-radius: 50%;
    fill: none;
    stroke: var(--success);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    background: #e5f7f1;
}

.hero-visual {
    position: relative;
    min-height: 520px;
}

.visual-orbit {
    position: absolute;
    border: 1px dashed rgba(83, 109, 224, .18);
    border-radius: 50%;
}

.orbit-one {
    inset: 2% 3% 7% 4%;
    animation: slow-spin 34s linear infinite;
}

.orbit-two {
    inset: 11% 12% 16% 13%;
    animation: slow-spin 28s linear infinite reverse;
}

@keyframes slow-spin {
    to { transform: rotate(360deg); }
}

.dashboard-card {
    position: absolute;
    z-index: 2;
    top: 36px;
    right: 10px;
    left: 39px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 26px;
    background: rgba(255, 255, 255, .93);
    box-shadow: 0 35px 80px rgba(58, 72, 128, .2);
    transform: rotate(1.4deg);
}

.dashboard-top {
    display: flex;
    height: 59px;
    align-items: center;
    justify-content: space-between;
    padding: 0 19px;
    border-bottom: 1px solid var(--line);
}

.mini-logo {
    width: 27px;
    height: 27px;
    padding: 5px;
    border-radius: 8px;
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e2e5ed;
}

.dashboard-body {
    padding: 24px;
}

.profile-row {
    display: flex;
    align-items: center;
}

.avatar {
    width: 55px;
    height: 55px;
    margin-right: 13px;
    overflow: hidden;
    border: 3px solid #fff;
    border-radius: 18px;
    box-shadow: 0 6px 15px rgba(55, 67, 109, .13);
}

.avatar svg {
    width: 100%;
    height: 100%;
}

.muted-label {
    display: block;
    margin-bottom: 2px;
    color: #929aaf;
    font-size: 11px;
    font-weight: 650;
}

.profile-row strong {
    display: block;
    font-size: 14px;
}

.online-badge {
    margin-left: auto;
    padding: 5px 10px;
    border-radius: 8px;
    color: var(--success);
    background: #e7f8f1;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.chart {
    margin-top: 24px;
    padding: 18px 20px 9px;
    border: 1px solid #edf0f6;
    border-radius: 19px;
    background: #fbfcff;
}

.chart-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.chart-heading strong {
    display: block;
    font-size: 13px;
}

.trend {
    padding: 5px 8px;
    border-radius: 7px;
    color: var(--success);
    background: #e7f8f1;
    font-size: 10px;
    font-weight: 800;
}

.chart svg {
    width: 100%;
    height: 150px;
    overflow: visible;
}

.chart-grid {
    fill: none;
    stroke: #edf0f6;
    stroke-width: 1;
}

.chart-area {
    fill: url("#chartFill");
}

.chart-line {
    fill: none;
    stroke: var(--primary);
    stroke-linecap: round;
    stroke-width: 3;
    vector-effect: non-scaling-stroke;
}

.chart circle {
    fill: #fff;
    stroke: var(--primary);
    stroke-width: 4;
}

.floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 16px 12px 12px;
    border: 1px solid rgba(255, 255, 255, .95);
    border-radius: 15px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 16px 35px rgba(54, 67, 112, .15);
    backdrop-filter: blur(12px);
}

.floating-card small,
.floating-card strong {
    display: block;
    white-space: nowrap;
}

.floating-card small {
    margin-bottom: 1px;
    color: #939aae;
    font-size: 9px;
}

.floating-card strong {
    font-size: 11px;
}

.floating-call {
    top: 71px;
    left: 0;
    animation: float 5s ease-in-out infinite;
}

.floating-team {
    right: -5px;
    bottom: 37px;
    animation: float 5s 1.2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}

.float-icon {
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    border-radius: 11px;
}

.phone-icon {
    color: #fff;
    background: var(--primary);
}

.float-icon svg {
    width: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.avatar-stack {
    display: flex;
    padding-left: 9px;
}

.avatar-stack i {
    display: grid;
    width: 31px;
    height: 31px;
    margin-left: -9px;
    place-items: center;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    background: var(--lilac);
    font-size: 9px;
    font-style: normal;
    font-weight: 800;
}

.avatar-stack i:nth-child(2) {
    background: var(--mint);
}

.avatar-stack i:nth-child(3) {
    color: var(--primary);
    background: var(--primary-pale);
}

.trust-strip {
    position: relative;
    z-index: 3;
    border-block: 1px solid var(--line);
    background: #fff;
}

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

.trust-grid div {
    position: relative;
    padding: 27px 32px;
    text-align: center;
}

.trust-grid div:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 34px;
    background: var(--line);
    content: "";
    transform: translateY(-50%);
}

.trust-grid strong,
.trust-grid span {
    display: block;
}

.trust-grid strong {
    margin-bottom: 2px;
    font-size: 16px;
}

.trust-grid span {
    color: #8a92a6;
    font-size: 12px;
}

.section {
    padding: 120px 0;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 55px;
}

.section-heading h2,
.workflow-copy h2,
.fit-heading h2,
.application-copy h2,
.faq h2 {
    margin-bottom: 0;
    font-size: clamp(36px, 4vw, 51px);
    line-height: 1.08;
    letter-spacing: -2.2px;
}

.section-heading p {
    max-width: 430px;
    margin-bottom: 6px;
    color: var(--ink-soft);
    font-size: 16px;
}

.benefits {
    background: #fff;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-card {
    position: relative;
    overflow: hidden;
    min-height: 315px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fcfdff;
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.benefit-card:hover {
    border-color: #d5dbf2;
    box-shadow: 0 18px 45px rgba(53, 66, 111, .09);
    transform: translateY(-4px);
}

.benefit-card::after {
    position: absolute;
    right: -45px;
    bottom: -45px;
    width: 160px;
    height: 160px;
    border: 1px solid #eef0f8;
    border-radius: 50%;
    content: "";
}

.benefit-featured {
    color: #fff;
    border-color: var(--primary);
    background: var(--primary);
}

.benefit-featured:hover {
    border-color: var(--primary);
    box-shadow: 0 22px 50px rgba(83, 109, 224, .24);
}

.benefit-featured::after {
    width: 210px;
    height: 210px;
    border-color: rgba(255, 255, 255, .12);
}

.card-number {
    position: absolute;
    top: 28px;
    right: 30px;
    color: #c9cedd;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.benefit-featured .card-number {
    color: rgba(255, 255, 255, .55);
}

.benefit-icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 50px;
    place-items: center;
    border-radius: 15px;
    color: #fff;
    background: rgba(255, 255, 255, .16);
}

.benefit-icon svg {
    width: 26px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.icon-lilac {
    color: #8a5dc8;
    background: #f0e8fb;
}

.icon-mint {
    color: #32a989;
    background: #e1f6f0;
}

.icon-peach {
    color: #d97c57;
    background: #fff0e9;
}

.benefit-card h3 {
    margin-bottom: 10px;
    font-size: 23px;
    line-height: 1.25;
    letter-spacing: -.6px;
}

.benefit-card p {
    max-width: 485px;
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 14px;
}

.benefit-featured p {
    max-width: 445px;
    color: rgba(255, 255, 255, .78);
}

.mini-stat {
    position: absolute;
    right: 29px;
    bottom: 27px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, .84);
    font-size: 10px;
    font-weight: 650;
}

.pulse {
    width: 7px;
    height: 7px;
    border: 2px solid rgba(255, 255, 255, .7);
    border-radius: 50%;
    background: #7ee2c5;
}

.workflow {
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 50%, rgba(219, 225, 255, .6), transparent 28%),
        var(--surface-soft);
}

.workflow-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 100px;
}

.workflow-copy {
    position: sticky;
    top: 130px;
    align-self: start;
}

.workflow-copy > p {
    max-width: 430px;
    margin: 24px 0 34px;
    color: var(--ink-soft);
}

.workflow-note {
    position: relative;
    max-width: 420px;
    padding: 23px 24px 23px 58px;
    border: 1px solid #e0e4f1;
    border-radius: 17px;
    background: rgba(255, 255, 255, .68);
}

.workflow-note > span {
    position: absolute;
    top: 10px;
    left: 20px;
    color: #9aa9eb;
    font-family: Georgia, serif;
    font-size: 50px;
    line-height: 1;
}

.workflow-note p {
    margin: 0;
    color: #566078;
    font-size: 13px;
    font-style: italic;
}

.steps {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.steps::before {
    position: absolute;
    top: 28px;
    bottom: 28px;
    left: 29px;
    width: 1px;
    background: linear-gradient(var(--primary), #cad1ed);
    content: "";
}

.steps li {
    position: relative;
    display: grid;
    align-items: start;
    grid-template-columns: 59px 1fr;
    gap: 25px;
    padding-bottom: 40px;
}

.steps li:last-child {
    padding-bottom: 0;
}

.step-number {
    position: relative;
    z-index: 2;
    display: grid;
    width: 59px;
    height: 59px;
    place-items: center;
    border: 1px solid #dce1f2;
    border-radius: 17px;
    color: var(--primary);
    background: #fff;
    box-shadow: 0 10px 25px rgba(54, 67, 111, .08);
    font-size: 12px;
    font-weight: 850;
}

.steps li:first-child .step-number {
    color: #fff;
    border-color: var(--primary);
    background: var(--primary);
}

.steps li > div {
    padding: 6px 0 30px;
    border-bottom: 1px solid #dee2ed;
}

.steps li:last-child > div {
    border: 0;
}

.steps h3 {
    margin-bottom: 6px;
    font-size: 20px;
    letter-spacing: -.4px;
}

.steps p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
}

.fit {
    background: #fff;
}

.fit-panel {
    display: grid;
    overflow: hidden;
    padding: 70px;
    border-radius: var(--radius-lg);
    color: #fff;
    background:
        radial-gradient(circle at 0 100%, rgba(130, 153, 244, .42), transparent 30%),
        linear-gradient(135deg, #1f294a, #303d71);
    grid-template-columns: .9fr 1.1fr;
    gap: 85px;
}

.fit-heading .section-kicker {
    color: #aebdff;
}

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

.fit-list div {
    min-height: 125px;
    padding: 21px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 17px;
    background: rgba(255, 255, 255, .06);
}

.fit-list span {
    display: block;
    margin-bottom: 14px;
    color: #aebdff;
    font-size: 11px;
    font-weight: 800;
}

.fit-list p {
    margin: 0;
    color: rgba(255, 255, 255, .83);
    font-size: 14px;
    line-height: 1.45;
}

.application-section {
    position: relative;
    overflow: hidden;
    background: #f4f6fc;
}

.application-section::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(150deg, rgba(226, 231, 255, .55), transparent);
    content: "";
}

.application-glow {
    position: absolute;
    bottom: -180px;
    left: -130px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: rgba(224, 232, 255, .7);
    filter: blur(2px);
}

.application-grid {
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: .86fr 1.14fr;
    gap: 100px;
}

.application-copy > p {
    max-width: 445px;
    margin: 24px 0 37px;
    color: var(--ink-soft);
    font-size: 17px;
}

.response-time {
    display: flex;
    align-items: center;
    gap: 15px;
}

.response-icon {
    position: relative;
    display: grid;
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    place-items: center;
    border: 1px solid #dce2fa;
    border-radius: 15px;
    color: var(--primary);
    background: linear-gradient(145deg, #fff, #e9edff);
    box-shadow: 0 10px 24px rgba(72, 91, 171, .12);
}

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

.response-icon i {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 12px;
    height: 12px;
    border: 3px solid #f4f6fc;
    border-radius: 50%;
    background: var(--mint);
}

.response-time strong,
.response-time > div > span {
    display: block;
}

.response-time strong {
    font-size: 13px;
}

.response-time > div > span {
    color: #858da0;
    font-size: 11px;
}

.form-card {
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--shadow);
}

.form-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 27px;
    padding-bottom: 21px;
    border-bottom: 1px solid var(--line);
}

.form-card-head span {
    font-size: 18px;
    font-weight: 800;
}

.form-card-head small {
    color: #8e96a9;
    font-size: 11px;
}

.field {
    margin-bottom: 18px;
}

.field label,
.captcha-label label {
    display: block;
    margin-bottom: 7px;
    color: #3e465d;
    font-size: 12px;
    font-weight: 750;
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid #dfe3ee;
    border-radius: 12px;
    color: var(--ink);
    background: #fafbfe;
    outline: 0;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.field input {
    height: 49px;
    padding: 0 14px;
}

.field textarea {
    min-height: 105px;
    padding: 13px 14px;
    line-height: 1.5;
    resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #a8afbf;
}

.field input:focus,
.field textarea:focus {
    border-color: #96a7eb;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(83, 109, 224, .08);
}

.field.has-error input,
.field.has-error textarea {
    border-color: #e498a4;
    background: #fffafb;
}

.input-with-prefix {
    position: relative;
}

.input-with-prefix > span {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 14px;
    color: #78829a;
    font-size: 14px;
    font-weight: 700;
    transform: translateY(-50%);
}

.input-with-prefix input {
    padding-left: 31px;
}

.field-hint,
.field-error {
    display: block;
    margin: 5px 2px 0;
    font-size: 10px;
}

.field-hint {
    color: #989fb0;
}

.field-error {
    min-height: 0;
    color: var(--danger);
    font-weight: 650;
}

.field-error:not(:empty) {
    min-height: 15px;
}

.captcha-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.captcha-label label {
    margin: 0;
}

.captcha-label strong {
    color: var(--primary);
    font-size: 14px;
}

.captcha-refresh {
    display: grid;
    width: 30px;
    height: 30px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 8px;
    color: #7c86a0;
    background: #f0f2f8;
    cursor: pointer;
    transition: color .2s ease, transform .25s ease;
}

.captcha-refresh:hover {
    color: var(--primary);
    transform: rotate(25deg);
}

.captcha-refresh svg {
    width: 15px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #858da0;
    cursor: pointer;
}

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

.consent > span {
    display: grid;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    place-items: center;
    border: 1px solid #d7dce8;
    border-radius: 5px;
    background: #fafbfe;
    transition: border-color .2s ease, background-color .2s ease;
}

.consent svg {
    width: 12px;
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    opacity: 0;
}

.consent input:checked + span {
    border-color: var(--primary);
    background: var(--primary);
}

.consent input:checked + span svg {
    opacity: 1;
}

.consent input:focus-visible + span {
    outline: 3px solid rgba(83, 109, 224, .22);
    outline-offset: 2px;
}

.consent small {
    font-size: 10px;
    line-height: 1.5;
}

.consent-error {
    margin-bottom: 9px;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.submit-button {
    width: 100%;
    margin-top: 15px;
}

.submit-button:disabled {
    cursor: wait;
    opacity: .75;
    transform: none;
}

.button-loader {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, .35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .7s linear infinite;
}

.submit-button.is-loading .button-loader {
    display: block;
}

.submit-button.is-loading .button-arrow {
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-status {
    display: none;
    margin-top: 14px;
    padding: 11px 13px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 650;
    text-align: center;
}

.form-status.is-success {
    display: block;
    color: #187a5c;
    background: #e5f7f1;
}

.form-status.is-error {
    display: block;
    color: #b53e53;
    background: #fff0f2;
}

.faq {
    background: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 100px;
}

.faq h2 {
    margin-bottom: 17px;
}

.faq-grid > div:first-child > p {
    max-width: 330px;
    color: var(--ink-soft);
}

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

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

.faq-list summary {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 750;
    list-style: none;
}

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

.faq-list summary span {
    position: relative;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--surface-soft);
}

.faq-list summary span::before,
.faq-list summary span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1px;
    background: var(--ink);
    content: "";
    transition: transform .2s ease;
    transform: translate(-50%, -50%);
}

.faq-list summary span::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
    transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
    max-width: 690px;
    margin: -5px 55px 24px 0;
    color: var(--ink-soft);
    font-size: 14px;
}

.final-cta {
    padding: 30px 0;
    background: #fff;
}

.final-cta-inner {
    display: flex;
    min-height: 235px;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 50px 64px;
    border-radius: var(--radius-lg);
    color: #fff;
    background:
        radial-gradient(circle at 15% 120%, rgba(132, 155, 255, .56), transparent 35%),
        linear-gradient(120deg, #526bda, #4159c3);
}

.final-cta-inner span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.final-cta-inner h2 {
    margin: 0;
    font-size: clamp(30px, 3vw, 43px);
    line-height: 1.14;
    letter-spacing: -1.6px;
}

.button-light {
    flex: 0 0 auto;
    color: var(--primary);
    background: #fff;
    box-shadow: 0 14px 30px rgba(26, 40, 105, .2);
}

.privacy-section {
    padding: 22px 0 8px;
    background: #fff;
}

.privacy-disclosure {
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fafbfe;
}

.privacy-disclosure summary {
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 20px;
    color: #657087;
    cursor: pointer;
    font-size: 12px;
    font-weight: 750;
    list-style: none;
}

.privacy-disclosure summary::-webkit-details-marker {
    display: none;
}

.privacy-disclosure summary span {
    position: relative;
    width: 18px;
    height: 18px;
}

.privacy-disclosure summary span::before,
.privacy-disclosure summary span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 1px;
    background: #778098;
    content: "";
    transform: translate(-50%, -50%);
}

.privacy-disclosure summary span::after {
    transition: transform .2s ease;
    transform: translate(-50%, -50%) rotate(90deg);
}

.privacy-disclosure[open] summary span::after {
    transform: translate(-50%, -50%);
}

.privacy-disclosure > div {
    max-width: 900px;
    padding: 0 20px 18px;
    color: #7b8498;
    font-size: 11px;
}

.privacy-disclosure p {
    margin: 0 0 7px;
}

.privacy-disclosure p:last-child {
    margin-bottom: 0;
}

.site-footer {
    padding: 43px 0;
    background: #fff;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: #8d94a6;
    font-size: 12px;
}

.footer-inner p {
    margin: 0;
}

.footer-meta {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-meta a {
    transition: color .2s ease;
}

.footer-meta a:hover {
    color: var(--primary);
}

.footer-inner .logo {
    font-size: 16px;
}

.footer-inner .logo-mark {
    width: 25px;
    height: 25px;
    padding: 5px;
}

.reveal-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s ease, transform .55s ease, border-color .25s ease, box-shadow .25s ease;
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card.reveal-item:nth-child(2),
.fit-list div.reveal-item:nth-child(2) {
    transition-delay: .07s;
}

.benefit-card.reveal-item:nth-child(3),
.fit-list div.reveal-item:nth-child(3) {
    transition-delay: .14s;
}

.benefit-card.reveal-item:nth-child(4),
.fit-list div.reveal-item:nth-child(4) {
    transition-delay: .21s;
}

@media (max-width: 1024px) {
    .hero {
        padding-top: 70px;
    }

    .hero-grid {
        gap: 30px;
    }

    h1 {
        font-size: 54px;
    }

    .hero-visual {
        min-height: 470px;
    }

    .floating-team {
        right: 0;
    }

    .workflow-grid,
    .application-grid,
    .faq-grid {
        gap: 60px;
    }

    .fit-panel {
        padding: 55px;
        gap: 50px;
    }
}

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

    .hero {
        padding: 62px 0 80px;
    }

    .hero-grid,
    .workflow-grid,
    .fit-panel,
    .application-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 680px;
        text-align: center;
    }

    .eyebrow {
        margin-inline: auto;
    }

    .hero-lead {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-points {
        justify-content: center;
    }

    .hero-visual {
        width: min(100%, 620px);
        min-height: 500px;
        margin: 10px auto 0;
    }

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

    .trust-grid div:nth-child(2)::after {
        display: none;
    }

    .trust-grid div:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .section {
        padding: 90px 0;
    }

    .section-heading {
        display: block;
    }

    .section-heading p {
        margin-top: 22px;
    }

    .workflow-copy {
        position: static;
    }

    .workflow-copy > p,
    .workflow-note {
        max-width: 620px;
    }

    .fit-panel {
        gap: 40px;
    }

    .application-copy {
        text-align: center;
    }

    .application-copy > p {
        margin-inline: auto;
    }

    .response-time {
        justify-content: center;
    }

    .form-card {
        width: min(100%, 650px);
        margin-inline: auto;
    }

    .faq-grid {
        gap: 35px;
    }

    .faq-grid > div:first-child > p {
        max-width: 500px;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

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

    .header-inner .button-small {
        min-height: 40px;
        padding: 0 14px;
        font-size: 12px;
    }

    .hero {
        padding-top: 45px;
    }

    h1 {
        font-size: clamp(41px, 12vw, 54px);
        letter-spacing: -2.7px;
    }

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

    .hero-actions {
        flex-direction: column;
        gap: 20px;
    }

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

    .hero-points {
        align-items: center;
        flex-direction: column;
        gap: 9px;
    }

    .hero-visual {
        min-height: 380px;
        margin-top: 22px;
    }

    .dashboard-card {
        top: 28px;
        right: 0;
        left: 0;
    }

    .dashboard-body {
        padding: 17px;
    }

    .chart {
        margin-top: 17px;
        padding: 14px 14px 5px;
    }

    .chart svg {
        height: 115px;
    }

    .floating-call {
        top: 4px;
        left: -2px;
    }

    .floating-team {
        right: -2px;
        bottom: 0;
    }

    .trust-grid div {
        padding: 23px 10px;
    }

    .section {
        padding: 74px 0;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2,
    .workflow-copy h2,
    .fit-heading h2,
    .application-copy h2,
    .faq h2 {
        font-size: 36px;
        letter-spacing: -1.7px;
    }

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

    .benefit-card {
        min-height: 300px;
        padding: 27px;
    }

    .benefit-icon {
        margin-bottom: 43px;
    }

    .mini-stat {
        right: auto;
        left: 27px;
    }

    .workflow-grid {
        gap: 50px;
    }

    .steps li {
        gap: 17px;
    }

    .fit-panel {
        margin-inline: -2px;
        padding: 38px 24px;
        border-radius: 23px;
    }

    .fit-list {
        grid-template-columns: 1fr;
    }

    .fit-list div {
        min-height: auto;
    }

    .application-grid {
        gap: 45px;
    }

    .form-card {
        padding: 25px 19px;
        border-radius: 20px;
    }

    .form-card-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }

    .faq-list summary {
        min-height: 72px;
        font-size: 14px;
    }

    .final-cta-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 39px 28px;
    }

    .final-cta-inner .button {
        width: 100%;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .footer-meta {
        width: 100%;
        justify-content: space-between;
    }
}

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

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