:root {
    --ink: #101b2d;
    --ink-soft: #4b5a6d;
    --navy: #0b1220;
    --navy-light: #111d31;
    --blue: #2f6fed;
    --blue-dark: #2057c7;
    --blue-soft: #eaf1ff;
    --cyan: #38bdf8;
    --green: #35c98f;
    --surface: #ffffff;
    --surface-soft: #f5f8fc;
    --line: #dfe6ef;
    --radius: 18px;
    --radius-small: 10px;
    --shadow: 0 24px 60px rgba(5, 18, 41, 0.13);
    --container: 1180px;
    --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
}

body {
    min-width: 320px;
    color: var(--ink);
    background: var(--surface);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
}

body,
input,
select,
textarea,
button {
    font-family: var(--font);
}

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

button,
input,
select,
textarea {
    font: inherit;
}

svg {
    display: block;
}

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

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(11, 18, 32, 0.88);
    backdrop-filter: blur(18px);
}

.nav {
    display: flex;
    height: 74px;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.035em;
}

.brand strong {
    color: #66a0ff;
    font-weight: 750;
}

.brand-mark {
    display: grid;
    width: 30px;
    height: 30px;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.08);
    transform: rotate(5deg);
}

.brand-mark span {
    border-radius: 50%;
    background: #66a0ff;
}

.brand-mark span:nth-child(2),
.brand-mark span:nth-child(3) {
    opacity: 0.6;
}

.brand-mark span:nth-child(4) {
    opacity: 0.3;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    font-weight: 550;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #fff;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border: 0;
    border-radius: var(--radius-small);
    cursor: pointer;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.2;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

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

.button-small {
    min-height: 42px;
    padding: 10px 17px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.84rem;
}

.button-small:hover {
    background: rgba(255, 255, 255, 0.17);
}

.button-primary {
    color: #fff;
    background: var(--blue);
    box-shadow: 0 12px 30px rgba(47, 111, 237, 0.28);
}

.button-primary:hover {
    background: var(--blue-dark);
    box-shadow: 0 16px 36px rgba(47, 111, 237, 0.34);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 156px 0 94px;
    color: #fff;
    background:
        linear-gradient(115deg, rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(25deg, rgba(255,255,255,0.012) 1px, transparent 1px),
        var(--navy);
    background-size: 48px 48px, 48px 48px, auto;
}

.hero::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11, 18, 32, 0.35), transparent 55%);
    content: "";
    pointer-events: none;
}

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

.hero-glow-one {
    top: -360px;
    left: -260px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(47, 111, 237, 0.28), transparent 68%);
}

.hero-glow-two {
    right: -180px;
    bottom: -360px;
    width: 760px;
    height: 760px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.16), transparent 66%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 74px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 19px;
    color: #8eb7ff;
    font-size: 0.75rem;
    font-weight: 750;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 24px;
    height: 2px;
    background: currentColor;
}

.eyebrow-dark {
    color: var(--blue);
}

.hero h1 {
    max-width: 620px;
    margin-bottom: 24px;
    font-size: clamp(3.1rem, 5vw, 5.2rem);
    font-weight: 720;
    letter-spacing: -0.065em;
    line-height: 0.99;
}

.hero h1 em {
    display: block;
    color: #74a8ff;
    font-style: normal;
}

.hero-intro {
    max-width: 580px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.12rem;
    line-height: 1.75;
}

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

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 650;
}

.text-link span {
    color: #74a8ff;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.text-link:hover span {
    transform: translateY(3px);
}

.trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 21px;
    margin-top: 38px;
    list-style: none;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.78rem;
    font-weight: 550;
}

.trust-list svg,
.contact-points svg {
    width: 17px;
    height: 17px;
    padding: 3px;
    border-radius: 50%;
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    background: rgba(53, 201, 143, 0.75);
}

.workspace-visual {
    position: relative;
    min-width: 0;
    transform: perspective(1400px) rotateY(-3deg) rotateX(1deg);
}

.visual-orbit {
    position: absolute;
    border: 1px solid rgba(116, 168, 255, 0.15);
    border-radius: 50%;
}

.orbit-one {
    inset: -60px -20px -80px -90px;
}

.orbit-two {
    inset: -25px 10px -35px -55px;
}

.app-window {
    position: relative;
    overflow: hidden;
    min-height: 440px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    background: #f8fafc;
    box-shadow: 0 45px 90px rgba(0, 0, 0, 0.36);
}

.window-bar {
    display: flex;
    height: 45px;
    align-items: center;
    gap: 16px;
    padding: 0 14px;
    border-bottom: 1px solid #e5e9ef;
    color: #607086;
    background: #fff;
}

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

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

.window-address {
    flex: 1;
    max-width: 230px;
    margin-inline: auto;
    padding: 5px 12px;
    border-radius: 6px;
    color: #76859a;
    background: #f2f5f8;
    font-size: 0.55rem;
    text-align: center;
}

.lock-icon {
    margin-right: 4px;
    color: var(--green);
    font-size: 0.43rem;
}

.window-user {
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--blue);
    font-size: 0.48rem;
    font-weight: 700;
}

.app-body {
    display: grid;
    min-height: 395px;
    grid-template-columns: 135px 1fr;
}

.app-sidebar {
    display: flex;
    flex-direction: column;
    padding: 19px 13px 15px;
    color: #627086;
    background: #eef2f7;
}

.app-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 25px;
    color: #1c2a3d;
    font-size: 0.58rem;
}

.mini-cloud {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 7px;
    color: #fff;
    background: var(--blue);
    font-size: 0.5rem;
    font-weight: 800;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sidebar-nav > span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 8px;
    border-radius: 6px;
    font-size: 0.54rem;
    font-weight: 600;
}

.sidebar-nav > span.active {
    color: var(--blue);
    background: #fff;
    box-shadow: 0 2px 8px rgba(21, 42, 75, 0.05);
}

.sidebar-nav i {
    width: 11px;
    height: 11px;
    border: 1.5px solid currentColor;
    border-radius: 3px;
}

.icon-folder {
    border-radius: 2px !important;
}

.icon-talk {
    border-radius: 50% !important;
}

.icon-calendar {
    border-radius: 2px !important;
}

.storage-card {
    margin-top: auto;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.66);
    font-size: 0.52rem;
}

.storage-card > span {
    color: #344257;
    font-weight: 700;
}

.storage-bar {
    overflow: hidden;
    height: 3px;
    margin: 7px 0 5px;
    border-radius: 3px;
    background: #dae1eb;
}

.storage-bar i {
    display: block;
    width: 24%;
    height: 100%;
    border-radius: inherit;
    background: var(--blue);
}

.storage-card small {
    color: #8a97a9;
    font-size: 0.45rem;
}

.app-content {
    min-width: 0;
    padding: 22px;
    color: #18263a;
}

.app-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 17px;
}

.app-heading div {
    display: flex;
    flex-direction: column;
}

.app-heading small {
    color: #8995a6;
    font-size: 0.48rem;
}

.app-heading strong {
    font-size: 0.84rem;
}

.app-heading button {
    padding: 6px 10px;
    border: 0;
    border-radius: 5px;
    color: #fff;
    background: var(--blue);
    font-size: 0.48rem;
    font-weight: 700;
}

.app-cards {
    display: grid;
    grid-template-columns: 0.72fr 0.72fr 1.5fr;
    gap: 9px;
}

.stat-card,
.meeting-card {
    min-width: 0;
    min-height: 88px;
    padding: 11px;
    border: 1px solid #e5eaf1;
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(22, 39, 68, 0.035);
}

.stat-card {
    display: flex;
    flex-direction: column;
}

.stat-icon {
    display: grid;
    width: 23px;
    height: 23px;
    place-items: center;
    margin-bottom: 10px;
    border-radius: 6px;
    font-size: 0.55rem;
}

.folder-color {
    color: var(--blue);
    background: var(--blue-soft);
}

.people-color {
    color: #8b5cf6;
    background: #f1ecff;
}

.stat-card small {
    overflow: hidden;
    color: #8995a6;
    font-size: 0.43rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.stat-card strong {
    font-size: 0.75rem;
}

.meeting-card {
    color: #fff;
    background: linear-gradient(135deg, #2f6fed, #2455ba);
}

.meeting-top,
.meeting-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.meeting-top {
    margin-bottom: 9px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.43rem;
}

.meeting-card > strong {
    display: block;
    margin-bottom: 10px;
    font-size: 0.63rem;
}

.meeting-bottom > span {
    padding: 3px 7px;
    border-radius: 4px;
    color: var(--blue);
    background: #fff;
    font-size: 0.42rem;
    font-weight: 700;
}

.avatar-stack {
    display: flex;
}

.avatar-stack i {
    display: grid;
    width: 17px;
    height: 17px;
    place-items: center;
    margin-right: -4px;
    border: 1.5px solid var(--blue);
    border-radius: 50%;
    color: #fff;
    background: #6c91db;
    font-size: 0.35rem;
    font-style: normal;
    font-weight: 700;
}

.avatar-stack i:nth-child(2) {
    background: #35a77b;
}

.avatar-stack i:nth-child(3) {
    background: #18263a;
}

.file-panel {
    margin-top: 14px;
    padding: 14px;
    border: 1px solid #e5eaf1;
    border-radius: 9px;
    background: #fff;
}

.panel-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.5rem;
}

.panel-heading > span {
    color: var(--blue);
    font-size: 0.43rem;
    font-weight: 650;
}

.file-row {
    display: grid;
    align-items: center;
    grid-template-columns: 25px 1fr auto;
    gap: 8px;
    padding: 7px 0;
    border-top: 1px solid #eef1f5;
}

.file-icon {
    display: grid;
    width: 22px;
    height: 25px;
    place-items: center;
    border-radius: 4px;
    color: #fff;
    font-size: 0.42rem;
    font-style: normal;
    font-weight: 800;
}

.file-blue { background: #4f83e9; }
.file-green { background: #3cad77; }
.file-red { background: #e26363; }

.file-row div {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.file-row strong {
    overflow: hidden;
    font-size: 0.48rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-row small,
.file-row > span {
    color: #98a2b1;
    font-size: 0.39rem;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    color: #26364c;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.floating-card > span:last-child {
    display: flex;
    flex-direction: column;
}

.floating-card small {
    color: #8491a3;
    font-size: 0.47rem;
}

.floating-card strong {
    font-size: 0.6rem;
}

.secure-card {
    bottom: 36px;
    left: -40px;
}

.sync-card {
    top: 80px;
    right: -35px;
}

.floating-icon {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    border-radius: 7px;
    color: var(--blue);
    background: var(--blue-soft);
}

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

.status-dot {
    width: 9px;
    height: 9px;
    border: 2px solid #d8f8ec;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 3px rgba(53, 201, 143, 0.12);
}

.proof-strip {
    border-bottom: 1px solid var(--line);
    background: #fff;
}

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

.proof-content > p {
    color: #738095;
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.product-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}

.product-list > span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #465569;
    font-size: 0.78rem;
    font-weight: 650;
}

.product-icon {
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    border-radius: 7px;
    color: var(--blue);
    background: var(--blue-soft);
    font-size: 0.58rem;
    font-style: normal;
    font-weight: 800;
}

.section {
    padding: 112px 0;
}

.section-heading h2,
.feature-copy h2,
.process-intro h2,
.faq-intro h2,
.contact-copy h2 {
    color: var(--ink);
    font-size: clamp(2.2rem, 4vw, 3.55rem);
    font-weight: 720;
    letter-spacing: -0.055em;
    line-height: 1.08;
}

.section-heading > p:last-child,
.faq-intro > p:last-child {
    color: var(--ink-soft);
    font-size: 1.05rem;
}

.centered {
    max-width: 680px;
    margin: 0 auto 58px;
    text-align: center;
}

.centered .eyebrow {
    justify-content: center;
}

.centered h2 {
    margin-bottom: 18px;
}

.problem-section {
    background: var(--surface-soft);
}

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

.problem-card {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    padding: 36px 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(17, 35, 65, 0.08);
}

.problem-card.featured {
    border-color: var(--blue);
    color: #fff;
    background: var(--blue);
}

.number {
    position: absolute;
    top: 25px;
    right: 28px;
    color: #cbd4df;
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.08em;
}

.featured .number {
    color: rgba(255, 255, 255, 0.45);
}

.card-icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    margin-bottom: 50px;
    border-radius: 13px;
    color: var(--blue);
    background: var(--blue-soft);
}

.featured .card-icon {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
}

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

.problem-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    letter-spacing: -0.025em;
}

.problem-card p {
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.problem-card.featured p {
    color: rgba(255, 255, 255, 0.72);
}

.feature-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 90px;
}

.feature-copy h2 {
    margin-bottom: 22px;
}

.feature-copy > .lead {
    margin-bottom: 37px;
    color: var(--ink-soft);
    font-size: 1.02rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.feature-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 17px;
}

.feature-item > span {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 11px;
    color: var(--blue);
    background: var(--blue-soft);
}

.feature-item svg {
    width: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.65;
}

.feature-item h3 {
    margin-bottom: 4px;
    font-size: 1rem;
    letter-spacing: -0.015em;
}

.feature-item p {
    color: var(--ink-soft);
    font-size: 0.88rem;
}

.feature-showcase {
    position: relative;
    min-width: 0;
    padding: 55px 10px 55px 55px;
}

.showcase-backdrop {
    position: absolute;
    inset: 0 0 0 80px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 90% 10%, rgba(56, 189, 248, 0.3), transparent 30%),
        linear-gradient(135deg, #13223b, #0b1220);
}

.browser-card {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    border: 1px solid #e0e6ef;
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow);
}

.browser-top {
    display: flex;
    height: 38px;
    align-items: center;
    gap: 5px;
    padding: 0 13px;
    border-bottom: 1px solid #e7ebf1;
}

.browser-top span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d4dae3;
}

.document-layout {
    display: grid;
    min-height: 392px;
    grid-template-columns: 60px 1fr 155px;
}

.doc-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding-top: 26px;
    background: #f1f4f8;
}

.doc-sidebar i {
    width: 18px;
    height: 18px;
    border: 2px solid #aab6c5;
    border-radius: 5px;
}

.doc-sidebar i:first-child {
    border-color: var(--blue);
    background: var(--blue-soft);
}

.doc-page {
    display: flex;
    flex-direction: column;
    margin: 28px 20px;
    padding: 40px 34px;
    border: 1px solid #edf0f4;
    box-shadow: 0 5px 18px rgba(31, 49, 75, 0.07);
}

.doc-page small {
    margin-bottom: 8px;
    color: var(--blue);
    font-size: 0.44rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.doc-page strong {
    margin-bottom: 28px;
    font-size: 1rem;
}

.doc-line {
    width: 72%;
    height: 5px;
    margin-bottom: 10px;
    border-radius: 5px;
    background: #e8edf3;
}

.doc-line.full { width: 100%; }
.doc-line.short { width: 45%; }
.doc-line.medium { width: 65%; }

.doc-chart {
    display: flex;
    height: 90px;
    align-items: flex-end;
    gap: 9px;
    margin: 24px 0;
    padding: 16px 18px 0;
    border-radius: 7px;
    background: #f6f8fb;
}

.doc-chart span {
    flex: 1;
    height: 40%;
    border-radius: 3px 3px 0 0;
    background: #a9c3f7;
}

.doc-chart span:nth-child(2) { height: 65%; }
.doc-chart span:nth-child(3) { height: 48%; }
.doc-chart span:nth-child(4) { height: 78%; background: var(--blue); }
.doc-chart span:nth-child(5) { height: 60%; }

.comments-panel {
    padding: 25px 13px;
    border-left: 1px solid #e9edf2;
    background: #fafbfc;
}

.comments-panel > small {
    color: #8995a5;
    font-size: 0.42rem;
    font-weight: 750;
    letter-spacing: 0.1em;
}

.comment {
    display: grid;
    margin-top: 18px;
    grid-template-columns: 24px 1fr;
    gap: 7px;
}

.comment > i {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--blue);
    font-size: 0.4rem;
    font-style: normal;
    font-weight: 700;
}

.comment:nth-child(3) > i {
    background: #2fa476;
}

.comment span {
    display: flex;
    flex-direction: column;
}

.comment strong {
    font-size: 0.48rem;
}

.comment em {
    color: #758195;
    font-size: 0.42rem;
    font-style: normal;
    line-height: 1.5;
}

.showcase-badge {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border-radius: 8px;
    color: #26364c;
    background: #fff;
    box-shadow: 0 13px 30px rgba(8, 22, 47, 0.18);
    font-size: 0.57rem;
    font-weight: 700;
}

.badge-live {
    top: 90px;
    left: 25px;
}

.badge-live i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 3px rgba(53, 201, 143, 0.14);
}

.badge-save {
    right: -15px;
    bottom: 92px;
}

.badge-save svg {
    width: 17px;
    height: 17px;
    padding: 3px;
    border-radius: 50%;
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    background: var(--green);
}

.benefits-section {
    color: #fff;
    background: var(--navy);
}

.split-heading {
    display: grid;
    align-items: end;
    margin-bottom: 62px;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 90px;
}

.split-heading h2 {
    color: #fff;
}

.split-heading > p {
    padding-bottom: 5px;
    color: rgba(255, 255, 255, 0.62) !important;
    font-size: 0.95rem !important;
}

.benefits-grid {
    display: grid;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    grid-template-columns: repeat(4, 1fr);
}

.benefits-grid article {
    position: relative;
    min-height: 300px;
    padding: 35px 27px 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.benefits-grid article:first-child {
    padding-left: 0;
}

.benefits-grid article:last-child {
    border-right: 0;
}

.benefit-number {
    position: absolute;
    top: 35px;
    right: 27px;
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.65rem;
    font-weight: 750;
}

.benefit-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 64px;
    border-radius: 12px;
    color: #83adff;
    background: rgba(47, 111, 237, 0.15);
}

.benefits-grid h3 {
    margin-bottom: 10px;
    font-size: 1.08rem;
}

.benefits-grid p {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.85rem;
}

.process-section {
    background: var(--surface-soft);
}

.process-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 110px;
}

.process-intro h2 {
    margin-bottom: 22px;
}

.process-intro > p:not(.eyebrow) {
    margin-bottom: 27px;
    color: var(--ink-soft);
}

.text-link-dark {
    color: var(--ink);
}

.text-link-dark span {
    color: var(--blue);
}

.text-link-dark:hover span {
    transform: translateX(3px);
}

.process-steps {
    list-style: none;
}

.process-steps li {
    display: grid;
    padding: 29px 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 70px 1fr;
    gap: 20px;
}

.process-steps li:first-child {
    padding-top: 4px;
}

.process-steps > li > span {
    display: grid;
    width: 51px;
    height: 51px;
    place-items: center;
    border: 1px solid #c9d8f1;
    border-radius: 50%;
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 750;
}

.process-steps h3 {
    margin-bottom: 7px;
    font-size: 1.1rem;
}

.process-steps p {
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;
    gap: 100px;
}

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

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

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

.faq-list summary {
    position: relative;
    padding: 23px 45px 23px 0;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
    position: absolute;
    top: 50%;
    right: 5px;
    width: 14px;
    height: 1.5px;
    background: var(--blue);
    content: "";
    transition: transform 0.2s ease;
}

.faq-list summary::after {
    transform: rotate(90deg);
}

.faq-list details[open] summary::after {
    transform: rotate(0);
}

.faq-list details p {
    max-width: 650px;
    padding: 0 45px 23px 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.contact-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    color: #fff;
    background: linear-gradient(135deg, #0c1729, #0b1220);
}

.contact-glow {
    position: absolute;
    right: -200px;
    bottom: -300px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 111, 237, 0.23), transparent 67%);
}

.contact-grid {
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
}

.contact-copy h2 {
    margin-bottom: 22px;
    color: #fff;
}

.contact-copy > p:not(.eyebrow):not(.direct-contact) {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 1rem;
}

.contact-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 34px 0;
}

.contact-points span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
}

.direct-contact {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.84rem;
}

.direct-contact a {
    margin-left: 5px;
    color: #83adff;
    font-weight: 700;
}

.lead-form {
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius);
    color: var(--ink);
    background: #fff;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.form-heading {
    margin-bottom: 25px;
}

.form-heading h3 {
    margin-bottom: 5px;
    font-size: 1.35rem;
    letter-spacing: -0.025em;
}

.form-heading p {
    color: var(--ink-soft);
    font-size: 0.78rem;
}

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

.lead-form label {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 15px;
    color: #29384d;
    font-size: 0.76rem;
    font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    border: 1px solid #d9e0e9;
    border-radius: 8px;
    outline: none;
    color: var(--ink);
    background: #fbfcfe;
    font-size: 0.85rem;
    font-weight: 450;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input,
.lead-form select {
    height: 46px;
    padding: 0 13px;
}

.lead-form textarea {
    min-height: 100px;
    padding: 12px 13px;
    resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(47, 111, 237, 0.1);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
    color: #9ba6b5;
}

.form-submit {
    width: 100%;
    margin-top: 3px;
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 13px;
    color: #8692a3;
    font-size: 0.66rem;
}

.form-note svg {
    width: 13px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.footer {
    padding: 38px 0;
    color: #fff;
    background: #070d17;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand-footer {
    font-size: 1.05rem;
}

.brand-footer .brand-mark {
    width: 26px;
    height: 26px;
}

.footer-content > div:first-child > p {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.72rem;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a,
.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.74rem;
}

.footer-links a:hover {
    color: #fff;
}

@media (max-width: 1080px) {
    .hero-grid {
        gap: 38px;
    }

    .hero h1 {
        font-size: clamp(3rem, 5.5vw, 4.4rem);
    }

    .workspace-visual {
        transform: none;
    }

    .feature-grid,
    .contact-grid {
        gap: 55px;
    }

    .document-layout {
        grid-template-columns: 50px 1fr 125px;
    }

    .doc-page {
        margin-inline: 12px;
        padding-inline: 22px;
    }

    .benefits-grid article {
        padding-inline: 20px;
    }

    .process-grid,
    .faq-grid {
        gap: 65px;
    }
}

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

    .hero {
        padding-top: 135px;
    }

    .hero-grid,
    .feature-grid,
    .process-grid,
    .faq-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 78px;
    }

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

    .workspace-visual {
        width: min(100%, 680px);
        margin: 0 auto;
    }

    .proof-content {
        align-items: flex-start;
        flex-direction: column;
        padding-block: 25px;
    }

    .product-list {
        width: 100%;
        justify-content: space-between;
    }

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

    .problem-card {
        min-height: auto;
    }

    .card-icon {
        margin-bottom: 34px;
    }

    .feature-copy {
        max-width: 680px;
    }

    .feature-showcase {
        width: min(100%, 680px);
        margin: 0 auto;
    }

    .split-heading {
        align-items: start;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .split-heading > p {
        max-width: 600px;
    }

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

    .benefits-grid article {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .benefits-grid article:nth-child(2) {
        border-right: 0;
    }

    .benefits-grid article:nth-child(3) {
        padding-left: 0;
    }

    .benefits-grid article:nth-child(3),
    .benefits-grid article:nth-child(4) {
        border-bottom: 0;
    }

    .process-intro,
    .faq-intro,
    .contact-copy {
        max-width: 650px;
    }

    .contact-grid {
        gap: 55px;
    }

    .lead-form {
        max-width: 680px;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 32px, var(--container));
    }

    .nav {
        height: 66px;
    }

    .button-small {
        min-height: 39px;
        padding-inline: 13px;
        font-size: 0.75rem;
    }

    .hero {
        padding: 118px 0 72px;
    }

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

    .hero-intro {
        font-size: 1rem;
    }

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

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

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

    .trust-list {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        margin-top: 28px;
    }

    .workspace-visual {
        margin-inline: -5px;
    }

    .app-window {
        min-height: 350px;
    }

    .app-body {
        min-height: 305px;
        grid-template-columns: 72px 1fr;
    }

    .app-sidebar {
        padding-inline: 7px;
    }

    .app-logo {
        justify-content: center;
    }

    .app-logo strong,
    .sidebar-nav span {
        font-size: 0;
    }

    .sidebar-nav > span {
        justify-content: center;
    }

    .storage-card {
        display: none;
    }

    .app-content {
        padding: 14px 11px;
    }

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

    .meeting-card {
        display: none;
    }

    .file-panel {
        padding: 10px;
    }

    .secure-card {
        bottom: -22px;
        left: 8px;
    }

    .sync-card {
        top: 62px;
        right: -5px;
    }

    .proof-content {
        gap: 18px;
    }

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

    .section,
    .contact-section {
        padding: 82px 0;
    }

    .section-heading h2,
    .feature-copy h2,
    .process-intro h2,
    .faq-intro h2,
    .contact-copy h2 {
        font-size: 2.3rem;
    }

    .centered {
        margin-bottom: 38px;
    }

    .problem-card {
        padding: 30px 25px;
    }

    .feature-grid {
        gap: 55px;
    }

    .feature-showcase {
        padding: 30px 0 30px 16px;
    }

    .showcase-backdrop {
        left: 38px;
    }

    .browser-card {
        min-height: 345px;
    }

    .document-layout {
        min-height: 307px;
        grid-template-columns: 38px 1fr;
    }

    .comments-panel {
        display: none;
    }

    .doc-page {
        margin: 18px 12px;
        padding: 28px 20px;
    }

    .badge-live {
        top: 53px;
        left: 0;
    }

    .badge-save {
        right: -4px;
        bottom: 50px;
    }

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

    .benefits-grid article,
    .benefits-grid article:first-child,
    .benefits-grid article:nth-child(3) {
        min-height: auto;
        padding: 30px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .benefits-grid article:last-child {
        border-bottom: 0;
    }

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

    .benefit-number {
        right: 0;
    }

    .process-steps li {
        grid-template-columns: 55px 1fr;
        gap: 14px;
    }

    .process-steps > li > span {
        width: 43px;
        height: 43px;
    }

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

    .lead-form {
        padding: 28px 21px;
    }

    .footer-content {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 13px 20px;
    }
}

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

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }
}
