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

:root {
    --nav-height: 76px;
    --content-width: min(57vw, 1100px);
    --yellow: #ffcc32;
    --blue: #1688f5;
}

html {
    width: 100%;
    min-height: 100%;
    background: #000;
    overflow-x: hidden;
}

body {
    width: 100%;
    min-height: 100%;
    background: #000;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

/* TOP NAV */

.site-header {
    position: absolute;
    inset: 0 0 auto 0;
    z-index: 20;
    width: 100%;
    height: var(--nav-height);
    background: #000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(calc(100% - 64px), 1440px);
    height: 100%;
    margin: 0 auto;
}

.navbar-logo {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -1.5px;
    text-decoration: none;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 38px;
}

.nav-link {
    position: relative;
    padding: 28px 0 25px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color 180ms ease, transform 180ms ease;
}

.nav-link:hover {
    color: #fff;
    transform: translateY(-1px);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 18px;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 180ms ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.smarttrack-link::after {
    background: var(--yellow);
}

.groundtrack-link::after {
    background: var(--blue);
}

.navbar-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 105px;
    height: 27px;
    padding: 0 14px;
    color: #05090f;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.navbar-cta:hover {
    color: #fff;
    background: transparent;
    transform: translateY(-1px);
}

/* PAGE / HERO */

main {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #000;
    overflow-x: clip;
}

.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: auto;
    padding: calc(var(--nav-height) + 4px) 0 64px;
    background: #000;
    isolation: isolate;
    overflow: visible;
}

.left-dot-grid {
    position: absolute;
    top: calc(var(--nav-height) + 110px);
    left: 0;
    z-index: 1;

    width: 230px;
    height: 420px;

    pointer-events: none;
    opacity: 0.22;

    background:
        radial-gradient(
            circle,
            rgba(22, 136, 245, 0.7) 0 1px,
            transparent 1.5px
        );

    background-size: 24px 24px;

    -webkit-mask-image: linear-gradient(
        to right,
        #000 0%,
        rgba(0, 0, 0, 0.75) 38%,
        rgba(0, 0, 0, 0.22) 72%,
        transparent 100%
    );

    mask-image: linear-gradient(
        to right,
        #000 0%,
        rgba(0, 0, 0, 0.75) 38%,
        rgba(0, 0, 0, 0.22) 72%,
        transparent 100%
    );
}

.hero-headline {
    position: relative;
    z-index: 5;

    width: var(--content-width);
    margin: 36px auto 68px;

    text-align: center;
}

.hero-headline h1 {
    color: #ffffff;
    font-size: clamp(28px, 3.2vw, 54px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1px;
    white-space: nowrap;
}

.headline-highlight {
    position: relative;
    display: inline-block;
    isolation: isolate;
}

.headline-blue {
    position: relative;
    z-index: 2;
    color: #1688f5;
}

.headline-stripe {
    position: absolute;
    top: 50%;
    left: 58%;
    z-index: 1;

    width: 0.36em;
    min-width: 9px;
    height: 1.45em;

    background: #ffcc32;

    transform: translate(-50%, -50%) skewX(-26deg);
    transform-origin: center;
}

/* IMAGE + FRAME */

.hero-visual {
    position: relative;
    z-index: 2;
    width: var(--content-width);
    margin: 0 auto;
}

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

.frame-corner {
    position: absolute;
    width: 34px;
    height: 34px;
    pointer-events: none;
}

.frame-top-left {
    top: 0;
    left: 0;
    border-top: 2px solid rgba(255, 255, 255, 0.9);
    border-left: 2px solid rgba(255, 255, 255, 0.9);
}

.frame-top-right {
    top: 0;
    right: 0;
    border-top: 2px solid var(--blue);
    border-right: 2px solid var(--blue);
}

.frame-bottom-left {
    bottom: 0;
    left: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.9);
    border-left: 2px solid rgba(255, 255, 255, 0.9);
}

.frame-bottom-right {
    right: 0;
    bottom: 0;
    border-right: 2px solid var(--blue);
    border-bottom: 2px solid var(--blue);
}

/* RIGHT BLUE DETAIL */

.hero::before {
    content: "";
    position: absolute;
    top: calc(var(--nav-height) + 28px);
    right: 0;
    z-index: 1;
    width: 220px;
    height: 470px;
    pointer-events: none;
    opacity: 0.42;
    background:
        linear-gradient(
            to bottom,
            transparent 0,
            transparent 84px,
            rgba(22, 136, 245, 0.18) 85px,
            transparent 86px,
            transparent 194px,
            rgba(22, 136, 245, 0.15) 195px,
            transparent 196px,
            transparent 304px,
            rgba(22, 136, 245, 0.13) 305px,
            transparent 306px
        ),
        radial-gradient(
            circle,
            rgba(22, 136, 245, 0.44) 0 1px,
            transparent 1.4px
        );
    background-size: 100% 100%, 24px 24px;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.08) 28%,
        rgba(0, 0, 0, 0.6) 68%,
        #000 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.08) 28%,
        rgba(0, 0, 0, 0.6) 68%,
        #000 100%
    );
}

.hero::after {
    content: "";
    position: absolute;
    top: calc(var(--nav-height) + 28px);
    right: 54px;
    z-index: 2;
    width: 1px;
    height: 470px;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(22, 136, 245, 0.22) 10%,
        rgba(22, 136, 245, 0.55) 50%,
        rgba(22, 136, 245, 0.16) 88%,
        transparent 100%
    );
    box-shadow:
        0 268px 0 0 rgba(22, 136, 245, 0.95),
        0 268px 12px 5px rgba(22, 136, 245, 0.24);
}

/* BOTTOM TOPOGRAPHIC DETAIL */

main::before,
main::after {
    content: "";
    position: absolute;
    bottom: 0;
    z-index: 1;
    width: 240px;
    height: 170px;
    pointer-events: none;
    opacity: 0.10;
    background:
        repeating-radial-gradient(
            ellipse at center,
            transparent 0,
            transparent 13px,
            rgba(22, 136, 245, 0.55) 14px,
            transparent 15px
        );
}

main::before {
    left: -90px;
}

main::after {
    right: -90px;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
    :root {
        --content-width: min(68vw, 920px);
    }

}

@media (max-width: 1000px) {
    :root {
        --content-width: min(82vw, 860px);
    }

    .navbar-links {
        gap: 22px;
    }

    .hero {
        padding-top: calc(var(--nav-height) + 60px);
    }

}

@media (max-width: 900px) {
    .hero-headline h1 {
        font-size: clamp(24px, 4.5vw, 38px);
        white-space: normal;
    }

    .headline-stripe {
        width: 22%;
        min-width: 24px;
        height: 135%;
    }
}

@media (max-width: 760px) {
    :root {
        --nav-height: 64px;
        --content-width: calc(100% - 32px);
    }

    .navbar {
        width: calc(100% - 28px);
    }

    .navbar-logo {
        font-size: 24px;
    }

    .navbar-links {
        display: none;
    }

    .hero {
        padding-top: 142px;
        padding-bottom: 44px;
    }

    .hero::before,
    .hero::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-headline {
        width: calc(100% - 32px);
        margin-bottom: 16px;
    }

    .hero-headline h1 {
        font-size: clamp(22px, 7vw, 30px);
        line-height: 1.15;
    }

    .headline-stripe {
        width: 24%;
        min-width: 20px;
        height: 125%;
    }
}

/* SYSTEM FLOW SECTION */

.system-flow {
    position: relative;
    z-index: 4;

    display: grid;
    grid-template-columns: minmax(620px, 0.95fr) minmax(760px, 1.25fr);
    align-items: center;
    gap: 80px;

    width: min(calc(100% - 100px), 1760px);
    margin: 96px auto 0;
    padding: 40px 0 45px;
}

.system-flow-copy {
    width: 100%;
    max-width: 700px;
}

.section-heading {
    position: relative;
    display: block;
    padding-left: 62px;
    margin-bottom: 28px;
}

.section-slash {
    position: absolute;
    left: 18px;
    top: 50%;

    width: 2px;
    height: 276px;

    background: #ffcc32;

    transform:
        translateY(-50%)
        skewX(-28deg);

    transform-origin: center;
}

.section-heading h2 {
    margin: 0;

    color: #ffffff;
    font-size: clamp(38px, 3.1vw, 56px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1.2px;
}

.section-heading h2 span {
    display: block;
    white-space: nowrap;
}

.system-flow-copy > h3 {
    margin: 34px 0 24px 62px;

    color: rgba(255, 255, 255, 0.34);
    font-size: 18px;
    font-weight: 400;
}

.system-flow-copy > p {
    max-width: 620px;
    margin: 0 0 0 62px;

    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(18px, 1.15vw, 21px);
    line-height: 1.55;
}

.system-flow-visual {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    width: 100%;
    min-width: 0;
}

.system-flow-visual img {
    display: block;

    width: 100%;
    max-width: 1000px;
    height: auto;

    object-fit: contain;
}

@media (max-width: 1450px) {
    .system-flow {
        grid-template-columns: minmax(520px, 0.95fr) minmax(620px, 1.15fr);
        gap: 56px;
    }

    .section-heading h2 {
        font-size: 42px;
    }
}

@media (max-width: 1100px) {
    .system-flow {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .system-flow-copy {
        max-width: 760px;
    }

    .system-flow-visual {
        justify-content: center;
    }

    .system-flow-visual img {
        max-width: 900px;
    }
}

@media (max-width: 760px) {
    .system-flow {
        width: calc(100% - 36px);
        margin-top: 64px;
        padding-bottom: 72px;
    }

    .section-heading {
        padding-left: 44px;
    }

    .section-slash {
        left: 14px;
        height: 224px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .section-heading h2 span {
        white-space: normal;
    }

    .system-flow-copy > p {
        margin-left: 0;
    }

    .system-flow-visual img {
        max-width: 100%;
    }
}

/* HOW DOES IT WORK */

.how-it-works {
    width: 100%;
    margin: 35px auto 0;
    padding-top: 72px;
    padding-bottom: 100px;
    background: #070c10;
}

.how-it-works-header,
.key-benefits-header {
    width: min(calc(100% - 80px), 1480px);
    margin: 0 auto 52px;
    text-align: center;
}

.how-it-works-header h2,
.key-benefits-header h2 {
    color: #ffffff;
    font-size: clamp(28px, 3.2vw, 54px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1px;
    text-transform: none;
}

.workflow-mode-nav {
    position: sticky;
    top: 12px;
    z-index: 20;

    display: flex;
    justify-content: center;
    gap: 46px;

    width: fit-content;
    margin: 42px auto 0;
    padding: 12px 20px;

    background: #070c10;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.workflow-mode-button {
    position: relative;

    padding: 8px 0 12px;

    color: rgba(255, 255, 255, 0.52);
    background: transparent;
    border: 0;

    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;

    cursor: pointer;
}

.workflow-mode-button::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: #1688f5;
    transition: width 180ms ease;
}

.workflow-mode-button:hover,
.workflow-mode-button.active {
    color: #ffffff;
}

.workflow-mode-button.active::after {
    width: 100%;
}

/* FULL-WIDTH WORKFLOW CONTAINER */

.workflow-viewer {
    position: relative;

    width: 100%;
    aspect-ratio: 1600 / 686;

    background: #070c10;
    overflow: hidden;
}

.workflow-image {
    position: absolute;
    inset: 0;

    display: block;
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;
}

.workflow-viewer::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.28) 32%,
            transparent 58%
        ),
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(0, 0, 0, 0.72) 100%
        );

    pointer-events: none;
}

.workflow-content {
    position: absolute;
    inset: 0;
    z-index: 3;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: clamp(10px, 1.5vw, 24px) 6vw clamp(22px, 2.5vw, 42px);
}

.workflow-copy {
    max-width: 520px;
}

.workflow-step-number {
    display: block;
    margin-bottom: 14px;

    color: #1688f5;
    font-size: 13px;
    letter-spacing: 2px;
}

.workflow-step-title {
    color: #ffffff;
    font-size: clamp(34px, 4vw, 64px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -1px;
}

.workflow-step-title:empty {
    display: none;
}

.workflow-step-description {
    margin-top: 18px;

    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    line-height: 1.55;
    white-space: pre-line;
}

.workflow-step-title:empty + .workflow-step-description {
    margin-top: 0;
}

/* CONTROLS */

.workflow-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.workflow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    color: #ffffff;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;

    font-size: 22px;
    cursor: pointer;
}

.workflow-arrow:hover:not(:disabled) {
    border-color: #1688f5;
}

.workflow-arrow:disabled {
    opacity: 0.3;
    cursor: default;
}

.workflow-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.workflow-dot {
    width: 7px;
    height: 7px;

    padding: 0;

    background: rgba(255, 255, 255, 0.28);
    border: 0;
    border-radius: 50%;

    cursor: pointer;
}

.workflow-dot.active {
    width: 24px;
    border-radius: 10px;
    background: #1688f5;
}

@media (max-width: 900px) {
    .workflow-step-title {
        font-size: clamp(28px, 4.5vw, 46px);
    }

    .workflow-step-description {
        font-size: 15px;
    }
}

@media (max-width: 760px) {
    .how-it-works-header,
    .key-benefits-header {
        width: calc(100% - 36px);
        margin-bottom: 34px;
    }

    .how-it-works-header h2,
    .key-benefits-header h2 {
        font-size: clamp(34px, 10vw, 54px);
    }

    .workflow-mode-nav {
        gap: 20px;
        width: calc(100% - 28px);
        padding: 10px 14px;
    }

    .workflow-mode-button {
        flex: 1;
        font-size: 12px;
    }

    .workflow-content {
        padding: 20px 22px 16px;
    }

    .workflow-step-description {
        font-size: 15px;
    }
}

/* KEY BENEFITS */

.key-benefits {
    position: relative;
    width: 100%;
    padding: 120px 0;
    background: #000;
    overflow: hidden;
}

.key-benefits-inner {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: center;
    column-gap: 72px;
    row-gap: 72px;

    width: min(calc(100% - 80px), 1480px);
    margin: 0 auto;
}

/* PRVI RED */

.key-benefits-inner > .key-benefits-visual:not(.key-benefits-visual-secondary) {
    grid-column: 1 / 8;
    grid-row: 1;
}

.key-benefits-inner > .key-benefits-content:not(.key-benefits-content-secondary) {
    grid-column: 8 / 13;
    grid-row: 1;
}

.key-benefits-visual {
    position: relative;
    width: 100%;
}

.key-benefits-visual::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: 2;

    border: 1px solid rgba(22, 136, 245, 0.38);
    border-radius: 4px;

    pointer-events: none;
}

.key-benefits-visual img {
    display: block;
    width: 100%;
    height: auto;

    border-radius: 4px;
}

.key-benefits-content {
    max-width: 600px;
}

.key-benefits-label {
    display: block;
    margin-bottom: 22px;

    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.6px;
}

.key-benefits-content > h2 {
    margin-bottom: 46px;

    color: #fff;
    font-size: clamp(36px, 3.7vw, 62px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -1.5px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
}

.benefit-item {
    display: block;

    padding: 28px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.benefit-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.benefit-item h3 {
    margin-bottom: 10px;

    color: #fff;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .key-benefits-inner {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .key-benefits-inner > .key-benefits-visual,
    .key-benefits-inner > .key-benefits-content {
        grid-column: 1;
        grid-row: auto;
    }

    .key-benefits-content {
        max-width: 760px;
    }
}

@media (max-width: 760px) {
    .key-benefits {
        padding: 72px 0;
    }

    .key-benefits-inner {
        width: calc(100% - 36px);
        gap: 44px;
    }

    .key-benefits-content > h2 {
        margin-bottom: 30px;
        font-size: 38px;
    }

    .benefit-item {
        padding: 24px 0;
    }

    .benefit-item h3 {
        font-size: 20px;
    }

    .benefit-item p {
        font-size: 15px;
    }
}

/* OBJE SLIKE ISTE SIRINE I VISINE */

.key-benefits-visual {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.key-benefits-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.key-benefits-visual-secondary img {
    object-position: center;
}

/* SLIKE 60% MANJE - ostaje 40% sadasnje velicine */

.key-benefits-visual {
    width: 60%;
    justify-self: center;
}

/* TOP NAV - VECE DIMENZIJE KAO NA REFERENTNOJ STRANICI */

:root {
    --nav-height: 96px;
}

.navbar {
    width: min(calc(100% - 72px), 1440px);
}

.navbar-logo {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1.8px;
}

.navbar-links {
    gap: 44px;
}

.nav-link {
    padding: 36px 0 31px;

    font-size: 17px;
    font-weight: 600;
}

.nav-link::after {
    bottom: 24px;
    height: 2px;
}

.navbar-cta {
    min-width: 132px;
    height: 38px;
    padding: 0 18px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.7px;
}

@media (max-width: 760px) {
    :root {
        --nav-height: 72px;
    }

    .navbar-logo {
        font-size: 29px;
    }

    .navbar-cta {
        min-width: 118px;
        height: 34px;
        font-size: 10px;
    }
}

/* KEY BENEFITS FEATURE CARD */

.key-benefits-feature-card {
    grid-column: 1 / -1;

    display: grid;
    grid-template-columns: minmax(0, 44%) minmax(0, 56%);
    align-items: stretch;

    width: 70%;
    justify-self: center;
    min-height: 760px;
    overflow: hidden;

    background: #080808;
    border: 1px solid rgba(255, 204, 50, 0.72);
    border-radius: 48px;
}

.key-benefits-feature-visual {
    position: relative;
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.key-benefits-feature-visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 760px;

    object-fit: cover;
    object-position: center top;
}

.key-benefits-feature-panel {
    position: relative;

    display: flex;
    align-items: center;

    min-width: 0;
    padding: 54px 72px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.008)
        ),
        #080808;
}

.key-benefits-feature-panel::before {
    content: "";
    position: absolute;
    top: 54px;
    bottom: 54px;
    left: 0;

    width: 1px;

    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255, 204, 50, 0.7),
        transparent
    );
}

.key-benefits-feature-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.key-benefit-point {
    position: relative;

    padding: 22px 0 22px 48px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.key-benefit-point:first-child {
    padding-top: 0;
}

.key-benefit-point:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.key-benefit-point::before {
    content: "";

    position: absolute;
    top: 31px;
    left: 8px;

    width: 8px;
    height: 8px;

    background: var(--yellow);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 204, 50, 0.35);
}

.key-benefit-point:first-child::before {
    top: 9px;
}

.key-benefit-point h3 {
    margin: 0 0 8px;

    color: #ffffff;
    font-size: clamp(20px, 1.4vw, 27px);
    font-weight: 500;
    line-height: 1.2;
}

.key-benefit-point p {
    max-width: 760px;
    margin: 0;

    color: rgba(255, 255, 255, 0.74);
    font-size: clamp(16px, 1.05vw, 20px);
    line-height: 1.5;
}

@media (max-width: 1100px) {
    .key-benefits-feature-card {
        width: 100%;
        grid-template-columns: 1fr;
        min-height: 0;
        border-radius: 34px;
    }

    .key-benefits-feature-visual img {
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .key-benefits-feature-panel::before {
        top: 0;
        right: 38px;
        bottom: auto;
        left: 38px;

        width: auto;
        height: 1px;

        background: linear-gradient(
            to right,
            transparent,
            rgba(255, 204, 50, 0.7),
            transparent
        );
    }

    .key-benefits-feature-panel {
        padding: 46px 38px 52px;
    }
}

@media (max-width: 600px) {
    .key-benefits-feature-card {
        border-radius: 24px;
    }

    .key-benefits-feature-panel {
        padding: 36px 24px 42px;
    }

    .key-benefit-point {
        padding: 20px 0 20px 34px;
    }

    .key-benefit-point::before {
        left: 4px;
        width: 7px;
        height: 7px;
    }

    .key-benefit-point h3 {
        font-size: 20px;
    }

    .key-benefit-point p {
        font-size: 15px;
    }
}

/* NEW HERO SECTION */

.hero {
    align-items: stretch;
    padding: var(--nav-height) 0 64px;
}

.hero::before,
.hero::after {
    display: none;
}

.hero-split {
    display: grid;
    grid-template-columns: minmax(420px, 44%) minmax(0, 56%);

    width: min(calc(100% - 80px), 1480px);
    min-height: 620px;
    margin: 24px auto 80px;

    overflow: hidden;
    background: #0b151b;
}

.hero-split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    min-width: 0;
    padding: 70px 58px;

    background: #153b48;
}

.hero-split-kicker {
    display: block;
    margin-bottom: 24px;

    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.4px;
}

.hero-split-content h1 {
    margin: 0 0 30px;

    color: #ffffff;
    font-size: clamp(44px, 4vw, 72px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
}

.hero-split-content p {
    max-width: 650px;
    margin: 0 0 36px;

    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(18px, 1.2vw, 22px);
    line-height: 1.55;
}

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

.hero-split-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 170px;
    height: 52px;
    padding: 0 24px;

    border-radius: 4px;

    font-size: 16px;
    font-weight: 700;
    text-decoration: none;

    transition:
        transform 180ms ease,
        background 180ms ease,
        color 180ms ease,
        border-color 180ms ease;
}

.hero-split-button:hover {
    transform: translateY(-1px);
}

.hero-split-button-primary {
    color: #061219;
    background: #53d8eb;
    border: 1px solid #53d8eb;
}

.hero-split-button-primary:hover {
    background: #73e5f3;
    border-color: #73e5f3;
}

.hero-split-button-secondary {
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-split-button-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: #ffffff;
}

.hero-split-image {
    position: relative;
    min-width: 0;
    min-height: 620px;
    overflow: hidden;
}

.hero-split-image img {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.hero-split-image::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.16),
        transparent 32%,
        rgba(0, 0, 0, 0.08)
    );

    pointer-events: none;
}

@media (max-width: 1100px) {
    .hero-split {
        grid-template-columns: 1fr;
        min-height: 0;
        margin-bottom: 64px;
    }

    .hero-split-content {
        padding: 54px 42px;
    }

    .hero-split-content h1 {
        font-size: clamp(38px, 6vw, 58px);
    }

    .hero-split-image {
        min-height: 460px;
    }
}

@media (max-width: 760px) {
    .hero {
        padding-top: var(--nav-height);
    }

    .hero-split {
        width: calc(100% - 24px);
        margin-top: 14px;
        margin-bottom: 52px;
    }

    .hero-split-content {
        padding: 40px 24px;
    }

    .hero-split-kicker {
        margin-bottom: 18px;
        font-size: 11px;
        letter-spacing: 2px;
    }

    .hero-split-content h1 {
        margin-bottom: 24px;
        font-size: clamp(32px, 9vw, 46px);
        line-height: 1.03;
    }

    .hero-split-content p {
        margin-bottom: 28px;
        font-size: 16px;
    }

    .hero-split-actions {
        flex-direction: column;
    }

    .hero-split-button {
        width: 100%;
        min-width: 0;
        height: 48px;
    }

    .hero-split-image {
        min-height: 320px;
    }
}

/* HERO OVERLAY */

.hero {
    display: block;
    width: 100%;
    padding: var(--nav-height) 0 64px;
    background: #000;
}

.hero::before,
.hero::after {
    display: none;
}

.hero-overlay {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    min-height: 680px;
    overflow: hidden;
    background: #07131b;
}

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

    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center bottom;
}

.hero-overlay-shade {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.96) 0%,
        rgba(0, 0, 0, 0.90) 20%,
        rgba(0, 0, 0, 0.76) 35%,
        rgba(0, 0, 0, 0.50) 50%,
        rgba(0, 0, 0, 0.20) 65%,
        rgba(0, 0, 0, 0.04) 80%,
        transparent 100%
    );
}

.hero-overlay-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;

    width: min(620px, calc(100% - 80px));
    height: 100%;
    margin-left: max(48px, calc((100% - 1480px) / 2));
}

.hero-overlay-kicker {
    display: block;
    margin-bottom: 28px;

    color: #4fcaff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.hero-overlay-content h1 {
    margin: 0 0 32px;
    color: #ffffff;
    font-size: clamp(39px, 4.2vw, 76px);
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
    max-width: none;
}

.hero-overlay-content p {
    max-width: 570px;
    margin: 0 0 34px;

    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    line-height: 1.65;
}

.hero-overlay-sentence {
    display: block;
}

.hero-overlay-sentence + .hero-overlay-sentence {
    margin-top: 10px;
}

.hero-overlay-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-overlay-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 180px;
    height: 52px;
    padding: 0 24px;

    border-radius: 4px;

    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.hero-overlay-button-primary {
    color: #06131a;
    background: #4fcaf0;
    border: 1px solid #4fcaf0;
}

.hero-overlay-button-secondary {
    color: #fff;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.75);
}

@media (max-width: 900px) {
    .hero-overlay {
        height: auto;
        min-height: 720px;
    }

    .hero-overlay-shade {
        background:
            linear-gradient(
                90deg,
                rgba(5, 22, 31, 0.96) 0%,
                rgba(5, 22, 31, 0.88) 55%,
                rgba(5, 22, 31, 0.42) 100%
            );
    }

    .hero-overlay-content {
        width: calc(100% - 64px);
        min-height: 720px;
        margin-left: 32px;
    }
}

@media (max-width: 600px) {
    .hero-overlay {
        min-height: 680px;
    }

    .hero-overlay-shade {
        background: rgba(5, 22, 31, 0.82);
    }

    .hero-overlay-content {
        width: calc(100% - 40px);
        min-height: 680px;
        margin: 0 20px;
    }

    .hero-overlay-content h1 {
        font-size: 38px;
    }

    .hero-overlay-content p {
        font-size: 16px;
    }

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

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

/* REAL DETECTION SECTION */

.real-detection-section {
    position: relative;
    min-height: 900px;
    overflow: hidden;

    background-image:
        url("../images/industrial-security-surveillance-at-night.png");

    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.real-detection-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.96) 0%,
        rgba(0, 0, 0, 0.88) 22%,
        rgba(0, 0, 0, 0.62) 45%,
        rgba(0, 0, 0, 0.25) 68%,
        rgba(0, 0, 0, 0.00) 100%
    );
}

.real-detection-content {
    position: relative;
    z-index: 2;

    width: min(620px, calc(100% - 80px));
    padding-top: 120px;
    margin-left: max(80px, calc((100% - 1500px) / 2));
}

.real-detection-kicker {
    display: block;
    margin-bottom: 30px;

    color: #46c7f4;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.real-detection-content h2 {
    margin: 0 0 32px;

    color: #ffffff;
    font-size: clamp(48px, 4vw, 68px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.real-detection-title-line {
    display: inline-block;
    white-space: nowrap;
}

.real-detection-main-text {
    margin: 0 0 24px;

    color: #ffffff;
    font-size: clamp(20px, 1.5vw, 27px);
    font-weight: 700;
    line-height: 1.45;
}

.real-detection-main-text strong {
    color: #ffbf00;
    font-weight: 700;
}

.real-detection-description {
    margin: 0;

    color: rgba(255, 255, 255, 0.58);
    font-size: 17px;
    line-height: 1.55;
}

.real-detection-benefits {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;

    display: grid;
    grid-template-columns: repeat(5, 1fr);

    min-height: 150px;
    padding: 0 max(60px, calc((100% - 1500px) / 2));

    background: rgba(5, 13, 17, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.real-detection-benefit {
    position: relative;

    display: flex;
    align-items: center;
    gap: 14px;

    min-width: 0;
    padding: 32px 28px;
}

.real-detection-benefit:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 32px;
    right: 0;
    bottom: 32px;

    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.benefit-dot {
    flex: 0 0 auto;

    width: 12px;
    height: 12px;

    border-radius: 50%;
}

.axis-benefit .benefit-dot {
    background: #ffbf00;
}

.milestone-benefit .benefit-dot {
    background: #46c7f4;
}

.real-detection-benefit > div {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.benefit-brand {
    margin-bottom: 5px;

    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.axis-benefit .benefit-brand {
    color: #ffbf00;
}

.milestone-benefit .benefit-brand {
    color: #46c7f4;
}

.benefit-title {
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.25;
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .real-detection-section {
        min-height: 980px;
    }

    .real-detection-content {
        margin-left: 48px;
    }

    .real-detection-benefits {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 30px;
    }

    .real-detection-benefit {
        padding: 24px 20px;
    }

    .real-detection-benefit::after {
        display: none;
    }

    .benefit-title {
        white-space: normal;
    }
}

@media (max-width: 760px) {
    .real-detection-section {
        min-height: 1120px;
        background-position: 62% top;
    }

    .real-detection-overlay {
        background: rgba(2, 10, 15, 0.78);
    }

    .real-detection-content {
        width: calc(100% - 40px);
        padding-top: 72px;
        margin: 0 20px;
    }

    .real-detection-content h2 {
        font-size: 40px;
    }

    .real-detection-main-text {
        font-size: 20px;
    }

    .real-detection-benefits {
        grid-template-columns: 1fr;
        padding: 18px 20px;
    }

    .real-detection-benefit {
        padding: 14px 0;
    }
}

.real-detection-benefit .benefit-dot {
    background-color: #ffc400 !important;
}

.about-section {
    background: #080d10;
    padding: 90px 6%;
}

.about-content {
    width: 100%;
    max-width: 1740px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(420px, 1fr) minmax(620px, 1.35fr);
    gap: 110px;
    align-items: start;
}

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

.about-kicker {
    display: block;
    margin-bottom: 28px;
    color: #43bde8;
    font-size: 16px;
    font-weight: 700;
}

.about-copy h2 {
    margin: 0 0 30px;
    color: #ffffff;
    font-size: clamp(40px, 3vw, 58px);
    line-height: 1.15;
    font-weight: 700;
}

.about-copy p {
    margin: 0 0 22px;
    color: #aeb6bc;
    font-size: 18px;
    line-height: 1.65;
}

.about-copy p:last-child {
    color: #ffffff;
}

.about-axis-text {
    color: #ffc400;
}

.about-milestone-text {
    color: #43bde8;
}

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

.about-card {
    position: relative;
    min-height: 150px;
    padding: 28px 26px;
    background: #11171b;
    border: 1px solid #2a3237;
    border-radius: 0 14px 14px 0;
    overflow: hidden;
}

.about-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: #30383d;
}

.about-card h3 {
    margin: 0;
    color: #ffffff;
    font-size: 27px;
    line-height: 1.15;
    font-weight: 700;
}

.about-card p {
    position: absolute;
    left: 26px;
    bottom: 25px;
    margin: 0;
    max-width: 260px;
    color: #818b91;
    font-size: 15px;
    line-height: 1.45;
}

.about-card-axis::before {
    background: #ffc400;
}

.about-card-axis h3 {
    color: #ffc400;
}

.about-card-milestone::before {
    background: #43bde8;
}

.about-card-milestone h3 {
    color: #43bde8;
}

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

    .about-copy {
        max-width: 700px;
    }
}

@media (max-width: 680px) {
    .about-section {
        padding: 65px 24px;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    .about-card {
        min-height: 140px;
    }
}

.about-partner-heading {
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-partner-heading h3 {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.2;
}

.about-partner-logo {
    display: block;
    flex: 0 0 auto;
    object-fit: contain;
}

.milestone-logo {
    width: 52px;
    height: 52px;
}

.axis-logo {
    width: 48px;
    height: 48px;
}

.about-card-partner .milestone-logo + h3 {
    color: #43bde8;
}

.about-card-partner .axis-logo + h3 {
    color: #ffc400;
}

.hero-overlay-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-overlay-button-primary {
    background: #ffc400;
    border: 1px solid #ffc400;
    color: #000000;
}

.navbar {
    position: relative;
}

.navbar-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.system-flow-copy > p {
    margin-bottom: 18px;
}

.system-flow-copy > p:last-child {
    margin-bottom: 0;
}

.workflow-step-description {
    font-size: 150%;
}

.workflow-step-title {
    white-space: nowrap;
}

.real-detection-content h2 {
    margin-bottom: 48px;
}

.real-detection-title-line {
    display: inline-block;
    margin-bottom: 14px;
}

.real-detection-kicker {
    width: min(calc(100vw - 80px), 1480px);
    margin-right: auto;
    color: #ffffff;
    font-size: clamp(28px, 3.2vw, 54px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1px;
    text-align: center;
    text-transform: none;
}

@media (max-width: 760px) {
    .real-detection-kicker {
        font-size: clamp(34px, 10vw, 54px);
    }
}

.real-detection-header {
    background: #000000;
    padding: 90px 6% 42px;
    text-align: center;
}

.real-detection-header h2 {
    margin: 0;

    color: #ffffff;
    font-size: clamp(28px, 3.2vw, 54px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1px;
    text-transform: none;
}

@media (max-width: 760px) {
    .real-detection-header {
        padding: 72px 24px 34px;
    }

    .real-detection-header h2 {
        font-size: clamp(34px, 10vw, 54px);
    }
}

.real-detection-title-line {
    display: block;
    width: max-content;
    white-space: nowrap;
}

/* SMARTTRACK PAGE */

.smarttrack-page {
    padding-top: var(--nav-height);
    background: #05090c;
}

.smarttrack-hero {
    position: relative;
    min-height: calc(100vh - var(--nav-height));
    overflow: hidden;
    background: #060a0d;
}

.smarttrack-hero-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.smarttrack-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.96) 0%,
            rgba(0, 0, 0, 0.88) 25%,
            rgba(0, 0, 0, 0.58) 47%,
            rgba(0, 0, 0, 0.16) 72%,
            rgba(0, 0, 0, 0.04) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.10) 0%,
            rgba(0, 0, 0, 0.12) 70%,
            rgba(0, 0, 0, 0.72) 100%
        );
}

.smarttrack-hero-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;

    width: min(700px, calc(100% - 80px));
    min-height: calc(100vh - var(--nav-height));
    margin-left: max(48px, calc((100% - 1480px) / 2));
    padding: 80px 0;
}

.smarttrack-hero-kicker {
    margin-bottom: 20px;

    color: #ffcc32;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.smarttrack-hero-content h1 {
    margin: 0 0 22px;

    color: #ffffff;
    font-size: clamp(56px, 6vw, 96px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -2px;
}

.smarttrack-hero-subtitle {
    margin-bottom: 22px;

    color: #ffcc32;
    font-size: clamp(22px, 1.8vw, 30px);
    font-weight: 500;
    line-height: 1.3;
}

.smarttrack-hero-description {
    max-width: 640px;
    margin-bottom: 34px;

    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.65;
}

.smarttrack-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.smarttrack-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 180px;
    height: 52px;
    padding: 0 24px;

    border-radius: 4px;

    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.smarttrack-button-primary {
    color: #000000;
    background: #ffcc32;
    border: 1px solid #ffcc32;
}

.smarttrack-button-secondary {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.72);
}

.smarttrack-overview {
    padding: 96px 6%;
    background: #070c10;
}

.smarttrack-overview-inner {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
}

.smarttrack-overview-header {
    margin-bottom: 48px;
    text-align: center;
}

.smarttrack-overview-header h2 {
    color: #ffffff;
    font-size: clamp(36px, 3.2vw, 58px);
    font-weight: 400;
    line-height: 1.05;
}

.smarttrack-overview-header::after {
    content: "";

    display: block;
    width: 110px;
    height: 3px;
    margin: 18px auto 0;

    background: #ffcc32;
}

.smarttrack-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    overflow: hidden;

    background: #0d1317;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
}

.smarttrack-step {
    min-height: 260px;
    padding: 34px 30px;
}

.smarttrack-step:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.smarttrack-step h3 {
    margin-bottom: 14px;

    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
}

.smarttrack-step p {
    color: rgba(255, 255, 255, 0.66);
    font-size: 16px;
    line-height: 1.6;
}

.smarttrack-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;

    margin-top: 28px;
}

.smarttrack-feature-card {
    min-height: 190px;
    padding: 30px;

    background: #0d1317;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
}

.smarttrack-feature-card::before {
    content: "";

    display: block;
    width: 42px;
    height: 4px;
    margin-bottom: 22px;

    background: #ffcc32;
}

.smarttrack-feature-card h3 {
    margin-bottom: 12px;

    color: #ffffff;
    font-size: 21px;
}

.smarttrack-feature-card p {
    color: rgba(255, 255, 255, 0.66);
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 1000px) {
    .smarttrack-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .smarttrack-step:nth-child(2) {
        border-right: 0;
    }

    .smarttrack-step:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .smarttrack-feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .smarttrack-hero {
        min-height: 720px;
    }

    .smarttrack-hero-overlay {
        background: rgba(0, 0, 0, 0.74);
    }

    .smarttrack-hero-content {
        width: calc(100% - 40px);
        min-height: 720px;
        margin: 0 20px;
        padding: 60px 0;
    }

    .smarttrack-hero-content h1 {
        font-size: 52px;
    }

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

    .smarttrack-button {
        width: 100%;
    }

    .smarttrack-overview {
        padding: 72px 20px;
    }

    .smarttrack-steps {
        grid-template-columns: 1fr;
    }

    .smarttrack-step {
        border-right: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .smarttrack-step:last-child {
        border-bottom: 0;
    }
}

.smarttrack-step-icon {
    display: block;
    width: 150px;
    height: 90px;
    margin: 0 auto 24px;
    object-fit: contain;
}

.smarttrack-step {
    text-align: left;
}

.smarttrack-slider-section {
    padding: 90px 0 110px;
    background: #070c10;
}

.smarttrack-slider {
    position: relative;
    width: 100%;
    background: #070c10;
}

.smarttrack-acap-section .smarttrack-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;

    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.58) 28%,
        rgba(0, 0, 0, 0.26) 52%,
        rgba(0, 0, 0, 0.00) 78%
    );

    pointer-events: none;
}

.smarttrack-slider-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 820px;
    object-fit: contain;
    object-position: center;
}

.smarttrack-slider-controls {
    margin-top: 28px;
}

.smarttrack-slider-copy {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;

    width: min(620px, calc(100% - 80px));
    max-width: none;
    margin: 0;
    padding: clamp(28px, 4vw, 72px) 6vw 0;

    text-align: left;
    pointer-events: none;
}

.smarttrack-slider-copy h3 {
    margin: 0 0 10px;

    color: #ffffff;
    font-size: clamp(28px, 3vw, 46px);
    font-weight: 500;
    line-height: 1.15;
    white-space: nowrap;
}

.smarttrack-slider-copy p {
    margin: 0;

    color: rgba(255, 255, 255, 0.68);
    font-size: clamp(17px, 1.4vw, 22px);
    line-height: 1.5;
}

@media (max-width: 760px) {
    .smarttrack-slider-copy {
        width: calc(100% - 40px);
        padding: 28px 20px 0;
    }

    .smarttrack-slider-copy h3 {
        white-space: normal;
    }
}

.axis-camera-station-section {
    background: #070c10;
}

.smarttrack-slider-header {
    padding: 70px 6% 34px;
    background: #070c10;
    text-align: center;
}

.smarttrack-slider-header h2 {
    margin: 0;

    color: #ffffff;
    font-size: clamp(36px, 3.2vw, 58px);
    font-weight: 400;
    line-height: 1.05;
}

.smarttrack-slider-header::after {
    content: "";

    display: block;
    width: 165px;
    height: 4px;
    margin: 30px auto 0;

    background: #ffcc32;
}

.smarttrack-acap-section {
    background: #070c10;
}

.smarttrack-acap-section .smarttrack-slider {
    background: #070c10;
}

.smarttrack-acap-section {
    background: #000000;
}

.smarttrack-acap-section .smarttrack-slider {
    background: #000000;
}

.axis-camera-station-header {
    background: #070c10;
}

.smarttrack-acap-header {
    background: #000000;
}

.axis-camera-station-section .smarttrack-slider-image {
    width: 100%;
    max-height: none;
}

.contact-section {
    padding: 86px 6%;
    background: #000000;
    text-align: center;
}

.contact-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.contact-kicker {
    display: block;
    margin-bottom: 18px;

    color: #ffcc32;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.contact-content h2 {
    margin: 0 0 24px;

    color: #ffffff;
    font-size: clamp(36px, 3.2vw, 58px);
    font-weight: 400;
    line-height: 1.05;
}

.contact-email {
    color: #ffffff;
    font-size: clamp(22px, 2.1vw, 34px);
    font-weight: 500;
    text-decoration: none;
}

.contact-email:hover {
    color: #ffcc32;
}

.contact-email-image {
    display: inline-block;
    width: min(100%, 360px);
    height: auto;
    vertical-align: middle;
}

.about-contact {
    grid-column: 1 / -1;

    padding: 34px 30px;

    background: #11171b;
    border: 1px solid #2a3237;
    border-radius: 0 14px 14px 0;
}

.about-contact .contact-kicker {
    margin-bottom: 14px;
}

.about-contact h2 {
    margin: 0 0 18px;

    color: #ffffff;
    font-size: clamp(30px, 2.4vw, 44px);
    font-weight: 400;
    line-height: 1.05;
}

.about-contact .contact-email {
    font-size: clamp(20px, 1.8vw, 30px);
}

/* GROUNDTRACK BLUE THEME */

.groundtrack-theme {
    --groundtrack-blue: #1688f5;
}

.groundtrack-theme .smarttrack-hero-kicker,
.groundtrack-theme .smarttrack-hero-subtitle,
.groundtrack-theme .smarttrack-slider-copy h3 {
    color: var(--groundtrack-blue);
}

.groundtrack-theme .smarttrack-button-primary {
    color: #ffffff;
    background: var(--groundtrack-blue);
    border-color: var(--groundtrack-blue);
}

.groundtrack-theme .smarttrack-overview-header::after,
.groundtrack-theme .smarttrack-feature-card::before,
.groundtrack-theme .workflow-dot.active {
    background: var(--groundtrack-blue);
}

.groundtrack-theme .workflow-arrow:hover:not(:disabled) {
    border-color: var(--groundtrack-blue);
}

/* Žute PNG ikone pretvara u plave */

.groundtrack-theme .smarttrack-step-icon {
    filter:
        hue-rotate(163deg)
        saturate(140%)
        brightness(95%);
}

/* SMARTTRACK / GROUNDTRACK — TEKST PREKO SAME SLIKE */

.smarttrack-acap-section .smarttrack-slider {
    position: relative !important;
    display: block !important;
    width: 100% !important;
}

.smarttrack-acap-section .smarttrack-slider-image {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
}

.smarttrack-acap-section .smarttrack-slider-copy {
    position: absolute !important;

    top: clamp(55px, 6vw, 105px) !important;
    left: 18vw !important;
    z-index: 5 !important;

    width: 480px !important;
    max-width: calc(100% - 40px) !important;

    margin: 0 !important;
    padding: 0 !important;

    text-align: left !important;
    pointer-events: none;
}

.smarttrack-acap-section .smarttrack-slider-copy h3 {
    margin: 0 0 12px !important;

    color: #ffffff;
    font-size: clamp(30px, 2.8vw, 48px);
    font-weight: 500;
    line-height: 1.1;
    white-space: normal !important;

    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.9);
}

.smarttrack-acap-section .smarttrack-slider-copy p {
    margin: 0 !important;

    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(16px, 1.25vw, 21px);
    line-height: 1.5;

    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.smarttrack-acap-section .smarttrack-slider-controls {
    position: relative !important;
    z-index: 6 !important;
    margin-top: 28px !important;
}

@media (max-width: 760px) {
    .smarttrack-acap-section .smarttrack-slider-copy {
        top: 24px !important;
        left: 24px !important;
        width: calc(100% - 48px) !important;
    }
}

/* SLIDER — TEKST FIKSIRAN U ODNOSU NA SLIKU */

.smarttrack-acap-section .smarttrack-slider {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.smarttrack-slider-stage {
    position: relative;
    width: min(100%, 1458px);
    margin: 0 auto;
}

.smarttrack-slider-stage .smarttrack-slider-image {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    margin: 0 !important;
}

.smarttrack-slider-stage .smarttrack-slider-copy {
    position: absolute !important;
    top: 1% !important;
    left: 1% !important;
    z-index: 5 !important;

    width: 34% !important;
    max-width: 520px !important;
    margin: 0 !important;
    padding: 0 !important;

    text-align: left !important;
    pointer-events: none;
}

.smarttrack-slider-stage .smarttrack-slider-copy h3 {
    margin: 0 0 14px !important;
    font-size: clamp(26px, 3vw, 52px);
    line-height: 1.05;
    white-space: normal !important;
}

.smarttrack-slider-stage .smarttrack-slider-copy p {
    margin: 0 !important;
    font-size: clamp(15px, 1.35vw, 23px);
    line-height: 1.45;
}

.smarttrack-acap-section .smarttrack-slider-controls {
    margin-top: 28px !important;
}

.groundtrack-theme .smarttrack-slider-header::after {
    background: var(--groundtrack-blue);
}
