:root {
    --navy-950: #041127;
    --navy-900: #071a35;
    --navy-850: #0a2143;
    --navy-800: #0f2a56;
    --blue-500: #1c84ff;
    --blue-400: #3d9bff;
    --blue-300: #77bcff;
    --white: #ffffff;
    --slate-950: #102544;
    --slate-800: #203b63;
    --slate-700: #58708f;
    --slate-600: #7489a5;
    --slate-500: #95a7bf;
    --slate-300: #d8e2ef;
    --surface: #f8fbff;
    --surface-2: #f3f7fc;
    --border: #e3ebf5;
    --green: #21b66f;
    --red: #f05d5e;
    --yellow: #f8b63a;
    --cyan: #5ec8ff;
    --shadow-hero: 0 32px 70px rgba(3, 16, 39, 0.28);
    --shadow-card: 0 16px 44px rgba(12, 34, 68, 0.08);
    --shadow-ribbon: 0 22px 50px rgba(8, 20, 43, 0.14);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: "Inter", sans-serif;
    background: var(--surface);
    color: var(--slate-950);
    overflow-x: hidden;
}

body.page-ready {
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

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

.landing-page {
    overflow-x: hidden;
}

.hero-zone {
    position: relative;
    padding: 16px 0 126px;
    background:
        radial-gradient(circle at 82% 14%, rgba(255, 215, 175, 0.88), rgba(255, 215, 175, 0.1) 28%, transparent 46%),
        radial-gradient(circle at 76% 34%, rgba(91, 162, 255, 0.45), transparent 28%),
        linear-gradient(90deg, #041127 0%, #071a35 54%, #0f3268 76%, #6eb4ff 100%);
}

.hero-bg-glow,
.hero-grid-lines {
    position: absolute;
    pointer-events: none;
}

.hero-bg-glow {
    border-radius: 999px;
    filter: blur(70px);
    opacity: 0.42;
}

.glow-left {
    top: 320px;
    left: -140px;
    width: 380px;
    height: 380px;
    background: #08234f;
}

.glow-right {
    top: 50px;
    right: -140px;
    width: 320px;
    height: 320px;
    background: #ffe6c5;
}

.hero-grid-lines {
    inset: 0;
    background:
        linear-gradient(125deg, transparent 56%, rgba(125, 188, 255, 0.75) 56.2%, transparent 56.8%),
        linear-gradient(160deg, transparent 61%, rgba(79, 154, 255, 0.45) 61.3%, transparent 61.8%);
    opacity: 0.85;
}

.landing-header,
.hero-content,
.logo-strip,
.features-section,
.process-section,
.site-footer {
    position: relative;
    z-index: 2;
}

.landing-header {
    position: sticky;
    top: 0;
    z-index: 50;
    transition: padding 0.25s ease, background-color 0.25s ease, backdrop-filter 0.25s ease;
}

.landing-navbar {
    padding: 12px 18px;
    margin-top: 10px;
    background: rgba(4, 17, 39, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 34px rgba(2, 10, 24, 0.28);
    backdrop-filter: blur(18px);
    transition: padding 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    border-radius: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 800;
}

.brand-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 14px 30px rgba(0, 0, 0, 0.18);
}

.brand-badge::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 22px;
    background: radial-gradient(circle, rgba(28, 132, 255, 0.32) 0%, transparent 68%);
    z-index: -1;
}

.brand-logo {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.brand-title {
    display: block;
    color: var(--white);
    font-size: 1.32rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
}

.brand-kicker {
    display: block;
    color: rgba(211, 225, 242, 0.88);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    line-height: 1.2;
}

.landing-navbar .nav-link {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 6px !important;
}

.landing-navbar .nav-link:hover,
.landing-navbar .nav-link:focus {
    color: var(--white);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-toggle {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
}

.btn {
    border: 0;
    border-radius: 10px;
    font-weight: 600;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

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

.btn-login {
    padding: 10px 18px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-primary-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    color: var(--white);
    background: linear-gradient(180deg, #268cff 0%, #1576f2 100%);
    box-shadow: 0 12px 28px rgba(24, 118, 242, 0.3);
}

.btn-outline-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.48);
}

.btn-lg-main {
    min-width: 184px;
    min-height: 52px;
}

.hero-content {
    padding-top: 36px;
}

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

.hero-copy h1 {
    margin: 0 0 20px;
    color: var(--white);
    font-size: clamp(3.1rem, 5.5vw, 5.6rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.hero-copy > p {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 34px;
}

.benefit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.96);
    font-size: 0.95rem;
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.96);
}

.dashboard-frame {
    position: relative;
    padding-top: 18px;
    transition: transform 0.3s ease;
}

.dashboard-frame:hover {
    transform: translateY(-4px);
}

.dashboard-window {
    display: block;
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(205, 220, 237, 0.72);
    box-shadow: var(--shadow-hero);
}

.dashboard-shot {
    display: block;
    width: 100%;
    height: auto;
    border-radius: inherit;
}

.dashboard-sidebar {
    padding: 14px 12px;
    background: #0b1f43;
}

.dashboard-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--white);
    font-size: 0.74rem;
    font-weight: 700;
}

.side-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 8px;
    border-radius: 8px;
    color: rgba(237, 243, 252, 0.88);
    font-size: 0.72rem;
    margin-bottom: 4px;
}

.side-nav-item.active {
    background: #1b84ff;
}

.dashboard-main {
    padding: 16px;
    background: #fff;
}

.dashboard-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.dashboard-toolbar h3,
.dash-card h4,
.feature-card h3,
.process-card h3,
.cta-copy h2,
.footer-links h4 {
    margin: 0;
}

.dashboard-toolbar h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2c4a;
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #7a8eab;
}

.search-bar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 240px;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: #fbfdff;
    color: #94a4bb;
    font-size: 0.72rem;
}

.avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #eef4fb;
    color: #43628a;
    font-size: 0.74rem;
    font-weight: 700;
}

.metric-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 12px;
}

.metric-card,
.dash-card,
.feature-card,
.process-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #ffffff;
}

.metric-card {
    padding: 12px 12px 10px;
}

.metric-card span {
    display: block;
    color: var(--slate-700);
    font-size: 0.68rem;
    margin-bottom: 6px;
}

.metric-card strong {
    display: block;
    color: #1c2d4a;
    font-size: 1.1rem;
    line-height: 1.1;
}

.metric-card small {
    display: block;
    margin-top: 6px;
    font-size: 0.66rem;
}

.good {
    color: var(--green);
}

.bad {
    color: var(--red);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.dash-card {
    padding: 14px;
}

.dash-card-header {
    margin-bottom: 12px;
}

.dash-card h4 {
    color: #1b2f50;
    font-size: 0.82rem;
    font-weight: 700;
}

.status-chart {
    display: flex;
    align-items: center;
    gap: 16px;
}

.donut-chart {
    position: relative;
    width: 108px;
    height: 108px;
    border-radius: 50%;
    background: conic-gradient(#1c84ff 0 44%, #67c4ff 44% 72%, #f8b63a 72% 88%, #6fce88 88% 100%);
}

.donut-chart::before {
    content: "1,243";
    position: absolute;
    inset: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #24385d;
    font-size: 1rem;
    font-weight: 800;
}

.status-legend {
    display: grid;
    gap: 8px;
    color: #5c6f8c;
    font-size: 0.7rem;
}

.status-legend div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-legend b {
    margin-left: auto;
    color: #3e5274;
    font-weight: 700;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-blue { background: #1c84ff; }
.dot-cyan { background: #67c4ff; }
.dot-yellow { background: #f8b63a; }
.dot-green { background: #6fce88; }

.sla-panel {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ring {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: conic-gradient(#2bbb6f 0 87%, #e9f0f8 87% 100%);
}

.ring span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: #fff;
    color: #264060;
    font-size: 1rem;
    font-weight: 800;
}

.sla-copy strong {
    display: block;
    color: #253d60;
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.sla-copy small {
    font-size: 0.7rem;
}

.chart-line {
    margin-top: 14px;
    height: 54px;
    position: relative;
}

.chart-line::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, transparent 95%, rgba(227, 235, 245, 0.8) 95%),
        linear-gradient(90deg, transparent 0, transparent 8%, rgba(227, 235, 245, 0.8) 8.5%, transparent 9%);
    background-size: 100% 13px, 15% 100%;
}

.chart-line span {
    position: absolute;
    left: 2%;
    right: 2%;
    top: 9px;
    bottom: 9px;
    background: none;
    border-bottom: 3px solid #1c84ff;
    clip-path: polygon(0 24%, 16% 48%, 32% 34%, 48% 58%, 64% 30%, 80% 40%, 100% 74%, 100% 100%, 0 100%);
}

.workload-list,
.automation-list {
    display: grid;
    gap: 8px;
}

.workload-row,
.automation-row {
    display: grid;
    align-items: center;
    gap: 10px;
    color: #4a617f;
    font-size: 0.72rem;
}

.workload-row {
    grid-template-columns: 78px 1fr 22px;
}

.work-bar {
    height: 6px;
    border-radius: 999px;
    background: #edf3fa;
    overflow: hidden;
}

.work-bar i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #1c84ff;
}

.automation-row {
    grid-template-columns: 1fr auto;
}

.state {
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 0.64rem;
    font-weight: 700;
}

.state.active {
    color: var(--green);
    background: #ebfbf2;
}

.state.paused {
    color: #df8b25;
    background: #fff3df;
}

.stats-ribbon {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 34px;
    transform: translateY(34px);
    margin-bottom: -34px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-ribbon);
    overflow: hidden;
}

.stats-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 26px;
    border-right: 1px solid #e9eff7;
}

.stats-item:last-child {
    border-right: 0;
}

.stats-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #eef5ff;
    color: var(--blue-500);
    font-size: 1.4rem;
}

.stats-item strong {
    display: block;
    color: #19365f;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.1;
}

.stats-item span {
    display: block;
    margin-top: 4px;
    color: var(--slate-700);
    font-size: 0.88rem;
}

.logo-strip {
    padding: 46px 0 30px;
    background: var(--surface);
}

.logo-strip-label {
    margin-bottom: 20px;
    color: #6f87a6;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.customer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    padding: 14px 16px;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #e6edf7;
    box-shadow: 0 12px 30px rgba(16, 36, 68, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.customer-logo:hover {
    transform: translateY(-3px);
    border-color: #d1def1;
    box-shadow: 0 16px 34px rgba(16, 36, 68, 0.09);
}

.customer-logo span {
    color: #183458;
    text-align: center;
    font-size: clamp(1rem, 1.2vw, 1.24rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.features-section {
    padding: 38px 0 86px;
    background: var(--surface);
}

.features-heading {
    max-width: 470px;
    margin-bottom: 34px;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--blue-500);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.features-heading h2,
.process-heading h2 {
    margin: 0 0 14px;
    color: #18345b;
    font-size: clamp(2.2rem, 4vw, 3.7rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.features-heading p,
.process-card p,
.cta-copy p,
.footer-brand p {
    margin: 0;
    color: #67809f;
    font-size: 1rem;
    line-height: 1.7;
}

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

.feature-card {
    padding: 24px 22px;
    box-shadow: var(--shadow-card);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: #cfe0f2;
    box-shadow: 0 22px 46px rgba(12, 34, 68, 0.12);
}

.feature-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 18px;
    background: linear-gradient(180deg, #4fb0ff 0%, #1b73f1 100%);
    color: var(--white);
    font-size: 1.2rem;
}

.feature-card h3 {
    margin-bottom: 10px;
    color: #15335d;
    font-size: 1.18rem;
    font-weight: 700;
}

.feature-card p {
    color: #67809f;
    font-size: 0.97rem;
    line-height: 1.8;
}

.process-section {
    position: relative;
    padding: 74px 0 96px;
    background: linear-gradient(180deg, #041127 0%, #071932 100%);
    z-index: 4;
    overflow: visible;
}

.process-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 10% 58%, rgba(28, 132, 255, 0.12), transparent 10%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: auto, 120px 120px, 120px 120px;
    mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 75%);
}

.process-heading {
    margin-bottom: 28px;
}

.process-heading .section-kicker,
.process-heading h2 {
    color: var(--white);
}

.process-cards {
    display: grid;
    grid-template-columns: 1fr 40px 1fr 40px 1fr;
    gap: 18px;
    align-items: center;
}

.process-card {
    min-height: 240px;
    padding: 20px;
    background: rgba(13, 34, 66, 0.9);
    border-color: rgba(93, 130, 174, 0.22);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.process-card:hover {
    transform: translateY(-6px);
    border-color: rgba(92, 164, 255, 0.42);
    box-shadow: 0 18px 42px rgba(1, 10, 24, 0.22);
}

.process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    margin-bottom: 18px;
    background: #1b84ff;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 800;
}

.process-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 86px;
    margin-bottom: 20px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-illustration {
    flex-direction: column;
    gap: 8px;
    padding: 14px;
}

.form-illustration div {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
}

.form-illustration div:first-child {
    width: 72%;
}

.verify-illustration i {
    font-size: 2.6rem;
    color: #55b1ff;
}

.app-illustration {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 12px;
    padding: 14px;
}

.mini-app-sidebar {
    border-radius: 8px;
    background: #123c73;
}

.mini-app-body {
    display: grid;
    gap: 8px;
}

.mini-app-body span {
    display: block;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
}

.process-card h3 {
    margin-bottom: 10px;
    color: var(--white);
    font-size: 1.55rem;
    font-weight: 700;
}

.process-card p {
    color: #b9c6d8;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #33a0ff;
    font-size: 1.4rem;
}

.cta-panel {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 28px;
    align-items: center;
    margin-top: 38px;
    margin-bottom: -112px;
    padding: 30px;
    border-radius: 18px;
    background:
        linear-gradient(140deg, rgba(16, 45, 93, 0.98) 0%, rgba(14, 40, 87, 0.98) 58%, rgba(27, 98, 223, 0.96) 100%);
    border: 1px solid rgba(110, 157, 218, 0.32);
    box-shadow: 0 24px 48px rgba(4, 17, 39, 0.24);
    position: relative;
    z-index: 6;
}

.cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: linear-gradient(180deg, #1c84ff 0%, #114fc3 100%);
    color: var(--white);
    font-size: 2rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-copy h2 {
    margin-bottom: 10px;
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.cta-copy p {
    color: #d7e3f4;
}

.cta-buttons {
    display: grid;
    gap: 14px;
}

.btn-wide {
    min-width: 210px;
    min-height: 52px;
}

.site-footer {
    padding: 148px 0 26px;
    background: #041127;
    color: var(--white);
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 32px;
    padding: 26px 0 28px;
}

.footer-brand-link {
    margin-bottom: 16px;
}

.footer-brand-badge {
    background: linear-gradient(180deg, rgba(28, 132, 255, 0.28), rgba(255, 255, 255, 0.08));
    border-color: rgba(137, 181, 244, 0.28);
}

.footer-brand-badge::after {
    background: radial-gradient(circle, rgba(28, 132, 255, 0.24) 0%, transparent 70%);
}

.footer-brand p {
    max-width: 280px;
    color: #b2c0d5;
}

.footer-links h4 {
    margin-bottom: 18px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
}

.footer-links a {
    display: block;
    margin-bottom: 12px;
    color: #c2cfdf;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b1bfd3;
    font-size: 0.92rem;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}

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

@media (max-width: 1199.98px) {
    .metric-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .cta-panel {
        grid-template-columns: 100px 1fr;
    }

    .cta-buttons {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .landing-navbar .navbar-collapse {
        margin-top: 18px;
        padding: 18px;
        border-radius: 14px;
        background: rgba(4, 17, 39, 0.94);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .landing-navbar .nav-link {
        padding: 10px 0 !important;
    }

    .nav-actions {
        margin-top: 12px;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-zone {
        padding-bottom: 110px;
    }

    .stats-ribbon,
    .customers-grid,
    .process-cards,
    .footer-top {
        grid-template-columns: 1fr;
    }

    .stats-ribbon {
        transform: none;
        margin-bottom: 0;
    }

    .stats-item {
        border-right: 0;
        border-bottom: 1px solid #e9eff7;
    }

    .stats-item:last-child {
        border-bottom: 0;
    }

    .process-arrow {
        display: none;
    }

    .cta-panel {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .site-footer {
        padding-top: 132px;
    }
}

@media (max-width: 767.98px) {
    .hero-zone {
        padding-bottom: 84px;
    }

    .brand-title {
        font-size: 1.18rem;
    }

    .brand-kicker {
        letter-spacing: 0.12em;
    }

    .hero-copy h1 {
        font-size: clamp(2.6rem, 14vw, 4rem);
    }

    .hero-actions,
    .hero-benefits,
    .footer-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-lg-main,
    .btn-wide,
    .btn-login,
    .btn-primary-main,
    .btn-outline-main {
        width: 100%;
    }

    .search-bar {
        display: none;
    }

    .metric-cards,
    .dashboard-grid,
    .features-grid,
    .cta-buttons {
        grid-template-columns: 1fr;
    }

    .stats-ribbon {
        margin-top: 26px;
    }

    .status-chart,
    .sla-panel,
    .stats-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .workload-row {
        grid-template-columns: 1fr;
    }

    .cta-panel {
        margin-bottom: -88px;
    }

    .site-footer {
        padding-top: 112px;
    }
}
