:root {
    --page: #f7f8fb;
    --surface: #ffffff;
    --surface-soft: #f0f4f8;
    --surface-blue: #edf3ff;
    --ink: #182235;
    --ink-strong: #101828;
    --muted: #667085;
    --muted-strong: #475467;
    --line: #e2e7ee;
    --line-strong: #cfd7e3;
    --brand: #3563e9;
    --brand-dark: #2448bc;
    --brand-soft: #eaf0ff;
    --teal: #0f9f8e;
    --navy: #17233b;
    --success: #158467;
    --warning: #b87814;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 18px;
    --maxw: 1180px;
    --shadow-sm: 0 8px 28px rgba(16, 24, 40, .06);
    --shadow: 0 20px 55px rgba(16, 24, 40, .09);
}

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

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

html, body {
    min-height: 100%;
    margin: 0;
}

body {
    font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    background: var(--page);
    color: var(--ink);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

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

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

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

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

.site-main {
    overflow: hidden;
}

.announcement-bar {
    background: var(--brand-soft);
    border-bottom: 1px solid #dbe5ff;
    color: var(--muted-strong);
    font-size: .9rem;
}

.announcement-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
}

.announcement-inner a {
    color: var(--brand-dark);
    font-weight: 700;
    white-space: nowrap;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(226, 231, 238, .9);
    backdrop-filter: blur(18px);
}

.nav-shell {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--ink-strong);
    font-size: 1.08rem;
    font-weight: 780;
    letter-spacing: -.02em;
    white-space: nowrap;
}

.brand-mark {
    position: relative;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--brand);
    box-shadow: 0 8px 20px rgba(53, 99, 233, .2);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
    content: "";
    position: absolute;
    width: 6px;
    border-radius: 999px;
    background: #fff;
    transform: rotate(38deg);
}

.brand-mark::before {
    height: 15px;
    left: 9px;
    top: 10px;
}

.brand-mark span {
    height: 21px;
    left: 15px;
    top: 7px;
}

.brand-mark::after {
    height: 13px;
    right: 7px;
    top: 8px;
}

.site-nav {
    display: flex;
    align-items: center;
}

.nav-toggle,
.nav-toggle-button {
    display: none;
}

.nav-panel {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-panel > a,
.nav-dropdown > summary {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 9px 11px;
    border-radius: var(--radius-sm);
    color: var(--muted-strong);
    font-size: .94rem;
    font-weight: 650;
    cursor: pointer;
    list-style: none;
    transition: color .16s ease, background .16s ease;
}

.nav-dropdown > summary::-webkit-details-marker {
    display: none;
}

.nav-panel > a:hover,
.nav-panel > a.active,
.nav-dropdown > summary:hover,
.nav-dropdown[open] > summary {
    color: var(--ink-strong);
    background: var(--surface-soft);
}

.nav-panel .nav-cta,
.nav-panel .nav-cta.active {
    margin-left: 8px;
    padding-inline: 17px;
    color: #fff;
    background: var(--brand);
}

.nav-panel .nav-cta:hover {
    color: #fff;
    background: var(--brand-dark);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 350px;
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    inset: -12px 0 auto;
    height: 12px;
}

.nav-dropdown-menu a {
    display: grid;
    gap: 1px;
    padding: 11px 12px;
    border-radius: var(--radius-sm);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
    background: var(--surface-soft);
}

.nav-dropdown-menu strong {
    color: var(--ink-strong);
    font-size: .93rem;
}

.nav-dropdown-menu small {
    color: var(--muted);
    font-size: .8rem;
}

.marketing-hero {
    position: relative;
    padding: 86px 0 80px;
    background:
        radial-gradient(circle at 84% 18%, rgba(53, 99, 233, .10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    border-bottom: 1px solid var(--line);
}

.marketing-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: -250px;
    bottom: -280px;
    border: 1px solid rgba(53, 99, 233, .13);
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(480px, 1.05fr);
    align-items: center;
    gap: 72px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--brand-dark);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.section-label::before {
    content: "";
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.section-label-light {
    color: #a9c0ff;
}

h1, h2, h3 {
    margin-top: 0;
    color: var(--ink-strong);
    line-height: 1.14;
    letter-spacing: -.035em;
}

h1 {
    max-width: 760px;
    margin-bottom: 22px;
    font-size: clamp(3rem, 6vw, 5.25rem);
    font-weight: 720;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 4vw, 3.35rem);
    font-weight: 700;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.35rem;
    font-weight: 700;
}

p {
    margin-top: 0;
    color: var(--muted);
}

.hero-lead,
.lead {
    max-width: 650px;
    margin-bottom: 28px;
    color: var(--muted-strong);
    font-size: 1.16rem;
    line-height: 1.7;
}

.hero-actions,
.card-actions,
.final-cta-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.button,
.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-weight: 750;
    line-height: 1.2;
    cursor: pointer;
    transition: transform .16s ease, background .16s ease, border-color .16s ease, color .16s ease, box-shadow .16s ease;
}

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

.button-primary,
.btn-primary {
    color: #fff;
    background: var(--brand);
    box-shadow: 0 10px 24px rgba(53, 99, 233, .16);
}

.button-primary:hover,
.btn-primary:hover {
    color: #fff;
    background: var(--brand-dark);
}

.button-secondary,
.btn-ghost {
    color: var(--ink-strong);
    border-color: var(--line-strong);
    background: var(--surface);
}

.button-secondary:hover,
.btn-ghost:hover {
    color: var(--ink-strong);
    border-color: #aeb9c8;
    background: #fbfcfe;
}

.button-outline {
    color: var(--brand-dark);
    border-color: #c9d7ff;
    background: var(--surface);
}

.button-outline:hover {
    color: var(--brand-dark);
    border-color: var(--brand);
    background: var(--brand-soft);
}

.button-small {
    min-height: 40px;
    padding: 9px 14px;
    font-size: .9rem;
}

.button-light {
    color: var(--navy);
    background: #fff;
}

.button-light:hover {
    color: var(--navy);
    background: #eef3ff;
}

.button-dark-outline {
    color: #fff;
    border-color: rgba(255,255,255,.32);
    background: transparent;
}

.button-dark-outline:hover {
    color: #fff;
    border-color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.06);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--brand-dark);
    font-weight: 750;
}

.text-link span {
    transition: transform .16s ease;
}

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

.hero-industries {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 34px;
}

.hero-industries span {
    padding: 6px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted-strong);
    background: rgba(255,255,255,.76);
    font-size: .82rem;
    font-weight: 650;
}

.platform-preview {
    position: relative;
    min-height: 480px;
}

.preview-browser {
    position: absolute;
    inset: 20px 0 auto 0;
    overflow: hidden;
    border: 1px solid #d5dce7;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 30px 70px rgba(31, 47, 77, .16);
}

.preview-browser-bar {
    height: 40px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 13px;
    border-bottom: 1px solid #e6eaf0;
    background: #f8fafc;
}

.preview-browser-bar > span,
.demo-window-bar span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #cbd3df;
}

.preview-browser-bar div {
    min-width: 180px;
    margin-left: 12px;
    padding: 4px 13px;
    border-radius: 999px;
    color: #7b8798;
    background: #edf1f5;
    font-size: .68rem;
}

.preview-app {
    min-height: 365px;
    display: grid;
    grid-template-columns: 58px 1fr;
}

.preview-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 17px;
    padding: 18px 0;
    background: var(--navy);
}

.preview-logo {
    width: 27px;
    height: 27px;
    margin-bottom: 13px;
    border-radius: 8px;
    background: #fff;
}

.preview-sidebar span {
    width: 20px;
    height: 5px;
    border-radius: 999px;
    background: rgba(255,255,255,.25);
}

.preview-sidebar span.active {
    background: #8ea9ff;
}

.preview-content {
    padding: 28px;
    background: #fbfcfe;
}

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

.preview-heading small,
.preview-heading strong {
    display: block;
}

.preview-heading small {
    margin-bottom: 3px;
    color: #8a95a5;
    font-size: .67rem;
}

.preview-heading strong {
    color: #1f2a3c;
    font-size: 1.1rem;
}

.preview-heading i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e7ecf4;
}

.preview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 24px 0;
}

.preview-stats div {
    padding: 13px;
    border: 1px solid #e5e9ef;
    border-radius: 9px;
    background: #fff;
}

.preview-stats small,
.preview-stats strong {
    display: block;
}

.preview-stats small {
    color: #8a95a5;
    font-size: .61rem;
}

.preview-stats strong {
    margin-top: 4px;
    color: #1b273a;
    font-size: 1.15rem;
}

.preview-table {
    overflow: hidden;
    border: 1px solid #e5e9ef;
    border-radius: 9px;
    background: #fff;
}

.preview-table > div {
    display: grid;
    grid-template-columns: 1fr .95fr .95fr;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 8px 12px;
    border-bottom: 1px solid #edf0f4;
    color: #526074;
    font-size: .66rem;
}

.preview-table > div:last-child {
    border-bottom: 0;
}

.preview-table .preview-table-head {
    min-height: 35px;
    color: #7c8898;
    background: #f7f9fb;
    font-size: .6rem;
    font-weight: 700;
}

.preview-table .status {
    width: max-content;
    padding: 3px 7px;
    border-radius: 999px;
    font-weight: 700;
}

.status.confirmed { color: #15775f; background: #e4f5ef; }
.status.transit { color: #3157b7; background: #e9efff; }
.status.pending { color: #9d6713; background: #fff3dc; }

.preview-phone {
    position: absolute;
    right: -18px;
    bottom: 0;
    width: 168px;
    min-height: 300px;
    padding: 17px 15px;
    border: 7px solid #1d2738;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 25px 50px rgba(16, 24, 40, .18);
}

.phone-speaker {
    width: 45px;
    height: 5px;
    margin: 0 auto 25px;
    border-radius: 999px;
    background: #d9dee7;
}

.preview-phone > small,
.preview-phone > strong {
    display: block;
}

.preview-phone > small {
    color: #8792a2;
    font-size: .65rem;
}

.preview-phone > strong {
    color: #1d283a;
    font-size: .93rem;
}

.phone-job {
    display: grid;
    gap: 5px;
    margin-top: 15px;
    padding: 12px;
    border: 1px solid #dfe5ed;
    border-radius: 10px;
    background: #f8fafc;
}

.phone-job span,
.phone-job small {
    color: #7c8797;
    font-size: .58rem;
}

.phone-job b {
    color: #27344a;
    font-size: .84rem;
}

.phone-action {
    margin-top: 14px;
    padding: 8px;
    border-radius: 7px;
    color: #fff;
    background: var(--brand);
    text-align: center;
    font-size: .68rem;
    font-weight: 700;
}

.preview-note {
    position: absolute;
    left: -25px;
    bottom: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid #dfe5ed;
    border-radius: 11px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.preview-note-icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--teal);
    font-size: .8rem;
    font-weight: 800;
}

.preview-note strong,
.preview-note small {
    display: block;
}

.preview-note strong {
    color: var(--ink-strong);
    font-size: .75rem;
}

.preview-note small {
    color: var(--muted);
    font-size: .65rem;
}

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

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
    min-height: 104px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 24px;
    border-right: 1px solid var(--line);
}

.trust-grid > div:first-child {
    border-left: 1px solid var(--line);
}

.trust-grid strong,
.trust-grid span {
    display: block;
}

.trust-grid strong {
    margin-bottom: 3px;
    color: var(--ink-strong);
    font-size: .93rem;
}

.trust-grid span {
    color: var(--muted);
    font-size: .8rem;
}

.section {
    padding: 92px 0;
}

.section-soft {
    background: var(--surface-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .72fr);
    align-items: end;
    gap: 55px;
    margin-bottom: 42px;
}

.section-heading h2,
.section-heading p {
    margin-bottom: 0;
}

.section-heading p {
    max-width: 520px;
}

.narrow-heading {
    grid-template-columns: minmax(0, 1fr) minmax(250px, .55fr);
}

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

.product-card,
.compact-product,
.demo-card,
.benefits-grid article,
.steps-grid article,
.card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.product-card {
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.product-card-featured {
    position: relative;
    overflow: hidden;
}

.product-card-featured::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: var(--brand);
}

.product-card:nth-child(2)::before {
    background: var(--teal);
}

.product-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.product-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--brand-dark);
    background: var(--brand-soft);
}

.product-card:nth-child(2) .product-icon {
    color: #087b6f;
    background: #e4f5f2;
}

.product-icon svg {
    width: 27px;
    height: 27px;
}

.product-status {
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--muted-strong);
    background: var(--surface-soft);
    font-size: .72rem;
    font-weight: 700;
}

.product-card h3 {
    font-size: 1.75rem;
}

.product-card > p {
    min-height: 58px;
}

.feature-list {
    display: grid;
    gap: 9px;
    margin: 22px 0 28px;
    padding: 0;
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 25px;
    color: var(--muted-strong);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--teal);
    font-weight: 800;
}

.product-card .card-actions {
    justify-content: space-between;
    gap: 16px;
}

.secondary-product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 22px;
}

.compact-product {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 20px;
    padding: 26px;
}

.compact-product-number {
    color: var(--brand);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.compact-product p {
    margin-bottom: 12px;
}

.platform-story-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    align-items: center;
    gap: 65px;
}

.story-copy p {
    margin-bottom: 27px;
}

.connected-platform {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    gap: 15px;
}

.platform-column {
    display: grid;
    gap: 10px;
}

.platform-column-label {
    margin-bottom: 4px;
    color: var(--muted-strong);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.platform-item {
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fff;
}

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

.platform-item strong {
    margin-bottom: 3px;
    color: var(--ink-strong);
    font-size: .92rem;
}

.platform-item small {
    color: var(--muted);
    font-size: .78rem;
}

.platform-connector {
    display: grid;
    place-items: center;
    gap: 6px;
    color: var(--brand);
    text-align: center;
}

.platform-connector span {
    font-size: .66rem;
    font-weight: 800;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.platform-connector i {
    font-style: normal;
    font-size: 1.4rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.steps-grid article {
    min-height: 220px;
    padding: 25px;
}

.steps-grid article > span {
    display: inline-block;
    margin-bottom: 38px;
    color: var(--brand);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .1em;
}

.steps-grid h3 {
    font-size: 1.15rem;
}

.steps-grid p {
    margin-bottom: 0;
    font-size: .93rem;
}

.workflow-section {
    padding-top: 22px;
}

.workflow-card {
    display: grid;
    grid-template-columns: 210px 1fr;
    align-items: center;
    gap: 28px;
    padding: 23px 25px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.workflow-card + .workflow-card {
    margin-top: 12px;
}

.workflow-title strong,
.workflow-title span {
    display: block;
}

.workflow-title strong {
    color: var(--ink-strong);
}

.workflow-title span {
    margin-top: 2px;
    color: var(--muted);
    font-size: .78rem;
}

.workflow-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.workflow-steps span {
    min-width: 68px;
    padding: 8px 10px;
    border-radius: 8px;
    color: var(--ink-strong);
    background: var(--surface-soft);
    text-align: center;
    font-size: .78rem;
    font-weight: 700;
}

.workflow-steps i {
    color: #9ba6b5;
    font-style: normal;
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.demo-card {
    overflow: hidden;
}

.demo-visual {
    min-height: 265px;
    display: grid;
    place-items: center;
    padding: 30px;
    background: #eaf0fb;
}

.demo-travel {
    background: #e6f2f0;
}

.demo-window {
    width: min(100%, 360px);
    padding: 18px;
    border: 1px solid rgba(31, 47, 77, .14);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 20px 45px rgba(31, 47, 77, .12);
}

.demo-window-bar {
    display: flex;
    gap: 5px;
    padding-bottom: 13px;
    border-bottom: 1px solid #edf0f4;
}

.demo-window > strong {
    display: block;
    margin: 18px 0 13px;
    color: var(--ink-strong);
    font-size: 1.05rem;
}

.demo-route {
    display: grid;
    gap: 7px;
}

.demo-route span {
    padding: 10px;
    border: 1px solid #e1e6ed;
    border-radius: 7px;
    color: #8a95a5;
    font-size: .72rem;
}

.demo-route i {
    margin-left: 12px;
    color: #aab3c0;
    font-style: normal;
}

.demo-button {
    width: 115px;
    height: 30px;
    margin-top: 15px;
    border-radius: 7px;
    background: var(--brand);
}

.demo-travel .demo-button {
    background: var(--teal);
}

.demo-content {
    padding: 28px;
}

.demo-content h3 {
    font-size: 1.55rem;
}

.demo-content .card-actions {
    justify-content: space-between;
    margin-top: 24px;
}

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

.benefits-grid article {
    padding: 24px;
}

.benefits-grid article > span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border-radius: 10px;
    color: var(--brand-dark);
    background: var(--brand-soft);
    font-size: 1.05rem;
    font-weight: 800;
}

.benefits-grid h3 {
    font-size: 1.12rem;
}

.benefits-grid p {
    margin-bottom: 0;
    font-size: .91rem;
}

.customer-story-section {
    padding-top: 25px;
}

.customer-story {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 60px;
    padding: 52px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
}

.customer-story-visual {
    position: relative;
    padding: 55px 40px 35px;
    border-radius: 14px;
    background: var(--navy);
}

.customer-story-label {
    position: absolute;
    top: 17px;
    left: 20px;
    color: #b9c6db;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.customer-browser {
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 18px 38px rgba(0,0,0,.22);
}

.customer-browser-top {
    padding: 9px 14px;
    color: #7d8898;
    background: #eef1f5;
    font-size: .66rem;
}

.customer-browser-body {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px;
    background: linear-gradient(135deg, #ffffff, #eef4f5);
}

.customer-browser-body small,
.customer-browser-body strong {
    display: block;
}

.customer-browser-body small {
    margin-bottom: 5px;
    color: var(--teal);
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
}

.customer-browser-body strong {
    color: var(--ink-strong);
    font-size: 1.2rem;
}

.customer-browser-body div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 18px;
}

.customer-browser-body div span {
    padding: 9px;
    border: 1px solid #e0e5ec;
    border-radius: 7px;
    color: #8792a2;
    background: #fff;
    font-size: .65rem;
}

.customer-story-copy p {
    margin-bottom: 22px;
}

.academy-strip {
    padding-top: 35px;
}

.academy-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 30px 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-soft);
}

.academy-inner h2 {
    margin-bottom: 6px;
    font-size: 1.65rem;
}

.academy-inner p {
    margin-bottom: 0;
}

.final-cta {
    padding: 78px 0;
    background: var(--navy);
}

.final-cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 50px;
}

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

.final-cta p {
    max-width: 680px;
    margin-bottom: 0;
    color: #c4cede;
    font-size: 1.05rem;
}

.site-footer {
    padding: 65px 0 28px;
    background: #fff;
    border-top: 1px solid var(--line);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 42px;
    padding-bottom: 45px;
}

.footer-brand p {
    max-width: 360px;
    margin: 18px 0 12px;
    font-size: .9rem;
}

.footer-contact {
    color: var(--brand-dark);
    font-weight: 700;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-column strong {
    margin-bottom: 6px;
    color: var(--ink-strong);
    font-size: .9rem;
}

.footer-column a,
.footer-column span {
    color: var(--muted);
    font-size: .87rem;
}

.footer-column a:hover {
    color: var(--brand-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: .78rem;
}

/* Shared content-page layout */
.page-hero,
.hero:not(.hero-home) {
    margin: 0;
    padding: 75px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: linear-gradient(180deg, #fff, #f7f9fc);
}

.page-hero-grid,
.hero-inner {
    width: min(calc(100% - 40px), var(--maxw));
    margin-inline: auto;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1fr .8fr;
    align-items: center;
    gap: 55px;
}

.page-hero h1,
.hero:not(.hero-home) h1 {
    max-width: 850px;
    font-size: clamp(2.65rem, 5vw, 4.6rem);
}

.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.page-visual {
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.page-section {
    padding: 82px 0;
}

.page-section-soft {
    background: var(--surface-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.content-grid,
.grid,
.card-grid {
    display: grid;
    gap: 18px;
}

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

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

.card {
    padding: 25px;
    box-shadow: none;
}

.card h2,
.card h3 {
    margin-top: 0;
}

.card ul,
.page-copy ul {
    color: var(--muted-strong);
}

.page-copy {
    max-width: 800px;
}

.page-copy h2 {
    margin-top: 45px;
    font-size: 1.8rem;
}

.page-copy h2:first-child {
    margin-top: 0;
}

.field,
.form-control {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    color: var(--ink-strong);
    background: #fff;
    outline: none;
}

textarea.field,
textarea.form-control {
    min-height: 145px;
    resize: vertical;
}

.field:focus,
.form-control:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(53,99,233,.12);
}

.form-group {
    display: grid;
    gap: 7px;
    margin-bottom: 14px;
}

.form-group label {
    color: var(--ink-strong);
    font-size: .85rem;
    font-weight: 700;
}

.validation-message,
.validation-summary-errors {
    color: #b42318;
    font-size: .85rem;
}

.product-page-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.product-page-features article {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.product-page-features span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 10px;
    color: var(--brand-dark);
    background: var(--brand-soft);
    font-weight: 800;
}

.product-page-features h3 {
    font-size: 1.1rem;
}

.product-page-features p {
    margin-bottom: 0;
    font-size: .9rem;
}

.product-audience {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.product-audience span {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted-strong);
    background: #fff;
    font-size: .85rem;
    font-weight: 650;
}

.product-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 38px;
    border-radius: var(--radius-lg);
    background: var(--navy);
}

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

.product-cta p {
    margin-bottom: 0;
    color: #c7d1df;
}

@media (max-width: 1050px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

    .nav-panel > a,
    .nav-dropdown > summary {
        padding-inline: 8px;
        font-size: .88rem;
    }

    .nav-panel .nav-cta {
        margin-left: 2px;
        padding-inline: 12px;
    }

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

    .trust-grid > div:nth-child(3) {
        border-left: 1px solid var(--line);
    }

    .trust-grid > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .platform-story-grid {
        grid-template-columns: 1fr;
    }

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

    .workflow-card {
        grid-template-columns: 1fr;
    }

    .workflow-steps {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

@media (max-width: 900px) {
    .announcement-inner span {
        display: none;
    }

    .nav-shell {
        min-height: 66px;
    }

    .site-nav {
        position: relative;
    }

    .nav-toggle-button {
        width: 42px;
        height: 42px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border: 1px solid var(--line);
        border-radius: var(--radius-sm);
        background: #fff;
        cursor: pointer;
    }

    .nav-toggle-button span {
        width: 19px;
        height: 2px;
        border-radius: 999px;
        background: var(--ink-strong);
    }

    .nav-panel {
        position: absolute;
        top: calc(100% + 13px);
        right: 0;
        width: min(330px, calc(100vw - 32px));
        display: none;
        align-items: stretch;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: #fff;
        box-shadow: var(--shadow);
    }

    .nav-toggle:checked ~ .nav-panel {
        display: grid;
    }

    .nav-panel > a,
    .nav-dropdown > summary {
        width: 100%;
        justify-content: space-between;
        padding: 11px 12px;
    }

    .nav-panel .nav-cta {
        margin: 5px 0 0;
        justify-content: center;
    }

    .nav-dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 4px;
        border: 0;
        border-radius: 8px;
        box-shadow: none;
        background: var(--surface-soft);
    }

    .marketing-hero {
        padding: 62px 0 70px;
    }

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

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

    .platform-preview {
        width: min(100%, 650px);
        margin-inline: auto;
    }

    .section-heading,
    .narrow-heading,
    .page-hero-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .flagship-grid,
    .secondary-product-grid,
    .demo-grid,
    .customer-story,
    .final-cta-inner,
    .footer-main,
    .product-cta {
        grid-template-columns: 1fr;
    }

    .connected-platform {
        grid-template-columns: 1fr;
    }

    .platform-connector {
        display: flex;
        justify-content: center;
        padding: 5px;
    }

    .platform-connector span {
        writing-mode: initial;
        transform: none;
    }

    .platform-connector i {
        transform: rotate(90deg);
    }

    .benefits-grid,
    .product-page-features,
    .grid-3,
    .content-grid-3,
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .customer-story {
        padding: 35px;
    }

    .academy-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .final-cta-actions {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .container,
    .page-hero-grid,
    .hero-inner {
        width: min(calc(100% - 28px), var(--maxw));
    }

    .marketing-hero {
        padding-top: 48px;
    }

    h1 {
        font-size: clamp(2.55rem, 13vw, 3.75rem);
    }

    h2 {
        font-size: clamp(1.85rem, 9vw, 2.65rem);
    }

    .hero-actions,
    .hero-actions .button,
    .page-hero-actions,
    .page-hero-actions .button,
    .final-cta-actions,
    .final-cta-actions .button {
        width: 100%;
    }

    .platform-preview {
        min-height: 390px;
    }

    .preview-browser {
        right: 12px;
    }

    .preview-app {
        min-height: 290px;
        grid-template-columns: 44px 1fr;
    }

    .preview-content {
        padding: 17px;
    }

    .preview-sidebar {
        gap: 13px;
    }

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

    .preview-stats div:last-child {
        display: none;
    }

    .preview-table > div {
        grid-template-columns: 1fr 1fr;
    }

    .preview-table > div span:last-child {
        display: none;
    }

    .preview-phone {
        right: 0;
        width: 140px;
        min-height: 250px;
    }

    .preview-note {
        left: 5px;
        bottom: 18px;
    }

    .trust-grid,
    .steps-grid,
    .benefits-grid,
    .product-page-features,
    .grid-2,
    .content-grid-2,
    .grid-3,
    .content-grid-3,
    .card-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid > div,
    .trust-grid > div:first-child,
    .trust-grid > div:nth-child(3) {
        border-left: 1px solid var(--line);
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .trust-grid > div:last-child {
        border-bottom: 0;
    }

    .section,
    .page-section {
        padding: 68px 0;
    }

    .product-card,
    .compact-product,
    .demo-content,
    .customer-story {
        padding: 22px;
    }

    .product-card .card-actions,
    .demo-content .card-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .connected-platform {
        gap: 8px;
    }

    .workflow-card {
        padding: 20px;
    }

    .workflow-steps span {
        min-width: auto;
        flex: 1 1 90px;
    }

    .workflow-steps i {
        display: none;
    }

    .customer-story-visual {
        padding: 50px 18px 25px;
    }

    .academy-inner {
        padding: 24px;
    }

    .footer-main {
        gap: 28px;
    }
}

.contact-aside {
    display: grid;
    align-content: start;
    gap: 18px;
}

.contact-aside h3 {
    margin-bottom: 3px;
    font-size: 1rem;
}

.contact-aside p {
    margin-bottom: 20px;
}

.contact-aside p:last-child {
    margin-bottom: 0;
}

.contact-trap {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
}

.contact-status {
    margin-top: 16px;
    padding: 12px 14px;
    border: 1px solid #c9d7ff;
    border-radius: var(--radius-sm);
    color: var(--brand-dark);
    background: var(--brand-soft);
    font-weight: 650;
}

/* =========================================================
   Visual balance refinement
   Adds depth and contrast without returning to a dark,
   highly saturated or cartoon-style presentation.
   ========================================================= */

:root {
    --page: #edf1f5;
    --surface: #f9fbfc;
    --surface-soft: #e5ebf2;
    --surface-blue: #dce6f3;
    --ink: #1f2d42;
    --ink-strong: #122036;
    --muted: #5f6f83;
    --muted-strong: #405269;
    --line: #cdd6e1;
    --line-strong: #b8c4d2;
    --brand: #3f63cf;
    --brand-dark: #29499f;
    --brand-soft: #dce5f8;
    --teal: #237f78;
    --navy: #1d2d47;
    --shadow-sm: 0 10px 28px rgba(22, 38, 61, .08);
    --shadow: 0 22px 58px rgba(22, 38, 61, .13);
}

body {
    background: var(--page);
}

.announcement-bar {
    color: #334b6b;
    background: #dce5f1;
    border-bottom-color: #c4d0df;
}

.topbar {
    background: rgba(247, 249, 252, .96);
    border-bottom-color: rgba(190, 201, 215, .95);
    box-shadow: 0 5px 20px rgba(22, 38, 61, .055);
}

.nav-panel > a:hover,
.nav-panel > a.active,
.nav-dropdown > summary:hover,
.nav-dropdown[open] > summary,
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
    background: #e3e9f0;
}

.nav-dropdown-menu {
    border-color: #bac6d4;
    background: #f7f9fb;
    box-shadow: 0 22px 52px rgba(22, 38, 61, .18);
}

.marketing-hero {
    background:
        radial-gradient(circle at 87% 18%, rgba(111, 145, 218, .24), transparent 32%),
        radial-gradient(circle at 10% 95%, rgba(68, 114, 173, .22), transparent 34%),
        linear-gradient(125deg, #1d2d47 0%, #263b5d 58%, #304d70 100%);
    border-bottom-color: #334966;
}

.marketing-hero::before {
    border-color: rgba(192, 210, 238, .16);
}

.marketing-hero h1 {
    color: #f8fafc;
    text-shadow: 0 2px 18px rgba(6, 15, 29, .14);
}

.marketing-hero .hero-lead {
    color: #d6dfeb;
}

.marketing-hero .section-label {
    color: #afc8f5;
}

.marketing-hero .button-primary {
    color: #17243a;
    background: #f7f9fc;
    box-shadow: 0 12px 28px rgba(8, 18, 34, .2);
}

.marketing-hero .button-primary:hover {
    color: #17243a;
    background: #e7edf5;
}

.marketing-hero .button-secondary {
    color: #f7f9fc;
    border-color: rgba(229, 237, 247, .52);
    background: rgba(255, 255, 255, .08);
}

.marketing-hero .button-secondary:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .82);
    background: rgba(255, 255, 255, .14);
}

.hero-industries span {
    color: #dce5f0;
    border-color: rgba(220, 229, 240, .3);
    background: rgba(15, 28, 47, .24);
}

.preview-browser {
    border-color: #aebdce;
    box-shadow: 0 34px 78px rgba(5, 16, 32, .32);
}

.preview-phone {
    box-shadow: 0 28px 55px rgba(5, 16, 32, .3);
}

.preview-note {
    border-color: #aebdce;
    box-shadow: 0 15px 34px rgba(5, 16, 32, .22);
}

.trust-strip {
    background: #d9e1eb;
    border-bottom-color: #bdc9d7;
}

.trust-grid > div,
.trust-grid > div:first-child {
    border-color: #bdc9d7;
}

.trust-grid strong {
    color: #17263c;
}

.trust-grid span {
    color: #53657a;
}

.section {
    background: #eef2f6;
}

.section-soft {
    background: #dfe6ee;
    border-color: #c4cfdb;
}

.section-heading {
    position: relative;
}

.section-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -22px;
    width: 72px;
    height: 3px;
    border-radius: 999px;
    background: #8ea5c8;
}

.product-card,
.compact-product,
.demo-card,
.benefits-grid article,
.steps-grid article,
.card {
    border-color: #c4cfdb;
    background: #f9fbfc;
    box-shadow: 0 9px 26px rgba(22, 38, 61, .065);
}

.product-card {
    background:
        linear-gradient(180deg, rgba(219, 229, 244, .48) 0, rgba(249, 251, 252, 0) 125px),
        #f9fbfc;
    box-shadow: 0 14px 36px rgba(22, 38, 61, .1);
}

.product-card:nth-child(2) {
    background:
        linear-gradient(180deg, rgba(214, 231, 229, .52) 0, rgba(249, 251, 252, 0) 125px),
        #f9fbfc;
}

.product-card-featured::before {
    height: 4px;
    background: #4569c7;
}

.product-card:nth-child(2)::before {
    background: #3b817b;
}

.product-icon {
    color: #244b9a;
    border: 1px solid #bac9e1;
    background: #dbe5f4;
}

.product-card:nth-child(2) .product-icon {
    color: #1d6762;
    border-color: #b9d1ce;
    background: #dcecea;
}

.product-status {
    color: #405269;
    border: 1px solid #c6d0dc;
    background: #e7ecf2;
}

.compact-product {
    border-left: 4px solid #8ba1bf;
    background: #f6f8fa;
}

.compact-product-number {
    color: #3659ad;
}

.platform-story-grid {
    position: relative;
}

.platform-item {
    border-color: #bdc9d6;
    background: #f6f8fa;
    box-shadow: 0 6px 18px rgba(22, 38, 61, .05);
}

.platform-column-label {
    color: #344b68;
}

.steps-grid article {
    border-top: 4px solid #91a6c3;
    background: #f7f9fb;
}

.workflow-section {
    background: #e8edf3;
    border-top: 1px solid #c9d3df;
    border-bottom: 1px solid #c9d3df;
}

.workflow-card {
    border-color: #bdc9d6;
    background: #f9fbfc;
    box-shadow: 0 8px 23px rgba(22, 38, 61, .06);
}

.workflow-steps span {
    color: #263a54;
    border: 1px solid #c9d3df;
    background: #e4eaf1;
}

.demo-card {
    background: #f8fafb;
    box-shadow: 0 14px 34px rgba(22, 38, 61, .1);
}

.demo-visual {
    background: #cfdceb;
    border-bottom: 1px solid #bbc8d7;
}

.demo-travel {
    background: #cfe0df;
}

.benefits-grid article {
    background: #f7f9fb;
}

.benefits-grid article > span {
    border: 1px solid #bfcae0;
    background: #dce5f4;
}

.customer-story-section {
    background: #dfe6ee;
    border-top: 1px solid #c4cfdb;
}

.customer-story {
    border-color: #b9c5d2;
    background: #f7f9fb;
    box-shadow: 0 16px 42px rgba(22, 38, 61, .1);
}

.customer-story-visual {
    background: linear-gradient(145deg, #1d2d47, #2b4668);
}

.academy-strip {
    background: #eef2f6;
}

.academy-inner {
    border-color: #aebdce;
    background: #d8e2ef;
    box-shadow: inset 5px 0 0 #5474b6;
}

.final-cta {
    background:
        radial-gradient(circle at 82% 20%, rgba(93, 126, 189, .22), transparent 30%),
        linear-gradient(120deg, #18273f, #243b5c);
    border-top: 1px solid #3c5270;
}

.site-footer {
    color: #d5deea;
    background: #17243a;
    border-top-color: #2d405c;
}

.site-footer .brand,
.footer-column strong {
    color: #f5f7fa;
}

.footer-brand p,
.footer-column a,
.footer-column span,
.footer-bottom {
    color: #aebccd;
}

.footer-contact,
.footer-column a:hover {
    color: #b9ccf4;
}

.footer-bottom {
    border-top-color: #32445f;
}

/* Product, company and contact pages */
.page-hero,
.hero:not(.hero-home) {
    background:
        radial-gradient(circle at 85% 15%, rgba(75, 106, 164, .15), transparent 32%),
        linear-gradient(135deg, #d9e2ec, #edf1f5);
    border-bottom-color: #bcc8d6;
}

.page-visual {
    border-color: #b8c5d3;
    background: #f7f9fb;
    box-shadow: 0 16px 40px rgba(22, 38, 61, .11);
}

.page-section {
    background: #eef2f6;
}

.page-section-soft {
    background: #dfe6ee;
    border-color: #c2cdd9;
}

.product-page-features article {
    border-color: #c1ccd8;
    background: #f8fafb;
    box-shadow: 0 8px 24px rgba(22, 38, 61, .055);
}

.field,
.form-control {
    border-color: #aebccc;
    background: #f9fbfc;
}

.field:focus,
.form-control:focus {
    background: #fff;
}

.contact-status {
    border-color: #aebfe3;
    background: #dce5f6;
}

@media (max-width: 640px) {
    .section-heading::after {
        bottom: -15px;
        width: 54px;
    }

    .marketing-hero {
        background:
            radial-gradient(circle at 90% 16%, rgba(111, 145, 218, .2), transparent 30%),
            linear-gradient(145deg, #1d2d47, #2c4769);
    }
}

/* =========================================================
   Premium marketing layout — real product imagery
   Replaces fabricated UI illustrations with live snapshots
   and introduces a more editorial, portfolio-led rhythm.
   ========================================================= */

:root {
    --premium-navy: #17253b;
    --premium-navy-2: #213652;
    --premium-stone: #f3f1ec;
    --premium-cool: #dfe6ed;
    --premium-blue: #4169c7;
    --premium-teal: #347a75;
    --premium-ink: #152238;
}

.premium-topbar {
    background: rgba(23, 37, 59, .97);
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 10px 30px rgba(7, 17, 31, .18);
}

.premium-topbar .brand {
    color: #f7f9fc;
}

.premium-topbar .brand-mark {
    background: #5278d3;
    box-shadow: none;
}

.premium-topbar .nav-panel > a,
.premium-topbar .nav-dropdown > summary {
    color: #cad5e3;
}

.premium-topbar .nav-panel > a:hover,
.premium-topbar .nav-panel > a.active,
.premium-topbar .nav-dropdown > summary:hover,
.premium-topbar .nav-dropdown[open] > summary {
    color: #ffffff;
    background: rgba(255, 255, 255, .08);
}

.premium-topbar .nav-panel .nav-cta,
.premium-topbar .nav-panel .nav-cta.active {
    color: #17253b;
    background: #f7f9fc;
}

.premium-topbar .nav-panel .nav-cta:hover {
    color: #17253b;
    background: #e6edf5;
}

.premium-topbar .nav-toggle-button span {
    background: #ffffff;
}

.premium-topbar .nav-dropdown-menu {
    background: #f8fafc;
    border-color: #c7d1de;
}

.premium-topbar .nav-dropdown-menu a:hover,
.premium-topbar .nav-dropdown-menu a.active {
    background: #e7ecf2;
}

.premium-topbar .nav-dropdown-menu strong {
    color: #17253b;
}

.premium-hero {
    min-height: 690px;
    display: flex;
    align-items: center;
    padding: 104px 0 112px;
    background:
        radial-gradient(circle at 88% 12%, rgba(91, 128, 205, .28), transparent 31%),
        radial-gradient(circle at 6% 96%, rgba(59, 123, 118, .20), transparent 31%),
        linear-gradient(125deg, #142136 0%, #1d304b 55%, #294763 100%);
    border: 0;
}

.premium-hero::before {
    width: 580px;
    height: 580px;
    left: -360px;
    bottom: -390px;
    border-color: rgba(255, 255, 255, .10);
}

.premium-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
    gap: 78px;
    align-items: center;
}

.premium-hero-copy h1 {
    max-width: 690px;
    margin: 0;
    color: #f8fafc;
    font-size: clamp(3.25rem, 5.6vw, 5.7rem);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 720;
}

.premium-hero-copy .hero-lead {
    max-width: 650px;
    margin: 28px 0 0;
    color: #ced8e5;
    font-size: clamp(1.08rem, 1.8vw, 1.3rem);
    line-height: 1.65;
}

.premium-hero .hero-actions {
    margin-top: 34px;
    align-items: center;
}

.editorial-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--premium-ink);
    font-weight: 760;
    line-height: 1.35;
    border-bottom: 1px solid currentColor;
    padding-bottom: 3px;
    transition: gap .18s ease, color .18s ease;
}

.editorial-link:hover {
    gap: 14px;
    color: var(--brand-dark);
}

.editorial-link-light {
    color: #eef3f8;
}

.editorial-link-light:hover {
    color: #ffffff;
}

.hero-proof-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    margin-top: 38px;
    color: #b8c6d7;
    font-size: .91rem;
    font-weight: 670;
}

.hero-proof-line span {
    position: relative;
    padding-left: 17px;
}

.hero-proof-line span::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #85a5e9;
}

.hero-product-shot {
    position: relative;
    padding: 18px 0 34px;
}

.product-snapshot {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid #aebbc9;
    border-radius: 16px;
    background: #f6f8fa;
    box-shadow: 0 30px 70px rgba(12, 27, 47, .18);
    transition: transform .24s ease, box-shadow .24s ease;
}

.product-snapshot:hover {
    transform: translateY(-4px);
    box-shadow: 0 36px 84px rgba(12, 27, 47, .24);
}

.product-snapshot-hero {
    border-color: rgba(229, 236, 244, .58);
    box-shadow: 0 42px 94px rgba(4, 13, 27, .38);
}

.snapshot-browser-bar {
    min-height: 43px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 15px;
    color: #5f6f83;
    background: #e8edf2;
    border-bottom: 1px solid #ccd5df;
}

.snapshot-browser-bar > span {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: #91a0b2;
}

.snapshot-browser-bar small {
    min-width: 0;
    margin-left: 7px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .01em;
}

.snapshot-image-shell {
    position: relative;
    aspect-ratio: 1.54 / 1;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: #d8e1ea;
}

.snapshot-image-shell::before {
    content: "Loading live product snapshot…";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 30px;
    color: #496078;
    font-size: .92rem;
    font-weight: 720;
    text-align: center;
}

.snapshot-image-shell img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    background: #eef2f6;
}

.snapshot-fallback-logistics {
    background: linear-gradient(145deg, #d8e3ec, #eef2f5);
}

.snapshot-fallback-private-hire {
    background: linear-gradient(145deg, #dce7e5, #f0f3f2);
}

.snapshot-fallback-istms {
    background: linear-gradient(145deg, #dbe2ef, #f0f3f8);
}

.live-product-badge {
    position: absolute;
    right: -20px;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 11px;
    max-width: 245px;
    padding: 13px 17px;
    border: 1px solid #c5d0dc;
    border-radius: 12px;
    color: #17253b;
    background: #f8fafc;
    box-shadow: 0 18px 40px rgba(5, 17, 34, .22);
}

.live-product-badge > span {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    border-radius: 50%;
    background: #2c9a72;
    box-shadow: 0 0 0 5px rgba(44, 154, 114, .13);
}

.live-product-badge strong,
.live-product-badge small {
    display: block;
}

.live-product-badge strong {
    font-size: .88rem;
}

.live-product-badge small {
    margin-top: 1px;
    color: #66778a;
    font-size: .73rem;
}

.credibility-band {
    color: #26384f;
    background: #ece9e2;
    border-bottom: 1px solid #d2cec5;
}

.credibility-row {
    min-height: 128px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.credibility-row > div {
    display: grid;
    align-content: center;
    gap: 4px;
    padding: 27px 38px;
    border-left: 1px solid #d2cec5;
}

.credibility-row > div:last-child {
    border-right: 1px solid #d2cec5;
}

.credibility-row strong,
.credibility-row span {
    display: block;
}

.credibility-row strong {
    color: #17253b;
    font-size: 1rem;
}

.credibility-row span {
    color: #687382;
    font-size: .88rem;
}

.product-showcase {
    position: relative;
    padding: 128px 0;
}

.product-showcase-logistics {
    background: #f3f1ec;
}

.product-showcase-private-hire {
    background: #dfe6ed;
    border-top: 1px solid #c6d0da;
    border-bottom: 1px solid #c6d0da;
}

.product-showcase-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr);
    gap: 88px;
    align-items: center;
}

.product-showcase-grid-reverse {
    grid-template-columns: minmax(340px, .82fr) minmax(0, 1.18fr);
}

.showcase-visual {
    min-width: 0;
}

.showcase-copy {
    position: relative;
}

.showcase-number {
    position: absolute;
    right: 0;
    top: -70px;
    color: rgba(23, 37, 59, .08);
    font-size: clamp(5rem, 9vw, 9rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.08em;
    pointer-events: none;
}

.showcase-copy h2,
.editorial-heading h2,
.connected-story-heading h2,
.case-study-copy h2 {
    margin: 0;
    color: var(--premium-ink);
    font-size: clamp(2.55rem, 4.7vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: -.045em;
    font-weight: 700;
}

.showcase-copy > p {
    margin: 24px 0 0;
    color: #536477;
    font-size: 1.08rem;
    line-height: 1.75;
}

.editorial-feature-list {
    list-style: none;
    display: grid;
    gap: 0;
    margin: 30px 0 0;
    padding: 0;
    border-top: 1px solid rgba(23, 37, 59, .18);
}

.editorial-feature-list li {
    position: relative;
    padding: 13px 0 13px 25px;
    color: #283a51;
    border-bottom: 1px solid rgba(23, 37, 59, .14);
    font-weight: 660;
}

.editorial-feature-list li::before {
    content: "";
    position: absolute;
    left: 1px;
    top: 1.25em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--premium-blue);
}

.product-showcase-private-hire .editorial-feature-list li::before {
    background: var(--premium-teal);
}

.showcase-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px 24px;
    margin-top: 34px;
}

.connected-story-section {
    padding: 120px 0 126px;
    color: #d5dfeb;
    background:
        radial-gradient(circle at 85% 15%, rgba(74, 107, 170, .22), transparent 28%),
        linear-gradient(125deg, #152338, #213652);
}

.connected-story {
    display: grid;
    gap: 64px;
}

.connected-story-heading {
    max-width: 900px;
}

.connected-story-heading h2 {
    color: #f7f9fc;
}

.connected-story-heading p {
    max-width: 760px;
    margin: 25px 0 0;
    color: #bdcad9;
    font-size: 1.08rem;
    line-height: 1.75;
}

.connected-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: 18px;
}

.connected-flow > div {
    min-height: 176px;
    display: grid;
    align-content: end;
    padding: 25px;
    border-top: 1px solid rgba(230, 238, 247, .35);
    background: rgba(255, 255, 255, .055);
}

.connected-flow > div > span {
    align-self: start;
    color: #8eabe4;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .1em;
}

.connected-flow strong,
.connected-flow small {
    display: block;
}

.connected-flow strong {
    margin-top: 38px;
    color: #ffffff;
    font-size: 1.02rem;
}

.connected-flow small {
    margin-top: 5px;
    color: #aebdce;
    font-size: .82rem;
}

.connected-flow > i {
    align-self: center;
    color: #7595d4;
    font-style: normal;
    font-size: 1.45rem;
}

.case-study-section {
    padding: 132px 0;
    background: #f3f1ec;
}

.case-study-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
    gap: 86px;
    align-items: center;
}

.product-snapshot-case .snapshot-image-shell {
    aspect-ratio: 1.42 / 1;
}

.case-study-copy > p {
    margin: 25px 0 0;
    color: #526274;
    font-size: 1.06rem;
    line-height: 1.75;
}

.case-study-facts {
    margin: 31px 0 0;
    border-top: 1px solid #c8c6c0;
}

.case-study-facts > div {
    display: grid;
    grid-template-columns: 145px 1fr;
    gap: 18px;
    padding: 13px 0;
    border-bottom: 1px solid #d4d1ca;
}

.case-study-facts dt {
    color: #7a807f;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.case-study-facts dd {
    margin: 0;
    color: #26384d;
    font-weight: 650;
}

.additional-products-section {
    padding: 124px 0;
    background: #e6ebf0;
    border-top: 1px solid #c9d1da;
    border-bottom: 1px solid #c9d1da;
}

.editorial-heading {
    max-width: 820px;
    margin-bottom: 56px;
}

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

.additional-product {
    position: relative;
    min-height: 410px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 48px;
    color: #eaf0f6;
    border-radius: 4px;
}

.additional-product::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(5, 16, 31, .2) 100%);
    pointer-events: none;
}

.additional-product-istms {
    background:
        radial-gradient(circle at 85% 14%, rgba(106, 139, 211, .35), transparent 28%),
        linear-gradient(135deg, #17253b, #28456a);
}

.additional-product-retail {
    background:
        radial-gradient(circle at 82% 12%, rgba(105, 172, 159, .35), transparent 28%),
        linear-gradient(135deg, #183532, #2e625c);
}

.additional-product-number {
    position: absolute;
    right: 25px;
    top: 13px;
    color: rgba(255, 255, 255, .10);
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.08em;
}

.additional-product > div {
    position: relative;
    z-index: 1;
    max-width: 470px;
}

.additional-product small {
    color: #afc2d5;
    font-weight: 760;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.additional-product h3 {
    margin: 12px 0 0;
    color: #ffffff;
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    line-height: 1;
    letter-spacing: -.05em;
}

.additional-product p {
    margin: 22px 0 28px;
    color: #ccd8e4;
    font-size: 1.02rem;
    line-height: 1.7;
}

.outcomes-section {
    padding: 124px 0 132px;
    background: #f3f1ec;
}

.editorial-heading-centred {
    max-width: 900px;
    margin-inline: auto;
    text-align: center;
}

.editorial-heading-centred .section-label {
    justify-content: center;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid #c9c6bf;
    border-bottom: 1px solid #c9c6bf;
}

.outcomes-grid article {
    min-height: 300px;
    padding: 42px 38px;
    border-right: 1px solid #c9c6bf;
}

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

.outcomes-grid article > span {
    color: #5475bd;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .1em;
}

.outcomes-grid h3 {
    margin: 60px 0 0;
    color: #17253b;
    font-size: 1.35rem;
}

.outcomes-grid p {
    margin: 13px 0 0;
    color: #66717e;
}

.premium-academy-strip {
    padding: 0;
    background: #dde5ed;
}

.premium-academy-strip .academy-inner {
    min-height: 235px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 48px 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.premium-final-cta {
    padding: 106px 0;
    background:
        radial-gradient(circle at 83% 15%, rgba(89, 124, 194, .25), transparent 30%),
        linear-gradient(125deg, #142136, #213652);
}

/* Real snapshot treatment on individual product pages. */
.page-visual-snapshot {
    padding: 0;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.page-visual-snapshot .product-snapshot {
    width: 100%;
}

.page-visual-honest {
    padding: 42px;
    color: #d7e0eb;
    border: 1px solid rgba(229, 236, 244, .20);
    background:
        radial-gradient(circle at 88% 12%, rgba(79, 116, 190, .25), transparent 27%),
        linear-gradient(135deg, #17253b, #263e5f);
}

.page-visual-honest .section-label {
    color: #a9c2ef;
}

.page-visual-honest h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.85rem, 3.6vw, 3.1rem);
    line-height: 1.1;
    letter-spacing: -.035em;
}

.page-visual-honest p {
    margin: 20px 0 25px;
    color: #c3cfdd;
}

.page-visual-honest .editorial-link {
    color: #ffffff;
}

@media (max-width: 1080px) {
    .premium-hero-grid,
    .product-showcase-grid,
    .product-showcase-grid-reverse,
    .case-study-grid {
        grid-template-columns: 1fr;
    }

    .premium-hero-grid {
        gap: 55px;
    }

    .premium-hero-copy {
        max-width: 820px;
    }

    .hero-product-shot,
    .showcase-visual,
    .case-study-visual {
        width: min(100%, 900px);
    }

    .product-showcase-grid-reverse .showcase-copy {
        order: 2;
    }

    .product-showcase-grid-reverse .showcase-visual {
        order: 1;
    }

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

    .connected-flow > i {
        display: none;
    }
}

@media (max-width: 820px) {
    .premium-topbar .nav-panel {
        background: #17253b;
        border-color: rgba(255, 255, 255, .13);
    }

    .premium-topbar .nav-dropdown-menu {
        background: rgba(255, 255, 255, .06);
        border-color: rgba(255, 255, 255, .12);
    }

    .premium-topbar .nav-dropdown-menu strong {
        color: #ffffff;
    }

    .premium-topbar .nav-dropdown-menu small {
        color: #afbdce;
    }

    .premium-hero {
        min-height: 0;
        padding: 82px 0 90px;
    }

    .premium-hero-grid {
        grid-template-columns: 1fr;
    }

    .premium-hero-copy h1 {
        font-size: clamp(3rem, 11vw, 4.7rem);
    }

    .live-product-badge {
        right: 14px;
    }

    .credibility-row,
    .additional-products-grid,
    .outcomes-grid {
        grid-template-columns: 1fr;
    }

    .credibility-row > div,
    .credibility-row > div:last-child {
        border-right: 1px solid #d2cec5;
        border-bottom: 1px solid #d2cec5;
    }

    .product-showcase,
    .case-study-section,
    .additional-products-section,
    .outcomes-section {
        padding: 88px 0;
    }

    .product-showcase-grid,
    .product-showcase-grid-reverse,
    .case-study-grid {
        gap: 55px;
    }

    .showcase-number {
        top: -45px;
        font-size: 6rem;
    }

    .connected-story-section {
        padding: 88px 0;
    }

    .connected-flow {
        grid-template-columns: 1fr;
    }

    .connected-flow > div {
        min-height: 145px;
    }

    .additional-product {
        min-height: 340px;
        padding: 35px;
    }

    .outcomes-grid article {
        min-height: 240px;
        border-right: 0;
        border-bottom: 1px solid #c9c6bf;
    }

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

    .outcomes-grid h3 {
        margin-top: 35px;
    }

    .premium-academy-strip .academy-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .premium-hero {
        padding: 66px 0 74px;
    }

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

    .premium-hero .hero-actions,
    .showcase-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-proof-line {
        display: grid;
        gap: 8px;
    }

    .hero-product-shot {
        padding-bottom: 68px;
    }

    .live-product-badge {
        left: 14px;
        right: auto;
        max-width: calc(100% - 28px);
    }

    .snapshot-browser-bar {
        min-height: 38px;
        padding-inline: 11px;
    }

    .product-showcase,
    .case-study-section,
    .additional-products-section,
    .outcomes-section,
    .connected-story-section {
        padding: 72px 0;
    }

    .showcase-copy h2,
    .editorial-heading h2,
    .connected-story-heading h2,
    .case-study-copy h2 {
        font-size: clamp(2.35rem, 11vw, 3.35rem);
    }

    .case-study-facts > div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .additional-product {
        min-height: 315px;
        padding: 28px;
    }

    .additional-product-number {
        font-size: 6rem;
    }

    .page-visual-honest {
        padding: 30px;
    }
}

/* =========================================================
   2026-07-24 — Hero slider + lighter floating header refresh
   Keeps the premium direction but replaces the dark header and
   half-text/half-image hero with two large banner slides.
   ========================================================= */

.premium-topbar {
    top: 0;
    padding: 14px 0 0;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
}

.premium-topbar .nav-shell {
    min-height: 76px;
    padding: 0 22px;
    border: 1px solid rgba(205, 216, 228, .96);
    border-radius: 20px;
    background: rgba(255, 255, 255, .84);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
}

.premium-topbar .brand {
    color: var(--premium-ink);
}

.premium-topbar .brand-mark {
    background: linear-gradient(135deg, #4e74d0, #365bb9);
    box-shadow: 0 12px 24px rgba(54, 91, 185, .16);
}

.premium-topbar .nav-panel > a,
.premium-topbar .nav-dropdown > summary {
    color: #516173;
}

.premium-topbar .nav-panel > a:hover,
.premium-topbar .nav-panel > a.active,
.premium-topbar .nav-dropdown > summary:hover,
.premium-topbar .nav-dropdown[open] > summary {
    color: var(--premium-ink);
    background: #edf2f7;
}

.premium-topbar .nav-panel .nav-cta,
.premium-topbar .nav-panel .nav-cta.active {
    color: #ffffff;
    background: var(--premium-blue);
}

.premium-topbar .nav-panel .nav-cta:hover {
    color: #ffffff;
    background: #3659b1;
}

.premium-topbar .nav-toggle-button span {
    background: var(--premium-ink);
}

.hero-banners-home {
    padding: 20px 0 26px;
}

.hero-banner-frame {
    position: relative;
    overflow: hidden;
    min-height: 640px;
    border-radius: 28px;
    border: 1px solid rgba(200, 211, 223, .95);
    background: linear-gradient(135deg, #142136, #223a59);
    box-shadow: 0 34px 80px rgba(13, 22, 38, .14);
}

.hero-banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .42s ease, transform .42s ease;
    transform: scale(1.02);
}

.hero-banner-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.hero-banner-image,
.hero-banner-overlay {
    position: absolute;
    inset: 0;
}

.hero-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.hero-banner-overlay {
    background:
        linear-gradient(90deg, rgba(10, 18, 31, .86) 0%, rgba(13, 23, 39, .68) 34%, rgba(16, 27, 43, .34) 58%, rgba(17, 28, 46, .15) 78%, rgba(17, 28, 46, .06) 100%),
        linear-gradient(180deg, rgba(16, 27, 43, .18), rgba(16, 27, 43, .26));
}

.hero-banner-overlay-alt {
    background:
        linear-gradient(90deg, rgba(16, 26, 38, .84) 0%, rgba(22, 35, 52, .62) 34%, rgba(24, 38, 57, .30) 60%, rgba(24, 38, 57, .10) 82%, rgba(24, 38, 57, .05) 100%),
        linear-gradient(180deg, rgba(24, 38, 57, .14), rgba(24, 38, 57, .24));
}

.hero-banner-content {
    position: relative;
    z-index: 2;
    max-width: 630px;
    padding: 84px 62px 170px;
    color: #ffffff;
}

.hero-banner-content h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(3.2rem, 6vw, 5.3rem);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 720;
}

.hero-banner-content p {
    max-width: 560px;
    margin: 24px 0 0;
    color: rgba(237, 243, 249, .94);
    font-size: 1.12rem;
    line-height: 1.72;
}

.hero-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.button-dark-glass {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .10);
    backdrop-filter: blur(10px);
}

.button-dark-glass:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .16);
}

.hero-banner-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero-banner-points span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    color: #eef4fa;
    background: rgba(255, 255, 255, .08);
    font-size: .88rem;
    font-weight: 640;
}

.hero-banner-aside {
    position: absolute;
    right: 42px;
    bottom: 98px;
    z-index: 2;
    width: min(100%, 320px);
    padding: 23px 24px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    color: #ffffff;
    background: rgba(247, 250, 252, .12);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 50px rgba(8, 15, 28, .18);
}

.hero-banner-aside strong {
    display: block;
    font-size: 1rem;
}

.hero-banner-aside p {
    margin: 11px 0 14px;
    color: rgba(234, 242, 248, .9);
    font-size: .94rem;
    line-height: 1.65;
}

.hero-banner-aside a {
    color: #ffffff;
    font-weight: 700;
}

.hero-banner-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 28px 26px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, .48));
}

.hero-banner-tabs {
    display: flex;
    gap: 12px;
    max-width: calc(100% - 150px);
}

.hero-banner-tab {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    color: rgba(227, 236, 245, .84);
    background: rgba(255, 255, 255, .08);
    cursor: pointer;
    transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.hero-banner-tab:hover,
.hero-banner-tab.is-active {
    border-color: rgba(255, 255, 255, .26);
    color: #ffffff;
    background: rgba(255, 255, 255, .16);
}

.hero-banner-tab > span {
    color: rgba(255, 255, 255, .6);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .1em;
}

.hero-banner-tab strong,
.hero-banner-tab small {
    display: block;
    text-align: left;
}

.hero-banner-tab strong {
    font-size: .93rem;
}

.hero-banner-tab small {
    margin-top: 1px;
    color: rgba(230, 238, 247, .78);
    font-size: .78rem;
}

.hero-banner-arrows {
    display: flex;
    gap: 10px;
}

.hero-banner-arrow {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, .10);
    font-size: 1.55rem;
    line-height: 1;
    cursor: pointer;
    transition: border-color .18s ease, background .18s ease;
}

.hero-banner-arrow:hover {
    border-color: rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .18);
}

.platform-overview-section {
    padding: 100px 0;
    background: #f4f1eb;
}

.section-intro {
    max-width: 760px;
    margin: 18px 0 0;
    color: #5e6b79;
    font-size: 1.04rem;
}

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

.platform-overview-card {
    padding: 32px;
    border: 1px solid #d6ddd2;
    border-radius: 20px;
    background: rgba(255, 255, 255, .68);
    box-shadow: 0 16px 38px rgba(20, 31, 48, .05);
}

.platform-overview-card small {
    color: #657487;
    font-size: .77rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.platform-overview-card h3 {
    margin: 14px 0 0;
    color: #17253b;
    font-size: 1.8rem;
    line-height: 1.1;
}

.platform-overview-card p {
    margin: 14px 0 0;
    color: #607081;
}

.platform-overview-primary {
    border-color: #cad6e2;
    background: linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(244, 248, 252, .88));
}

.platform-overview-taxi {
    background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(243, 248, 247, .88));
}

.platform-overview-retail {
    background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(244, 248, 244, .88));
}

.platform-overview-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 22px;
    margin-top: 24px;
}

.live-proof-section {
    padding: 108px 0;
    background: #f3f1ec;
}

.narrow-centre-heading {
    max-width: 760px;
}

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

.live-proof-card {
    overflow: hidden;
    border: 1px solid #d2dadf;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(17, 26, 42, .07);
}

.live-proof-card .snapshot-image-shell {
    aspect-ratio: 1.48 / 1;
}

.live-proof-copy {
    padding: 24px 24px 26px;
}

.live-proof-copy small {
    color: #627285;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.live-proof-copy h3 {
    margin: 12px 0 0;
    color: #17253b;
    font-size: 1.55rem;
}

.live-proof-copy p {
    margin: 12px 0 0;
    color: #5f7082;
}

@media (max-width: 1080px) {
    .hero-banner-frame {
        min-height: 700px;
    }

    .hero-banner-content {
        max-width: 100%;
        padding-right: 340px;
    }

    .hero-banner-aside {
        right: 28px;
        bottom: 102px;
    }
}

@media (max-width: 900px) {
    .premium-topbar .nav-panel {
        background: rgba(255, 255, 255, .94);
        border-color: #d5dde6;
        box-shadow: 0 18px 42px rgba(15, 23, 42, .1);
    }

    .premium-topbar .nav-dropdown-menu {
        background: #ffffff;
        border-color: #d8e0e9;
    }

    .premium-topbar .nav-dropdown-menu strong {
        color: #17253b;
    }

    .premium-topbar .nav-dropdown-menu small {
        color: #637285;
    }

    .hero-banner-frame {
        min-height: 760px;
    }

    .hero-banner-content {
        padding: 68px 34px 220px;
    }

    .hero-banner-content h1 {
        font-size: clamp(2.75rem, 8.6vw, 4.45rem);
    }

    .hero-banner-aside {
        left: 34px;
        right: 34px;
        bottom: 118px;
        width: auto;
    }

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

    .hero-banner-tabs {
        max-width: none;
    }

    .hero-banner-arrows {
        justify-content: flex-end;
    }

    .platform-overview-grid,
    .live-proof-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .premium-topbar {
        padding-top: 10px;
    }

    .premium-topbar .nav-shell {
        min-height: 68px;
        padding-inline: 16px;
        border-radius: 16px;
    }

    .hero-banners-home {
        padding-top: 16px;
    }

    .hero-banner-frame {
        min-height: 760px;
        border-radius: 22px;
    }

    .hero-banner-content {
        padding: 54px 22px 245px;
    }

    .hero-banner-content p {
        font-size: 1rem;
    }

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

    .hero-banner-actions .button {
        width: 100%;
        justify-content: center;
    }

    .hero-banner-points {
        gap: 8px;
    }

    .hero-banner-points span {
        font-size: .82rem;
    }

    .hero-banner-aside {
        left: 22px;
        right: 22px;
        bottom: 148px;
        padding: 18px 18px 19px;
        border-radius: 16px;
    }

    .hero-banner-controls {
        padding: 18px 16px 18px;
    }

    .hero-banner-tabs {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-banner-tab {
        padding: 12px 14px;
    }

    .hero-banner-arrows {
        justify-content: flex-start;
    }

    .platform-overview-section,
    .live-proof-section {
        padding: 76px 0;
    }

    .platform-overview-card,
    .live-proof-copy {
        padding: 22px;
    }
}

/* =========================================================
   2026-07-24 — Banner simplification pass
   Cleaner copy sizing, no overlapping side card, calmer controls.
   ========================================================= */

.hero-banner-frame {
    min-height: 560px;
}

.hero-banner-content-compact {
    max-width: 520px;
    padding: 72px 56px 126px;
}

.hero-banner-content-compact h1 {
    max-width: 460px;
    font-size: clamp(2.35rem, 4.8vw, 4.2rem);
    line-height: 1.02;
    letter-spacing: -.045em;
}

.hero-banner-content-compact p {
    max-width: 460px;
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.72;
}

.hero-banner-content-compact .hero-banner-actions {
    margin-top: 24px;
    gap: 14px 18px;
    align-items: center;
}

.hero-banner-mini-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero-banner-mini-points span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    color: rgba(244, 247, 251, .94);
    background: rgba(255, 255, 255, .07);
    font-size: .82rem;
    font-weight: 650;
}

.hero-banner-aside {
    display: none;
}

.hero-banner-controls {
    justify-content: space-between;
    padding: 18px 24px 22px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, .4));
}

.hero-banner-tabs {
    gap: 10px;
}

.hero-banner-tab {
    padding: 11px 16px;
    border-radius: 14px;
}

.hero-banner-tab strong {
    font-size: .88rem;
}

.hero-banner-tab small {
    font-size: .74rem;
}

.hero-banner-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.4rem;
}

@media (max-width: 1080px) {
    .hero-banner-frame {
        min-height: 600px;
    }

    .hero-banner-content-compact {
        max-width: 560px;
        padding-right: 40px;
    }
}

@media (max-width: 900px) {
    .hero-banner-frame {
        min-height: 660px;
    }

    .hero-banner-content-compact {
        max-width: 100%;
        padding: 58px 30px 142px;
    }

    .hero-banner-content-compact h1 {
        font-size: clamp(2.35rem, 8vw, 3.5rem);
    }
}

@media (max-width: 640px) {
    .hero-banner-frame {
        min-height: 680px;
    }

    .hero-banner-content-compact {
        padding: 46px 22px 164px;
    }

    .hero-banner-content-compact h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero-banner-content-compact .hero-banner-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-banner-controls {
        padding: 16px;
    }
}

/* =========================================================
   2026-07-24 — Use generated logistics hero banner image
   Replaces the temporary screenshot-based banner with a clean
   static marketing banner asset.
   ========================================================= */

.hero-banners-home {
    padding: 20px 0 30px;
}

.hero-banner-single-wrap {
    overflow: hidden;
    border: 1px solid rgba(205, 216, 228, .96);
    border-radius: 28px;
    background: #eef2f7;
    box-shadow: 0 30px 72px rgba(14, 23, 38, .11);
}

.hero-banner-single-image {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 900px) {
    .hero-banners-home {
        padding: 18px 0 24px;
    }

    .hero-banner-single-wrap {
        border-radius: 22px;
    }
}

@media (max-width: 640px) {
    .hero-banner-single-wrap {
        border-radius: 18px;
    }
}

/* =========================================================
   2026-07-24 — Simplified contact page
   Form-first layout with a compact contact details strip.
   ========================================================= */

.simple-contact-page {
    padding: 62px 0 90px;
    background: #f4f1eb;
}

.simple-contact-container {
    max-width: 900px;
}

.simple-contact-heading {
    max-width: 690px;
    margin-bottom: 30px;
}

.simple-contact-heading h1 {
    margin: 0;
    color: #17253b;
    font-size: clamp(2.35rem, 5vw, 4rem);
    line-height: 1.04;
    letter-spacing: -.045em;
}

.simple-contact-heading p {
    margin: 16px 0 0;
    color: #607081;
    font-size: 1.04rem;
}

.simple-contact-form-panel {
    padding: 34px;
    border: 1px solid #d2dbe4;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(16, 27, 44, .07);
}

.simple-contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.simple-contact-form-panel .form-group {
    margin-bottom: 18px;
}

.simple-contact-form-panel textarea.field {
    min-height: 150px;
}

.simple-contact-submit {
    min-width: 150px;
}

.simple-contact-details {
    display: grid;
    grid-template-columns: 1.15fr .9fr 1.3fr;
    gap: 0;
    margin-top: 24px;
    border-top: 1px solid #cdd5dd;
    border-bottom: 1px solid #cdd5dd;
}

.simple-contact-details > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 110px;
    padding: 20px 24px;
    border-right: 1px solid #cdd5dd;
}

.simple-contact-details > div:first-child {
    padding-left: 0;
}

.simple-contact-details > div:last-child {
    padding-right: 0;
    border-right: 0;
}

.simple-contact-details small {
    margin-bottom: 5px;
    color: #6b7887;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.simple-contact-details a,
.simple-contact-details span {
    color: #24364c;
    font-weight: 650;
}

.simple-contact-details a:hover {
    color: var(--brand-dark);
}

@media (max-width: 720px) {
    .simple-contact-page {
        padding: 45px 0 70px;
    }

    .simple-contact-form-grid,
    .simple-contact-details {
        grid-template-columns: 1fr;
    }

    .simple-contact-form-panel {
        padding: 24px;
        border-radius: 16px;
    }

    .simple-contact-details > div,
    .simple-contact-details > div:first-child,
    .simple-contact-details > div:last-child {
        min-height: 0;
        padding: 18px 0;
        border-right: 0;
        border-bottom: 1px solid #cdd5dd;
    }

    .simple-contact-details > div:last-child {
        border-bottom: 0;
    }
}
