/*
 * Smart Rental landing page
 * Responsive, dependency-light and optimized for fast first paint.
 */

:root {
    --page-bg: #f7f8fc;
    --surface: #ffffff;
    --surface-soft: #f5f3ff;
    --surface-dark: #111329;
    --text: #17182d;
    --text-soft: #62677f;
    --text-faint: #8a8fa5;
    --line: #e7e8f0;
    --line-strong: #d9dbea;
    --primary: #6d4aff;
    --primary-dark: #5735eb;
    --primary-soft: #eeeaff;
    --secondary: #0f9d8a;
    --success: #16a36f;
    --warning: #e99a24;
    --danger: #e85b79;
    --blue: #3478f6;
    --cyan: #1ba6b9;
    --shadow-xs: 0 2px 8px rgba(25, 28, 56, .06);
    --shadow-sm: 0 10px 32px rgba(35, 30, 78, .08);
    --shadow-md: 0 20px 55px rgba(35, 30, 78, .12);
    --shadow-lg: 0 30px 85px rgba(42, 32, 96, .16);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --radius-xl: 34px;
    --shell: 1180px;
    --header-height: 78px;
    --ease: cubic-bezier(.2, .75, .25, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    background: var(--page-bg);
}

body.landing-page {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--text);
    background: var(--page-bg);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

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

a {
    color: inherit;
}

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

button {
    color: inherit;
}

[hidden] {
    display: none !important;
}

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.svg-sprite symbol,
svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

.section {
    position: relative;
    padding-block: 108px;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    inset-block-start: 12px;
    inset-inline-start: 12px;
    transform: translateY(-160%);
    padding: 10px 14px;
    border-radius: 10px;
    color: #fff;
    background: var(--surface-dark);
    text-decoration: none;
    transition: transform .2s ease;
}

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

/* Header */
.site-header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    padding-top: 14px;
    transition: padding .25s ease, background .25s ease, box-shadow .25s ease;
}

.header-shell {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 13px 16px 13px 20px;
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 22px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 12px 36px rgba(33, 29, 75, .08);
    backdrop-filter: blur(18px) saturate(145%);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    transition: border-radius .25s ease, box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
    padding-top: 8px;
}

.site-header.is-scrolled .header-shell {
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 14px 45px rgba(33, 29, 75, .12);
}

.brand {
    min-width: 170px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--text);
    text-decoration: none;
    font-weight: 850;
    letter-spacing: -.035em;
}

.brand-logo {
    width: auto;
    max-width: 180px;
    height: 42px;
    object-fit: contain;
    object-position: left center;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(145deg, #8567ff, #5e39f3);
    box-shadow: 0 8px 22px rgba(109, 74, 255, .28);
}

.brand-mark svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
    stroke: currentColor;
}

.brand-name {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 1.08rem;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin-inline: auto;
}

.nav-link {
    position: relative;
    padding: 9px 12px;
    border-radius: 10px;
    color: #555a72;
    text-decoration: none;
    font-size: .89rem;
    font-weight: 680;
    transition: color .2s ease, background .2s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
    color: var(--primary);
    background: var(--primary-soft);
    outline: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-button {
    display: none;
    width: 46px;
    height: 46px;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fff;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.menu-button:hover {
    border-color: #cfc6ff;
    background: var(--primary-soft);
}

.menu-button svg {
    width: 23px;
    height: 23px;
}

.menu-button .menu-close {
    display: none;
}

.menu-button[aria-expanded="true"] .menu-open {
    display: none;
}

.menu-button[aria-expanded="true"] .menu-close {
    display: block;
}

.mobile-navigation {
    width: min(var(--shell), calc(100% - 40px));
    margin: 8px auto 0;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 22px;
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.mobile-navigation.is-open {
    animation: menuIn .24s var(--ease) both;
}

.mobile-nav-shell {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 14px;
}

.mobile-nav-link {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 13px;
    border: 1px solid var(--line);
    border-radius: 13px;
    color: var(--text);
    background: #fff;
    text-decoration: none;
    font-size: .91rem;
    font-weight: 700;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
    color: var(--primary);
    border-color: #cec4ff;
    background: #f8f6ff;
    outline: none;
}

.mobile-nav-link svg {
    width: 17px;
    height: 17px;
}

.mobile-auth-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding-top: 4px;
}

/* Buttons */
.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 18px;
    border: 1px solid transparent;
    border-radius: 13px;
    text-decoration: none;
    font-size: .92rem;
    font-weight: 780;
    line-height: 1.1;
    cursor: pointer;
    transition: transform .22s var(--ease), box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}

.button svg {
    width: 18px;
    height: 18px;
    transition: transform .22s ease;
}

.button:hover svg {
    transform: translateX(3px);
}

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

.button:active {
    transform: translateY(0);
}

.button:focus-visible,
.text-link:focus-visible,
.back-to-top:focus-visible,
.floating-contact:focus-visible {
    outline: 3px solid rgba(109, 74, 255, .24);
    outline-offset: 3px;
}

.button-sm {
    min-height: 42px;
    padding: 9px 15px;
    font-size: .86rem;
}

.button-lg {
    min-height: 54px;
    padding: 15px 23px;
    border-radius: 15px;
    font-size: .97rem;
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, #7657ff 0%, #5b36ed 100%);
    box-shadow: 0 12px 26px rgba(93, 57, 239, .25);
}

.button-primary:hover {
    color: #fff;
    background: linear-gradient(135deg, #6d4aff 0%, #4f2cda 100%);
    box-shadow: 0 16px 32px rgba(93, 57, 239, .34);
}

.button-secondary,
.button-ghost {
    color: #35384c;
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, .84);
}

.button-secondary:hover,
.button-ghost:hover {
    color: var(--primary);
    border-color: #cfc4ff;
    background: #fff;
    box-shadow: var(--shadow-xs);
}

.button-white {
    color: #5c3ce9;
    background: #fff;
    box-shadow: 0 15px 36px rgba(20, 13, 70, .22);
}

.button-white:hover {
    color: #4f2eda;
    background: #f9f8ff;
}

.button-outline-light {
    color: #fff;
    border-color: rgba(255, 255, 255, .34);
    background: rgba(255, 255, 255, .08);
}

.button-outline-light:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .66);
    background: rgba(255, 255, 255, .14);
}

/* Hero */
.hero {
    min-height: 820px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 154px;
    padding-bottom: 58px;
    overflow: hidden;
    background:
        radial-gradient(circle at 7% 18%, rgba(116, 83, 255, .10), transparent 30%),
        radial-gradient(circle at 92% 24%, rgba(46, 183, 195, .10), transparent 28%),
        linear-gradient(180deg, #fafaff 0%, #f5f5fb 100%);
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .42;
    background-image:
        linear-gradient(rgba(72, 57, 136, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(72, 57, 136, .05) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, #000 0, transparent 78%);
    -webkit-mask-image: linear-gradient(to bottom, #000 0, transparent 78%);
}

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

.hero-orb-one {
    width: 330px;
    height: 330px;
    top: 110px;
    right: -150px;
    border: 1px solid rgba(109, 74, 255, .18);
}

.hero-orb-two {
    width: 180px;
    height: 180px;
    bottom: 120px;
    left: -100px;
    border: 1px solid rgba(15, 157, 138, .2);
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
    align-items: center;
    gap: clamp(48px, 7vw, 94px);
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--primary);
    font-size: .78rem;
    font-weight: 830;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.eyebrow {
    margin-bottom: 22px;
    padding: 8px 12px;
    border: 1px solid #d9d2ff;
    border-radius: 999px;
    background: rgba(255, 255, 255, .76);
    box-shadow: var(--shadow-xs);
    letter-spacing: .025em;
    text-transform: none;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #18b979;
    box-shadow: 0 0 0 5px rgba(24, 185, 121, .12);
    animation: statusPulse 2s ease-in-out infinite;
}

.hero h1 {
    max-width: 650px;
    margin: 0;
    color: #17172a;
    font-size: clamp(3rem, 5.3vw, 5.15rem);
    line-height: .99;
    letter-spacing: -.064em;
    font-weight: 900;
}

.hero h1 span {
    color: transparent;
    background: linear-gradient(110deg, #6d4aff 8%, #8d5df5 52%, #1f9da7 100%);
    background-clip: text;
    -webkit-background-clip: text;
}

.hero-lead {
    max-width: 625px;
    margin: 26px 0 0;
    color: var(--text-soft);
    font-size: clamp(1rem, 1.55vw, 1.16rem);
    line-height: 1.78;
}

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

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: 25px;
    color: #5b6075;
    font-size: .84rem;
    font-weight: 650;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-proof svg,
.check-list svg,
.business-points svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    color: var(--success);
    stroke-width: 2.4;
}

.hero-stats {
    max-width: 620px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 34px 0 0;
    padding: 20px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.hero-stats div {
    padding-inline: 22px;
    border-inline-end: 1px solid var(--line);
}

.hero-stats div:first-child {
    padding-inline-start: 0;
}

.hero-stats div:last-child {
    padding-inline-end: 0;
    border-inline-end: 0;
}

.hero-stats dt {
    color: #25263d;
    font-size: 1.65rem;
    line-height: 1.1;
    font-weight: 880;
    letter-spacing: -.04em;
}

.hero-stats dd {
    margin: 5px 0 0;
    color: var(--text-faint);
    font-size: .78rem;
    font-weight: 650;
}

.hero-visual {
    position: relative;
    min-width: 0;
    perspective: 1400px;
}

.dashboard-window {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid rgba(180, 181, 209, .55);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow-lg);
    transform: rotateY(-4deg) rotateX(1.3deg);
    transform-origin: center;
}

.dashboard-topbar {
    height: 58px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 17px;
    border-bottom: 1px solid #eeeeF4;
    background: rgba(255, 255, 255, .94);
}

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

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

.window-dots span:first-child { background: #ff7a81; }
.window-dots span:nth-child(2) { background: #ffc85c; }
.window-dots span:nth-child(3) { background: #4ac896; }

.dashboard-search {
    width: 35%;
    height: 10px;
    margin-inline: auto;
    border-radius: 999px;
    background: #f0f1f6;
}

.dashboard-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(145deg, #d5ccff, #8064f8);
}

.dashboard-body {
    min-height: 440px;
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    background: #fafafe;
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 25px 17px;
    border-inline-end: 1px solid #ececf4;
    background: #fff;
}

.side-brand {
    width: 62px;
    height: 13px;
    margin-bottom: 10px;
    border-radius: 99px;
    background: #7660ef;
}

.side-item {
    width: 75px;
    height: 9px;
    border-radius: 99px;
    background: #ececf3;
}

.side-item.short { width: 54px; }
.side-item.active {
    position: relative;
    background: #b9a9ff;
}

.side-item.active::before {
    content: "";
    position: absolute;
    top: -9px;
    left: -17px;
    width: 4px;
    height: 27px;
    border-radius: 0 5px 5px 0;
    background: var(--primary);
}

.dashboard-content {
    min-width: 0;
    padding: 25px;
}

.dashboard-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.dashboard-heading div {
    display: grid;
    gap: 8px;
}

.dashboard-heading span {
    width: 128px;
    height: 13px;
    border-radius: 99px;
    background: #33364e;
}

.dashboard-heading small {
    width: 90px;
    height: 8px;
    border-radius: 99px;
    background: #dbdce7;
}

.dashboard-heading button {
    padding: 8px 12px;
    border: 0;
    border-radius: 9px;
    color: #fff;
    background: var(--primary);
    font-size: .62rem;
    font-weight: 750;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 11px;
    margin-top: 23px;
}

.metric-grid article {
    position: relative;
    min-width: 0;
    padding: 14px;
    border: 1px solid #ececf4;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(24, 25, 55, .04);
}

.metric-grid small,
.metric-grid strong,
.metric-grid em {
    display: block;
}

.metric-grid small {
    margin-top: 10px;
    color: #8f93a7;
    font-size: .55rem;
}

.metric-grid strong {
    margin-top: 2px;
    color: #33354c;
    font-size: .9rem;
    letter-spacing: -.03em;
}

.metric-grid em {
    position: absolute;
    top: 14px;
    right: 11px;
    color: var(--success);
    font-size: .47rem;
    font-style: normal;
    font-weight: 750;
}

.metric-icon {
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    border-radius: 9px;
}

.metric-icon svg {
    width: 14px;
    height: 14px;
}

.metric-icon.violet { color: #6445e8; background: #eeeaff; }
.metric-icon.blue { color: #3478f6; background: #e9f1ff; }
.metric-icon.green { color: #168e67; background: #e7f8f0; }

.dashboard-lower-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(155px, .8fr);
    gap: 11px;
    margin-top: 12px;
}

.chart-card,
.activity-card {
    min-width: 0;
    min-height: 220px;
    padding: 16px;
    border: 1px solid #ececf4;
    border-radius: 15px;
    background: #fff;
}

.card-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-title span {
    width: 75px;
    height: 9px;
    border-radius: 99px;
    background: #4d5068;
}

.card-title small {
    width: 44px;
    height: 7px;
    border-radius: 99px;
    background: #e7e8ef;
}

.chart-bars {
    height: 155px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 6px;
    margin-top: 25px;
    padding-top: 15px;
    border-bottom: 1px solid #e9eaf1;
    background-image: linear-gradient(to bottom, rgba(227, 228, 238, .72) 1px, transparent 1px);
    background-size: 100% 38px;
}

.chart-bars i {
    width: 8%;
    min-width: 8px;
    height: 35%;
    border-radius: 6px 6px 2px 2px;
    background: linear-gradient(180deg, #9a83ff, #6849ee);
    opacity: .9;
    animation: chartGrow 4s ease-in-out infinite alternate;
    transform-origin: bottom;
}

.chart-bars i:nth-child(2) { height: 58%; animation-delay: -.5s; }
.chart-bars i:nth-child(3) { height: 44%; animation-delay: -1s; }
.chart-bars i:nth-child(4) { height: 75%; animation-delay: -1.5s; }
.chart-bars i:nth-child(5) { height: 62%; animation-delay: -2s; }
.chart-bars i:nth-child(6) { height: 88%; animation-delay: -2.5s; }
.chart-bars i:nth-child(7) { height: 70%; animation-delay: -3s; }
.chart-bars i:nth-child(8) { height: 96%; animation-delay: -3.5s; }
.chart-bars i:nth-child(9) { height: 82%; animation-delay: -4s; }

.activity-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.activity-card .card-title {
    margin-bottom: 4px;
}

.activity-row {
    display: grid;
    grid-template-columns: 18px 1fr 30px;
    align-items: center;
    gap: 8px;
}

.activity-row b {
    width: 18px;
    height: 18px;
    border-radius: 6px;
}

.activity-row b.green { background: #dff6ec; }
.activity-row b.violet { background: #eee9ff; }
.activity-row b.blue { background: #e3efff; }
.activity-row b.amber { background: #fff0d8; }

.activity-row span,
.activity-row em {
    height: 7px;
    border-radius: 99px;
    background: #e6e7ee;
}

.activity-row em {
    width: 30px;
    justify-self: end;
    background: #f0f1f5;
}

.floating-card {
    position: absolute;
    z-index: 4;
    min-width: 205px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 15px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 18px 42px rgba(41, 34, 89, .16);
    backdrop-filter: blur(14px);
}

.floating-card-a {
    right: -24px;
    bottom: 38px;
    animation: floatA 5s ease-in-out infinite;
}

.floating-card-b {
    top: 82px;
    left: -46px;
    animation: floatB 5.5s ease-in-out infinite;
}

.float-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 11px;
    color: #fff;
    background: linear-gradient(145deg, #7b5cff, #5a36e8);
}

.float-icon.secure {
    background: linear-gradient(145deg, #20b68a, #0c8c74);
}

.float-icon svg {
    width: 18px;
    height: 18px;
}

.floating-card div {
    display: grid;
    gap: 1px;
}

.floating-card small {
    color: #8b8fa2;
    font-size: .62rem;
}

.floating-card strong {
    color: #303247;
    font-size: .76rem;
}

.floating-card > i {
    width: 7px;
    height: 7px;
    margin-inline-start: auto;
    border-radius: 50%;
    background: #20b976;
    box-shadow: 0 0 0 4px rgba(32, 185, 118, .12);
}

.trust-strip {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 60px;
    padding: 19px 22px;
    border: 1px solid rgba(224, 224, 236, .84);
    border-radius: 18px;
    background: rgba(255, 255, 255, .68);
    backdrop-filter: blur(12px);
}

.trust-strip p {
    margin: 0;
    color: #777b91;
    font-size: .82rem;
    font-weight: 700;
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 22px;
}

.trust-items span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #3c4056;
    font-size: .8rem;
    font-weight: 750;
}

.trust-items svg {
    width: 17px;
    height: 17px;
    color: var(--primary);
}

/* Shared section headings */
.section-heading {
    max-width: 730px;
    margin: 0 auto 54px;
    text-align: center;
}

.section-heading h2,
.security-copy h2,
.business-copy h2,
.faq-intro h2,
.final-cta h2 {
    margin: 14px 0 0;
    color: var(--text);
    font-size: clamp(2.2rem, 4vw, 3.55rem);
    line-height: 1.08;
    font-weight: 880;
    letter-spacing: -.052em;
}

.section-heading p,
.security-copy > p,
.business-copy > p,
.faq-intro > p,
.final-cta p {
    margin: 19px 0 0;
    color: var(--text-soft);
    font-size: 1.02rem;
    line-height: 1.75;
}

/* Process */
.process-section {
    background: #fff;
}

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.process-grid::before {
    content: "";
    position: absolute;
    top: 56px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d9d2ff 18%, #c9ddef 52%, #d8eae5 82%, transparent);
}

.process-card {
    position: relative;
    min-height: 300px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-xs);
    transition: transform .28s var(--ease), box-shadow .28s ease, border-color .28s ease;
}

.process-card:hover {
    transform: translateY(-7px);
    border-color: #d6ceff;
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: 23px;
    right: 24px;
    color: #d7d8e4;
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .06em;
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 15px;
}

.feature-icon svg {
    width: 25px;
    height: 25px;
}

.icon-violet { color: #6949eb; background: #eeeaff; }
.icon-blue { color: #3478f6; background: #e9f1ff; }
.icon-green { color: #15966b; background: #e6f8ef; }
.icon-pink { color: #dc557f; background: #ffeaf1; }
.icon-amber { color: #d88417; background: #fff2df; }
.icon-cyan { color: #128b9a; background: #e5f7f9; }

.process-card h3 {
    margin: 25px 0 0;
    color: #27293d;
    font-size: 1.15rem;
    line-height: 1.25;
    font-weight: 820;
    letter-spacing: -.025em;
}

.process-card p {
    margin: 12px 0 0;
    color: var(--text-soft);
    font-size: .9rem;
    line-height: 1.7;
}

/* Features bento */
.features-section {
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 10% 5%, rgba(115, 84, 255, .23), transparent 28%),
        radial-gradient(circle at 88% 14%, rgba(28, 172, 184, .14), transparent 26%),
        linear-gradient(145deg, #111329 0%, #15162e 55%, #121326 100%);
}

.features-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .11;
    background-image:
        linear-gradient(rgba(255, 255, 255, .22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .22) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.section-heading-light {
    position: relative;
}

.section-heading-light h2 {
    color: #fff;
}

.section-heading-light p {
    color: #afb1c7;
}

.bento-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 17px;
}

.bento-card {
    min-width: 0;
    padding: 29px;
    border: 1px solid rgba(255, 255, 255, .105);
    border-radius: 25px;
    background: linear-gradient(150deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .035));
    box-shadow: 0 22px 50px rgba(3, 4, 19, .2);
    backdrop-filter: blur(12px);
    transition: transform .3s var(--ease), border-color .3s ease, background .3s ease;
}

.bento-card:hover {
    transform: translateY(-6px);
    border-color: rgba(160, 137, 255, .42);
    background: linear-gradient(150deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .045));
}

.bento-large {
    grid-column: span 2;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(300px, 1.1fr);
    align-items: center;
    gap: 28px;
}

.card-label {
    display: block;
    margin-top: 21px;
    color: #a99aff;
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bento-card h3 {
    margin: 10px 0 0;
    color: #fff;
    font-size: 1.32rem;
    line-height: 1.28;
    font-weight: 820;
    letter-spacing: -.03em;
}

.bento-large h3 {
    font-size: clamp(1.8rem, 2.7vw, 2.55rem);
    line-height: 1.1;
}

.bento-card p {
    margin: 13px 0 0;
    color: #afb1c5;
    font-size: .91rem;
    line-height: 1.72;
}

.check-list {
    display: grid;
    gap: 10px;
    margin: 21px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ddddeb;
    font-size: .84rem;
    font-weight: 650;
}

.mini-analytics {
    min-width: 0;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    background: rgba(7, 8, 25, .45);
    box-shadow: inset 0 1px rgba(255, 255, 255, .05);
}

.mini-analytics-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #d9d9e8;
    font-size: .76rem;
    font-weight: 700;
}

.mini-analytics-head small {
    color: #81849d;
    font-size: .65rem;
}

.mini-analytics > strong {
    display: block;
    margin-top: 18px;
    color: #fff;
    font-size: 1.6rem;
    letter-spacing: -.04em;
}

.mini-analytics > strong em {
    margin-inline-start: 7px;
    color: #52d3a4;
    font-size: .68rem;
    font-style: normal;
    letter-spacing: normal;
}

.line-chart {
    height: 152px;
    margin-top: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 100% 38px;
}

.line-chart svg {
    width: 100%;
    height: 100%;
    stroke: none;
}

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

.chart-line {
    fill: none;
    stroke: #9b85ff;
    stroke-width: 4;
    stroke-linecap: round;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 23px;
}

.tag-row span {
    padding: 7px 9px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 9px;
    color: #d6d6e5;
    background: rgba(255, 255, 255, .05);
    font-size: .67rem;
    font-weight: 700;
}

.api-preview {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    margin-top: 23px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 11px;
    background: rgba(0, 0, 0, .18);
}

.api-preview span,
.api-preview i {
    padding: 4px 6px;
    border-radius: 5px;
    font-size: .55rem;
    font-style: normal;
    font-weight: 850;
}

.api-preview span {
    color: #83f2c7;
    background: rgba(44, 194, 139, .13);
}

.api-preview code {
    min-width: 0;
    overflow: hidden;
    color: #c8cad9;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: .67rem;
}

.api-preview i {
    color: #94e8c7;
}

/* Security */
.security-section {
    background: #fff;
}

.security-layout {
    display: grid;
    grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: clamp(48px, 8vw, 105px);
}

.security-copy {
    max-width: 475px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    color: var(--primary);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 780;
}

.text-link svg {
    width: 17px;
    height: 17px;
    transition: transform .2s ease;
}

.text-link:hover svg {
    transform: translateX(4px);
}

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

.security-card {
    min-height: 180px;
    display: flex;
    align-items: flex-start;
    gap: 17px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-xs);
    transition: transform .27s var(--ease), box-shadow .27s ease, border-color .27s ease;
}

.security-card:hover {
    transform: translateY(-5px);
    border-color: #d7d0ff;
    box-shadow: var(--shadow-sm);
}

.security-card .feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
}

.security-card .feature-icon svg {
    width: 22px;
    height: 22px;
}

.security-card h3 {
    margin: 4px 0 0;
    color: #292b40;
    font-size: 1.02rem;
    font-weight: 810;
}

.security-card p {
    margin: 9px 0 0;
    color: var(--text-soft);
    font-size: .83rem;
    line-height: 1.65;
}

/* Business */
.business-section {
    padding-top: 20px;
    background: #fff;
}

.business-panel {
    min-height: 530px;
    display: grid;
    grid-template-columns: minmax(330px, .92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 58px;
    overflow: hidden;
    padding: clamp(40px, 6vw, 75px);
    border-radius: 34px;
    color: #fff;
    background:
        radial-gradient(circle at 12% 25%, rgba(114, 83, 255, .52), transparent 34%),
        radial-gradient(circle at 95% 70%, rgba(24, 167, 179, .2), transparent 33%),
        linear-gradient(140deg, #17182f, #101126 72%);
    box-shadow: 0 35px 80px rgba(30, 25, 72, .16);
}

.business-copy {
    position: relative;
    z-index: 2;
}

.business-copy h2 {
    color: #fff;
}

.business-copy > p {
    color: #b7b8ca;
}

.business-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 18px;
    margin-top: 27px;
}

.business-points span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e0e0ed;
    font-size: .84rem;
    font-weight: 650;
}

.business-visual {
    position: relative;
    min-height: 360px;
    display: grid;
    place-items: center;
}

.business-core,
.orbit-node {
    position: absolute;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
}

.business-core {
    z-index: 3;
    width: 110px;
    height: 110px;
    background: linear-gradient(145deg, #8b6cff, #5a38ea);
    box-shadow: 0 0 0 20px rgba(126, 94, 255, .09), 0 25px 55px rgba(67, 41, 190, .4);
}

.business-core svg {
    width: 45px;
    height: 45px;
    fill: currentColor;
    stroke: currentColor;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(181, 169, 255, .28);
    border-radius: 50%;
}

.orbit-one {
    width: 235px;
    height: 235px;
    animation: orbitSpin 26s linear infinite;
}

.orbit-two {
    width: 350px;
    height: 350px;
    border-style: dashed;
    opacity: .75;
    animation: orbitSpinReverse 32s linear infinite;
}

.orbit-node {
    z-index: 4;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .2);
    backdrop-filter: blur(10px);
}

.orbit-node svg {
    width: 26px;
    height: 26px;
}

.node-one { top: 34px; left: 50%; transform: translateX(-50%); }
.node-two { top: 50%; right: 8px; transform: translateY(-50%); }
.node-three { bottom: 27px; left: 50%; transform: translateX(-50%); }
.node-four { top: 50%; left: 8px; transform: translateY(-50%); }

/* FAQ */
.faq-section {
    background: #f7f8fc;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: clamp(46px, 8vw, 110px);
}

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

.faq-intro .button {
    margin-top: 27px;
}

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

.faq-item {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: #fff;
    box-shadow: var(--shadow-xs);
    transition: border-color .22s ease, box-shadow .22s ease;
}

.faq-item[open] {
    border-color: #d7ceff;
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 22px;
    cursor: pointer;
    list-style: none;
    color: #292b40;
    font-size: .96rem;
    font-weight: 760;
}

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

.faq-item summary svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    color: var(--primary);
    transition: transform .24s ease;
}

.faq-item[open] summary svg {
    transform: rotate(180deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 1fr;
    padding: 0 22px 21px;
}

.faq-answer p {
    margin: 0;
    padding-top: 17px;
    border-top: 1px solid var(--line);
    color: var(--text-soft);
    font-size: .9rem;
    line-height: 1.75;
}

/* Final CTA */
.final-cta-section {
    padding-block: 0 96px;
    background: #f7f8fc;
}

.final-cta {
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    overflow: hidden;
    padding: clamp(40px, 6vw, 72px);
    border-radius: 32px;
    color: #fff;
    background:
        radial-gradient(circle at 15% 10%, rgba(255, 255, 255, .18), transparent 25%),
        radial-gradient(circle at 96% 85%, rgba(24, 190, 172, .23), transparent 32%),
        linear-gradient(125deg, #714cf7 0%, #5430df 62%, #3e25b6 100%);
    box-shadow: 0 32px 75px rgba(72, 47, 185, .26);
}

.final-cta > div:first-child {
    max-width: 650px;
}

.section-kicker-light {
    color: #e9e5ff;
}

.final-cta h2 {
    color: #fff;
}

.final-cta p {
    color: #ddd8ff;
}

.final-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 210px;
}

/* Footer */
.landing-footer {
    color: #c7c8d7;
    background: #101124;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(240px, .9fr) minmax(0, 1.1fr);
    gap: 80px;
    padding-block: 72px 52px;
}

.footer-brand {
    color: #fff;
}

.footer-brand-column > p {
    max-width: 390px;
    margin: 20px 0 0;
    color: #9497ae;
    font-size: .9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 35px;
}

.footer-links div {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-links h3 {
    margin: 0 0 4px;
    color: #fff;
    font-size: .84rem;
    font-weight: 780;
}

.footer-links a {
    width: fit-content;
    color: #9699af;
    text-decoration: none;
    font-size: .83rem;
    transition: color .18s ease;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-block: 22px 30px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom p {
    margin: 0;
    color: #777b93;
    font-size: .76rem;
}

/* Floating actions */
.floating-contact,
.back-to-top {
    position: fixed;
    z-index: 900;
    right: max(18px, env(safe-area-inset-right));
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 15px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(22, 25, 50, .2);
    transition: opacity .2s ease, visibility .2s ease, transform .2s var(--ease);
}

.floating-contact:hover,
.back-to-top:hover {
    transform: translateY(-3px);
}

.telegram-contact {
    bottom: max(138px, calc(env(safe-area-inset-bottom) + 138px));
    background: linear-gradient(145deg, #43a7e7, #247fc0);
    font-size: .72rem;
    font-weight: 900;
}

.whatsapp-contact {
    bottom: max(78px, calc(env(safe-area-inset-bottom) + 78px));
    background: linear-gradient(145deg, #2fcd79, #17a85c);
    font-size: .72rem;
    font-weight: 900;
}

.back-to-top {
    bottom: max(18px, env(safe-area-inset-bottom));
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    background: #20223a;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    transform: rotate(-90deg);
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}

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

.reveal-delay,
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

/* Performance: browsers may skip offscreen rendering until needed. */
@supports (content-visibility: auto) {
    .process-section,
    .features-section,
    .security-section,
    .business-section,
    .faq-section,
    .final-cta-section,
    .landing-footer {
        content-visibility: auto;
        contain-intrinsic-size: 1px 900px;
    }
}

/* RTL support */
.body-rtl .brand-logo {
    object-position: right center;
}

.body-rtl .side-item.active::before {
    left: auto;
    right: -17px;
    border-radius: 5px 0 0 5px;
}

.body-rtl .metric-grid em {
    right: auto;
    left: 11px;
}

.body-rtl .button:hover svg,
.body-rtl .text-link:hover svg {
    transform: translateX(-3px) rotate(180deg);
}

.body-rtl .button svg,
.body-rtl .text-link svg,
.body-rtl .mobile-nav-link svg {
    transform: rotate(180deg);
}

/* Animations */
@keyframes menuIn {
    from { opacity: 0; transform: translateY(-8px) scale(.99); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes statusPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(.76); opacity: .72; }
}

@keyframes floatA {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -10px, 0); }
}

@keyframes floatB {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(7px, -8px, 0); }
}

@keyframes chartGrow {
    from { transform: scaleY(.82); opacity: .76; }
    to { transform: scaleY(1); opacity: 1; }
}

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

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

/* Large tablet */
@media (max-width: 1100px) {
    :root {
        --shell: 960px;
    }

    .desktop-nav {
        gap: 0;
    }

    .nav-link {
        padding-inline: 9px;
        font-size: .84rem;
    }

    .hero-layout {
        grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
        gap: 42px;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 5vw, 4.45rem);
    }

    .dashboard-body {
        grid-template-columns: 95px minmax(0, 1fr);
    }

    .dashboard-sidebar {
        padding-inline: 13px;
    }

    .side-item.active::before {
        left: -13px;
    }

    .body-rtl .side-item.active::before {
        right: -13px;
    }

    .side-item {
        width: 65px;
    }

    .floating-card-b {
        left: -20px;
    }

    .process-card {
        padding: 24px;
    }

    .bento-large {
        grid-template-columns: 1fr;
    }
}

/* Tablet and mobile navigation */
@media (max-width: 979px) {
    :root {
        --header-height: 68px;
    }

    .site-header {
        padding-top: 10px;
    }

    .header-shell {
        min-height: var(--header-height);
        padding: 10px 11px 10px 15px;
        border-radius: 18px;
    }

    .desktop-nav,
    .header-actions {
        display: none;
    }

    .brand {
        min-width: 0;
        margin-inline-end: auto;
    }

    .brand-logo {
        max-width: 160px;
        height: 38px;
    }

    .menu-button {
        display: grid;
    }

    .hero {
        min-height: auto;
        padding-top: 132px;
        padding-bottom: 48px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .hero-copy {
        max-width: 760px;
        margin-inline: auto;
        text-align: center;
    }

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

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

    .hero-stats {
        margin-inline: auto;
        text-align: left;
    }

    .body-rtl .hero-stats {
        text-align: right;
    }

    .hero-visual {
        width: min(740px, 94%);
        margin-inline: auto;
    }

    .dashboard-window {
        transform: none;
    }

    .floating-card-b {
        left: -25px;
    }

    .floating-card-a {
        right: -18px;
    }

    .trust-strip {
        flex-direction: column;
        text-align: center;
    }

    .trust-items {
        justify-content: center;
    }

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

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

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

    .bento-large {
        grid-column: 1 / -1;
        grid-template-columns: minmax(0, .9fr) minmax(280px, 1.1fr);
    }

    .security-layout,
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .security-copy,
    .faq-intro {
        max-width: 680px;
        margin-inline: auto;
        text-align: center;
    }

    .faq-intro {
        position: static;
    }

    .business-panel {
        grid-template-columns: .8fr 1.2fr;
        gap: 32px;
        padding-inline: 38px;
    }

    .business-visual {
        min-height: 320px;
        transform: scale(.86);
    }

    .final-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .final-cta-actions {
        width: 100%;
        flex-direction: row;
    }

    .final-cta-actions .button {
        flex: 1;
    }
}

@media (max-width: 760px) {
    .shell {
        width: min(100% - 28px, var(--shell));
    }

    .section {
        padding-block: 78px;
    }

    .site-header,
    .site-header.is-scrolled {
        padding-top: 7px;
    }

    .header-shell {
        border-radius: 16px;
    }

    .mobile-navigation {
        width: calc(100% - 28px);
        border-radius: 18px;
    }

    .hero {
        padding-top: 115px;
        padding-bottom: 38px;
    }

    .eyebrow {
        margin-bottom: 18px;
    }

    .hero h1 {
        font-size: clamp(2.55rem, 11vw, 4rem);
        line-height: 1.02;
        letter-spacing: -.055em;
    }

    .hero-lead {
        margin-top: 20px;
        font-size: .98rem;
        line-height: 1.7;
    }

    .hero-actions {
        margin-top: 25px;
    }

    .hero-actions .button {
        flex: 1 1 210px;
    }

    .hero-proof {
        display: grid;
        justify-content: stretch;
        gap: 9px;
        max-width: 310px;
        margin-inline: auto;
        text-align: left;
    }

    .body-rtl .hero-proof {
        text-align: right;
    }

    .hero-stats {
        margin-top: 28px;
    }

    .hero-stats div {
        padding-inline: 13px;
    }

    .hero-stats dt {
        font-size: 1.38rem;
    }

    .hero-stats dd {
        font-size: .68rem;
    }

    .dashboard-body {
        min-height: 365px;
        grid-template-columns: 76px minmax(0, 1fr);
    }

    .dashboard-content {
        padding: 18px;
    }

    .dashboard-sidebar {
        gap: 15px;
        padding: 20px 10px;
    }

    .side-item {
        width: 54px;
    }

    .side-brand {
        width: 48px;
    }

    .metric-grid {
        gap: 7px;
    }

    .metric-grid article {
        padding: 10px;
    }

    .metric-grid em {
        display: none;
    }

    .dashboard-lower-grid {
        grid-template-columns: 1fr;
    }

    .activity-card {
        display: none;
    }

    .chart-card {
        min-height: 180px;
    }

    .chart-bars {
        height: 115px;
    }

    .floating-card {
        min-width: 180px;
        padding: 10px 12px;
    }

    .floating-card-b {
        top: 58px;
        left: -12px;
    }

    .floating-card-a {
        right: -10px;
        bottom: 25px;
    }

    .trust-strip {
        margin-top: 42px;
        padding: 18px;
    }

    .trust-items {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        gap: 11px;
    }

    .trust-items span {
        justify-content: center;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: 11px;
        background: #fff;
    }

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

    .section-heading h2,
    .security-copy h2,
    .business-copy h2,
    .faq-intro h2,
    .final-cta h2 {
        font-size: clamp(2rem, 8.5vw, 2.8rem);
    }

    .section-heading p,
    .security-copy > p,
    .business-copy > p,
    .faq-intro > p,
    .final-cta p {
        font-size: .95rem;
    }

    .process-grid,
    .security-grid,
    .bento-grid {
        grid-template-columns: 1fr;
    }

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

    .bento-large {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .mini-analytics {
        margin-top: 5px;
    }

    .business-panel {
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 35px 24px 44px;
        border-radius: 26px;
    }

    .business-visual {
        min-height: 285px;
        order: 2;
        transform: scale(.86);
    }

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

    .business-points {
        text-align: left;
    }

    .body-rtl .business-points {
        text-align: right;
    }

    .final-cta-section {
        padding-bottom: 72px;
    }

    .final-cta {
        min-height: 0;
        padding: 38px 24px;
        border-radius: 25px;
        text-align: center;
    }

    .final-cta-actions {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 45px;
        padding-block: 55px 38px;
    }

    .footer-links {
        gap: 22px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }
}

@media (max-width: 520px) {
    .brand-logo {
        max-width: 138px;
        height: 34px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .brand-name {
        max-width: 175px;
        font-size: .97rem;
    }

    .menu-button {
        width: 43px;
        height: 43px;
    }

    .mobile-nav-shell {
        grid-template-columns: 1fr;
    }

    .mobile-auth-actions {
        grid-column: auto;
    }

    .hero-actions {
        display: grid;
    }

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

    .hero-stats {
        grid-template-columns: 1fr;
        padding: 0;
        border: 0;
        gap: 9px;
    }

    .hero-stats div,
    .hero-stats div:first-child,
    .hero-stats div:last-child {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 15px;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: rgba(255, 255, 255, .78);
    }

    .hero-stats dd {
        margin: 0;
        font-size: .72rem;
    }

    .hero-visual {
        width: 100%;
    }

    .dashboard-topbar {
        height: 46px;
    }

    .dashboard-body {
        min-height: 310px;
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        display: none;
    }

    .dashboard-content {
        padding: 14px;
    }

    .dashboard-heading span {
        width: 90px;
    }

    .metric-grid strong {
        font-size: .75rem;
    }

    .metric-grid small {
        font-size: .48rem;
    }

    .chart-card {
        min-height: 150px;
    }

    .chart-bars {
        height: 90px;
        margin-top: 15px;
    }

    .floating-card-b {
        top: -22px;
        left: 8px;
    }

    .floating-card-a {
        right: 4px;
        bottom: -22px;
    }

    .floating-card {
        min-width: 156px;
        gap: 8px;
    }

    .float-icon {
        width: 32px;
        height: 32px;
    }

    .floating-card small {
        font-size: .53rem;
    }

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

    .trust-strip {
        margin-top: 66px;
    }

    .trust-items {
        grid-template-columns: 1fr;
    }

    .process-card,
    .bento-card,
    .security-card {
        border-radius: 20px;
    }

    .bento-card {
        padding: 24px;
    }

    .business-points {
        grid-template-columns: 1fr;
    }

    .business-visual {
        transform: scale(.73);
        margin: -35px 0;
    }

    .faq-item summary {
        min-height: 68px;
        padding: 17px;
        font-size: .88rem;
    }

    .faq-answer {
        padding: 0 17px 17px;
    }

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

    .footer-links div:last-child {
        grid-column: 1 / -1;
    }
}

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

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media print {
    .site-header,
    .floating-contact,
    .back-to-top,
    .hero-visual,
    .business-visual {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding-top: 40px;
    }

    .section {
        padding-block: 35px;
    }

    body.landing-page,
    .features-section,
    .business-panel,
    .final-cta,
    .landing-footer {
        color: #000;
        background: #fff;
    }
}
