:root {
    --ink: #1c2541;
    --blue: #4361ee;
    --blue-dark: #2541b2;
    --teal: #0d7f79;
    --yellow: #ffb627;
    --coral: #ff6b6b;
    --bg: #f7f8fc;
    --white: #fff;
    --border: #e6e9f5;
    --mid: #6b7280;
    --light: #9aa1b9;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden
}

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

button {
    cursor: pointer;
    font-family: 'Inter', sans-serif
}

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

nav {
    position: sticky;
    top: 0;
    z-index: 999;
    height: 76px;
    background: rgba(247, 248, 252, .88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 4vw;
    gap: 2rem
}

.logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--ink);
    letter-spacing: -.02em
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transform: rotate(-6deg)
}

.logo em {
    color: var(--blue);
    font-style: normal
}

.nav-links {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin: 0 auto
}

.nav-links a {
    font-size: .92rem;
    font-weight: 600;
    color: var(--ink);
    opacity: .7;
    transition: opacity .2s, color .2s
}

.nav-links>a {
    display: inline-flex;
    align-items: center;
    border-radius: 10px;
    padding: .58rem .9rem
}

.nav-links a:hover {
    opacity: 1;
    color: var(--blue)
}

.nav-dd {
    position: relative;
    padding: .9rem 0
}

.nav-dd-trigger {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    border: 0;
    background: transparent;
    border-radius: 10px;
    padding: .58rem .9rem;
    font-size: .92rem;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer
}

.nav-links .nav-dd-trigger {
    opacity: .76
}

.nav-links .nav-dd:hover .nav-dd-trigger,
.nav-links .nav-dd:focus-within .nav-dd-trigger {
    background: #fff;
    opacity: 1;
    color: var(--ink);
    box-shadow: 0 8px 22px rgba(28, 37, 65, .06)
}

.nav-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    border: 1px solid rgba(28, 37, 65, .12);
    border-radius: 18px;
    box-shadow: 0 22px 56px rgba(28, 37, 65, .12);
    padding: 1.55rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s, transform .18s, visibility .18s;
}

.nav-dd:hover .nav-menu,
.nav-dd:focus-within .nav-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0)
}

.nav-menu-solutions {
    width: min(560px, calc(100vw - 32px));
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem
}

.nav-menu-solutions>div+div {
    border-left: 1px solid var(--border);
    padding-left: 1.2rem
}

.nav-menu-industries {
    width: 280px
}

.nav-menu-title {
    margin: 0 0 .95rem;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .11em;
    color: var(--light);
}

.nav-links .nav-menu-item {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: .75rem .65rem;
    border-radius: 12px;
    color: var(--ink);
    opacity: 1;
    transition: background .2s, color .2s;
}

.nav-links .nav-menu-item:hover {
    background: var(--bg);
    color: var(--ink)
}

.nav-menu-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    border: 1px solid var(--border);
    background: #fffaf0;
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
    font-size: .95rem;
}

.nav-menu-item:nth-of-type(2n) .nav-menu-icon {
    background: #eef1fb;
    color: var(--blue)
}

.nav-menu-item:nth-of-type(3n) .nav-menu-icon {
    background: #fff3d6;
    color: #e6a020
}

.nav-menu-item strong {
    display: block;
    font-size: .88rem;
    font-weight: 800;
    line-height: 1.45;
    color: var(--ink)
}

.nav-menu-item small {
    display: block;
    margin-top: .15rem;
    font-size: .78rem;
    font-weight: 500;
    line-height: 1.55;
    color: var(--mid)
}

.nav-menu-item-compact {
    align-items: center
}

.nav-menu-item-compact strong {
    font-size: .9rem;
    font-weight: 700;
    color: var(--mid)
}

.nav-menu-item-compact:hover strong {
    color: var(--ink)
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: .75rem
}

.btn-text {
    font-size: .9rem;
    font-weight: 700;
    color: var(--ink);
    background: none;
    border: none;
    padding: .6rem 1rem;
    cursor: pointer
}

.btn-text:hover {
    color: var(--blue)
}

.btn-primary {
    background: var(--teal);
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    padding: .7rem 1.5rem;
    border-radius: 50px;
    border: none;
    transition: transform .2s, box-shadow .2s, background .2s;
    box-shadow: 0 4px 14px rgba(13, 127, 121, .3);
}

.btn-primary:hover {
    background: #0a6b66;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(13, 127, 121, .4)
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--ink);
    cursor: pointer;
    padding: .5rem;
    margin-left: auto
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .3);
    z-index: 998
}

.nav-mobile {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 86vw;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    padding: 0 1rem 1.25rem;
    box-shadow: -10px 0 40px rgba(0, 0, 0, .1);
    overflow-y: auto
}

.nav-mobile-head {
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: #fff;
    padding: .35rem 0 .9rem;
    margin-bottom: .25rem;
    border-bottom: 1px solid var(--border);
    font-family: 'Sora', sans-serif;
    font-size: .95rem;
    font-weight: 800;
    color: var(--ink)
}

.nav-mobile-close {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.nav-mobile-close:hover {
    background: #eef1fb;
    color: var(--blue)
}

.nav-mobile a {
    display: flex;
    align-items: center;
    color: var(--ink);
    text-decoration: none
}

.nav-mobile-link {
    min-height: 42px;
    padding: .72rem .8rem;
    margin: .2rem 0;
    border: 1px solid transparent;
    border-radius: 11px;
    font-size: .92rem;
    font-weight: 750;
    background: #fff
}

.nav-mobile-link:hover {
    background: var(--bg);
    border-color: var(--border)
}

.nav-mobile .nav-mobile-section {
    font-size: .68rem;
    font-weight: 800;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 1rem .2rem .45rem;
    border: none
}

.nav-mobile-sub {
    align-items: flex-start;
    gap: .72rem;
    padding: .72rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fbfcff;
    margin: .45rem 0;
    box-shadow: 0 4px 14px rgba(28, 37, 65, .035)
}

.nav-mobile-sub:hover {
    border-color: #d5dcf5;
    background: #f7f8fc
}

.nav-mobile-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: #eef1fb;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    font-size: .88rem
}

.nav-mobile-sub:nth-of-type(2n) .nav-mobile-icon {
    background: #e8f5f2;
    color: var(--teal)
}

.nav-mobile-sub:nth-of-type(3n) .nav-mobile-icon {
    background: #fff3d6;
    color: #e6a020
}

.nav-mobile-sub strong {
    display: block;
    font-size: .84rem;
    font-weight: 800;
    line-height: 1.35;
    color: var(--ink)
}

.nav-mobile-sub small {
    display: block;
    margin-top: .12rem;
    font-size: .72rem;
    font-weight: 500;
    line-height: 1.45;
    color: var(--mid)
}

.nav-mobile-sub-compact {
    align-items: center;
    background: #fff;
    padding: .65rem .72rem
}

.nav-mobile-sub-compact strong {
    font-size: .86rem;
    color: var(--mid)
}

.nav-mobile-cta {
    justify-content: center;
    background: var(--teal);
    color: #fff !important;
    border-color: var(--teal);
    box-shadow: 0 8px 18px rgba(13, 127, 121, .18)
}

.nav-mobile-cta:hover {
    background: #0a6b66;
    border-color: #0a6b66
}

.wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 4vw
}

section {
    padding: 5.5rem 4vw
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #fff;
    border: 1.5px solid var(--border);
    padding: .4rem 1rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(67, 97, 238, .06);
}

.eyebrow .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yellow)
}

h1,
h2,
h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--ink)
}

.h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    line-height: 1.08
}

.h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15
}

.h3 {
    font-size: 1.2rem;
    line-height: 1.3
}

.lead {
    font-size: 1.15rem;
    color: var(--mid);
    line-height: 1.75;
    max-width: 540px
}

.body-sm {
    font-size: .92rem;
    color: var(--mid);
    line-height: 1.7
}

.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all .25s cubic-bezier(.34, 1.56, .64, 1);
}

.btn-cta.primary {
    background: var(--teal);
    color: #fff;
    box-shadow: 0 6px 20px rgba(13, 127, 121, .32)
}

.btn-cta.primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 28px rgba(13, 127, 121, .42)
}

.btn-cta.ghost {
    background: #fff;
    color: var(--ink);
    border: 2px solid var(--border)
}

.btn-cta.ghost:hover {
    border-color: var(--ink);
    transform: translateY(-3px)
}

.btn-cta.blue {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 6px 20px rgba(67, 97, 238, .32)
}

.btn-cta.blue:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 28px rgba(67, 97, 238, .42)
}

.hero {
    position: relative;
    overflow: hidden;
    padding-top: 4rem
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(0px);
    opacity: .5;
    pointer-events: none
}

.hero-blob.b1 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, #ffd98a 0%, #ffb627 100%);
    top: -180px;
    right: -120px;
    animation: blobFloat 9s ease-in-out infinite
}

.hero-blob.b2 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, #9db4ff 0%, #4361ee 100%);
    bottom: -160px;
    left: -100px;
    opacity: .25;
    animation: blobFloat 11s ease-in-out infinite reverse
}

@keyframes blobFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    50% {
        transform: translate(20px, -30px) scale(1.06)
    }
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3.5rem;
    align-items: center
}

.hero h1 {
    margin-bottom: 1.4rem
}

.hero h1 .hl {
    position: relative;
    display: inline-block
}

.hero h1 .hl::after {
    content: '';
    position: absolute;
    left: -2%;
    right: -2%;
    bottom: .08em;
    height: .32em;
    background: var(--yellow);
    z-index: -1;
    opacity: .55;
    border-radius: 4px;
    transform: rotate(-1deg)
}

.hero .lead {
    margin-bottom: 2.25rem
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: .85rem;
    color: var(--mid)
}

.hero-trust .stars {
    color: var(--yellow);
    letter-spacing: 1px
}

.hero-trust strong {
    color: var(--ink)
}

.hero-illus {
    position: relative;
    height: 480px
}

.illus-card {
    position: absolute;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 16px 50px rgba(28, 37, 65, .08);
    padding: 1.1rem 1.3rem;
    display: flex;
    align-items: center;
    gap: .85rem;
}

.illus-card .ic-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0
}

.illus-card .ic-label {
    font-size: .7rem;
    color: var(--mid);
    margin-bottom: .15rem
}

.illus-card .ic-val {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink)
}

.main-illus {
    position: absolute;
    inset: 40px;
    border-radius: 28px;
    background: linear-gradient(160deg, #fff 0%, #eef1fb 100%);
    border: 1px solid var(--border);
    box-shadow: 0 24px 70px rgba(28, 37, 65, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.main-illus svg {
    width: 100%;
    height: 100%
}

.float-1 {
    top: 0;
    left: 10px;
    animation: floaty 5s ease-in-out infinite
}

.float-2 {
    bottom: 30px;
    right: 0;
    animation: floaty 6.5s ease-in-out infinite reverse;
    animation-delay: .6s
}

.float-3 {
    top: 48%;
    right: -20px;
    animation: floaty 5.5s ease-in-out infinite;
    animation-delay: 1.2s
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

.live-feed {
    position: absolute;
    bottom: -18px;
    left: -18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 16px 50px rgba(28, 37, 65, .1);
    padding: 1rem;
    width: 260px;
}

.live-feed-head {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .75rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .75rem
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: livedot 1.6s ease-in-out infinite
}

@keyframes livedot {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.live-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .4rem 0;
    font-size: .78rem;
    color: var(--mid);
    opacity: 0;
    animation: liveIn .5s ease forwards
}

.live-item .li-icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    flex-shrink: 0
}

@keyframes liveIn {
    to {
        opacity: 1
    }
}

.live-item:nth-child(2) {
    animation-delay: .3s
}

.live-item:nth-child(3) {
    animation-delay: .6s
}

.live-item:nth-child(4) {
    animation-delay: .9s
}

.logo-strip {
    padding: 2.5rem 4vw;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #fff
}

.logo-strip-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem
}

.logo-strip-label {
    font-size: .78rem;
    font-weight: 700;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: .08em
}

.logo-row {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap
}

.logo-item {
    height: 32px;
    width: auto;
    display: inline-block;
    vertical-align: middle
}

.stat-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem
}

.stat-box {
    text-align: center
}

.stat-num {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 2.6rem;
    letter-spacing: -.03em;
    color: var(--ink);
    line-height: 1
}

.stat-num.blue {
    color: var(--blue)
}

.stat-num.teal {
    color: var(--teal)
}

.stat-num.yellow {
    color: #e6a020
}

.stat-label {
    font-size: .85rem;
    color: var(--mid);
    margin-top: .5rem
}

.tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem
}

.mvg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.mvg-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s;
}

.mvg-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(28, 37, 65, .1)
}

.mvg-blob {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    top: -60px;
    right: -60px;
    opacity: .1;
}

.mvg-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.mvg-card.c1 .mvg-icon {
    background: var(--blue);
    color: #fff
}

.mvg-card.c1 .mvg-blob {
    background: var(--blue)
}

.mvg-card.c2 .mvg-icon {
    background: var(--teal);
    color: #fff
}

.mvg-card.c2 .mvg-blob {
    background: var(--teal)
}

.mvg-card.c3 .mvg-icon {
    background: var(--yellow);
    color: var(--ink)
}

.mvg-card.c3 .mvg-blob {
    background: var(--yellow)
}

.mvg-label {
    display: inline-block;
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .5rem;
    position: relative;
    z-index: 1;
}

.mvg-card.c1 .mvg-label {
    color: var(--blue)
}

.mvg-card.c2 .mvg-label {
    color: var(--teal)
}

.mvg-card.c3 .mvg-label {
    color: #b8931e
}

.mvg-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .6rem;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.mvg-card p {
    font-size: .9rem;
    color: var(--mid);
    line-height: 1.65;
    margin: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 800px) {
    .mvg-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem
    }
}

.tile {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 2.25rem;
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s;
    position: relative;
    overflow: hidden;
}

.tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(28, 37, 65, .1)
}

.tile-blob {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    top: -50px;
    right: -50px;
    opacity: .12;
}

.tile-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.tile.c1 .tile-icon,
.tile.c1 .tile-blob {
    background: var(--blue)
}

.tile.c2 .tile-icon,
.tile.c2 .tile-blob {
    background: var(--teal)
}

.tile.c3 .tile-icon,
.tile.c3 .tile-blob {
    background: var(--yellow)
}

.tile.c1 .tile-icon,
.tile.c2 .tile-icon {
    color: #fff
}

.tile.c3 .tile-icon {
    color: #fff
}

.tile h3 {
    margin-bottom: .6rem;
    position: relative;
    z-index: 1
}

.tile p {
    position: relative;
    z-index: 1
}

.tile-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-weight: 700;
    font-size: .85rem;
    color: var(--blue);
    margin-top: 1.25rem;
    position: relative;
    z-index: 1
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.split.rev {
    direction: rtl
}

.split.rev>* {
    direction: ltr
}

.split-illus {
    position: relative;
    background: linear-gradient(160deg, #fff 0%, #eef1fb 100%);
    border: 1px solid var(--border);
    border-radius: 24px;
    aspect-ratio: 5/4;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(28, 37, 65, .08);
    overflow: hidden;
}

.split-illus svg {
    width: 85%;
    height: 85%
}

.workflow-panel {
    position: relative;
    isolation: isolate;
    min-height: 360px;
    border-radius: 28px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
    border: 1px solid rgba(255, 255, 255, .28);
    box-shadow: 0 24px 70px rgba(28, 37, 65, .12);
    overflow: hidden;
}

.workflow-panel::before {
    content: '';
    position: absolute;
    inset: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .22);
    z-index: -1;
}

.workflow-panel::after {
    content: '';
    position: absolute;
    top: 5.7rem;
    bottom: 5.7rem;
    left: 3.95rem;
    width: 2px;
    background: rgba(255, 255, 255, .42);
    z-index: -1;
}

.workflow-panel-attendance {
    background: linear-gradient(135deg, #f8fbfb 0%, #e8f5f2 45%, #eef1fb 100%);
    border-color: var(--border)
}

.workflow-panel-attendance::before {
    background: rgba(255, 255, 255, .68);
    border-color: var(--border)
}

.workflow-panel-attendance::after {
    background: linear-gradient(180deg, rgba(13, 127, 121, .18), rgba(67, 97, 238, .28), rgba(255, 182, 39, .36))
}

.workflow-panel-payroll {
    background: linear-gradient(135deg, #f8fbfb 0%, #e8f5f2 45%, #eef1fb 100%);
    border-color: var(--border)
}

.workflow-panel-payroll::before {
    background: rgba(255, 255, 255, .68);
    border-color: var(--border)
}

.workflow-panel-payroll::after {
    background: linear-gradient(180deg, rgba(13, 127, 121, .18), rgba(67, 97, 238, .28), rgba(255, 182, 39, .36))
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 70px;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(255, 255, 255, .62);
    box-shadow: 0 10px 28px rgba(28, 37, 65, .08);
    backdrop-filter: blur(8px);
}

.workflow-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    background: #e8f5f2;
    color: var(--teal);
    font-size: 1rem;
}

.workflow-panel-attendance .workflow-step:nth-child(2) .workflow-icon {
    background: #eef1fb;
    color: var(--blue)
}

.workflow-panel-attendance .workflow-step:nth-child(3) .workflow-icon {
    background: #fff3d6;
    color: #d49316
}

.workflow-panel-payroll .workflow-step:nth-child(2) .workflow-icon {
    background: #eef1fb;
    color: var(--blue)
}

.workflow-panel-payroll .workflow-step:nth-child(3) .workflow-icon {
    background: #fff3d6;
    color: #d49316
}

.workflow-step strong {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: .98rem;
    font-weight: 800;
    line-height: 1.35;
    color: var(--ink)
}

.workflow-step small {
    display: block;
    margin-top: .18rem;
    font-size: .8rem;
    line-height: 1.45;
    color: var(--mid)
}

.feature-list {
    list-style: none;
    margin: 1.75rem 0 2.25rem;
    display: flex;
    flex-direction: column;
    gap: .9rem
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .95rem;
    color: var(--ink)
}

.fl-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: .05rem;
}

.chip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem
}

.chip-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), border-color .3s, box-shadow .3s;
    cursor: pointer;
}

.chip-card:hover {
    transform: translateY(-5px) rotate(-1deg);
    border-color: var(--blue);
    box-shadow: 0 16px 40px rgba(67, 97, 238, .12)
}

.chip-emoji {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.chip-card:nth-child(1) .chip-emoji {
    background: #e3e9ff
}

.chip-card:nth-child(2) .chip-emoji {
    background: #d8f3f1
}

.chip-card:nth-child(3) .chip-emoji {
    background: #fff3d6
}

.chip-card:nth-child(4) .chip-emoji {
    background: #ffe1e1
}

.chip-card h3 {
    font-size: 1.05rem;
    margin-bottom: .5rem
}

.chip-card p {
    font-size: .85rem;
    color: var(--mid)
}

.testi-wrap {
    background: var(--ink);
    border-radius: 32px;
    padding: 4rem;
    position: relative;
    overflow: hidden
}

.testi-wrap::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(67, 97, 238, .35) 0%, transparent 70%);
    top: -150px;
    right: -100px
}

.testi-wrap::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 127, 121, .35) 0%, transparent 70%);
    bottom: -120px;
    left: -80px
}

.testi-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    text-align: center
}

.testi-quote {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.3rem, 2.6vw, 1.9rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 2rem
}

.testi-stars {
    color: var(--yellow);
    font-size: 1.2rem;
    letter-spacing: 4px;
    margin-bottom: 1.5rem
}

.testi-person {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem
}

.testi-av {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem
}

.testi-name {
    font-weight: 700;
    color: #fff;
    font-size: .92rem
}

.testi-role {
    font-size: .8rem;
    color: rgba(255, 255, 255, .5)
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem
}

.price-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 22px;
    padding: 2.25rem;
    text-align: center;
    transition: transform .3s, box-shadow .3s
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 46px rgba(28, 37, 65, .1)
}

.price-card.feat {
    background: var(--ink);
    border-color: transparent;
    position: relative
}

.price-card.feat::before {
    content: 'Most popular';
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: var(--ink);
    font-size: .7rem;
    font-weight: 800;
    padding: .3rem 1rem;
    border-radius: 50px;
    white-space: nowrap
}

.price-card.feat h3,
.price-card.feat .price-amt {
    color: #fff
}

.price-card.feat .body-sm {
    color: rgba(255, 255, 255, .55)
}

.price-amt {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 2.6rem;
    letter-spacing: -.03em;
    margin: .75rem 0
}

.price-amt sup {
    font-size: 1.1rem;
    vertical-align: super
}

.price-amt sub {
    font-size: .8rem;
    font-weight: 400;
    opacity: .5
}

.price-compare {
    margin-top: 4rem;
    overflow-x: auto
}

.price-compare table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: .9rem
}

.price-compare th,
.price-compare td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border)
}

.price-compare thead th {
    background: var(--bg);
    font-weight: 700;
    color: var(--ink);
    font-family: 'Sora', sans-serif;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .04em
}

.price-compare thead th:first-child {
    border-radius: 16px 0 0 0
}

.price-compare thead th:last-child {
    border-radius: 0 16px 0 0
}

.price-compare tbody tr:hover {
    background: var(--bg)
}

.price-compare td:first-child {
    font-weight: 600;
    color: var(--ink)
}

.price-compare .pc-check {
    color: var(--teal);
    font-weight: 700
}

.price-compare .pc-cross {
    color: var(--coral);
    opacity: .5
}

.price-compare .pc-label {
    font-size: .78rem;
    color: var(--light);
    margin-top: .2rem
}

.cta-section {
    background: linear-gradient(135deg, var(--blue) 0%, #5b7cff 100%);
    border-radius: 32px;
    padding: 4.5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 182, 39, .25);
    top: -100px;
    left: -60px
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(13, 127, 121, .3);
    bottom: -100px;
    right: -60px
}

.cta-section * {
    position: relative;
    z-index: 1
}

.cta-section h2 {
    color: #fff
}

.cta-section .lead {
    color: rgba(255, 255, 255, .8);
    margin: 1rem auto 2.25rem
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}

.btn-cta.white {
    background: #fff;
    color: var(--ink)
}

.btn-cta.white:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .18)
}

.btn-cta.outline-w {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .5)
}

.btn-cta.outline-w:hover {
    border-color: #fff;
    transform: translateY(-3px)
}

footer {
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 4rem 4vw 2rem
}

.footer-inner {
    max-width: 1240px;
    margin: 0 auto
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border)
}

.footer-desc {
    color: var(--mid);
    font-size: .88rem;
    margin-top: 1rem;
    line-height: 1.7;
    max-width: 300px
}

.footer-col-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--light);
    margin-bottom: 1.1rem
}

.footer-col a {
    display: block;
    font-size: .88rem;
    color: var(--mid);
    margin-bottom: .6rem;
    transition: color .2s
}

.footer-col a:hover {
    color: var(--blue)
}

.footer-chevron {
    display: none;
    transition: transform .25s ease;
    color: var(--light);
    line-height: 0
}

.footer-chevron.is-open {
    transform: rotate(180deg)
}

.footer-links {
    display: block
}

@media(max-width:980px) {
    .footer-col-title {
        cursor: pointer;
        user-select: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin-bottom: 0;
        padding: .9rem 0;
        border-bottom: 1px solid var(--border)
    }

    .footer-chevron {
        display: inline-block
    }

    .footer-links {
        display: none;
        padding-top: .75rem;
        padding-bottom: .25rem
    }

    .footer-links.is-open {
        display: block
    }

    .footer-col {
        padding-bottom: 0
    }
}

.footer-bottom {
    max-width: 1240px;
    margin: 0 auto;
    padding-top: 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
    color: var(--light);
    flex-wrap: wrap;
    gap: 1rem
}

.footer-social {
    display: flex;
    gap: .75rem
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    border: 1px solid var(--border);
    color: var(--mid);
    transition: color .2s, border-color .2s
}

.footer-social a:hover {
    color: var(--blue);
    border-color: var(--blue)
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s cubic-bezier(.25, .46, .45, .94), transform .7s cubic-bezier(.25, .46, .45, .94)
}

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

.r1 {
    transition-delay: .08s
}

.r2 {
    transition-delay: .16s
}

.r3 {
    transition-delay: .24s
}

.r4 {
    transition-delay: .32s
}

.subpage-hero {
    position: relative;
    padding-top: 6rem;
    overflow: hidden
}

.subpage-hero--manufacturing {
    background: url('/assets/img/solutions/recruitment-hero.jpg') center/cover no-repeat
}

.subpage-hero--manufacturing::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(247, 248, 252, .95) 0%, rgba(247, 248, 252, .75) 45%, rgba(13, 127, 121, .15) 100%);
    z-index: 0;
    pointer-events: none
}

.subpage-hero--manufacturing .wrap {
    position: relative;
    z-index: 1
}

.subpage-hero--healthcare {
    background: url('/assets/img/solutions/recruitment-hero.jpg') center/cover no-repeat
}

.subpage-hero--healthcare::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(247, 248, 252, .95) 0%, rgba(247, 248, 252, .75) 45%, rgba(13, 127, 121, .15) 100%);
    z-index: 0;
    pointer-events: none
}

.subpage-hero--healthcare .wrap {
    position: relative;
    z-index: 1
}

.subpage-hero--education {
    background: url('/assets/img/solutions/recruitment-hero.jpg') center/cover no-repeat
}

.subpage-hero--education::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(247, 248, 252, .95) 0%, rgba(247, 248, 252, .75) 45%, rgba(13, 127, 121, .15) 100%);
    z-index: 0;
    pointer-events: none
}

.subpage-hero--education .wrap {
    position: relative;
    z-index: 1
}

.subpage-hero--retail {
    background: url('/assets/img/solutions/recruitment-hero.jpg') center/cover no-repeat
}

.subpage-hero--retail::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(247, 248, 252, .95) 0%, rgba(247, 248, 252, .75) 45%, rgba(13, 127, 121, .15) 100%);
    z-index: 0;
    pointer-events: none
}

.subpage-hero--retail .wrap {
    position: relative;
    z-index: 1
}

.subpage-hero--attendance {
    background: url('/assets/img/solutions/recruitment-hero.jpg') center/cover no-repeat
}

.subpage-hero--attendance::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(247, 248, 252, .95) 0%, rgba(247, 248, 252, .75) 45%, rgba(13, 127, 121, .15) 100%);
    z-index: 0;
    pointer-events: none
}

.subpage-hero--attendance .wrap {
    position: relative;
    z-index: 1
}

.subpage-hero--biometric {
    background: url('/assets/img/solutions/recruitment-hero.jpg') center/cover no-repeat
}

.subpage-hero--biometric::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(247, 248, 252, .95) 0%, rgba(247, 248, 252, .75) 45%, rgba(13, 127, 121, .15) 100%);
    z-index: 0;
    pointer-events: none
}

.subpage-hero--biometric .wrap {
    position: relative;
    z-index: 1
}

.subpage-hero--payroll {
    background: url('/assets/img/solutions/recruitment-hero.jpg') center/cover no-repeat
}

.subpage-hero--payroll::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(247, 248, 252, .95) 0%, rgba(247, 248, 252, .75) 45%, rgba(13, 127, 121, .15) 100%);
    z-index: 0;
    pointer-events: none
}

.subpage-hero--payroll .wrap {
    position: relative;
    z-index: 1
}

.subpage-hero--leave {
    background: url('/assets/img/solutions/recruitment-hero.jpg') center/cover no-repeat
}

.subpage-hero--leave::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(247, 248, 252, .95) 0%, rgba(247, 248, 252, .75) 45%, rgba(13, 127, 121, .15) 100%);
    z-index: 0;
    pointer-events: none
}

.subpage-hero--leave .wrap {
    position: relative;
    z-index: 1
}

.subpage-hero--recruitment {
    background: url('/assets/img/solutions/recruitment-hero.jpg') center/cover no-repeat
}

.subpage-hero--recruitment::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(247, 248, 252, .95) 0%, rgba(247, 248, 252, .75) 45%, rgba(13, 127, 121, .15) 100%);
    z-index: 0;
    pointer-events: none
}

.subpage-hero--recruitment .wrap {
    position: relative;
    z-index: 1
}

.subpage-hero--engagement {
    background: url('/assets/img/solutions/recruitment-hero.jpg') center/cover no-repeat
}

.subpage-hero--engagement::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(247, 248, 252, .95) 0%, rgba(247, 248, 252, .75) 45%, rgba(13, 127, 121, .15) 100%);
    z-index: 0;
    pointer-events: none
}

.subpage-hero--engagement .wrap {
    position: relative;
    z-index: 1
}

.subpage-hero--workforce-insights {
    background: url('/assets/img/solutions/recruitment-hero.jpg') center/cover no-repeat
}

.subpage-hero--workforce-insights::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(247, 248, 252, .95) 0%, rgba(247, 248, 252, .75) 45%, rgba(13, 127, 121, .15) 100%);
    z-index: 0;
    pointer-events: none
}

.subpage-hero--workforce-insights .wrap {
    position: relative;
    z-index: 1
}

.back-link {
    font-size: .85rem;
    color: var(--mid);
    margin-bottom: 1.5rem;
    display: inline-block;
    font-weight: 600
}

.subpage-hero .h1 {
    margin-bottom: 1.4rem
}

.subpage-hero .lead {
    max-width: 640px;
    margin-bottom: 2.25rem
}

.subpage-hero .hero-ctas {
    margin-bottom: 2.5rem
}

.seo-bar {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem 2rem;
    text-align: center;
    font-size: .88rem;
    color: var(--mid);
    line-height: 1.7;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 100px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .03);
    position: relative;
    top: -1.5rem
}

.section-white {
    background: #fff
}

.speaker-meta {
    margin-top: 1.75rem
}

.speaker-author-row {
    display: flex;
    align-items: center;
    gap: .85rem
}

.speaker-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffb627, #e69a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 800;
    color: #1c2541;
    flex-shrink: 0
}

.speaker-author-name {
    font-weight: 700;
    color: var(--ink);
    font-size: .95rem
}

.speaker-author-role {
    font-size: .8rem;
    color: var(--mid)
}

.section-head {
    margin: 0 auto 2rem;
    text-align: center
}

.section-head .eyebrow {
    margin-left: auto;
    margin-right: auto
}

.screens-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem
}

.screen-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .04)
}

.screen-card-fig {
    background: #f8f9fe;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem
}

.screen-card-fig .screen-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.screen-card-body {
    padding: 1.25rem
}

.screen-card-body h3 {
    font-weight: 700;
    font-size: 1rem;
    margin: 0 0 .35rem
}

.screen-card-body p {
    font-size: .85rem;
    color: var(--mid);
    margin: 0
}

.price-card .btn-cta {
    width: 100%;
    justify-content: center
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 1.5rem;
    display: grid;
    gap: .5rem;
    font-size: .9rem;
    color: var(--mid);
    text-align: left
}

.price-features li {
    padding: .35rem 0;
    border-bottom: 1px solid var(--border)
}

.price-card.feat .price-features li {
    color: rgba(255, 255, 255, .65);
    border-color: rgba(255, 255, 255, .08)
}

.faq-wrap {
    max-width: 740px;
    margin: 0 auto;
    display: grid;
    gap: .75rem
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1rem 1.25rem
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--ink)
}

.faq-item p {
    color: var(--mid);
    margin-top: .75rem
}

.roadmap-timeline {
    position: relative;
    max-width: 920px;
    margin: 3.5rem auto 0;
    padding: 1rem 0
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(180deg, var(--blue), var(--teal), var(--yellow));
    transform: translateX(-50%);
    opacity: .75
}

.roadmap-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 2.75rem
}

.roadmap-item:last-child {
    margin-bottom: 0
}

.roadmap-item::before {
    content: '';
    position: absolute;
    top: 1.1rem;
    left: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--teal);
    border: 4px solid #fff;
    box-shadow: 0 0 0 3px rgba(13, 127, 121, .16);
    transform: translateX(-50%);
    z-index: 1
}

.roadmap-item:nth-child(3n+1)::before {
    background: var(--blue);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, .16)
}

.roadmap-item:nth-child(3n)::before {
    background: var(--yellow);
    box-shadow: 0 0 0 3px rgba(255, 182, 39, .24)
}

.roadmap-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.35rem 1.45rem;
    box-shadow: 0 14px 36px rgba(28, 37, 65, .07)
}

.roadmap-item:nth-child(odd) .roadmap-card {
    grid-column: 1;
    text-align: right
}

.roadmap-item:nth-child(even) .roadmap-card {
    grid-column: 2
}

.roadmap-card::after {
    content: '';
    position: absolute;
    top: 1.05rem;
    width: 14px;
    height: 14px;
    background: #fff;
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
    transform: rotate(45deg)
}

.roadmap-item:nth-child(odd) .roadmap-card::after {
    right: -8px
}

.roadmap-item:nth-child(even) .roadmap-card::after {
    left: -8px;
    transform: rotate(225deg)
}

.roadmap-date {
    display: inline-flex;
    align-items: center;
    margin-bottom: .45rem;
    font-size: .76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--teal)
}

.roadmap-item:nth-child(3n+1) .roadmap-date {
    color: var(--blue)
}

.roadmap-item:nth-child(3n) .roadmap-date {
    color: #d49316
}

.roadmap-card h3 {
    font-size: 1.02rem;
    margin-bottom: .45rem;
    letter-spacing: 0;
    color: var(--ink)
}

.roadmap-card p {
    font-size: .88rem;
    line-height: 1.75;
    color: var(--mid);
    margin: 0
}

.tile-icon-lg {
    font-size: 1.5rem
}

.section-nt {
    padding-top: 0
}

/* Auth pages */
.auth-page {
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    padding: 2rem 4vw
}

.auth-card {
    background: #fff;
    border-radius: 28px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(28, 37, 65, .08);
    width: 100%;
    max-width: 1000px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden
}

.auth-form {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.auth-illus {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #d8f3f1 0%, #b8e8e5 100%)
}

.auth-illus svg,
.auth-illus .auth-illus-img {
    width: 80%;
    height: auto;
    display: block
}

.auth-form h1 {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--ink);
    margin-bottom: .35rem
}

.auth-form .lead {
    font-size: .95rem;
    color: var(--mid);
    margin-bottom: 2rem
}

.form-group {
    margin-bottom: 1.25rem
}

.form-group label {
    display: block;
    font-size: .88rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: .4rem
}

.form-input {
    width: 100%;
    padding: .8rem 1.2rem;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-size: .95rem;
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s
}

.form-input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, .1)
}

.form-input::placeholder {
    color: var(--light)
}

.form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem
}

.form-check {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .88rem;
    color: var(--mid);
    cursor: pointer
}

.form-check input {
    width: 1rem;
    height: 1rem;
    accent-color: var(--blue)
}

.form-link {
    font-size: .88rem;
    font-weight: 600;
    color: var(--blue)
}

.form-link:hover {
    text-decoration: underline
}

.form-error {
    color: var(--coral);
    font-size: .82rem;
    margin-top: .35rem
}

.form-success {
    color: var(--teal);
    font-size: .88rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600
}

.btn-google {
    width: 100%;
    padding: .85rem;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: #fff;
    font-weight: 600;
    font-size: .92rem;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    cursor: pointer;
    transition: background .2s, border-color .2s
}

.btn-google:hover {
    background: var(--bg);
    border-color: var(--mid)
}

.btn-google img {
    width: 20px;
    height: 20px
}

.form-footer {
    text-align: center;
    font-size: .9rem;
    color: var(--mid);
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border)
}

.form-footer a {
    color: var(--blue);
    font-weight: 600
}

.form-footer a:hover {
    text-decoration: underline
}

.option-card {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1rem 1.5rem;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    margin-bottom: .75rem
}

.option-card:hover {
    border-color: var(--blue);
    background: var(--bg)
}

.option-card.active {
    border-color: var(--ink);
    background: #fff;
    box-shadow: 0 2px 10px rgba(28, 37, 65, .06)
}

.option-card input {
    accent-color: var(--blue);
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0
}

.option-card svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--mid)
}

.option-card.active svg {
    color: var(--ink)
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.form-select {
    width: 100%;
    padding: .8rem 1.2rem;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-size: .95rem;
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    appearance: none;
    cursor: pointer
}

.form-select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, .1)
}

.form-textarea {
    width: 100%;
    padding: .8rem 1.2rem;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    font-size: .95rem;
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: #fff;
    outline: none;
    resize: vertical;
    min-height: 100px;
    transition: border-color .2s, box-shadow .2s
}

.form-textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, .1)
}

.btn-full {
    width: 100%;
    justify-content: center
}

.btn-full+.btn-google {
    margin-top: .75rem
}

.auth-form .eyebrow {
    margin-bottom: 1rem
}

.form-error-center {
    margin-bottom: 1rem;
    text-align: center
}

.choose-form .btn-full {
    margin-top: .5rem
}

.option-card i {
    font-size: 1.4rem
}

.icon-mr {
    margin-right: .3rem
}

.icon-arrow {
    font-size: .7rem;
    margin-left: .3rem
}

.mb-lg {
    margin-bottom: 3rem
}

.lead-constrained {
    margin: 1rem auto 0;
    max-width: 600px
}

.section-head-constrained {
    margin-left: auto;
    margin-right: auto;
    max-width: 600px
}

.split-illus-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px
}

.ic-icon-blue {
    background: #e3e9ff;
    color: #4361ee
}

.ic-icon-yellow {
    background: #ffe9c2;
    color: #e6a020
}

.ic-icon-teal {
    background: #d8f3f1;
    color: #0d7f79
}

.ic-icon-red {
    background: #ffe1e1;
    color: #ff6b6b
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto
}

.download-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    padding: 2rem 1.5rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    text-decoration: none;
    color: var(--text);
    transition: transform .2s ease, box-shadow .2s ease
}

.download-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(28, 37, 65, .08);
    text-decoration: none;
    color: var(--text)
}

.download-icon {
    font-size: 2.2rem;
    color: var(--blue)
}

.download-name {
    font-weight: 700;
    font-size: 1.05rem
}

.download-action {
    font-size: .85rem;
    color: var(--blue);
    font-weight: 600
}

@media(max-width:640px) {
    .download-grid {
        grid-template-columns: 1fr;
        max-width: 320px
    }
}

.subpage-hero-contact {
    padding-bottom: 2rem
}

.contact-form-card .eyebrow {
    margin-bottom: 1rem
}

.contact-form-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem
}

.contact-side,
.contact-form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(28, 37, 65, .06)
}

.contact-side {
    background: var(--teal);
    border-color: var(--teal)
}

.contact-side .back-link {
    color: rgba(255, 255, 255, .8)
}

.contact-side .back-link:hover {
    color: #fff
}

.contact-side h1 {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -.02em
}

.contact-side .lead {
    font-size: .95rem;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 2rem;
    max-width: 480px
}

.contact-side .eyebrow {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .25);
    color: #fff
}

.contact-side .eyebrow .dot {
    background: #ffb627
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .9rem 1.25rem;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 14px
}

.contact-detail-item .cd-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    color: #fff
}

.contact-detail-item .cd-value small {
    display: block;
    font-size: .7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .6);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .1rem
}

.contact-detail-item .cd-value span {
    font-size: .95rem;
    font-weight: 600;
    color: #fff
}

@media(max-width:768px) {
    .auth-card {
        grid-template-columns: 1fr;
        max-width: 460px
    }

    .auth-illus {
        display: none
    }

    .auth-form {
        padding: 2rem
    }

    .roadmap-timeline {
        margin-top: 2.25rem;
        padding-left: 1.2rem
    }

    .roadmap-timeline::before {
        left: 7px;
        transform: none
    }

    .roadmap-item {
        display: block;
        margin-bottom: 1.15rem
    }

    .roadmap-item::before {
        left: 7px;
        top: 1.2rem;
        transform: translateX(-50%)
    }

    .roadmap-card,
    .roadmap-item:nth-child(odd) .roadmap-card,
    .roadmap-item:nth-child(even) .roadmap-card {
        text-align: left;
        margin-left: 1.15rem
    }

    .roadmap-card::after,
    .roadmap-item:nth-child(odd) .roadmap-card::after,
    .roadmap-item:nth-child(even) .roadmap-card::after {
        left: -8px;
        right: auto;
        transform: rotate(225deg)
    }
}

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

    .nav-actions {
        display: none
    }

    .nav-toggle {
        display: flex
    }

    .hero-inner,
    .split,
    .split.rev,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .hero-illus {
        height: 380px;
        margin-top: 1rem
    }

    .tiles,
    .chip-grid,
    .price-grid {
        grid-template-columns: 1fr 1fr
    }

    .stat-bar {
        grid-template-columns: 1fr 1fr
    }

    footer {
        padding: 2.5rem 1.25rem 1.5rem
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem
    }

    .footer-grid > div:first-child {
        grid-column: 1 / -1
    }

    .footer-desc {
        max-width: none
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: .5rem;
        padding-top: 1.25rem
    }

    .logo-strip-inner {
        justify-content: center;
        text-align: center
    }
}

@media(max-width:640px) {

    .tiles,
    .chip-grid,
    .price-grid,
    .stat-bar {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem
    }

    .footer-grid > div:first-child {
        grid-column: 1 / -1
    }

    footer {
        padding: 2rem 1rem 1.25rem
    }

    .footer-bottom {
        padding-top: 1rem
    }

    .cta-section {
        padding: 3rem 1.5rem
    }

    .testi-wrap {
        padding: 2.5rem 1.5rem
    }

    .live-feed {
        display: none
    }

    .workflow-panel {
        min-height: auto;
        padding: 1.25rem;
        gap: .9rem;
        border-radius: 22px
    }

    .workflow-panel::before {
        inset: 12px;
        border-radius: 18px
    }

    .workflow-panel::after {
        left: 2.95rem;
        top: 4.8rem;
        bottom: 4.8rem
    }

    .workflow-step {
        min-height: 64px;
        padding: .85rem;
        gap: .8rem
    }

    .workflow-icon {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        border-radius: 10px
    }

    .workflow-step strong {
        font-size: .88rem
    }

    .workflow-step small {
        font-size: .72rem
    }

    section {
        padding: 3.5rem 5vw
    }
}

.public-marketing-body {
    background: #f4f8f8;
    color: #163d3c;
    font-family: "Satoshi", "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.pm-page {
    --pm-bg: #f4f8f8;
    --pm-surface: #ffffff;
    --pm-surface-soft: #f0f8f7;
    --pm-paper: #f8fbfb;
    --pm-border: #e3efee;
    --pm-text: #163d3c;
    --pm-muted: #6f9895;
    --pm-soft: #8aaead;
    --pm-teal: #0d7f79;
    --pm-teal-dark: #0b6f69;
    --pm-teal-soft: #e8f5f2;
    --pm-blue: #2f7de1;
    --pm-blue-soft: #e8f1fd;
    --pm-amber: #cf7f42;
    --pm-amber-soft: #faeeda;
    --pm-purple: #5f6fd6;
    --pm-purple-soft: #eeedfe;
    --pm-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
    --pm-radius-lg: 20px;
    --pm-radius-md: 14px;
    --pm-radius-sm: 10px;
    background: var(--pm-bg);
    color: var(--pm-text);
}

.pm-wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.pm-announcement {
    background: #163d3c;
    color: rgba(255, 255, 255, 0.76);
    text-align: center;
    padding: 0.55rem 1rem;
    font-size: 0.82rem;
    font-weight: 600;
}

.pm-announcement a {
    color: #9be0d8;
    margin-left: 0.3rem;
    text-decoration: none;
}

.pm-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    min-height: 68px;
    background: rgba(248, 251, 251, 0.94);
    border-bottom: 1px solid var(--pm-border, #e3efee);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0 4vw;
}

.pm-brand {
    color: #163d3c;
    font-weight: 800;
    font-size: 1.45rem;
    letter-spacing: -0.02em;
    text-decoration: none;
    white-space: nowrap;
}

.pm-brand span {
    color: #0d7f79;
}

.pm-brand-light {
    color: #fff;
}

.pm-nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    flex: 1;
}

.pm-nav-link,
.pm-link-muted {
    border: 0;
    background: transparent;
    color: #6f9895;
    border-radius: 10px;
    padding: 0.5rem 0.78rem;
    font-size: 0.9rem;
    font-weight: 650;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.pm-nav-link:hover,
.pm-nav-link.active,
.pm-link-muted:hover {
    color: #163d3c;
    background: #e8f5f2;
    text-decoration: none;
}

.pm-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 11px;
    padding: 0.82rem 1.35rem;
    border: 1px solid transparent;
    font-size: 0.92rem;
    font-weight: 750;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
    min-height: 44px;
}

.pm-btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.pm-btn-small {
    min-height: 38px;
    padding: 0.55rem 1rem;
}

.pm-btn-primary {
    background: #0d7f79;
    color: #fff;
    box-shadow: 0 10px 26px rgba(13, 127, 121, 0.22);
}

.pm-btn-primary:hover {
    background: #0b6f69;
    color: #fff;
}

.pm-btn-secondary {
    background: #fff;
    color: #163d3c;
    border-color: #d7e8e6;
}

.pm-btn-secondary:hover {
    background: #f0f8f7;
    color: #0d7f79;
}

.pm-btn-accent {
    background: #2f7de1;
    color: #fff;
    box-shadow: 0 10px 26px rgba(47, 125, 225, 0.22);
}

.pm-btn-accent:hover {
    background: #276cc4;
    color: #fff;
}

.pm-nav-dd {
    position: relative;
}

.pm-mega {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #e3efee;
    border-radius: 16px;
    box-shadow: 0 22px 56px rgba(15, 23, 42, 0.13);
    padding: 1rem;
    min-width: 520px;
    z-index: 60;
}

.pm-nav-dd:hover .pm-mega,
.pm-nav-dd:focus-within .pm-mega {
    display: grid;
}

.pm-mega-solutions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.25rem;
}

.pm-mega-compact {
    min-width: 260px;
    grid-template-columns: 1fr;
}

.pm-mega-item,
.pm-mega-mini {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 12px;
    color: #163d3c;
    text-decoration: none;
}

.pm-mega-item:hover,
.pm-mega-mini:hover {
    background: #f0f8f7;
    text-decoration: none;
}

.pm-mega-icon,
.pm-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e8f5f2;
    color: #0d7f79;
    flex-shrink: 0;
}

.pm-mega-item strong,
.pm-mega-item small {
    display: block;
}

.pm-mega-item small {
    color: #6f9895;
    font-size: 0.78rem;
    margin-top: 0.12rem;
}

.pm-menu-button {
    display: none;
    border: 1px solid #e3efee;
    background: #fff;
    color: #163d3c;
    width: 42px;
    height: 42px;
    border-radius: 12px;
}

.pm-hero,
.pm-inner-hero,
.pm-contact-section {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.pm-hero {
    min-height: 720px;
    display: flex;
    align-items: center;
}

.pm-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 10%, rgba(13, 127, 121, 0.16), transparent 34%),
        radial-gradient(circle at 8% 82%, rgba(47, 125, 225, 0.10), transparent 28%),
        linear-gradient(180deg, #f8fbfb 0%, #f4f8f8 100%);
}

.pm-hero-grid,
.pm-inner-grid,
.pm-contact-grid,
.pm-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 4rem;
    align-items: center;
    position: relative;
}

.pm-inner-grid,
.pm-contact-grid {
    grid-template-columns: 1fr 0.9fr;
}

.pm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #0d7f79;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.pm-eyebrow span {
    width: 18px;
    height: 2px;
    border-radius: 3px;
    background: currentColor;
}

.pm-center {
    justify-content: center;
}

.pm-hero h1,
.pm-inner-hero h1,
.pm-contact-side h1 {
    font-size: clamp(2.3rem, 5vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: 0;
    font-weight: 850;
    color: #163d3c;
    max-width: 820px;
}

.pm-inner-hero h1,
.pm-contact-side h1 {
    font-size: clamp(2.1rem, 4vw, 3.75rem);
}

.pm-lede,
.pm-section-head p,
.pm-split p,
.pm-contact-side p {
    color: #6f9895;
    font-size: 1.05rem;
    line-height: 1.75;
    margin-top: 1rem;
    max-width: 620px;
}

.pm-actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.pm-actions-center {
    justify-content: center;
}

.pm-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.4rem;
    color: #6f9895;
    font-size: 0.88rem;
}

.pm-proof strong {
    color: #163d3c;
    display: block;
    font-size: 1rem;
}

.pm-visual-wrap {
    position: relative;
}

.pm-image-placeholder {
    min-height: 320px;
    aspect-ratio: 16 / 10;
    width: 100%;
    border-radius: 20px;
    border: 1px dashed #b9d9d5;
    background:
        repeating-linear-gradient(45deg, transparent, transparent 16px, rgba(13, 127, 121, 0.035) 16px, rgba(13, 127, 121, 0.035) 32px),
        linear-gradient(135deg, #ffffff 0%, #e8f5f2 100%);
    color: #7da8a5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.7rem;
    padding: 1rem;
    box-shadow: var(--pm-shadow);
}

.pm-image-placeholder i {
    font-size: 2rem;
    opacity: 0.42;
}

.pm-image-placeholder span {
    font-size: 0.86rem;
    font-weight: 650;
    line-height: 1.45;
}

.pm-image-placeholder em {
    font-size: 0.78rem;
    opacity: 0.72;
}

.pm-hero-placeholder {
    aspect-ratio: 4 / 3;
}

.pm-dark-placeholder {
    background:
        repeating-linear-gradient(45deg, transparent, transparent 16px, rgba(255, 255, 255, 0.025) 16px, rgba(255, 255, 255, 0.025) 32px),
        rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.62);
    box-shadow: none;
}

.pm-float-card {
    position: absolute;
    background: #fff;
    border: 1px solid #e3efee;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #163d3c;
}

.pm-float-card i {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e8f5f2;
    color: #0d7f79;
}

.pm-float-card small {
    display: block;
    color: #6f9895;
    font-size: 0.72rem;
}

.pm-float-a {
    left: -26px;
    bottom: 28px;
}

.pm-float-b {
    right: -22px;
    top: 28px;
}

.pm-section {
    padding: 5.5rem 0;
}

.pm-soft {
    background: #f0f8f7;
}

.pm-section-dark {
    background: #163d3c;
    color: #fff;
}

.pm-section-dark h2,
.pm-section-dark .pm-eyebrow {
    color: #fff;
}

.pm-section-dark p,
.pm-section-dark .pm-check-list {
    color: rgba(255, 255, 255, 0.68);
}

.pm-section-head {
    max-width: 680px;
    margin-bottom: 2.5rem;
}

.pm-section-head h2,
.pm-split h2,
.pm-cta h2,
.pm-about-copy h2 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    line-height: 1.08;
    font-weight: 820;
    letter-spacing: 0;
    color: #163d3c;
}

.pm-section-dark .pm-split h2 {
    color: #fff;
}

.pm-bento,
.pm-feature-grid,
.pm-industry-grid,
.pm-pricing-grid,
.pm-screens-grid,
.pm-stats-row {
    display: grid;
    gap: 1.2rem;
}

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

.pm-feature-grid,
.pm-pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pm-industry-grid,
.pm-screens-grid,
.pm-stats-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pm-card,
.pm-industry-card,
.pm-plan,
.pm-screen-card,
.pm-cta,
.pm-form {
    background: #fff;
    border: 1px solid #e3efee;
    border-radius: 20px;
    box-shadow: var(--pm-shadow);
}

.pm-card,
.pm-industry-card {
    padding: 1.5rem;
    text-decoration: none;
    color: #163d3c;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pm-card:hover,
.pm-industry-card:hover {
    transform: translateY(-3px);
    border-color: #a8d8d2;
    box-shadow: 0 22px 56px rgba(15, 23, 42, 0.1);
    text-decoration: none;
}

.pm-card h3,
.pm-industry-card h3,
.pm-screen-card h3 {
    margin: 1rem 0 0.45rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: #163d3c;
}

.pm-card p,
.pm-industry-card p,
.pm-screen-card p,
.pm-plan p {
    color: #6f9895;
    line-height: 1.65;
    font-size: 0.92rem;
}

.pm-industry-card span {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2f7de1;
    background: #e8f1fd;
    font-size: 1.25rem;
}

.pm-industry-card strong {
    display: inline-flex;
    margin-top: 1rem;
    color: #0d7f79;
    font-size: 0.88rem;
}

.pm-check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
    display: grid;
    gap: 0.7rem;
}

.pm-check-list li::before,
.pm-plan li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #0d7f79;
    margin-right: 0.55rem;
}

.pm-cta {
    text-align: center;
    padding: 4.5rem 2rem;
    background:
        radial-gradient(circle at 50% 0%, rgba(13, 127, 121, 0.12), transparent 34%),
        #fff;
}

.pm-cta p {
    color: #6f9895;
    margin: 1rem auto 0;
    max-width: 560px;
}

.pm-inner-hero {
    background:
        radial-gradient(circle at 86% 12%, rgba(13, 127, 121, 0.13), transparent 30%),
        linear-gradient(180deg, #f8fbfb 0%, #f4f8f8 100%);
}

.pm-pricing-hero {
    text-align: center;
    padding-bottom: 3rem;
}

.pm-pricing-hero .pm-lede {
    margin-left: auto;
    margin-right: auto;
}

.pm-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    color: #8aaead;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
}

.pm-breadcrumb a {
    color: #0d7f79;
    text-decoration: none;
}

.pm-seo-strip {
    background: #fff;
    border-top: 1px solid #e3efee;
    border-bottom: 1px solid #e3efee;
    color: #6f9895;
    padding: 0.8rem 4vw;
    font-size: 0.86rem;
    text-align: center;
}

.pm-stats-row {
    margin-bottom: 4rem;
}

.pm-stats-row div {
    background: #fff;
    border: 1px solid #e3efee;
    border-radius: 18px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--pm-shadow);
}

.pm-stats-row strong {
    display: block;
    font-size: 2.3rem;
    line-height: 1;
    color: #0d7f79;
}

.pm-stats-row span {
    display: block;
    margin-top: 0.45rem;
    color: #6f9895;
    font-size: 0.86rem;
}

.pm-plan {
    position: relative;
    padding: 2rem;
}

.pm-plan.featured {
    background: #163d3c;
    color: #fff;
    border-color: #163d3c;
    transform: translateY(-12px);
}

.pm-plan-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #2f7de1;
    color: #fff;
    border-radius: 999px;
    padding: 0.25rem 0.85rem;
    font-size: 0.72rem;
    font-weight: 800;
    white-space: nowrap;
}

.pm-plan h2 {
    font-size: 1rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pm-plan.featured h2,
.pm-plan.featured p,
.pm-plan.featured li {
    color: rgba(255, 255, 255, 0.78);
}

.pm-price {
    margin: 1.25rem 0;
    font-size: 3rem;
    font-weight: 850;
    color: #163d3c;
}

.pm-plan.featured .pm-price {
    color: #fff;
}

.pm-price sup,
.pm-price span {
    font-size: 0.9rem;
    color: #6f9895;
}

.pm-plan.featured .pm-price sup,
.pm-plan.featured .pm-price span {
    color: rgba(255, 255, 255, 0.58);
}

.pm-plan ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    gap: 0.65rem;
    color: #6f9895;
    font-size: 0.92rem;
}

.pm-faq-wrap {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 0.75rem;
}

.pm-faq {
    background: #fff;
    border: 1px solid #e3efee;
    border-radius: 14px;
    padding: 1rem 1.2rem;
}

.pm-faq summary {
    cursor: pointer;
    font-weight: 800;
    color: #163d3c;
}

.pm-faq p {
    color: #6f9895;
    margin-top: 0.75rem;
}

.pm-contact-section {
    background: linear-gradient(180deg, #f8fbfb 0%, #f4f8f8 100%);
}

.pm-contact-side {
    background: #163d3c;
    color: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    min-height: 100%;
}

.pm-contact-side h1,
.pm-contact-side .pm-eyebrow {
    color: #fff;
}

.pm-contact-side p {
    color: rgba(255, 255, 255, 0.7);
}

.pm-contact-detail {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
    color: #fff;
}

.pm-contact-detail i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #9be0d8;
}

.pm-contact-detail small {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.74rem;
}

.pm-form {
    padding: 2rem;
    display: grid;
    gap: 1rem;
}

.pm-form h2 {
    color: #163d3c;
    font-size: 1.35rem;
    font-weight: 850;
}

.pm-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.pm-form label {
    display: grid;
    gap: 0.35rem;
    color: #6f9895;
    font-size: 0.82rem;
    font-weight: 750;
}

.pm-form input,
.pm-form select,
.pm-form textarea {
    width: 100%;
    border: 1px solid #d7e8e6;
    border-radius: 12px;
    padding: 0.75rem 0.85rem;
    color: #163d3c;
    background: #f8fbfb;
    outline: none;
}

.pm-form input:focus,
.pm-form select:focus,
.pm-form textarea:focus {
    border-color: #0d7f79;
    box-shadow: 0 0 0 3px rgba(13, 127, 121, 0.12);
}

.pm-screen-card {
    overflow: hidden;
}

.pm-screen-card .pm-image-placeholder {
    border-radius: 20px 20px 0 0;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    box-shadow: none;
    min-height: 210px;
}

.pm-screen-card h3,
.pm-screen-card p {
    padding-left: 1rem;
    padding-right: 1rem;
}

.pm-screen-card p {
    padding-bottom: 1.1rem;
}

.pm-footer {
    background: #163d3c;
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

.pm-footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, minmax(0, 1fr));
    gap: 2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pm-footer-copy {
    max-width: 320px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 0.8rem;
    line-height: 1.65;
}

.pm-footer h4 {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.pm-footer a:not(.pm-brand) {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    margin-bottom: 0.55rem;
    font-size: 0.9rem;
}

.pm-footer a:hover {
    color: #fff;
    text-decoration: none;
}

.pm-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1.8rem;
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.82rem;
}

.pm-mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.42);
    z-index: 70;
}

.pm-mobile-menu {
    position: fixed;
    z-index: 80;
    top: 0;
    right: 0;
    width: min(340px, 88vw);
    height: 100vh;
    overflow-y: auto;
    background: #fff;
    box-shadow: -18px 0 48px rgba(15, 23, 42, 0.15);
    padding: 1.2rem;
    display: grid;
    align-content: start;
    gap: 0.35rem;
}

.pm-mobile-menu a,
.pm-mobile-section {
    color: #163d3c;
    text-decoration: none;
    padding: 0.7rem 0.8rem;
    border-radius: 10px;
    font-weight: 700;
}

.pm-mobile-menu a:hover {
    background: #e8f5f2;
    text-decoration: none;
}

.pm-mobile-section {
    color: #8aaead;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
    margin-top: 0.6rem;
}

.pm-mobile-close {
    justify-self: end;
    width: 40px;
    height: 40px;
    border: 1px solid #e3efee;
    background: #fff;
    border-radius: 12px;
    color: #163d3c;
}

@media (max-width: 1040px) {

    .pm-nav-center,
    .pm-nav-actions {
        display: none;
    }

    .pm-menu-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .pm-hero-grid,
    .pm-inner-grid,
    .pm-contact-grid,
    .pm-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .pm-industry-grid,
    .pm-screens-grid,
    .pm-stats-row,
    .pm-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pm-plan.featured {
        transform: none;
    }
}

@media (max-width: 680px) {
    .pm-wrap {
        width: min(100% - 24px, 1180px);
    }

    .pm-hero,
    .pm-inner-hero,
    .pm-contact-section {
        padding: 4rem 0;
    }

    .pm-hero {
        min-height: auto;
    }

    .pm-section {
        padding: 4rem 0;
    }

    .pm-bento,
    .pm-feature-grid,
    .pm-pricing-grid,
    .pm-industry-grid,
    .pm-screens-grid,
    .pm-stats-row,
    .pm-footer-grid,
    .pm-form-row {
        grid-template-columns: 1fr;
    }

    .pm-image-placeholder {
        min-height: 240px;
    }

    .pm-float-card {
        position: static;
        margin-top: 0.75rem;
    }

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

    .pm-contact-side,
    .pm-form,
    .pm-cta {
        padding: 1.4rem;
    }
}