:root {
    --landing-ink: #0f172a;
    --landing-muted: #5f6b7c;
    --landing-line: #e2e8f0;
    --landing-soft: #f4f7fb;
    --landing-white: #ffffff;
    --landing-primary: #1463ff;
    --landing-primary-dark: #0b48c9;
    --landing-primary-soft: #eaf1ff;
    --landing-green: #0f9f6e;
    --landing-amber: #d97706;
    --landing-violet: #7c3aed;
    --landing-navy: #0b1220;
    --landing-radius-sm: 12px;
    --landing-radius: 18px;
    --landing-radius-lg: 28px;
    --landing-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

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

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

body.landing-page {
    margin: 0;
    color: var(--landing-ink);
    background: var(--landing-white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.landing-page a {
    color: inherit;
    text-decoration: none;
}

.landing-page button,
.landing-page a {
    -webkit-tap-highlight-color: transparent;
}

.landing-page button,
.landing-page input {
    font: inherit;
}

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

.landing-page section[id] {
    scroll-margin-top: 86px;
}

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

.landing-skip-link {
    position: fixed;
    z-index: 999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 10px;
    color: #fff !important;
    background: var(--landing-navy);
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

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

.landing-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.72);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.landing-header.is-scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.07);
}

.landing-nav-wrap {
    display: flex;
    align-items: center;
    min-height: 76px;
    gap: 28px;
}

.landing-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 11px;
}

.landing-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(145deg, #2875ff, #0b4cd7);
    box-shadow: 0 8px 22px rgba(20, 99, 255, 0.27);
    font-size: 18px;
    font-weight: 800;
}

.landing-brand > span:last-child {
    display: grid;
    line-height: 1.2;
}

.landing-brand strong {
    color: var(--landing-ink);
    font-size: 16px;
    letter-spacing: -0.02em;
}

.landing-brand small {
    margin-top: 2px;
    color: #7b8798;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.landing-nav-actions,
.landing-hero-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.landing-nav-actions {
    margin-left: auto;
}

.landing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 16px;
    border: 1px solid transparent;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.2;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.landing-btn:hover {
    transform: translateY(-1px);
}

.landing-btn:focus-visible,
.landing-text-link:focus-visible {
    outline: 3px solid rgba(20, 99, 255, 0.25);
    outline-offset: 3px;
}

.landing-btn-primary {
    color: #fff !important;
    background: linear-gradient(135deg, #1f70ff, #0e55df);
    box-shadow: 0 9px 24px rgba(20, 99, 255, 0.24);
}

.landing-btn-primary:hover {
    box-shadow: 0 13px 30px rgba(20, 99, 255, 0.32);
}

.landing-btn-login {
    min-height: 38px;
    padding: 8px 16px;
    border-color: #b8cdf7;
    color: #0f57cf;
    background: #f7faff;
    box-shadow: 0 4px 12px rgba(20, 99, 255, 0.08);
}

.landing-btn-login:hover {
    border-color: #8eb0ef;
    color: #0b48c9;
    background: #eaf1ff;
    box-shadow: 0 8px 18px rgba(20, 99, 255, 0.14);
}

.landing-btn-secondary {
    border-color: #d7dfeb;
    color: #263247;
    background: #fff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.landing-btn-secondary:hover {
    border-color: #adc4ed;
    color: var(--landing-primary);
    box-shadow: 0 9px 22px rgba(15, 23, 42, 0.08);
}

.landing-btn-lg {
    min-height: 50px;
    padding: 13px 21px;
    gap: 10px;
    border-radius: 13px;
    font-size: 15px;
}

.landing-hero {
    position: relative;
    overflow: hidden;
    padding: 82px 0 96px;
    background:
        linear-gradient(180deg, #f8faff 0%, #ffffff 88%),
        #fff;
}

.landing-hero::before {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at center, rgba(20, 99, 255, 0.1) 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.38), transparent 70%);
    content: "";
    pointer-events: none;
}

.landing-hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(1px);
    pointer-events: none;
}

.landing-hero-glow-one {
    top: -190px;
    left: -170px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(67, 133, 255, 0.15), transparent 68%);
}

.landing-hero-glow-two {
    right: -150px;
    bottom: -180px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1), transparent 68%);
}

.landing-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(540px, 1.12fr);
    align-items: center;
    gap: 64px;
}

.landing-eyebrow,
.landing-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--landing-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.landing-eyebrow {
    padding: 8px 12px;
    border: 1px solid #cfddfb;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
    letter-spacing: 0.045em;
    text-transform: none;
}

.landing-hero-copy h1 {
    max-width: 610px;
    margin: 21px 0 21px;
    color: #0b1324;
    font-size: clamp(43px, 4.25vw, 66px);
    font-weight: 820;
    letter-spacing: -0.055em;
    line-height: 1.04;
}

.landing-hero-copy > p {
    max-width: 600px;
    margin-bottom: 29px;
    color: var(--landing-muted);
    font-size: 18px;
    line-height: 1.72;
}

.landing-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 19px;
    margin-top: 24px;
    color: #536074;
    font-size: 13px;
    font-weight: 650;
}

.landing-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.landing-trust-row i {
    color: var(--landing-green);
}

.landing-product-preview {
    position: relative;
    padding: 16px 0 36px;
}

.landing-preview-window {
    overflow: hidden;
    border: 1px solid #dae3ef;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--landing-shadow);
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
    transform-origin: center;
}

.landing-preview-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 54px;
    padding: 0 17px;
    border-bottom: 1px solid #e6ebf2;
    background: #fff;
}

.landing-preview-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
}

.landing-preview-brand span {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    color: #fff;
    background: var(--landing-primary);
    font-weight: 800;
}

.landing-preview-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 9px;
    border-radius: 999px;
    color: #157251;
    background: #e9f8f2;
    font-size: 9px;
    font-weight: 750;
}

.landing-preview-status i {
    font-size: 6px;
}

.landing-preview-body {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 390px;
    background: #f3f6fa;
}

.landing-preview-sidebar {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    padding-top: 22px;
    color: #91a0b4;
    background: #0d1729;
}

.landing-preview-sidebar span {
    display: grid;
    place-items: center;
    width: 29px;
    height: 29px;
    border-radius: 8px;
    font-size: 11px;
}

.landing-preview-sidebar .is-active {
    color: #fff;
    background: var(--landing-primary);
}

.landing-preview-content {
    padding: 22px 20px;
}

.landing-preview-heading,
.landing-preview-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.landing-preview-heading div {
    display: grid;
}

.landing-preview-heading small,
.landing-preview-panel-head small {
    color: #8290a3;
    font-size: 9px;
}

.landing-preview-heading strong {
    color: #182235;
    font-size: 16px;
}

.landing-preview-heading > span {
    padding: 6px 9px;
    border: 1px solid #dbe3ed;
    border-radius: 7px;
    color: #5f6d80;
    background: #fff;
    font-size: 9px;
    font-weight: 650;
}

.landing-preview-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 17px;
}

.landing-preview-cards article {
    position: relative;
    min-width: 0;
    padding: 13px;
    border: 1px solid #e1e7ef;
    border-radius: 11px;
    background: #fff;
}

.landing-preview-cards article > span {
    display: grid;
    place-items: center;
    width: 27px;
    height: 27px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 10px;
}

.tone-blue {
    color: #2469e8 !important;
    background: #eaf1ff !important;
}

.tone-green {
    color: #0c8d61 !important;
    background: #e3f7ef !important;
}

.tone-amber {
    color: #c26803 !important;
    background: #fff1da !important;
}

.tone-violet {
    color: #7040db !important;
    background: #f0e9ff !important;
}

.landing-preview-cards small,
.landing-preview-cards strong,
.landing-preview-cards em {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.landing-preview-cards small {
    color: #6d7a8d;
    font-size: 8px;
}

.landing-preview-cards strong {
    margin-top: 2px;
    color: #122038;
    font-size: 12px;
}

.landing-preview-cards em {
    margin-top: 5px;
    color: #8794a6;
    font-size: 7px;
    font-style: normal;
}

.landing-preview-panels {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(145px, 0.8fr);
    gap: 10px;
    margin-top: 10px;
}

.landing-preview-panels > article {
    padding: 14px;
    border: 1px solid #e1e7ef;
    border-radius: 11px;
    background: #fff;
}

.landing-preview-panel-head strong {
    color: #28364a;
    font-size: 9px;
}

.landing-chart-area {
    display: flex;
    align-items: flex-end;
    height: 116px;
    margin-top: 13px;
    padding: 0 8px;
    gap: 10px;
    border-bottom: 1px solid #dde5ef;
    background: repeating-linear-gradient(to top, transparent 0, transparent 28px, #eef2f7 29px);
}

.landing-chart-area span {
    flex: 1 1 0;
    height: var(--height);
    border-radius: 4px 4px 1px 1px;
    background: linear-gradient(180deg, #4e8cff, #1762ed);
    box-shadow: 0 5px 10px rgba(20, 99, 255, 0.15);
}

.landing-preview-list > div:not(.landing-preview-panel-head) {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 11px;
}

.landing-preview-list > div > span {
    display: grid;
    place-items: center;
    width: 25px;
    height: 25px;
    border-radius: 7px;
    font-size: 8px;
}

.landing-preview-list p {
    display: grid;
    margin: 0;
    color: #324054;
    font-size: 8px;
    font-weight: 700;
    line-height: 1.35;
}

.landing-preview-list p small {
    color: #8b96a6;
    font-size: 7px;
    font-weight: 500;
}

.landing-mobile-card {
    position: absolute;
    right: -30px;
    bottom: 0;
    width: 205px;
    padding: 15px;
    border: 1px solid #dce4ee;
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(12px);
}

.landing-mobile-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.landing-mobile-card-head > span {
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    border-radius: 10px;
    color: #07875c;
    background: #e4f7ef;
    font-size: 17px;
}

.landing-mobile-card-head > div {
    display: grid;
    line-height: 1.4;
}

.landing-mobile-card-head strong {
    font-size: 10px;
}

.landing-mobile-card-head small {
    color: #7c8899;
    font-size: 8px;
}

.landing-mobile-cart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 13px 0 9px;
    padding: 9px 10px;
    border-radius: 9px;
    color: #617085;
    background: #f5f7fa;
    font-size: 8px;
}

.landing-mobile-cart strong {
    color: #17233a;
    font-size: 10px;
}

.landing-mobile-pay {
    padding: 8px;
    border-radius: 8px;
    color: #fff;
    background: var(--landing-primary);
    font-size: 8px;
    font-weight: 750;
    text-align: center;
}

.landing-preview-caption {
    position: absolute;
    bottom: 2px;
    left: 14px;
    color: #8b96a7;
    font-size: 10px;
}

.landing-section {
    padding: 104px 0;
}

.landing-section-soft {
    border-block: 1px solid #e8edf4;
    background: var(--landing-soft);
}

.landing-section-heading {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.landing-section-heading-left {
    margin: 0;
    text-align: left;
}

.landing-section-heading h2,
.landing-insight-copy h2,
.landing-security-layout > div:first-child h2 {
    margin: 12px 0 16px;
    color: #101a2d;
    font-size: clamp(32px, 3.5vw, 47px);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.12;
}

.landing-section-heading p,
.landing-insight-copy > p {
    margin-bottom: 0;
    color: var(--landing-muted);
    font-size: 17px;
}

.landing-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.landing-feature-card {
    position: relative;
    display: flex;
    min-height: 266px;
    padding: 27px;
    border: 1px solid #e1e7ef;
    border-radius: var(--landing-radius);
    background: #fff;
    flex-direction: column;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.landing-feature-card:hover {
    border-color: #c8d7ed;
    box-shadow: 0 17px 42px rgba(15, 23, 42, 0.08);
    transform: translateY(-4px);
}

.landing-feature-card.feature-primary {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(145deg, #135de8, #0e49bd);
    box-shadow: 0 20px 45px rgba(20, 89, 222, 0.2);
}

.landing-feature-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 25px;
    border-radius: 14px;
    color: var(--landing-primary);
    background: var(--landing-primary-soft);
    font-size: 20px;
}

.feature-primary .landing-feature-icon {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
}

.landing-feature-card h3 {
    margin-bottom: 10px;
    color: #152137;
    font-size: 18px;
    font-weight: 770;
    letter-spacing: -0.02em;
}

.landing-feature-card p {
    margin-bottom: 0;
    color: #687588;
    font-size: 14px;
}

.feature-primary h3,
.feature-primary p {
    color: #fff;
}

.feature-primary p {
    color: rgba(255, 255, 255, 0.78);
}

.landing-feature-meta {
    display: inline-flex;
    align-self: flex-start;
    margin-top: auto;
    padding: 6px 9px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.13);
    font-size: 10px;
    font-weight: 750;
}

.landing-workflow-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
    align-items: center;
    gap: 92px;
}

.landing-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 24px;
    color: var(--landing-primary) !important;
    font-size: 14px;
    font-weight: 780;
}

.landing-workflow-list {
    position: relative;
    display: grid;
    margin: 0;
    padding: 0;
    gap: 14px;
    list-style: none;
}

.landing-workflow-list::before {
    position: absolute;
    top: 48px;
    bottom: 48px;
    left: 31px;
    width: 2px;
    background: #cbd7e7;
    content: "";
}

.landing-workflow-list li {
    position: relative;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: center;
    min-height: 118px;
    padding: 20px 24px 20px 18px;
    border: 1px solid #dee6f0;
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 9px 26px rgba(15, 23, 42, 0.04);
    gap: 18px;
}

.landing-workflow-list li > span {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin: auto;
    border: 5px solid #f7f9fc;
    border-radius: 50%;
    color: #fff;
    background: var(--landing-primary);
    box-shadow: 0 0 0 1px #bdd0ed;
    font-size: 11px;
    font-weight: 800;
}

.landing-workflow-list h3 {
    margin-bottom: 5px;
    color: #1a273c;
    font-size: 16px;
}

.landing-workflow-list p {
    margin: 0;
    color: #697689;
    font-size: 13px;
}

.landing-insight-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: 88px;
}

.landing-insight-visual {
    position: relative;
    padding: 34px;
    border-radius: var(--landing-radius-lg);
    background:
        radial-gradient(circle at top right, rgba(49, 118, 255, 0.24), transparent 42%),
        linear-gradient(145deg, #0e1930, #101f3e);
}

.landing-insight-card {
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.22);
}

.landing-insight-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.landing-insight-head > span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    color: var(--landing-primary);
    background: var(--landing-primary-soft);
}

.landing-insight-head > div {
    display: grid;
}

.landing-insight-head small {
    color: #8793a4;
    font-size: 10px;
}

.landing-insight-head strong {
    color: #172339;
    font-size: 15px;
}

.landing-insight-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 26px;
    gap: 10px;
}

.landing-insight-summary > div {
    display: grid;
    min-width: 0;
    padding: 14px;
    border: 1px solid #e5eaf1;
    border-radius: 11px;
    background: #f8fafc;
}

.landing-insight-summary small,
.landing-insight-summary span {
    color: #8190a3;
    font-size: 9px;
}

.landing-insight-summary strong {
    margin: 4px 0 1px;
    color: #233148;
    font-size: 13px;
}

.landing-insight-summary .is-positive {
    color: var(--landing-green);
}

.landing-insight-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 17px;
    padding: 13px;
    border-radius: 11px;
    color: #3d4a5f;
    background: #eef3fa;
    gap: 14px;
    font-size: 10px;
    font-weight: 750;
}

.landing-insight-flow i {
    color: #93a1b4;
    font-size: 8px;
}

.landing-insight-copy > p {
    margin-bottom: 28px;
}

.landing-insight-copy ul {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 16px;
    list-style: none;
}

.landing-insight-copy li {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: start;
    gap: 11px;
}

.landing-insight-copy li > i {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    margin-top: 2px;
    border-radius: 50%;
    color: #087b54;
    background: #e1f5ed;
    font-size: 9px;
}

.landing-insight-copy li > span {
    color: #657286;
    font-size: 14px;
}

.landing-insight-copy li strong {
    display: block;
    margin-bottom: 1px;
    color: #263349;
}

.landing-security-section {
    color: #fff;
    background:
        radial-gradient(circle at 15% 20%, rgba(38, 108, 255, 0.26), transparent 32%),
        radial-gradient(circle at 90% 80%, rgba(124, 58, 237, 0.18), transparent 30%),
        var(--landing-navy);
}

.landing-security-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(570px, 1.3fr);
    align-items: center;
    gap: 80px;
}

.landing-kicker-light {
    color: #8eb6ff;
}

.landing-security-layout > div:first-child h2 {
    color: #fff;
}

.landing-security-layout > div:first-child p {
    margin-bottom: 0;
    color: #aebbd0;
}

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

.landing-security-grid article {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    gap: 13px;
    backdrop-filter: blur(8px);
}

.landing-security-grid article > i {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    color: #9fc0ff;
    background: rgba(81, 139, 255, 0.16);
}

.landing-security-grid h3 {
    margin-bottom: 4px;
    color: #fff;
    font-size: 14px;
}

.landing-security-grid p {
    margin: 0;
    color: #9facbf;
    font-size: 11px;
}

.landing-faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(560px, 1.28fr);
    align-items: start;
    gap: 80px;
}

.landing-faq-list {
    display: grid;
    gap: 11px;
}

.landing-faq-list details {
    overflow: hidden;
    border: 1px solid #dfe6ef;
    border-radius: 14px;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-faq-list details[open] {
    border-color: #b9ccec;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.landing-faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    color: #263349;
    cursor: pointer;
    font-size: 14px;
    font-weight: 750;
    gap: 18px;
    list-style: none;
}

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

.landing-faq-list summary i {
    color: #8291a5;
    font-size: 11px;
    transition: transform 0.2s ease;
}

.landing-faq-list details[open] summary i {
    color: var(--landing-primary);
    transform: rotate(45deg);
}

.landing-faq-list details p {
    margin: -2px 20px 20px;
    padding-right: 35px;
    color: #667488;
    font-size: 13px;
}

.landing-footer {
    color: #a8b3c4;
    background: #09101d;
}

.landing-footer-main {
    display: grid;
    grid-template-columns: auto minmax(220px, 1fr) auto;
    align-items: center;
    min-height: 125px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    gap: 36px;
}

.landing-brand-footer strong {
    color: #fff;
}

.landing-brand-footer small {
    color: #8390a4;
}

.landing-footer-main > p {
    max-width: 420px;
    margin: 0;
    color: #8592a5;
    font-size: 12px;
}

.landing-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 560px;
    gap: 20px;
}

.landing-footer nav a {
    color: #b6c0ce;
    font-size: 12px;
    font-weight: 650;
}

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

.landing-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    color: #6f7d91;
    font-size: 10px;
    gap: 20px;
}

.public-info-page {
    background: var(--landing-soft);
}

.public-info-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.public-info-nav-actions .landing-btn {
    min-height: 38px;
    padding: 8px 14px;
}

.landing-btn-public-home {
    gap: 7px;
    font-size: 13px;
}

.public-info-main {
    min-height: calc(100vh - 269px);
}

.public-info-hero {
    position: relative;
    overflow: hidden;
    padding: 82px 0 58px;
    border-bottom: 1px solid var(--landing-line);
    background:
        radial-gradient(circle at 85% 18%, rgba(20, 99, 255, 0.12), transparent 27%),
        linear-gradient(180deg, #fff, #f7faff);
}

.public-info-hero-inner {
    max-width: 860px;
    margin-inline: auto;
    text-align: center;
}

.public-info-hero h1 {
    max-width: 760px;
    margin: 14px auto 16px;
    color: var(--landing-ink);
    font-size: clamp(38px, 6vw, 62px);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -0.045em;
}

.public-info-hero p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--landing-muted);
    font-size: 17px;
}

.public-info-date {
    display: inline-flex;
    align-items: center;
    margin-top: 22px;
    padding: 7px 12px;
    border: 1px solid #d7e4fa;
    border-radius: 999px;
    gap: 7px;
    color: #3f5f8e;
    background: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 700;
}

.public-info-content {
    padding: 52px 0 96px;
}

.public-info-content-inner {
    max-width: 940px;
}

.public-info-card {
    border: 1px solid var(--landing-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
}

.public-policy-card {
    padding: clamp(26px, 5vw, 54px);
}

.public-policy-card section + section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #edf1f6;
}

.public-policy-card h2,
.public-contact-main h2,
.public-contact-side h2 {
    margin-bottom: 10px;
    color: var(--landing-ink);
    font-size: 20px;
    font-weight: 850;
    line-height: 1.3;
}

.public-policy-card p,
.public-policy-card li,
.public-contact-main > p,
.public-contact-side p {
    color: var(--landing-muted);
    font-size: 15px;
}

.public-policy-card p:last-child,
.public-contact-side p:last-child {
    margin-bottom: 0;
}

.public-policy-card ul {
    display: grid;
    margin: 14px 0 0;
    padding-left: 22px;
    gap: 8px;
}

.public-policy-card a {
    color: var(--landing-primary-dark);
    font-weight: 750;
}

.public-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    align-items: start;
    gap: 22px;
}

.public-contact-main {
    min-height: 390px;
    padding: clamp(28px, 5vw, 48px);
}

.public-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    border-radius: 16px;
    color: var(--landing-primary);
    background: var(--landing-primary-soft);
    font-size: 22px;
}

.public-contact-actions {
    display: flex;
    flex-wrap: wrap;
    margin-top: 28px;
    gap: 12px;
}

.public-contact-actions .landing-btn {
    gap: 9px;
}

.public-contact-whatsapp {
    border-color: #9be0c5;
    color: #08784f;
    background: #edfff7;
}

.public-contact-whatsapp:hover {
    border-color: #68cda7;
    color: #066441;
    background: #dcfaed;
}

.public-contact-address {
    display: flex;
    align-items: flex-start;
    margin: 22px 0 0;
    padding: 16px 18px;
    border: 1px solid #dbe7f8;
    border-radius: 14px;
    gap: 12px;
    color: var(--landing-ink);
    background: #f8fbff;
    font-style: normal;
}

.public-contact-address > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    color: var(--landing-primary);
    background: var(--landing-primary-soft);
}

.public-contact-address small,
.public-contact-address strong {
    display: block;
}

.public-contact-address small {
    margin-bottom: 3px;
    color: var(--landing-muted);
    font-size: 12px;
    font-weight: 700;
}

.public-contact-address strong {
    color: var(--landing-ink);
    font-size: 14px;
    font-weight: 750;
    line-height: 1.55;
}

.public-info-notice {
    display: flex;
    align-items: flex-start;
    margin-top: 28px;
    padding: 17px 18px;
    border: 1px solid #f1d59a;
    border-radius: 14px;
    gap: 12px;
    color: #8a5705;
    background: #fff9eb;
}

.public-info-notice > i {
    margin-top: 4px;
}

.public-info-notice strong {
    display: block;
    margin-bottom: 3px;
}

.public-info-notice p {
    margin: 0;
    color: #8a672b;
    font-size: 13px;
}

.public-contact-side {
    display: grid;
    gap: 22px;
}

.public-contact-side .public-info-card {
    padding: 26px;
}

.public-contact-topics {
    display: grid;
    margin: 16px 0 0;
    padding: 0;
    gap: 12px;
    list-style: none;
}

.public-contact-topics li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--landing-muted);
    font-size: 14px;
}

.public-contact-topics i {
    margin-top: 5px;
    color: var(--landing-green);
    font-size: 11px;
}

.public-contact-security {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.public-contact-security > i {
    margin-top: 3px;
    color: var(--landing-primary);
    font-size: 20px;
}

.public-contact-security h2 {
    font-size: 16px;
}

@media (max-width: 1120px) {
    .landing-hero-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(490px, 1.1fr);
        gap: 38px;
    }

    .landing-hero-copy h1 {
        font-size: clamp(41px, 5vw, 56px);
    }

    .landing-workflow-layout,
    .landing-insight-grid,
    .landing-security-layout,
    .landing-faq-layout {
        gap: 50px;
    }
}

@media (max-width: 960px) {
    .landing-container {
        width: min(100% - 36px, 760px);
    }

    .landing-hero {
        padding-top: 66px;
    }

    .landing-hero-grid,
    .landing-workflow-layout,
    .landing-insight-grid,
    .landing-security-layout,
    .landing-faq-layout {
        grid-template-columns: 1fr;
    }

    .landing-hero-grid {
        gap: 54px;
    }

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

    .landing-hero-copy h1,
    .landing-hero-copy > p {
        margin-inline: auto;
    }

    .landing-hero-actions,
    .landing-trust-row {
        justify-content: center;
    }

    .landing-product-preview {
        max-width: 700px;
        margin-inline: auto;
    }

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

    .landing-workflow-layout,
    .landing-faq-layout {
        gap: 42px;
    }

    .landing-section-heading-left {
        max-width: 720px;
    }

    .landing-insight-grid {
        gap: 44px;
    }

    .landing-insight-copy {
        order: -1;
    }

    .landing-security-layout {
        gap: 35px;
    }

    .landing-footer-main {
        grid-template-columns: 1fr auto;
    }

    .landing-footer-main > p {
        display: none;
    }
}

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

    .landing-nav-wrap {
        min-height: 68px;
        gap: 10px;
    }

    .landing-brand-mark {
        width: 36px;
        height: 36px;
        border-radius: 11px;
        font-size: 16px;
    }

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

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

    .landing-hero {
        padding: 52px 0 66px;
    }

    .landing-eyebrow {
        font-size: 10px;
    }

    .landing-hero-copy h1 {
        margin-block: 18px;
        font-size: clamp(37px, 11vw, 48px);
        letter-spacing: -0.052em;
    }

    .landing-hero-copy > p {
        font-size: 15px;
    }

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

    .landing-trust-row {
        display: grid;
        justify-content: start;
        max-width: 270px;
        margin-inline: auto;
        text-align: left;
    }

    .landing-preview-window {
        transform: none;
    }

    .landing-preview-body {
        grid-template-columns: 38px minmax(0, 1fr);
        min-height: 315px;
    }

    .landing-preview-content {
        padding: 15px 12px;
    }

    .landing-preview-sidebar {
        gap: 8px;
        padding-top: 16px;
    }

    .landing-preview-sidebar span {
        width: 25px;
        height: 25px;
        font-size: 9px;
    }

    .landing-preview-cards {
        gap: 6px;
    }

    .landing-preview-cards article {
        padding: 9px;
    }

    .landing-preview-cards article > span {
        width: 23px;
        height: 23px;
        margin-bottom: 6px;
    }

    .landing-preview-cards strong {
        font-size: 9px;
    }

    .landing-preview-cards em {
        display: none;
    }

    .landing-preview-panels {
        grid-template-columns: 1fr;
    }

    .landing-preview-list {
        display: none;
    }

    .landing-chart-area {
        height: 84px;
    }

    .landing-mobile-card {
        right: -5px;
        width: 178px;
        padding: 12px;
    }

    .landing-preview-caption {
        display: none;
    }

    .landing-section {
        padding: 76px 0;
    }

    .landing-section-heading {
        margin-bottom: 34px;
    }

    .landing-section-heading h2,
    .landing-insight-copy h2,
    .landing-security-layout > div:first-child h2 {
        font-size: clamp(30px, 9vw, 39px);
    }

    .landing-section-heading p,
    .landing-insight-copy > p {
        font-size: 15px;
    }

    .landing-feature-grid,
    .landing-security-grid {
        grid-template-columns: 1fr;
    }

    .landing-feature-card {
        min-height: 0;
    }

    .landing-feature-meta {
        margin-top: 18px;
    }

    .landing-workflow-list li {
        grid-template-columns: 52px minmax(0, 1fr);
        padding: 17px 16px 17px 11px;
        gap: 10px;
    }

    .landing-workflow-list::before {
        left: 25px;
    }

    .landing-workflow-list li > span {
        width: 40px;
        height: 40px;
    }

    .landing-insight-visual {
        padding: 16px;
    }

    .landing-insight-card {
        padding: 17px;
    }

    .landing-insight-summary {
        gap: 6px;
    }

    .landing-insight-summary > div {
        padding: 9px;
    }

    .landing-insight-summary strong {
        font-size: 10px;
    }

    .landing-insight-flow {
        gap: 7px;
    }

    .landing-security-grid article {
        min-height: 104px;
    }

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

    .landing-faq-list details p {
        margin-inline: 16px;
        padding-right: 0;
    }

    .landing-footer-main {
        align-items: flex-start;
        padding-block: 32px;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .landing-footer nav {
        flex-wrap: wrap;
        gap: 12px 20px;
    }

    .landing-footer-bottom {
        align-items: flex-start;
        padding-block: 19px;
        flex-direction: column;
        gap: 4px;
    }

    .public-info-hero {
        padding: 58px 0 42px;
    }

    .public-info-hero h1 {
        font-size: clamp(36px, 11vw, 48px);
    }

    .public-info-hero p {
        font-size: 15px;
    }

    .public-info-content {
        padding: 30px 0 70px;
    }

    .public-contact-grid {
        grid-template-columns: 1fr;
    }

    .public-contact-main {
        min-height: 0;
    }

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

@media (max-width: 430px) {
    .landing-btn-public-home {
        width: 38px;
        padding-inline: 0;
    }

    .landing-btn-public-home span {
        display: none;
    }

    .landing-preview-heading > span,
    .landing-preview-cards article:nth-child(3) {
        display: none;
    }

    .landing-preview-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-mobile-card {
        right: 0;
        width: 160px;
    }
}

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

    .landing-page *,
    .landing-page *::before,
    .landing-page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
