:root {
    --navy-950: #04112c;
    --navy-900: #071b42;
    --navy-800: #0a285d;
    --blue-700: #0759bd;
    --blue-600: #0b6fe8;
    --blue-500: #1685f8;
    --cyan-400: #06c5e8;
    --slate-900: #10203d;
    --slate-700: #43536d;
    --slate-500: #75839a;
    --slate-200: #dfe6ef;
    --slate-100: #eef3f8;
    --success: #1aab78;
    --container: 1180px;
    --shadow-lg: 0 30px 80px rgba(9, 31, 73, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--slate-900);
    background: #fff;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link {
    position: fixed; z-index: 9999; top: 8px; left: 8px; padding: 10px 16px;
    color: #fff; background: var(--navy-950); border-radius: 8px; transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
    position: fixed; z-index: 1000; inset: 0 0 auto; height: 84px;
    border-bottom: 1px solid transparent;
    transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled {
    background: rgba(255, 255, 255, .94); border-color: rgba(7, 27, 66, .08);
    box-shadow: 0 10px 35px rgba(7, 27, 66, .08); backdrop-filter: blur(18px);
}
.header-content { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand img { width: 178px; height: auto; }
.main-navigation { display: flex; align-items: center; gap: 28px; }
.main-navigation > a:not(.button) {
    color: #31415d; font-size: 14px; font-weight: 600; transition: color .2s ease;
}
.main-navigation > a:not(.button):hover { color: var(--blue-600); }
.menu-toggle {
    display: none; width: 44px; height: 44px; padding: 11px; border: 0;
    border-radius: 10px; background: var(--slate-100);
}
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--navy-900); border-radius: 2px; }

.button {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    border: 1px solid transparent; border-radius: 11px; font-weight: 700; line-height: 1;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-sm { min-height: 42px; padding: 0 18px; font-size: 13px; }
.button-lg { min-height: 54px; padding: 0 24px; font-size: 14px; }
.button-primary {
    color: #fff; background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
    box-shadow: 0 12px 26px rgba(11, 111, 232, .24);
}
.button-primary:hover { box-shadow: 0 16px 32px rgba(11, 111, 232, .32); }
.button-outline, .button-ghost { color: var(--navy-900); border-color: #cfd9e7; background: rgba(255, 255, 255, .8); }
.button-white { color: var(--blue-700); background: #fff; box-shadow: 0 14px 30px rgba(4, 17, 44, .18); }

.hero {
    position: relative; min-height: 810px; padding: 168px 0 92px; overflow: hidden;
    background: radial-gradient(circle at 80% 16%, rgba(13, 132, 248, .13), transparent 32%), linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}
.hero::before {
    position: absolute; content: ""; width: 760px; height: 760px; right: -300px; top: -280px;
    border: 1px solid rgba(11, 111, 232, .08); border-radius: 50%;
    box-shadow: 0 0 0 90px rgba(11, 111, 232, .025), 0 0 0 180px rgba(11, 111, 232, .018);
}
.hero-grid {
    position: relative; z-index: 2; display: grid; grid-template-columns: .88fr 1.12fr;
    align-items: center; gap: 62px;
}
.hero-copy { position: relative; z-index: 3; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 9px; color: var(--blue-600);
    font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.eyebrow-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--cyan-400);
    box-shadow: 0 0 0 5px rgba(6, 197, 232, .14);
}
.eyebrow-light {
    padding: 7px 12px; border: 1px solid rgba(11, 111, 232, .12);
    border-radius: 999px; background: rgba(11, 111, 232, .06);
}
.hero h1 {
    max-width: 650px; margin: 22px 0; color: var(--navy-900);
    font-size: clamp(44px, 5.2vw, 72px); line-height: 1.03; letter-spacing: -.05em;
}
.hero h1 span, .section-heading h2 span, .benefits-copy h2 span { color: var(--blue-600); }
.hero-copy > p {
    max-width: 570px; margin: 0; color: var(--slate-700); font-size: 18px; line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 38px; }
.avatar-stack { display: flex; padding-left: 10px; }
.avatar-stack span {
    width: 38px; height: 38px; margin-left: -10px; display: grid; place-items: center;
    color: #fff; border: 3px solid #fff; border-radius: 50%; background: var(--navy-800);
    font-size: 10px; font-weight: 800;
}
.avatar-stack span:nth-child(2) { background: var(--blue-600); }
.avatar-stack span:nth-child(3) { background: var(--cyan-400); }
.hero-trust p { margin: 0; color: var(--slate-500); font-size: 12px; line-height: 1.45; }
.hero-trust strong { color: var(--slate-900); font-size: 13px; }

.hero-visual {
    position: relative; min-width: 680px;
    transform: perspective(1500px) rotateY(-2deg) rotateX(1deg); transform-origin: center left;
}
.dashboard-window {
    display: grid; grid-template-columns: 68px 1fr; min-height: 490px; overflow: hidden;
    border: 1px solid rgba(7, 27, 66, .09); border-radius: 20px; background: #fff; box-shadow: var(--shadow-lg);
}
.dashboard-sidebar {
    display: flex; flex-direction: column; align-items: center; gap: 23px;
    padding-top: 22px; background: var(--navy-900);
}
.dashboard-mark {
    width: 32px; height: 32px; display: grid; place-items: center; color: #fff;
    border-radius: 9px; background: linear-gradient(145deg, var(--blue-500), var(--cyan-400));
    font-size: 18px; font-weight: 900;
}
.side-item { width: 19px; height: 19px; border: 2px solid rgba(255, 255, 255, .35); border-radius: 5px; }
.side-item.active { border-color: var(--cyan-400); background: rgba(6, 197, 232, .18); }
.dashboard-content { padding: 24px 26px; background: #f6f8fc; }
.dashboard-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.dashboard-top div:first-child { display: flex; flex-direction: column; }
.dashboard-label { color: var(--slate-500); font-size: 10px; }
.dashboard-top strong { color: var(--navy-900); font-size: 16px; }
.dashboard-user {
    width: 34px; height: 34px; display: grid; place-items: center; color: #fff;
    border-radius: 50%; background: var(--blue-600); font-size: 10px; font-weight: 800;
}
.dashboard-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.dashboard-metrics article {
    display: flex; flex-direction: column; padding: 15px;
    border: 1px solid #e5ebf3; border-radius: 11px; background: #fff;
}
.dashboard-metrics span, .dashboard-metrics small { color: var(--slate-500); font-size: 9px; }
.dashboard-metrics strong { margin: 5px 0 2px; color: var(--navy-900); font-size: 15px; }
.positive { color: var(--success) !important; }
.dashboard-panels { display: grid; grid-template-columns: 1.65fr .8fr; gap: 12px; margin-top: 12px; }
.chart-card, .summary-card {
    min-width: 0; padding: 16px; border: 1px solid #e5ebf3; border-radius: 11px; background: #fff;
}
.card-heading { display: flex; align-items: start; justify-content: space-between; }
.card-heading div { display: flex; flex-direction: column; }
.card-heading strong, .summary-card > strong { color: var(--navy-900); font-size: 12px; }
.card-heading span, .card-heading small { color: var(--slate-500); font-size: 8px; }
.card-heading small { padding: 3px 7px; border-radius: 8px; background: var(--slate-100); }
.chart { position: relative; height: 190px; margin-top: 14px; overflow: hidden; }
.chart svg { position: absolute; inset: 8px 0 23px; width: 100%; height: calc(100% - 31px); }
.chart .area { fill: url(#chart-fill); }
.line-primary, .line-secondary { fill: none; stroke-linecap: round; stroke-width: 3; }
.line-primary { stroke: var(--blue-600); }
.line-secondary { stroke: var(--cyan-400); stroke-dasharray: 4 7; }
.grid-line { position: absolute; right: 0; left: 0; height: 1px; background: #edf1f6; }
.line-one { top: 25%; } .line-two { top: 50%; } .line-three { top: 75%; }
.chart-labels {
    position: absolute; right: 0; bottom: 0; left: 0; display: flex;
    justify-content: space-between; color: var(--slate-500); font-size: 7px;
}
.summary-card { display: flex; flex-direction: column; gap: 19px; }
.summary-row {
    position: relative; display: grid; grid-template-columns: 1fr auto; gap: 8px; padding-bottom: 10px;
}
.summary-row span, .summary-row b { font-size: 8px; font-style: normal; }
.summary-row span { color: var(--slate-500); }
.summary-row i {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 4px;
    overflow: hidden; border-radius: 4px; background: var(--slate-100);
}
.summary-row i::after {
    position: absolute; content: ""; width: var(--progress); height: 100%;
    border-radius: inherit; background: var(--blue-600);
}
.summary-row i.success::after { background: var(--success); }
.floating-card {
    position: absolute; display: flex; align-items: center; gap: 11px; padding: 12px 16px;
    border: 1px solid rgba(7, 27, 66, .08); border-radius: 13px; background: rgba(255, 255, 255, .96);
    box-shadow: 0 18px 40px rgba(9, 31, 73, .16); animation: float 4s ease-in-out infinite;
}
.floating-card div { display: flex; flex-direction: column; }
.floating-card strong { color: var(--navy-900); font-size: 12px; }
.floating-card small { color: var(--slate-500); font-size: 9px; }
.floating-card-sales { right: -20px; top: 70px; }
.floating-card-control { bottom: 38px; left: -44px; animation-delay: -2s; }
.floating-icon, .floating-check {
    width: 34px; height: 34px; display: grid; place-items: center; color: #fff;
    border-radius: 9px; background: var(--blue-600); font-weight: 800;
}
.floating-check { background: var(--success); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

.logo-strip { border-block: 1px solid #e8edf4; background: #fff; }
.logo-strip-content {
    min-height: 88px; display: flex; align-items: center; justify-content: space-between;
    color: #75839a; font-size: 11px; font-weight: 800; letter-spacing: .14em;
}
.logo-strip i { width: 4px; height: 4px; border-radius: 50%; background: #c3cedd; }
.section { padding: 112px 0; }
.solutions, .how-it-works { background: #f7f9fc; }
.section-heading { margin-bottom: 52px; }
.section-heading.centered { text-align: center; }
.section-heading h2, .benefits-copy h2 {
    margin: 17px 0 13px; color: var(--navy-900);
    font-size: clamp(34px, 4vw, 50px); line-height: 1.15; letter-spacing: -.035em;
}
.section-heading p, .benefits-copy > p {
    max-width: 650px; margin: 0; color: var(--slate-700); font-size: 17px;
}
.centered p { margin-inline: auto; }

.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.solution-card {
    min-height: 325px; padding: 30px; border: 1px solid #e1e7f0; border-radius: 18px;
    background: #fff; box-shadow: 0 12px 32px rgba(7, 27, 66, .04);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.solution-card:hover {
    transform: translateY(-5px); border-color: rgba(11, 111, 232, .25);
    box-shadow: 0 22px 45px rgba(7, 27, 66, .09);
}
.solution-card.featured {
    grid-column: span 2; display: grid; grid-template-columns: 58px 1.25fr .9fr;
    align-items: start; gap: 22px; color: #fff; border: 0;
    background: radial-gradient(circle at 95% 10%, rgba(6, 197, 232, .25), transparent 35%), linear-gradient(135deg, var(--navy-900), #0a326c);
    box-shadow: 0 24px 55px rgba(7, 27, 66, .18);
}
.solution-icon {
    width: 52px; height: 52px; display: grid; place-items: center; color: var(--blue-600);
    border-radius: 14px; background: rgba(11, 111, 232, .09);
}
.featured .solution-icon { color: var(--cyan-400); background: rgba(255, 255, 255, .1); }
.solution-icon svg {
    width: 25px; fill: none; stroke: currentColor; stroke-linecap: round;
    stroke-linejoin: round; stroke-width: 1.8;
}
.solution-card small { color: var(--blue-600); font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.solution-card h3 { margin: 7px 0 10px; color: var(--navy-900); font-size: 24px; line-height: 1.2; }
.solution-card p { margin: 0 0 22px; color: var(--slate-700); font-size: 14px; }
.solution-card a { display: inline-flex; gap: 8px; color: var(--blue-600); font-size: 13px; font-weight: 800; }
.featured small, .featured h3, .featured p { color: #fff; }
.featured p { opacity: .75; }
.featured ul {
    display: grid; grid-template-columns: repeat(2, auto); gap: 8px 18px;
    margin: 0; padding: 0; list-style: none;
}
.featured li { position: relative; padding-left: 17px; font-size: 11px; opacity: .88; }
.featured li::before { position: absolute; content: "✓"; left: 0; color: var(--cyan-400); font-weight: 800; }
.mini-finance {
    align-self: center; padding: 20px; border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px; background: rgba(255, 255, 255, .08);
}
.mini-finance > div:first-child { display: flex; flex-direction: column; }
.mini-finance span { font-size: 9px; opacity: .6; }
.mini-finance strong { font-size: 19px; }
.mini-bars { height: 90px; display: flex; align-items: end; gap: 8px; margin-top: 17px; }
.mini-bars i {
    flex: 1; min-width: 9px; border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, var(--cyan-400), var(--blue-500));
}
.ai-card {
    grid-column: span 2; min-height: 240px;
    background: radial-gradient(circle at 90% 20%, rgba(6, 197, 232, .12), transparent 30%), #fff;
}

.benefits { overflow: hidden; }
.benefits-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 100px; }
.benefits-visual {
    position: relative; min-height: 620px; display: grid; place-items: center; border-radius: 28px;
    background: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(145deg, var(--navy-950), var(--navy-800));
    background-size: 34px 34px, 34px 34px, auto;
}
.phone {
    position: relative; width: 282px; height: 556px; padding: 9px; border: 5px solid #0a1730;
    border-radius: 42px; background: #17233b; box-shadow: 0 35px 70px rgba(0, 0, 0, .38); transform: rotate(3deg);
}
.phone-speaker {
    position: absolute; z-index: 3; top: 14px; left: 50%; width: 78px; height: 20px;
    border-radius: 20px; background: #061127; transform: translateX(-50%);
}
.phone-screen { height: 100%; padding: 34px 17px 18px; overflow: hidden; border-radius: 30px; background: #f6f8fc; }
.mobile-head { display: flex; align-items: center; gap: 10px; color: var(--navy-900); font-size: 12px; font-weight: 800; }
.mobile-head .dashboard-mark { width: 27px; height: 27px; font-size: 14px; }
.mobile-balance {
    display: flex; flex-direction: column; margin-top: 27px; padding: 20px; color: #fff;
    border-radius: 16px; background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
    box-shadow: 0 14px 25px rgba(11, 111, 232, .25);
}
.mobile-balance span, .mobile-balance small { font-size: 9px; opacity: .82; }
.mobile-balance strong { margin: 5px 0; font-size: 23px; }
.mobile-chart {
    height: 122px; margin-top: 15px; padding: 16px 12px;
    border: 1px solid #e5ebf3; border-radius: 14px; background: #fff;
}
.mobile-chart svg { width: 100%; height: 100%; }
.mobile-chart path { fill: none; stroke: var(--blue-600); stroke-linecap: round; stroke-width: 4; }
.mobile-items { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.mobile-items > div {
    display: grid; grid-template-columns: 8px 1fr auto; align-items: center; gap: 9px;
    padding: 10px; border: 1px solid #e5ebf3; border-radius: 10px; background: #fff;
}
.mobile-items i { width: 7px; height: 28px; border-radius: 5px; }
.mobile-items i.blue { background: var(--blue-600); }
.mobile-items i.cyan { background: var(--cyan-400); }
.mobile-items i.green { background: var(--success); }
.mobile-items span {
    display: flex; flex-direction: column; color: var(--navy-900); font-size: 9px; font-weight: 700;
}
.mobile-items small { color: var(--slate-500); font-size: 7px; font-weight: 400; }
.mobile-items strong { color: var(--navy-900); font-size: 9px; }
.mobile-badge {
    position: absolute; right: 15px; bottom: 65px; padding: 12px 17px;
    color: var(--navy-900); border-radius: 12px; background: #fff;
    box-shadow: 0 18px 35px rgba(0, 0, 0, .22); font-size: 11px; font-weight: 800;
}
.benefits-copy > p { margin-bottom: 38px; }
.benefit-list { display: flex; flex-direction: column; }
.benefit-list article {
    display: grid; grid-template-columns: 54px 1fr; gap: 18px;
    padding: 22px 0; border-top: 1px solid var(--slate-200);
}
.benefit-list article > span {
    width: 42px; height: 42px; display: grid; place-items: center; color: var(--blue-600);
    border-radius: 12px; background: rgba(11, 111, 232, .08); font-size: 12px; font-weight: 800;
}
.benefit-list h3 { margin: 0 0 3px; color: var(--navy-900); font-size: 18px; }
.benefit-list p { margin: 0; color: var(--slate-700); font-size: 14px; }

.steps {
    position: relative; display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px; margin-top: 64px;
}
.steps::before {
    position: absolute; content: ""; top: 28px; right: 16%; left: 16%;
    height: 1px; border-top: 1px dashed #b7c5d8;
}
.steps article { position: relative; text-align: center; }
.steps article > span {
    position: relative; z-index: 2; width: 56px; height: 56px; margin: 0 auto 24px;
    display: grid; place-items: center; color: #fff; border: 7px solid #f7f9fc;
    border-radius: 50%; background: var(--blue-600); box-shadow: 0 0 0 1px rgba(11, 111, 232, .2);
    font-size: 14px; font-weight: 800;
}
.steps h3 { margin: 0 0 8px; color: var(--navy-900); font-size: 19px; }
.steps p { max-width: 310px; margin: 0 auto; color: var(--slate-700); font-size: 14px; }

.cta-section { padding: 0 0 100px; background: #f7f9fc; }
.cta-card {
    position: relative; display: flex; align-items: center; justify-content: space-between;
    gap: 50px; padding: 65px 72px; overflow: hidden; color: #fff; border-radius: 28px;
    background: radial-gradient(circle at 88% 15%, rgba(6, 197, 232, .3), transparent 30%), linear-gradient(135deg, var(--blue-700), #074393);
    box-shadow: 0 28px 60px rgba(7, 89, 189, .25);
}
.cta-card::after {
    position: absolute; content: ""; width: 350px; height: 350px; right: -120px; bottom: -220px;
    border: 1px solid rgba(255, 255, 255, .15); border-radius: 50%;
    box-shadow: 0 0 0 60px rgba(255, 255, 255, .04);
}
.cta-card .eyebrow { color: #bceeff; }
.cta-card h2 {
    margin: 12px 0; font-size: clamp(30px, 3.5vw, 44px);
    line-height: 1.15; letter-spacing: -.035em;
}
.cta-card p { margin: 0; opacity: .75; }
.cta-actions {
    position: relative; z-index: 2; min-width: 280px; display: flex;
    flex-direction: column; align-items: center; gap: 15px;
}
.cta-login { font-size: 12px; font-weight: 700; opacity: .82; }

.site-footer { padding: 70px 0 25px; color: rgba(255, 255, 255, .62); background: var(--navy-950); }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 70px; padding-bottom: 55px;
}
.footer-brand img { width: 175px; height: auto; }
.footer-brand p { margin: 18px 0 0; font-size: 14px; }
.footer-grid h2 { margin: 0 0 18px; color: #fff; font-size: 13px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: start; gap: 10px; }
.footer-grid a { font-size: 13px; transition: color .2s ease; }
.footer-grid a:hover { color: #fff; }
.footer-bottom {
    display: flex; justify-content: space-between; padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .1); font-size: 11px;
}

.legal-hero { padding: 170px 0 75px; background: #f7f9fc; }
.legal-hero h1 {
    margin: 18px 0 8px; color: var(--navy-900);
    font-size: clamp(38px, 5vw, 58px); letter-spacing: -.04em;
}
.legal-hero p { margin: 0; color: var(--slate-500); }
.legal-content { padding: 80px 0 110px; }
.legal-grid { display: grid; grid-template-columns: 230px 1fr; gap: 80px; }
.legal-grid aside {
    position: sticky; top: 115px; height: fit-content; display: flex; flex-direction: column; gap: 10px;
}
.legal-grid aside strong { margin-bottom: 8px; color: var(--navy-900); }
.legal-grid aside a { color: var(--slate-500); font-size: 14px; }
.legal-grid article { max-width: 760px; color: var(--slate-700); }
.legal-grid article > p:first-child { margin-top: 0; color: var(--slate-900); font-size: 18px; }
.legal-grid h2 { margin: 42px 0 10px; color: var(--navy-900); font-size: 23px; }
.legal-grid article a { color: var(--blue-600); font-weight: 700; }

.error-page {
    min-height: 720px; display: grid; place-items: center; padding: 130px 0 70px;
    background: radial-gradient(circle at 50% 25%, rgba(11, 111, 232, .1), transparent 35%), #f7f9fc;
}
.error-card {
    max-width: 650px; margin-inline: auto; padding: 55px; text-align: center;
    border: 1px solid var(--slate-200); border-radius: 24px; background: #fff;
    box-shadow: 0 25px 60px rgba(7, 27, 66, .09);
}
.error-code {
    display: block; color: var(--blue-600); font-size: 72px; font-weight: 900;
    line-height: 1; letter-spacing: -.06em;
}
.error-card h1 { margin: 18px 0 10px; color: var(--navy-900); font-size: 30px; line-height: 1.2; }
.error-card p { margin: 0 auto 28px; color: var(--slate-700); }
.error-card small { display: block; margin-top: 25px; color: var(--slate-500); }
.error-card code { font-family: Consolas, monospace; }

[data-reveal] {
    opacity: 0; transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
    .main-navigation { gap: 18px; }
    .main-navigation > a:not(.button) { display: none; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { max-width: 720px; text-align: center; margin-inline: auto; }
    .hero-copy > p { margin-inline: auto; }
    .hero-actions, .hero-trust { justify-content: center; }
    .hero-visual { width: min(760px, 100%); min-width: 0; margin: 25px auto 0; transform: none; }
    .benefits-grid { gap: 55px; }
}

@media (max-width: 820px) {
    .site-header { height: 72px; }
    .brand img { width: 148px; }
    .menu-toggle { display: block; }
    .main-navigation {
        position: fixed; inset: 72px 0 auto; display: flex; max-height: 0; padding: 0 20px;
        overflow: hidden; flex-direction: column; align-items: stretch; gap: 5px; background: #fff;
        box-shadow: 0 20px 30px rgba(7, 27, 66, .1); transition: max-height .3s ease, padding .3s ease;
    }
    .main-navigation.open { max-height: calc(100vh - 72px); padding-block: 18px 24px; }
    .main-navigation > a:not(.button) { display: block; padding: 10px 4px; }
    .hero { min-height: auto; padding: 130px 0 75px; }
    .hero-grid { gap: 35px; }
    .hero h1 { font-size: clamp(40px, 11vw, 59px); }
    .dashboard-window { grid-template-columns: 48px 1fr; min-height: 400px; }
    .dashboard-sidebar { gap: 18px; }
    .side-item { width: 16px; height: 16px; }
    .dashboard-content { padding: 18px; }
    .floating-card-sales { right: -6px; }
    .floating-card-control { left: -7px; bottom: 20px; }
    .section { padding: 82px 0; }
    .solution-grid { grid-template-columns: repeat(2, 1fr); }
    .solution-card.featured, .ai-card { grid-column: span 2; }
    .featured { grid-template-columns: 52px 1fr !important; }
    .mini-finance { grid-column: 2; }
    .benefits-grid { grid-template-columns: 1fr; }
    .benefits-visual { min-height: 590px; }
    .steps { grid-template-columns: 1fr; gap: 42px; }
    .steps::before { display: none; }
    .cta-card { padding: 52px 40px; flex-direction: column; align-items: start; }
    .cta-actions { min-width: 0; align-items: start; }
}

@media (max-width: 600px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .hero-copy { text-align: left; }
    .hero-copy > p { font-size: 16px; }
    .hero-actions, .hero-trust { justify-content: flex-start; }
    .hero-actions .button { width: 100%; }
    .hero-visual { margin-top: 10px; }
    .dashboard-window { grid-template-columns: 1fr; min-height: 365px; }
    .dashboard-sidebar { height: 45px; padding: 0 14px; flex-direction: row; }
    .dashboard-sidebar .side-item { display: none; }
    .dashboard-content { padding: 13px; }
    .dashboard-metrics article:nth-child(3) { display: none; }
    .dashboard-metrics { grid-template-columns: repeat(2, 1fr); }
    .dashboard-panels { grid-template-columns: 1fr; }
    .summary-card { display: none; }
    .chart { height: 140px; }
    .floating-card { display: none; }
    .logo-strip-content {
        min-height: 70px; gap: 14px; overflow-x: auto; justify-content: flex-start; scrollbar-width: none;
    }
    .logo-strip-content span { flex: 0 0 auto; }
    .section-heading h2, .benefits-copy h2 { font-size: 34px; }
    .solution-grid { grid-template-columns: 1fr; }
    .solution-card, .solution-card.featured, .ai-card { grid-column: auto; }
    .solution-card.featured { display: block; }
    .featured .solution-icon { margin-bottom: 20px; }
    .featured ul { grid-template-columns: 1fr; }
    .mini-finance { margin-top: 25px; }
    .benefits-visual { min-height: 520px; }
    .phone { width: 245px; height: 485px; }
    .mobile-badge { right: 4px; bottom: 30px; }
    .cta-section { padding-bottom: 70px; }
    .cta-card { padding: 40px 25px; }
    .cta-card .button { width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { grid-column: span 2; }
    .footer-bottom { flex-direction: column; gap: 8px; }
    .legal-hero { padding: 135px 0 55px; }
    .legal-content { padding: 55px 0 80px; }
    .legal-grid { grid-template-columns: 1fr; gap: 35px; }
    .legal-grid aside { position: static; padding: 20px; border-radius: 14px; background: var(--slate-100); }
    .error-card { padding: 40px 22px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important;
    }
    [data-reveal] { opacity: 1; transform: none; }
}
