:root {
    --primary: #1565c0;
    --primary-light: #1976d2;
    --primary-dark: #0d47a1;
    --ink: #111827;
    --text: #374151;
    --muted: #6b7280;
    --line: #e5e7eb;
    --surface: #ffffff;
    --background: #f4f6fb;
    --header-gray: #e9ecef;
    --shadow: 0 8px 28px rgba(15, 23, 42, .08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--surface);
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    color: var(--primary);
}

.skip-link {
    position: fixed;
    top: -100px;
    left: 1rem;
    z-index: 1000;
    padding: .7rem 1rem;
    color: #fff;
    background: var(--primary-dark);
    border-radius: 0 0 .35rem .35rem;
    font-weight: 700;
}

.skip-link:focus {
    top: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 1px 4px rgba(0, 0, 0, .07);
    backdrop-filter: blur(12px);
}

.site-header__inner,
.section,
.hero__inner,
.contact__inner,
.site-footer__inner {
    width: min(1100px, calc(100% - 3rem));
    margin-inline: auto;
}

.site-header__inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand {
    display: flex;
    flex: 0 0 auto;
}

.brand img {
    width: auto;
    height: 42px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.35rem;
}

.site-nav a {
    color: #334155;
    font-size: .88rem;
    font-weight: 650;
    text-decoration: none;
    transition: color .2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--primary);
}

.site-nav__contact {
    padding: .5rem 1rem;
    color: #fff !important;
    background: var(--primary);
    border-radius: .4rem;
}

.site-nav__contact:hover,
.site-nav__contact:focus-visible {
    background: var(--primary-light);
}

.site-nav__login {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: var(--ink) !important;
    border-radius: 50%;
}

.site-nav__login:hover,
.site-nav__login:focus-visible {
    background: #eff6ff;
}

.hero {
    position: relative;
    color: var(--text);
    background:
        radial-gradient(circle at 82% 14%, rgba(59, 130, 246, .11), transparent 27%),
        linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}

.hero::before,
.hero::after {
    position: absolute;
    content: '';
    border: 1px solid rgba(21, 101, 192, .08);
    border-radius: 50%;
}

.hero::before {
    width: 480px;
    height: 480px;
    top: -290px;
    right: -80px;
}

.hero::after {
    width: 330px;
    height: 330px;
    bottom: -250px;
    left: 30%;
}

.hero__inner {
    position: relative;
    z-index: 1;
    width: min(1380px, calc(100% - 3rem));
    min-height: 660px;
    padding-block: 4.25rem 3.5rem;
    display: grid;
    grid-template-columns: minmax(390px, .85fr) minmax(560px, 1.15fr);
    align-items: center;
    gap: 3rem;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1.25rem;
    padding: .3rem .95rem;
    color: var(--primary);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 690px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(2.35rem, 4.2vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1.06;
}

.hero__lead {
    max-width: 660px;
    margin: 1.5rem 0 0;
    color: var(--text);
    font-size: 1.08rem;
    line-height: 1.7;
}

.hero__benefits {
    margin: 1.5rem 0 0;
    padding: 0;
    display: grid;
    gap: .85rem;
    list-style: none;
}

.hero__benefits li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: .7rem;
    align-items: start;
    font-size: .84rem;
}

.hero__benefits i {
    margin-top: .2rem;
    color: var(--primary);
    font-size: 1.05rem;
}

.hero__benefits strong {
    display: block;
    color: var(--ink);
    font-size: .9rem;
}

.hero__actions {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: .65rem 1.4rem;
    border: 1px solid transparent;
    border-radius: .5rem;
    font-size: .9rem;
    font-weight: 750;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button--light {
    color: var(--primary-dark);
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
}

.button--primary {
    gap: .8rem;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    box-shadow: 0 9px 24px rgba(21, 101, 192, .22);
}

.button--text {
    gap: .65rem;
    color: #475569;
}

.button--text i {
    color: var(--primary);
    font-size: 1.1rem;
}

.button--outline {
    color: #fff;
    border-color: rgba(255, 255, 255, .55);
    background: transparent;
}

.button--outline:hover,
.button--outline:focus-visible {
    background: rgba(255, 255, 255, .1);
}

.product-showcase {
    position: relative;
    min-height: 520px;
    padding-top: 4.5rem;
}

.product-note {
    position: absolute;
    top: 0;
    left: 3rem;
    z-index: 4;
    width: 320px;
    padding: .9rem 1rem;
    display: flex;
    align-items: center;
    gap: .85rem;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: .65rem;
    box-shadow: 0 8px 24px rgba(30, 64, 175, .08);
}

.product-note__icon {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: #6d28d9;
    background: #ede9fe;
    border-radius: .55rem;
}

.product-note span:last-child {
    color: var(--muted);
    font-size: .7rem;
    line-height: 1.45;
}

.product-note strong {
    display: block;
    color: var(--ink);
    font-size: .8rem;
}

.product-window {
    overflow: hidden;
    background: #fff;
    border: 9px solid #172033;
    border-bottom-width: 15px;
    border-radius: 1.1rem .9rem .5rem .5rem;
    box-shadow: 0 30px 60px rgba(15, 23, 42, .22);
}

.product-window__topbar {
    height: 55px;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 110px 1fr auto;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.product-window__topbar img {
    width: 78px;
}

.product-window__topbar strong {
    color: var(--ink);
    font-size: .95rem;
}

.product-window__body {
    height: 340px;
    display: grid;
    grid-template-columns: 115px 1fr;
}

.product-sidebar {
    padding: .8rem .55rem;
    display: grid;
    align-content: start;
    gap: .4rem;
    background: #f8fafc;
    border-right: 1px solid #e5e7eb;
}

.product-sidebar span {
    padding: .48rem .55rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #64748b;
    border-radius: .35rem;
    font-size: .58rem;
}

.product-sidebar .is-active {
    color: var(--primary);
    background: #eaf2fd;
    font-weight: 700;
}

.product-dashboard {
    min-width: 0;
    padding: .9rem;
    background: #fbfdff;
}

.product-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .65rem;
}

.product-stats > span {
    min-width: 0;
    padding: .55rem .6rem;
    display: grid;
    grid-template-columns: 24px 1fr;
    grid-template-rows: auto auto;
    column-gap: .45rem;
    background: #fff;
    border: 1px solid #e9eef5;
    border-radius: .45rem;
}

.product-stats i {
    grid-row: 1 / 3;
    align-self: center;
    color: var(--primary);
}

.product-stats span:nth-child(2) i { color: #16a34a; }
.product-stats span:nth-child(3) i { color: #7c3aed; }

.product-stats small {
    overflow: hidden;
    color: #64748b;
    font-size: .48rem;
    white-space: nowrap;
}

.product-stats strong {
    color: var(--ink);
    font-size: .82rem;
    line-height: 1.1;
}

.product-map {
    position: relative;
    height: 245px;
    margin-top: .75rem;
    overflow: hidden;
    background: #dfead5;
    border-radius: .45rem;
}

.product-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.75) brightness(1.08);
}

.map-pin {
    position: absolute;
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--primary);
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(15, 23, 42, .25);
    font-size: .48rem;
}

.map-pin--one { top: 26%; left: 24%; }
.map-pin--two { top: 54%; left: 58%; background: #7c3aed; }
.map-pin--three { top: 35%; right: 12%; background: #16a34a; }

.mobile-preview {
    position: absolute;
    right: -2rem;
    bottom: -1.5rem;
    z-index: 5;
    width: 168px;
    overflow: hidden;
    background: #fff;
    border: 7px solid #172033;
    border-radius: 1.7rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, .28);
}

.mobile-preview__speaker {
    width: 45px;
    height: 5px;
    margin: .35rem auto;
    background: #172033;
    border-radius: 10px;
}

.mobile-preview__header {
    padding: .65rem .55rem;
    display: flex;
    justify-content: space-between;
    color: var(--ink);
    font-size: .55rem;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-preview__map {
    height: 105px;
    background: url('images/Karta.jpg') center / cover;
}

.mobile-preview__content {
    padding: .75rem;
    display: grid;
    gap: .6rem;
    color: var(--ink);
    font-size: .54rem;
}

.mobile-preview__content > span {
    display: flex;
    justify-content: space-between;
    color: #64748b;
}

.mobile-preview__content b {
    padding: .05rem .3rem;
    color: var(--primary);
    background: #dbeafe;
    border-radius: 10px;
}

.mobile-preview__content > div {
    display: flex;
    justify-content: space-between;
    color: #64748b;
}

.mobile-preview button {
    padding: .45rem;
    color: #fff;
    background: var(--primary);
    border: 0;
    border-radius: .3rem;
    font: inherit;
    font-weight: 700;
}

.mobile-callout {
    position: absolute;
    top: 2rem;
    right: -1.5rem;
    color: var(--primary);
    font-size: .72rem;
    font-style: italic;
    font-weight: 700;
    transform: rotate(-4deg);
}

.mobile-callout i {
    margin-left: .3rem;
    transform: rotate(-20deg);
}

.audience {
    padding: 1.4rem 1.5rem 0;
    background: #fbfdff;
}

.audience__inner {
    width: min(1320px, 100%);
    min-height: 96px;
    margin-inline: auto;
    padding: 1rem 1.5rem;
    display: grid;
    grid-template-columns: 1.35fr repeat(6, 1fr);
    align-items: center;
    gap: 1rem;
    color: #475569;
    background: #fff;
    border: 1px solid #e5eaf1;
    border-radius: .8rem;
    box-shadow: 0 8px 28px rgba(15, 23, 42, .035);
}

.audience__inner strong {
    color: var(--ink);
    font-size: .82rem;
    line-height: 1.4;
}

.audience__inner span {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: .68rem;
    font-weight: 700;
    white-space: nowrap;
}

.audience__inner i {
    color: #64748b;
    font-size: 1.25rem;
}

.section {
    padding-block: 5.5rem;
}

.section--muted {
    width: 100%;
    max-width: none;
    padding-inline: max(1.5rem, calc((100% - 1100px) / 2));
    background: var(--background);
}

.section__heading {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section__eyebrow,
.contact__eyebrow {
    display: block;
    margin-bottom: .65rem;
    color: var(--primary);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.section__heading h2,
.development h2,
.contact h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.8rem, 3.5vw, 2.55rem);
    font-weight: 780;
    letter-spacing: -.025em;
    line-height: 1.18;
}

.section__heading p {
    margin: 1rem auto 0;
    color: var(--muted);
    font-size: .98rem;
}

.process {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.process::before {
    position: absolute;
    top: 25px;
    right: 16%;
    left: 16%;
    height: 2px;
    content: '';
    background: #dbeafe;
}

.process__item {
    position: relative;
    text-align: center;
}

.process__number {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin: 0 auto 1.15rem;
    color: #fff;
    background: var(--primary);
    border: 6px solid #eff6ff;
    border-radius: 50%;
    font-size: .82rem;
    font-weight: 800;
}

.process h3,
.information-card h3,
.feature-card h3,
.role-card h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 750;
}

.process p,
.information-card p,
.feature-card p,
.role-card p {
    margin: .55rem 0 0;
    color: var(--muted);
    font-size: .86rem;
    line-height: 1.65;
}

.information-card {
    max-width: 840px;
    margin: 3.5rem auto 0;
    border: 1px solid var(--line);
    border-radius: .6rem;
    background: #fff;
    box-shadow: 0 4px 18px rgba(15, 23, 42, .06);
}

.information-card__header {
    min-height: 48px;
    padding: .7rem 1rem;
    display: flex;
    align-items: center;
    gap: .65rem;
    background: var(--header-gray);
    border-radius: .6rem .6rem 0 0;
}

.information-card__header i {
    color: var(--primary);
}

.information-card__header .badge {
    margin-left: auto;
    padding: .2rem .65rem;
    color: #fff;
    background: var(--primary);
    border-radius: 99px;
    font-size: .68rem;
    font-weight: 700;
}

.information-card > p {
    margin: 0;
    padding: 1.15rem 1.25rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.feature-card {
    min-height: 250px;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: .65rem;
    box-shadow: 0 4px 18px rgba(15, 23, 42, .045);
    transition: transform .2s ease, box-shadow .2s ease;
}

.feature-card:nth-child(1) { border-top: 3px solid #1565c0; }
.feature-card:nth-child(2) { border-top: 3px solid #16a34a; }
.feature-card:nth-child(3) { border-top: 3px solid #7c3aed; }
.feature-card:nth-child(4) { border-top: 3px solid #dc2626; }
.feature-card:nth-child(5) { border-top: 3px solid #d97706; }
.feature-card:nth-child(6) { border-top: 3px solid #475569; }

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.feature-card__icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 1.15rem;
    border-radius: .55rem;
    font-size: 1.1rem;
}

.feature-card__icon--blue {
    color: #1565c0;
    background: #e3f2fd;
}

.feature-card__icon--green {
    color: #15803d;
    background: #dcfce7;
}

.feature-card__icon--violet {
    color: #6d28d9;
    background: #ede9fe;
}

.feature-card__icon--red {
    color: #dc2626;
    background: #fee2e2;
}

.feature-card__icon--amber {
    color: #b45309;
    background: #fef3c7;
}

.feature-card__icon--slate {
    color: #475569;
    background: #e2e8f0;
}

.role-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.role-card {
    padding: 1.6rem;
    border: 1px solid #dbe3ee;
    border-radius: .65rem;
    box-shadow: 0 4px 18px rgba(15, 23, 42, .05);
}

.role-card--featured {
    border-top: 3px solid var(--primary);
}

.role-card__header {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.role-card__icon {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: var(--primary);
    background: #eff6ff;
    border-radius: 50%;
}

.role-card__label {
    display: block;
    color: #9ca3af;
    font-size: .65rem;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.development {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    align-items: center;
    gap: 5rem;
}

.development__content > p {
    margin: 1.2rem 0 0;
    color: var(--muted);
}

.development__facts {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: .65rem;
    box-shadow: var(--shadow);
}

.development__facts > div {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem;
    border-bottom: 1px solid var(--line);
}

.development__facts > div:last-child {
    border-bottom: 0;
}

.development__facts i {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: var(--primary);
    background: #eff6ff;
    border-radius: .45rem;
}

.development__facts span {
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.45;
}

.development__facts strong {
    display: block;
    color: var(--ink);
    font-size: .88rem;
}

.contact {
    color: #fff;
    background: linear-gradient(120deg, var(--primary-dark), var(--primary));
}

.contact__inner {
    padding-block: 4.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.contact__eyebrow {
    color: #bfdbfe;
}

.contact h2 {
    color: #fff;
}

.contact p {
    margin: .8rem 0 0;
    color: rgba(255, 255, 255, .8);
}

.contact__links {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: .65rem;
    background: rgba(255, 255, 255, .08);
}

.contact__links > a,
.contact__links > div {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    text-decoration: none;
}

.contact__links > :last-child {
    border-bottom: 0;
}

.contact__links i {
    width: 18px;
    color: #bfdbfe;
    text-align: center;
}

.contact__links span {
    font-size: .9rem;
    font-weight: 650;
}

.contact__links small {
    display: block;
    color: rgba(255, 255, 255, .65);
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.site-footer {
    color: #94a3b8;
    background: #111827;
}

.site-footer__inner {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    font-size: .75rem;
}

.site-footer img {
    width: auto;
    max-width: 130px;
    max-height: 38px;
    filter: grayscale(1) brightness(0) invert(1);
    opacity: .85;
}

.site-footer a {
    color: #bfdbfe;
    text-decoration: none;
}

@media (max-width: 900px) {
    .site-header__inner {
        padding-block: .75rem;
        align-items: flex-start;
    }

    .site-nav {
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: .5rem 1rem;
    }

    .hero__inner {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .product-showcase {
        width: min(690px, 100%);
        margin-inline: auto;
    }

    .mobile-callout {
        right: 0;
    }

    .audience__inner {
        grid-template-columns: repeat(3, 1fr);
    }

    .audience__inner > strong {
        grid-column: 1 / -1;
    }

    .feature-grid,
    .role-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .development,
    .contact__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 640px) {
    html {
        scroll-padding-top: 125px;
    }

    .site-header__inner,
    .section,
    .hero__inner,
    .contact__inner,
    .site-footer__inner {
        width: min(100% - 2rem, 1100px);
    }

    .site-header__inner {
        align-items: center;
        flex-direction: column;
        gap: .65rem;
    }

    .brand img {
        height: 36px;
    }

    .site-nav {
        width: 100%;
        justify-content: center;
        gap: .3rem .85rem;
    }

    .site-nav a {
        font-size: .75rem;
    }

    .site-nav a:nth-child(4) {
        display: none;
    }

    .site-nav__login {
        display: none !important;
    }

    .site-nav__contact {
        padding: .25rem .6rem;
    }

    .hero__inner,
    .section,
    .contact__inner {
        padding-block: 4rem;
    }

    .hero h1 {
        font-size: 2.45rem;
    }

    .product-showcase {
        min-height: 420px;
        padding-top: 3.5rem;
    }

    .product-note {
        left: 0;
        width: min(285px, 85%);
    }

    .product-window {
        border-width: 6px;
        border-bottom-width: 10px;
    }

    .product-window__body {
        height: 285px;
        grid-template-columns: 72px 1fr;
    }

    .product-sidebar span {
        justify-content: center;
        font-size: 0;
    }

    .product-sidebar i {
        font-size: .7rem;
    }

    .product-map {
        height: 190px;
    }

    .mobile-preview {
        right: -7px;
        bottom: -1rem;
        width: 130px;
    }

    .mobile-preview__map {
        height: 70px;
    }

    .mobile-callout {
        display: none;
    }

    .audience {
        padding-inline: 1rem;
    }

    .audience__inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .audience__inner span {
        white-space: normal;
    }

    .hero__actions,
    .hero__actions .button {
        width: 100%;
    }

    .process,
    .feature-grid,
    .role-grid {
        grid-template-columns: 1fr;
    }

    .process {
        gap: 1.5rem;
    }

    .process::before {
        display: none;
    }

    .process__item {
        display: grid;
        grid-template-columns: 44px 1fr;
        gap: .9rem;
        text-align: left;
    }

    .process__number {
        width: 44px;
        height: 44px;
        margin: 0;
        border-width: 5px;
    }

    .section__heading {
        margin-bottom: 2.25rem;
        text-align: left;
    }

    .feature-card {
        min-height: auto;
    }

    .information-card__header {
        align-items: flex-start;
    }

    .information-card__header .badge {
        display: none;
    }

    .site-footer__inner {
        padding-block: 1.5rem;
        flex-direction: column;
        gap: .75rem;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
