:root {
    --navy: #102441;
    --navy-dark: #09182c;
    --navy-light: #17385f;
    --cyan: #00a0b8;
    --cyan-dark: #007f96;
    --cyan-light: #e8f7fa;
    --background: #f4f7fa;
    --surface: #ffffff;
    --surface-soft: #eef4f7;
    --text: #17263b;
    --muted: #607187;
    --border: #d6e1e9;
    --success: #2b856c;
    --warning: #a76c16;
    --shadow: 0 24px 65px rgba(16, 36, 65, 0.14);
    --radius: 18px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--surface);
    font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
    line-height: 1.65;
}

a {
    color: inherit;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--cyan);
    border-radius: 12px;
    font-size: 1.45rem;
    font-weight: 800;
}

.brand-text strong,
.brand-text small {
    display: block;
}

.brand-text strong {
    color: var(--navy);
}

.brand-text small {
    color: var(--muted);
    font-size: 0.75rem;
}

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

.site-nav a {
    color: var(--navy);
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
}

.site-nav a:hover {
    color: var(--cyan-dark);
}

.site-nav .nav-cta {
    padding: 10px 16px;
    color: #fff;
    background: var(--navy);
    border-radius: 8px;
}

.hero {
    padding: 88px 0 96px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 90% 12%,
            rgba(0, 160, 184, 0.18),
            transparent 34%
        ),
        linear-gradient(135deg, #ffffff 0%, #f1f8fa 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.18fr)
        minmax(440px, 0.82fr);
    align-items: center;
    gap: 70px;
}

.eyebrow,
.section-label {
    margin: 0 0 15px;
    color: var(--cyan-dark);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: normal;
}

h1 {
    max-width: 760px;
    margin: 0;
    color: var(--navy);
    font-size: clamp(3rem, 5.4vw, 5rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.048em;
    text-wrap: balance;
    hyphens: none;
}

h1 span {
    display: block;
}

h1 span + span {
    margin-top: 0.09em;
    color: var(--cyan-dark);
}

.hero-text {
    max-width: 700px;
    margin: 30px 0 0;
    color: var(--navy);
    font-size: clamp(1.16rem, 2vw, 1.35rem);
    line-height: 1.55;
}

.hero-subtext {
    max-width: 700px;
    margin: 15px 0 0;
    color: var(--muted);
    font-size: 1.03rem;
}

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

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border: 2px solid transparent;
    border-radius: 10px;
    font-weight: 750;
    text-align: center;
    text-decoration: none;
    transition:
        transform 160ms ease,
        background-color 160ms ease,
        border-color 160ms ease;
}

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

.button-primary {
    color: #fff;
    background: var(--cyan);
}

.button-primary:hover {
    background: var(--cyan-dark);
}

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

.button-secondary:hover {
    border-color: var(--cyan);
}

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

.hero-note {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.product-preview {
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(16, 36, 65, 0.11);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.preview-header {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
    color: #fff;
    background: var(--navy);
}

.preview-header > span {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 50%;
}

.preview-header strong {
    margin-left: auto;
    font-size: 0.76rem;
    letter-spacing: 0.03em;
}

.preview-body {
    min-height: 450px;
    display: grid;
    grid-template-columns: 72px 1fr;
}

.preview-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 28px 17px;
    background: var(--surface-soft);
    border-right: 1px solid var(--border);
}

.preview-sidebar span {
    height: 9px;
    background: #b7c7d1;
    border-radius: 999px;
}

.preview-sidebar .active {
    background: var(--cyan);
}

.preview-content {
    padding: 28px;
}

.preview-topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
}

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

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

.preview-topline strong {
    color: var(--navy);
    font-size: 1.05rem;
}

.status-badge {
    padding: 5px 9px;
    color: var(--success);
    background: #e9f5f1;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
}

.inventory-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
    margin-bottom: 12px;
    padding: 15px;
    background: #f7f9fb;
    border: 1px solid var(--border);
    border-radius: 11px;
}

.inventory-active {
    background: var(--cyan-light);
    border-left: 4px solid var(--cyan);
}

.item-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--navy);
    border-radius: 9px;
    font-size: 0.72rem;
    font-weight: 800;
}

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

.inventory-item strong {
    color: var(--navy);
    font-size: 0.83rem;
}

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

.item-status {
    color: var(--success);
    font-size: 0.68rem;
    font-weight: 800;
}

.item-status.service {
    color: var(--warning);
}

.preview-ticket {
    margin-top: 20px;
    padding: 15px;
    color: #fff;
    background: var(--navy);
    border-radius: 11px;
}

.preview-ticket span,
.preview-ticket strong {
    display: block;
}

.preview-ticket span {
    color: #a9c3db;
    font-size: 0.68rem;
}

.preview-ticket strong {
    margin-top: 4px;
    font-size: 0.8rem;
}

.trust-strip {
    color: #fff;
    background: var(--navy);
}

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

.trust-grid > div {
    padding: 26px 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.trust-grid > div:first-child {
    padding-left: 0;
}

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

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

.trust-grid strong {
    font-size: 0.92rem;
}

.trust-grid span {
    margin-top: 3px;
    color: #b9cada;
    font-size: 0.76rem;
}

.section {
    padding: 92px 0;
}

.inventory-section {
    background: #fff;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: end;
    gap: 70px;
}

.section-heading > p {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

h2 {
    max-width: 820px;
    margin: 0;
    color: var(--navy);
    font-size: clamp(2.15rem, 4.2vw, 3.65rem);
    line-height: 1.1;
    letter-spacing: -0.038em;
    text-wrap: balance;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.feature-card {
    padding: 30px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--cyan);
    border-radius: 9px;
    font-size: 0.75rem;
    font-weight: 800;
}

.feature-card h3 {
    margin: 28px 0 11px;
    color: var(--navy);
    font-size: 1.2rem;
    line-height: 1.25;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
}

.service-section {
    background: var(--background);
}

.service-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
    align-items: center;
    gap: 80px;
}

.section-intro {
    max-width: 700px;
    margin: 25px 0 0;
    color: var(--muted);
    font-size: 1.06rem;
}

.check-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 25px;
    margin: 33px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 29px;
    color: var(--navy);
    font-weight: 650;
}

.check-list li::before {
    position: absolute;
    top: 0.12em;
    left: 0;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--cyan);
    border-radius: 50%;
    content: "✓";
    font-size: 0.7rem;
}

.service-panel {
    padding: 30px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.panel-label {
    margin: 0 0 20px;
    color: var(--cyan-dark);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.asset-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border);
}

.asset-symbol {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--navy);
    border-radius: 11px;
    font-weight: 800;
}

.asset-header strong,
.asset-header small {
    display: block;
}

.asset-header strong {
    color: var(--navy);
}

.asset-header small {
    color: var(--muted);
}

.asset-data {
    margin: 22px 0;
}

.asset-data > div {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 15px;
    padding: 9px 0;
    border-bottom: 1px solid #edf1f4;
}

.asset-data dt {
    color: var(--muted);
}

.asset-data dd {
    margin: 0;
    color: var(--navy);
    font-weight: 700;
}

.inline-status {
    color: var(--success);
}

.asset-history {
    padding: 18px;
    color: #fff;
    background: var(--navy);
    border-radius: 11px;
}

.asset-history p,
.asset-history strong,
.asset-history span {
    display: block;
    margin: 0;
}

.asset-history p {
    color: #a9c3db;
    font-size: 0.72rem;
}

.asset-history strong {
    margin-top: 5px;
}

.asset-history span {
    margin-top: 4px;
    color: #d7e2ec;
    font-size: 0.8rem;
}

.process-section {
    background: #fff;
}

.process-line {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 48px;
}

.process-line article {
    position: relative;
    padding: 28px 25px 0 0;
    border-top: 3px solid var(--cyan);
}

.process-line article:not(:last-child)::after {
    position: absolute;
    top: -7px;
    right: 12px;
    color: var(--cyan);
    content: "›";
    font-size: 1.8rem;
    line-height: 1;
}

.process-line article > span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--navy);
    border-radius: 50%;
    font-weight: 800;
}

.process-line h3 {
    margin: 20px 0 7px;
    color: var(--navy);
}

.process-line p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.benefits-section {
    background: var(--cyan-light);
}

.benefits-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
    gap: 80px;
}

.benefit-list article {
    padding: 21px 0;
    border-bottom: 1px solid rgba(16, 36, 65, 0.16);
}

.benefit-list article:first-child {
    padding-top: 0;
}

.benefit-list strong {
    color: var(--navy);
    font-size: 1.08rem;
}

.benefit-list p {
    margin: 5px 0 0;
    color: var(--muted);
}

.ecosystem-section {
    color: #fff;
    background: var(--navy);
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 75px;
}

.ecosystem-section h2 {
    color: #fff;
}

.ecosystem-section .section-label {
    color: #70d8e6;
}

.ecosystem-section p {
    margin-top: 0;
    color: #d2deea;
    font-size: 1.05rem;
}

.integration-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 24px;
}

.integration-tags span {
    padding: 7px 11px;
    color: #fff;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    font-size: 0.78rem;
}

.contact-section {
    background: #fff;
}

.contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 55px;
    padding: 56px;
    color: #fff;
    background: linear-gradient(135deg, var(--cyan-dark), var(--cyan));
    border-radius: var(--radius);
}

.contact-box .section-label,
.contact-box h2,
.contact-box p {
    color: #fff;
}

.contact-box h2 {
    max-width: 760px;
}

.contact-box p {
    max-width: 730px;
    margin-bottom: 0;
}

.site-footer {
    padding: 42px 0;
    color: #c5d1dd;
    background: var(--navy-dark);
}

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

.footer-grid strong {
    color: #fff;
}

.footer-grid p {
    margin: 5px 0 0;
    font-size: 0.83rem;
}

.footer-grid a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 1050px) {
    .site-nav a:not(.nav-cta) {
        display: none;
    }

    .hero-grid,
    .service-layout,
    .benefits-layout {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 60px;
    }

    .product-preview {
        max-width: 720px;
    }

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

    .trust-grid > div:nth-child(2) {
        border-right: 0;
    }

    .trust-grid > div:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    }

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

    .process-line {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 0;
    }

    .section-heading,
    .ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

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

    .site-header {
        position: static;
    }

    .nav-cta {
        display: none;
    }

    .hero,
    .section {
        padding: 64px 0;
    }

    h1 {
        font-size: clamp(2.6rem, 12vw, 4rem);
        line-height: 1.05;
    }

    h1 span {
        display: inline;
    }

    h1 span + span::before {
        content: " ";
    }

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

    .button {
        width: 100%;
    }

    .preview-body {
        min-height: 390px;
        grid-template-columns: 48px 1fr;
    }

    .preview-sidebar {
        padding: 22px 11px;
    }

    .preview-content {
        padding: 19px;
    }

    .inventory-item {
        grid-template-columns: 36px minmax(0, 1fr);
    }

    .item-status {
        display: none;
    }

    .trust-grid,
    .feature-grid,
    .check-list,
    .process-line,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid > div {
        padding: 21px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    }

    .process-line article:not(:last-child)::after {
        display: none;
    }

    .contact-box {
        align-items: flex-start;
        flex-direction: column;
        padding: 34px 24px;
    }
}
