:root {
    --blue: #2563ff;
    --blue-dark: #1d4ed8;
    --blue-light: #eff5ff;

    --navy: #0d1b2a;
    --navy-light: #152944;

    --text: #172033;
    --text-soft: #667085;

    --white: #ffffff;
    --background: #ffffff;
    --background-soft: #f7f9fc;

    --border: #e5e9f0;

    --success: #16a36a;

    --shadow:
        0 20px 50px rgba(13, 27, 42, 0.08);

    --radius-small: 10px;
    --radius: 18px;
    --radius-large: 28px;

    --container: 1180px;
}


/* ---------------------------------------------------------
   Reset
--------------------------------------------------------- */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        Inter,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    color: var(--text);
    background: var(--background);

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
}

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

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

img {
    max-width: 100%;
}


/* ---------------------------------------------------------
   Accessibility
--------------------------------------------------------- */

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;

    padding: 11px 16px;

    color: var(--white);
    background: var(--navy);

    border-radius: 10px;

    font-size: 13px;
    font-weight: 700;

    transform: translateY(-160%);

    transition:
        transform 0.18s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid #7aa2ff;
    outline-offset: 3px;
}

.button-disabled {
    cursor: default;
    pointer-events: none;
}

.button-disabled:hover {
    transform: none;
}


/* ---------------------------------------------------------
   Layout
--------------------------------------------------------- */

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

.section {
    padding: 110px 0;
}

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


/* ---------------------------------------------------------
   Header
--------------------------------------------------------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;

    background: rgba(255, 255, 255, 0.94);

    border-bottom: 1px solid rgba(229, 233, 240, 0.8);

    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;

    gap: 11px;

    flex-shrink: 0;
}

.brand-icon-image,
.footer-icon-image {
    display: block;

    width: 43px;
    height: 43px;

    flex: 0 0 43px;

    border-radius: 12px;

    object-fit: cover;

    box-shadow:
        0 8px 20px rgba(37, 99, 255, 0.22);
}

.footer-icon-image {
    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.25);
}

.footer-shop {
    color: var(--white);
}

.brand-name {
    font-size: 23px;
    font-weight: 750;

    letter-spacing: -0.7px;
}

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

.brand-blue {
    color: var(--blue);
}

.main-navigation {
    display: flex;
    align-items: center;

    gap: 30px;

    margin-left: auto;
}

.main-navigation a {
    color: #4b5565;

    font-size: 14px;
    font-weight: 600;

    transition:
        color 0.2s ease;
}

.main-navigation a:hover {
    color: var(--blue);
}

.header-actions {
    display: flex;
    align-items: center;

    gap: 14px;

    flex-shrink: 0;
}


/* ---------------------------------------------------------
   Language Switcher
--------------------------------------------------------- */

.language-switcher {
    position: relative;
}

.language-switcher-toggle {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 11px;
    color: #596273;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #f8faff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 750;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.language-switcher-toggle:hover,
.language-switcher.open .language-switcher-toggle {
    color: var(--blue);
    border-color: #cbd9ff;
    background: var(--white);
    box-shadow: 0 8px 22px rgba(13, 27, 42, 0.08);
}

.language-switcher-toggle:focus-visible {
    outline: 3px solid rgba(37, 99, 255, 0.18);
    outline-offset: 2px;
}

.language-switcher-globe {
    font-size: 16px;
    line-height: 1;
}

.language-switcher-code {
    min-width: 20px;
    text-align: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.4px;
}

.language-switcher-chevron {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.language-switcher.open .language-switcher-chevron {
    transform: rotate(180deg);
}

.language-switcher-menu {
    position: absolute;
    z-index: 150;
    top: calc(100% + 10px);
    right: 0;
    width: 210px;
    padding: 7px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 18px 45px rgba(13, 27, 42, 0.14);
}

.language-switcher-menu[hidden] {
    display: none;
}

.language-switcher-option {
    min-height: 38px;
    display: grid;
    grid-template-columns: 20px 32px minmax(0, 1fr);
    align-items: center;
    gap: 7px;
    padding: 0 9px;
    border-radius: 9px;
    color: #596273;
    font-size: 12px;
    transition: color 0.2s ease, background 0.2s ease;
}

.language-switcher-option:hover,
.language-switcher-option:focus-visible {
    color: var(--blue);
    background: #f3f7ff;
    outline: none;
}

.language-switcher-option.active {
    color: var(--blue);
    background: var(--blue-light);
}

.language-switcher-check {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
}

.language-switcher-option-code {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.4px;
}

.language-switcher-option-name {
    font-weight: 650;
}


/* ---------------------------------------------------------
   Buttons
--------------------------------------------------------- */

.button {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 24px;

    border: 1px solid transparent;
    border-radius: 11px;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

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

.button-small {
    min-height: 42px;
    padding: 0 19px;
}

.button-primary {
    color: var(--white);
    background: var(--blue);

    box-shadow:
        0 10px 25px rgba(37, 99, 255, 0.22);
}

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

    box-shadow:
        0 14px 30px rgba(37, 99, 255, 0.28);
}

.button-secondary {
    color: var(--navy);

    background: var(--white);

    border-color: var(--border);
}

.button-secondary:hover {
    border-color: #cfd6e1;

    box-shadow:
        0 10px 25px rgba(13, 27, 42, 0.07);
}

.button-outline {
    color: var(--blue);

    border-color: #cbd9ff;

    background: #f7faff;
}

.button-light {
    color: var(--blue);
    background: var(--white);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.12);
}

.full-width {
    width: 100%;
}


/* ---------------------------------------------------------
   Hero
--------------------------------------------------------- */

.hero {
    position: relative;

    overflow: hidden;

    padding: 70px 0 65px;

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(37, 99, 255, 0.09),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbfcff 100%
        );
}

.hero::before {
    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    right: -250px;
    top: -300px;

    border-radius: 50%;

    background:
        rgba(37, 99, 255, 0.04);
}

.hero-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(430px, 0.92fr);

    align-items: center;

    gap: 80px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;

    margin-bottom: 18px;

    color: var(--blue);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}

.eyebrow {
    margin-bottom: 14px;

    padding: 7px 12px;

    border-radius: 50px;

    background: var(--blue-light);
}

.hero h1 {
    max-width: 720px;

    margin: 0 0 20px;

    color: var(--navy);

    font-size: clamp(48px, 5.3vw, 76px);
    font-weight: 800;

    line-height: 1.03;
    letter-spacing: -3.2px;
}

.hero h1 span {
    color: var(--blue);
}

.hero-lead {
    max-width: 620px;

    margin: 0;

    color: var(--text-soft);

    font-size: 18px;

    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 13px;

    margin-top: 26px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;

    gap: 18px;

    margin-top: 18px;

    color: #596273;

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

.hero-points span {
    display: inline-flex;
    align-items: center;

    white-space: nowrap;
}


/* ---------------------------------------------------------
   Hero Dashboard
--------------------------------------------------------- */

.hero-visual {
    position: relative;
}

.visual-glow {
    position: absolute;

    width: 360px;
    height: 360px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:
        rgba(37, 99, 255, 0.12);

    filter: blur(70px);
}

.dashboard-card {
    position: relative;

    padding: 26px;

    border: 1px solid #e1e8f4;
    border-radius: var(--radius-large);

    background:
        rgba(255, 255, 255, 0.94);

    box-shadow:
        0 30px 80px rgba(13, 27, 42, 0.13);

    transform: rotate(1deg);
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 22px;

    border-bottom: 1px solid var(--border);
}

.dashboard-header > div {
    display: flex;
    flex-direction: column;
}

.dashboard-label {
    color: var(--blue);

    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.2px;
}

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

    font-size: 18px;
}

.status-badge {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    padding: 7px 10px;

    color: #177b55;

    border-radius: 30px;

    background: #eaf8f2;

    font-size: 11px;
    font-weight: 700;
}

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

    border-radius: 50%;

    background: var(--success);
}

.sync-center {
    min-height: 220px;

    display: grid;

    grid-template-columns:
        1fr
        1.1fr
        1fr;

    align-items: center;

    gap: 12px;
}

.platform {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 9px;

    color: #495466;

    font-size: 12px;
    font-weight: 700;
}

.platform-symbol {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--border);
    border-radius: 18px;

    background: var(--white);

    color: var(--blue);

    font-size: 25px;
    font-weight: 800;

    box-shadow:
        0 8px 20px rgba(13, 27, 42, 0.07);
}

.sync-lines {
    position: relative;

    height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.sync-lines > span {
    position: absolute;

    left: 0;
    right: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #9eb8ff,
            transparent
        );
}

.sync-lines > span:nth-child(1) {
    top: 35px;
}

.sync-lines > span:nth-child(2) {
    top: 50px;
}

.sync-lines > span:nth-child(3) {
    top: 65px;
}

.sync-logo {
    position: relative;
    z-index: 2;

    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #318bff,
            #1555ec
        );

    box-shadow:
        0 12px 30px rgba(37, 99, 255, 0.3);
}

.sync-logo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.dashboard-stats {
    display: grid;

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

    gap: 10px;
}

.stat-card {
    padding: 15px;

    border: 1px solid var(--border);
    border-radius: 13px;

    background: #fbfcfe;
}

.stat-card span,
.stat-card small {
    display: block;

    color: #7b8493;

    font-size: 9px;
}

.stat-card strong {
    display: block;

    margin: 3px 0;

    color: var(--navy);

    font-size: 19px;
}


/* ---------------------------------------------------------
   Trust Strip
--------------------------------------------------------- */

.trust-strip {
    padding: 34px 0;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    background: var(--white);
}

.trust-strip p {
    margin: 0 0 20px;

    color: #667085;

    text-align: center;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}

.platform-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;

    gap: 35px;
}

.platform-list span {
    color: #4e5869;

    font-size: 15px;
    font-weight: 750;
}


/* ---------------------------------------------------------
   Section headings
--------------------------------------------------------- */

.section-heading {
    max-width: 650px;

    margin-bottom: 55px;
}

.section-heading.centered {
    margin-right: auto;
    margin-left: auto;

    text-align: center;
}

.section-heading h2,
.security-section h2,
.cta-section h2 {
    margin: 0 0 18px;

    color: var(--navy);

    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;

    line-height: 1.1;
    letter-spacing: -2px;
}

.section-heading p {
    margin: 0;

    color: var(--text-soft);

    font-size: 17px;
}


/* ---------------------------------------------------------
   Features
--------------------------------------------------------- */

.feature-grid {
    display: grid;

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

    gap: 18px;
}

.feature-card {
    min-height: 265px;

    padding: 30px;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    background: var(--white);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-5px);

    border-color: #ced9f3;

    box-shadow: var(--shadow);
}

.feature-card-highlight {
    background:
        linear-gradient(
            145deg,
            #f8fbff,
            #eef4ff
        );

    border-color: #d8e4ff;
}

.feature-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    color: var(--blue);

    border-radius: 13px;

    background: var(--blue-light);

    font-size: 22px;
    font-weight: 800;
}

.feature-card h3 {
    margin: 0 0 12px;

    color: var(--navy);

    font-size: 18px;
}

.feature-card p {
    margin: 0;

    color: var(--text-soft);

    font-size: 14px;

    line-height: 1.75;
}


/* ---------------------------------------------------------
   Platform Showcase
--------------------------------------------------------- */

.platform-plan-groups {
    display: grid;

    gap: 34px;
}

.platform-plan-group {
    padding: 30px;

    border: 1px solid var(--border);
    border-radius: var(--radius-large);

    background: rgba(255, 255, 255, 0.62);
}

.platform-plan-pro {
    border-color: #d6e2ff;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.82),
            rgba(239, 245, 255, 0.82)
        );
}

.platform-plan-premium {
    border-color: #d9def0;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.9),
            rgba(245, 246, 252, 0.9)
        );
}

.platform-plan-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 8px;
}

.platform-plan-label {
    display: block;

    margin-bottom: 4px;

    color: var(--blue);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.platform-plan-heading h3 {
    margin: 0;

    color: var(--navy);

    font-size: 27px;
    font-weight: 800;

    letter-spacing: -0.8px;
}

.platform-plan-count {
    display: inline-flex;
    align-items: center;

    min-height: 32px;

    padding: 0 12px;

    color: var(--blue);

    border: 1px solid #cbd9ff;
    border-radius: 30px;

    background: var(--white);

    font-size: 11px;
    font-weight: 800;

    white-space: nowrap;
}

.platform-plan-intro {
    max-width: 780px;

    margin: 0 0 24px;

    color: var(--text-soft);

    font-size: 14px;

    line-height: 1.7;
}

.platform-showcase {
    display: grid;

    gap: 18px;
}

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

.platform-showcase-pro {
    grid-template-columns:
        repeat(3, 1fr);
}

.platform-showcase-premium {
    grid-template-columns:
        repeat(3, 1fr);
}

.platform-showcase-card {
    position: relative;

    min-height: 250px;

    display: flex;
    flex-direction: column;

    padding: 26px;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: var(--radius-large);

    background: var(--white);

    box-shadow:
        0 12px 34px rgba(13, 27, 42, 0.045);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.platform-showcase-card:hover {
    transform: translateY(-5px);

    border-color: #cfd9eb;

    box-shadow:
        0 22px 50px rgba(13, 27, 42, 0.09);
}

.platform-shopify-card {
    border-color: #bcd0ff;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(37, 99, 255, 0.1),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #ffffff,
            #f3f7ff
        );

    box-shadow:
        0 18px 45px rgba(37, 99, 255, 0.09);
}

.platform-showcase-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 18px;
}

.platform-brand-mark {
    height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 15px;

    background: var(--white);

    box-shadow:
        0 8px 20px rgba(13, 27, 42, 0.07);
}

.platform-brand-logo {
    display: block;

    max-width: 100%;
    max-height: 100%;

    object-fit: contain;
}

.shopify-mark {
    width: 110px;

    flex-basis: 110px;

    padding: 12px;

    border-color: #dcebcf;
}

.platform-brand-logo-shopify {
    width: 86px;
    height: auto;
}

.amazon-mark {
    width: 110px;

    flex-basis: 110px;

    padding: 11px 14px;

    border-color: #f0e3c6;
}

.platform-brand-logo-amazon {
    width: 82px;
    height: auto;
}

.ebay-mark {
    width: 110px;

    flex-basis: 110px;

    padding: 10px 12px;

    border-color: #f3d7d8;
}

.platform-brand-logo-ebay {
    width: 86px;
    height: auto;
}

.etsy-mark {
    width: 110px;

    flex-basis: 110px;

    padding: 8px 12px;

    border-color: #f5ddcf;
}

.platform-brand-logo-etsy {
    width: 84px;
    height: auto;
}

.facebook-mark {
    width: 72px;

    flex-basis: 72px;

    padding: 8px;

    border-color: #d9e5ff;
}

.platform-brand-logo-facebook {
    width: 38px;
    height: 38px;

    object-fit: contain;
}

.instagram-mark {
    width: 72px;

    flex-basis: 72px;

    padding: 8px;

    border-color: #f0d8e8;
}

.platform-brand-logo-instagram {
    width: 38px;
    height: 38px;

    object-fit: contain;
}

.pinterest-mark {
    width: 72px;

    flex-basis: 72px;

    padding: 8px;

    border-color: #f3d5d9;
}

.platform-brand-logo-pinterest {
    width: 38px;
    height: 38px;

    object-fit: contain;
}

.allegro-mark {
    width: 110px;

    flex-basis: 110px;

    padding: 9px 12px;

    border-color: #f4d8cf;
}

.platform-brand-logo-allegro {
    width: 96px;
    height: auto;

    object-fit: contain;
}

.otto-mark {
    width: 110px;

    flex-basis: 110px;

    padding: 9px 12px;

    border-color: #f1d4da;
}

.platform-brand-logo-otto {
    width: 94px;
    height: auto;

    object-fit: contain;
}

.kaufland-mark {
    width: 110px;

    flex-basis: 110px;

    padding: 9px 12px;

    border-color: #f0d4d4;
}

.platform-brand-logo-kaufland {
    width: 96px;
    height: auto;

    object-fit: contain;
}

.platform-status {
    display: inline-flex;
    align-items: center;

    min-height: 28px;

    padding: 0 10px;

    border-radius: 30px;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.4px;

    white-space: nowrap;
}

.status-development {
    color: #166534;

    background: #eaf8ef;

    border: 1px solid #d3eedb;
}

.status-planned {
    color: #3158b5;

    background: #eef3ff;

    border: 1px solid #d8e3ff;
}

.status-later {
    color: #667085;

    background: #f2f4f7;

    border: 1px solid #e4e7ec;
}

.platform-start-label {
    display: inline-flex;

    width: fit-content;

    margin-bottom: 6px;

    color: var(--blue);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}

.platform-showcase-card h3 {
    margin: 10px 0 8px;

    color: var(--navy);

    font-size: 23px;
    font-weight: 800;

    letter-spacing: -0.7px;
}

.platform-shopify-card h3 {
    margin-top: 4px;
}

.platform-showcase-card p {
    margin: 0;

    color: var(--text-soft);

    font-size: 13px;

    line-height: 1.7;
}


/* ---------------------------------------------------------
   Pricing Transparency
--------------------------------------------------------- */

.pricing-transparency {
    display: grid;

    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 22px;

    margin: -12px 0 55px;

    padding: 26px 30px;

    border: 1px solid #d6e2ff;
    border-radius: var(--radius);

    background:
        linear-gradient(
            135deg,
            #f8fbff,
            #eef4ff
        );

    box-shadow:
        0 14px 36px rgba(37, 99, 255, 0.07);
}

.pricing-transparency-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: var(--white);

    border-radius: 15px;

    background: var(--blue);

    font-size: 22px;
    font-weight: 800;

    box-shadow:
        0 9px 22px rgba(37, 99, 255, 0.22);
}

.pricing-transparency-label {
    display: block;

    margin-bottom: 2px;

    color: var(--blue);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}

.pricing-transparency h3 {
    margin: 0 0 5px;

    color: var(--navy);

    font-size: 22px;
    font-weight: 800;

    letter-spacing: -0.5px;
}

.pricing-transparency p {
    max-width: 700px;

    margin: 0;

    color: var(--text-soft);

    font-size: 13px;

    line-height: 1.7;
}

.pricing-trial-badge {
    min-width: 215px;

    padding: 15px 18px;

    border: 1px solid #cbd9ff;
    border-radius: 14px;

    background: var(--white);

    text-align: center;

    box-shadow:
        0 8px 22px rgba(13, 27, 42, 0.05);
}

.pricing-trial-badge strong,
.pricing-trial-badge span {
    display: block;
}

.pricing-trial-badge strong {
    color: var(--blue);

    font-size: 14px;
    font-weight: 800;
}

.pricing-trial-badge span {
    margin-top: 3px;

    color: var(--text-soft);

    font-size: 10px;

    line-height: 1.4;
}


/* ---------------------------------------------------------
   Pricing
--------------------------------------------------------- */

.pricing-grid {
    display: grid;

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

    align-items: stretch;

    gap: 20px;
}

.pricing-card {
    position: relative;

    display: flex;
    flex-direction: column;

    padding: 34px;

    border: 1px solid var(--border);
    border-radius: var(--radius-large);

    background: var(--white);

    box-shadow:
        0 12px 35px rgba(13, 27, 42, 0.05);
}

.pricing-featured {
    border: 2px solid var(--blue);

    box-shadow:
        0 25px 60px rgba(37, 99, 255, 0.13);

    transform: translateY(-10px);
}

.popular-badge {
    position: absolute;

    top: -13px;
    left: 50%;

    transform: translateX(-50%);

    padding: 5px 13px;

    color: var(--white);

    border-radius: 30px;

    background: var(--blue);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;
}

.plan-label {
    color: var(--blue);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.pricing-card h3 {
    margin: 5px 0 18px;

    color: var(--navy);

    font-size: 27px;
}

.plan-price {
    display: flex;
    align-items: baseline;

    gap: 8px;

    margin: -4px 0 18px;
}

.plan-price strong {
    color: var(--navy);

    font-size: 38px;
    font-weight: 800;

    line-height: 1;

    letter-spacing: -1.5px;
}

.plan-price span {
    color: var(--text-soft);

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

.platform-count {
    display: flex;
    align-items: baseline;

    gap: 8px;

    padding-bottom: 18px;

    border-bottom: 1px solid var(--border);
}

.platform-count strong {
    color: var(--navy);

    font-size: 43px;

    line-height: 1;
}

.platform-count span {
    color: var(--text-soft);

    font-size: 13px;
}

.unlimited-products {
    display: inline-flex;
    align-items: center;

    width: fit-content;

    margin-top: 17px;

    padding: 6px 10px;

    color: #177b55;

    border: 1px solid #d4eee2;
    border-radius: 30px;

    background: #edf9f4;

    font-size: 11px;
    font-weight: 750;
}

.pricing-card ul {
    min-height: 210px;

    margin: 22px 0;

    padding: 0;

    list-style: none;
}

.pricing-card li {
    position: relative;

    margin-bottom: 13px;

    padding-left: 23px;

    color: #596273;

    font-size: 13px;
}

.pricing-card li::before {
    content: "✓";

    position: absolute;

    left: 0;

    color: var(--blue);

    font-weight: 800;
}

.pricing-card .button {
    margin-top: auto;
}

.plan-trial-note {
    margin-top: 11px;

    color: #667085;

    text-align: center;

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


/* ---------------------------------------------------------
   Security
--------------------------------------------------------- */

.security-section {
    color: var(--white);

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(37, 99, 255, 0.35),
            transparent 35%
        ),
        var(--navy);
}

.security-grid {
    display: grid;

    grid-template-columns:
        0.9fr
        1fr;

    align-items: center;

    gap: 90px;
}

.security-section h2 {
    color: var(--white);
}

.security-section p {
    max-width: 520px;

    margin: 0;

    color: #b6c2d1;

    font-size: 16px;
}

.light-kicker {
    color: #76a4ff;
}

.security-points {
    display: grid;

    gap: 12px;
}

.security-point {
    display: grid;

    grid-template-columns:
        auto
        minmax(0, 1fr);

    align-items: center;

    gap: 16px;

    padding: 22px 24px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.045);
}

.security-icon {
    width: 46px;
    height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #3f7cff;

    border: 1px solid rgba(63, 124, 255, 0.35);
    border-radius: 13px;

    background: rgba(37, 99, 255, 0.08);
}

.security-icon svg {
    display: block;

    width: 28px;
    height: 28px;

    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.security-point-content {
    min-width: 0;
}

.security-point-content strong,
.security-point-content > span {
    display: block;
}

.security-point-content strong {
    margin-bottom: 4px;

    font-size: 15px;
}

.security-point-content > span {
    color: #aeb9c8;

    font-size: 13px;
}


/* ---------------------------------------------------------
   Legal Pages
--------------------------------------------------------- */

.legal-page {
    min-height: 100vh;

    background:
        linear-gradient(
            180deg,
            #f8faff 0%,
            #ffffff 260px
        );
}

.legal-header .header-inner {
    min-height: 78px;
}

.legal-back-link {
    color: #4b5565;

    font-size: 13px;
    font-weight: 700;
}

.legal-back-link:hover {
    color: var(--blue);
}

.legal-main {
    padding: 72px 0 100px;
}

.legal-hero {
    max-width: 820px;

    margin-bottom: 34px;
}

.legal-hero .section-kicker {
    margin-bottom: 12px;
}

.legal-hero h1 {
    margin: 0 0 16px;

    color: var(--navy);

    font-size: clamp(40px, 5vw, 60px);
    font-weight: 800;

    line-height: 1.05;
    letter-spacing: -2.4px;
}

.legal-hero p {
    margin: 0;

    color: var(--text-soft);

    font-size: 15px;

    line-height: 1.75;
}

.legal-content {
    max-width: 900px;

    padding: 38px 42px;

    border: 1px solid var(--border);
    border-radius: var(--radius-large);

    background: var(--white);

    box-shadow:
        0 18px 50px rgba(13, 27, 42, 0.07);
}

.legal-content section + section {
    margin-top: 34px;

    padding-top: 30px;

    border-top: 1px solid var(--border);
}

.legal-content h2 {
    margin: 0 0 12px;

    color: var(--navy);

    font-size: 22px;
    font-weight: 800;

    letter-spacing: -0.5px;
}

.legal-content h3 {
    margin: 22px 0 8px;

    color: var(--navy);

    font-size: 16px;
    font-weight: 750;
}

.legal-content p,
.legal-content li {
    color: #596273;

    font-size: 14px;

    line-height: 1.8;
}

.legal-content p {
    margin: 0 0 12px;
}

.legal-content ul {
    margin: 10px 0 14px;

    padding-left: 22px;
}

.legal-content a {
    color: var(--blue);

    text-decoration: underline;

    text-underline-offset: 3px;
}

.legal-content strong {
    color: var(--navy);
}

.legal-note {
    margin-top: 28px;

    padding: 18px 20px;

    border: 1px solid #d6e2ff;
    border-radius: 14px;

    background: #f6f9ff;

    color: #52627a;

    font-size: 12px;

    line-height: 1.7;
}

.legal-footer {
    margin-top: 60px;

    padding-top: 24px;

    border-top: 1px solid var(--border);

    color: #7b8493;

    font-size: 12px;
}

.legal-footer-links {
    display: flex;
    flex-wrap: wrap;

    gap: 18px;

    margin-top: 10px;
}

.legal-footer-links a:hover {
    color: var(--blue);
}

@media (max-width: 760px) {

    .legal-main {
        padding: 52px 0 75px;
    }

    .legal-content {
        padding: 28px 24px;
    }

    .legal-header .header-actions > .button {
        display: none;
    }

    .legal-back-link {
        display: none;
    }

}


/* ---------------------------------------------------------
   FAQ
--------------------------------------------------------- */

.faq-grid {
    max-width: 900px;

    display: grid;

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

    gap: 15px;

    margin: 0 auto;
}

.faq-grid article {
    padding: 25px;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    background: var(--white);
}

.faq-grid h3 {
    margin: 0 0 9px;

    color: var(--navy);

    font-size: 16px;
}

.faq-grid p {
    margin: 0;

    color: var(--text-soft);

    font-size: 13px;
}


/* ---------------------------------------------------------
   Contact
--------------------------------------------------------- */

.contact-section {
    min-height: 760px;

    background:
        radial-gradient(
            circle at 85% 12%,
            rgba(37, 99, 255, 0.08),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #f8faff 0%,
            #ffffff 420px
        );
}

.contact-section .section-heading {
    max-width: 760px;
}

.contact-section .section-heading h1 {
    margin: 0 0 18px;

    color: var(--navy);

    font-size: clamp(40px, 4.8vw, 58px);
    font-weight: 800;

    line-height: 1.08;
    letter-spacing: -2.4px;
}

.contact-layout {
    max-width: 1040px;

    display: grid;

    grid-template-columns:
        minmax(0, 0.82fr)
        minmax(0, 1.18fr);

    align-items: start;

    gap: 34px;

    margin: 0 auto;
}

.contact-info {
    padding: 34px;

    border: 1px solid #dbe5f7;
    border-radius: var(--radius-large);

    background:
        linear-gradient(
            145deg,
            #f8fbff,
            #eef4ff
        );

    box-shadow:
        0 18px 45px rgba(37, 99, 255, 0.07);
}

.contact-info h2 {
    margin: 0 0 12px;

    color: var(--navy);

    font-size: 27px;
    font-weight: 800;

    letter-spacing: -0.8px;
}

.contact-info > p {
    margin: 0 0 28px;

    color: var(--text-soft);

    font-size: 14px;

    line-height: 1.75;
}

.contact-info-point {
    padding: 20px 0;

    border-top: 1px solid rgba(37, 99, 255, 0.12);
}

.contact-info-point strong,
.contact-info-point span {
    display: block;
}

.contact-info-point strong {
    margin-bottom: 5px;

    color: var(--navy);

    font-size: 14px;
    font-weight: 800;
}

.contact-info-point span {
    color: var(--text-soft);

    font-size: 13px;

    line-height: 1.7;
}

.contact-form-card {
    padding: 36px;

    border: 1px solid var(--border);
    border-radius: var(--radius-large);

    background: var(--white);

    box-shadow:
        0 22px 55px rgba(13, 27, 42, 0.08);
}

.contact-form {
    display: grid;

    gap: 20px;
}

.form-field {
    display: grid;

    gap: 8px;
}

.form-field label {
    color: var(--navy);

    font-size: 13px;
    font-weight: 750;
}

.form-field input,
.form-field textarea {
    width: 100%;

    border: 1px solid #d7deea;
    border-radius: 11px;

    background: #fbfcfe;

    color: var(--text);

    font-size: 14px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.form-field input {
    min-height: 50px;

    padding: 0 15px;
}

.form-field textarea {
    min-height: 190px;

    padding: 14px 15px;

    line-height: 1.65;

    resize: vertical;
}

.form-field input:hover,
.form-field textarea:hover {
    border-color: #bdc8d9;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;

    border-color: #7da2ff;

    background: var(--white);

    box-shadow:
        0 0 0 4px rgba(37, 99, 255, 0.09);
}

.contact-form .button {
    cursor: pointer;
}

.contact-form .button-primary {
    display: inline-flex;
    width: fit-content;
    min-height: 42px;
    padding: 0 28px;
    align-self: start;
}

.contact-privacy-note {
    margin: -3px 0 2px;

    color: #778196;

    font-size: 11px;

    line-height: 1.65;
}

.contact-privacy-link {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-privacy-link:hover {
    color: var(--blue-dark);
}

.contact-message {
    margin-bottom: 22px;

    padding: 16px 18px;

    border-radius: 12px;

    font-size: 13px;

    line-height: 1.6;
}

.contact-message-success {
    color: #126b49;

    border: 1px solid #cde9dc;

    background: #edf9f4;
}

.contact-message-error {
    color: #9a3412;

    border: 1px solid #fed7aa;

    background: #fff7ed;
}

.contact-message-error strong {
    display: block;

    margin-bottom: 7px;

    color: #7c2d12;
}

.contact-message-error ul {
    margin: 0;

    padding-left: 20px;
}

.contact-message-error li + li {
    margin-top: 4px;
}

.contact-privacy-consent input[type="checkbox"],
.form-field input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-height: 16px;
    padding: 0;
}

.contact-honeypot {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;

    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;

    white-space: nowrap !important;

    opacity: 0 !important;

    pointer-events: none !important;
}


/* ---------------------------------------------------------
   CTA
--------------------------------------------------------- */

.cta-section {
    padding: 80px 0;

    background:
        linear-gradient(
            135deg,
            #1557ed,
            #2876ff
        );
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.cta-section h2 {
    margin-bottom: 10px;

    color: var(--white);
}

.cta-section p {
    margin: 0;

    color: #dce8ff;

    font-size: 16px;
}


/* ---------------------------------------------------------
   Footer
--------------------------------------------------------- */

.site-footer {
    padding: 65px 0 25px;

    color: #aeb8c7;

    background: #081321;
}

.footer-main {
    display: grid;

    grid-template-columns:
        1fr
        1.5fr;

    gap: 80px;

    padding-bottom: 55px;
}

.footer-logo .brand-name {
    color: var(--white);

    font-size: 25px;
}

.footer-brand p {
    margin: 8px 0 0;

    color: #98a2b3;

    font-size: 12px;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.footer-links {
    display: grid;

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

    gap: 30px;
}

.footer-links > div {
    display: flex;
    flex-direction: column;

    gap: 9px;
}

.footer-links strong {
    margin-bottom: 4px;

    color: var(--white);

    font-size: 12px;
}

.footer-links a {
    color: #aeb8c7;

    font-size: 12px;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    gap: 30px;

    padding-top: 22px;

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

    color: #98a2b3;

    font-size: 11px;
}


/* ---------------------------------------------------------
   Responsive
--------------------------------------------------------- */

@media (max-width: 1100px) {

    .header-inner {
        gap: 18px;
    }

    .main-navigation {
        gap: 18px;
    }

    .header-actions {
        gap: 8px;
    }

    .language-switcher a {
        min-width: 28px;

        padding: 0 5px;
    }

}


@media (max-width: 1000px) {

    .main-navigation {
        display: none;
    }

    .hero {
        padding-top: 65px;
    }

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

        gap: 60px;
    }

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

    .hero-visual {
        max-width: 650px;

        margin: 0 auto;

        width: 100%;
    }

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

    .platform-showcase-standard,
    .platform-showcase-pro,
    .platform-showcase-premium {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .pricing-transparency {
        grid-template-columns:
            auto
            minmax(0, 1fr);
    }

    .pricing-trial-badge {
        grid-column: 1 / -1;

        width: 100%;
    }

    .security-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .contact-layout {
        grid-template-columns: 1fr;

        max-width: 760px;
    }

}


@media (max-width: 760px) {

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 68px 0;
    }

    .header-inner {
        min-height: 68px;

        gap: 12px;
    }

    .header-actions > .button {
        display: none;
    }

    .language-switcher {
        padding: 3px;
    }

    .language-switcher a {
        min-width: 27px;
        height: 28px;

        font-size: 10px;
    }

    .hero {
        padding:
            48px 0
            58px;
    }

    .hero-grid {
        gap: 48px;
    }

    .hero h1 {
        margin-bottom: 16px;

        font-size: 47px;

        letter-spacing: -2px;
    }

    .hero-lead {
        font-size: 16px;

        line-height: 1.65;
    }

    .hero-actions {
        flex-direction: column;

        margin-top: 22px;
    }

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

    .hero-points {
        flex-direction: column;

        gap: 8px;

        margin-top: 20px;

        line-height: 1.45;
    }

    .dashboard-card {
        padding: 18px;

        transform: none;
    }

    .sync-center {
        min-height: 190px;
    }

    .platform-symbol {
        width: 50px;
        height: 50px;

        font-size: 20px;
    }

    .sync-logo {
        width: 55px;
        height: 55px;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .section-heading {
        margin-bottom: 42px;
    }

    .feature-grid,
    .pricing-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .platform-plan-group {
        padding: 22px;
    }

    .platform-plan-heading {
        align-items: flex-start;
        flex-direction: column;

        gap: 10px;
    }

    .platform-showcase-standard,
    .platform-showcase-pro,
    .platform-showcase-premium {
        grid-template-columns: 1fr;
    }

    .platform-showcase-card {
        width: 100%;
        min-height: 225px;
    }

    .pricing-transparency {
        grid-template-columns: 1fr;

        margin-bottom: 42px;

        padding: 24px;
    }

    .pricing-transparency-icon {
        width: 44px;
        height: 44px;
    }

    .pricing-trial-badge {
        grid-column: auto;
    }

    .pricing-featured {
        transform: none;
    }

    .security-grid {
        gap: 36px;
    }

    .security-point {
        padding: 18px 18px;
    }

    .contact-section .section-heading h1 {
        font-size: 39px;

        letter-spacing: -1.7px;
    }

    .contact-layout {
        gap: 22px;
    }

    .contact-info,
    .contact-form-card {
        padding: 26px 24px;

        border-radius: var(--radius);
    }

    .contact-info h2 {
        font-size: 23px;
    }

    .form-field textarea {
        min-height: 170px;
    }

    .cta-section {
        padding: 64px 0;
    }

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

        gap: 26px;
    }

    .site-footer {
        padding-top: 52px;
    }

    .footer-main {
        grid-template-columns: 1fr;

        gap: 36px;

        padding-bottom: 40px;
    }

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

    .footer-bottom {
        flex-direction: column;

        gap: 8px;
    }

}


@media (max-width: 520px) {

    .brand-name {
        font-size: 20px;
    }

    .brand-icon-image {
        width: 38px;
        height: 38px;

        flex-basis: 38px;

        border-radius: 10px;
    }

    .header-actions {
        margin-left: auto;
    }

    .contact-info,
    .contact-form-card {
        padding: 22px 18px;
    }

    .contact-form {
        gap: 17px;
    }

}


@media (max-width: 460px) {

    .hero h1 {
        font-size: 39px;
    }

    .eyebrow,
    .section-kicker {
        letter-spacing: 1.45px;
    }

    .brand-name {
        font-size: 18px;
    }

    .language-switcher {
        gap: 0;
    }

    .language-switcher a {
        min-width: 25px;

        padding: 0 4px;
    }

    .hero-points span {
        white-space: normal;
    }

    .platform-showcase-top {
        gap: 10px;
    }

    .platform-status {
        padding: 0 8px;

        font-size: 9px;
    }

    .security-point {
        grid-template-columns:
            42px
            minmax(0, 1fr);

        gap: 13px;
    }

    .security-icon {
        width: 42px;
        height: 42px;
    }

    .security-icon svg {
        width: 24px;
        height: 24px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .sync-center {
        grid-template-columns:
            0.8fr
            1fr
            0.8fr;
    }

    .platform {
        font-size: 9px;
    }

    .contact-section .section-heading h1 {
        font-size: 34px;
    }

    .contact-info-point {
        padding: 17px 0;
    }

}

/*
|--------------------------------------------------------------------------
| Newsletter form
|--------------------------------------------------------------------------
*/

.contact-form .form-field input[type="email"] {
    min-height: 42px;
    height: 42px;
    max-width: 600px;
    padding: 0 14px;
}


.contact-privacy-consent label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form .contact-privacy-consent {
    margin-top: -8px;
}
/*
|--------------------------------------------------------------------------
| Newsletter spacing adjustment
|--------------------------------------------------------------------------
*/

.contact-form .form-field {
    gap: 10px;
}

.contact-privacy-consent {
    margin-top: 4px;
}

/* ---------------------------------------------------------
   App Tour
--------------------------------------------------------- */

.main-navigation a.active {
    color: var(--blue);
}

.app-tour-hero {
    position: relative;
    overflow: hidden;

    padding: 92px 0 84px;

    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(37, 99, 255, 0.13),
            transparent 32%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7faff 100%
        );
}

.app-tour-hero::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -220px;
    top: -280px;

    border-radius: 50%;

    background: rgba(37, 99, 255, 0.045);
}

.app-tour-hero-grid {
    position: relative;
    z-index: 1;

    display: grid;

    grid-template-columns:
        minmax(0, 0.88fr)
        minmax(500px, 1.12fr);

    align-items: center;

    gap: 72px;
}

.app-tour-hero-copy h1 {
    margin: 0 0 22px;

    color: var(--navy);

    font-size: clamp(48px, 5vw, 70px);
    font-weight: 800;

    line-height: 1.03;
    letter-spacing: -3px;
}

.app-tour-hero-copy h1 span {
    color: var(--blue);
}

.app-tour-hero-copy > p {
    max-width: 640px;

    margin: 0;

    color: var(--text-soft);

    font-size: 17px;

    line-height: 1.75;
}

.app-tour-preview-note {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: 20px;

    color: #536174;

    font-size: 12px;
    font-weight: 650;

    line-height: 1.5;
}

.app-tour-preview-note .status-dot {
    flex-shrink: 0;
}

.app-window {
    overflow: hidden;

    border: 1px solid #dce4f0;
    border-radius: 24px;

    background: var(--white);

    box-shadow:
        0 34px 85px rgba(13, 27, 42, 0.16);

    transform: perspective(1200px) rotateY(-4deg) rotateX(1deg);
}

.app-window-topbar {
    min-height: 64px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 20px;

    border-bottom: 1px solid var(--border);

    background: #fbfcff;
}

.app-window-brand {
    display: flex;
    align-items: center;

    gap: 9px;

    color: var(--navy);

    font-size: 13px;
}

.app-window-brand img {
    width: 34px;
    height: 34px;

    border-radius: 9px;
}

.app-window-user {
    width: 30px;
    height: 30px;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #dbe7ff,
            #b9ccff
        );
}

.app-window-body {
    min-height: 390px;

    display: grid;

    grid-template-columns:
        72px
        minmax(0, 1fr);
}

.app-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 18px;

    padding-top: 24px;

    border-right: 1px solid var(--border);

    background: #0f2034;
}

.app-sidebar span {
    width: 30px;
    height: 30px;

    border-radius: 9px;

    background: rgba(255, 255, 255, 0.09);
}

.app-sidebar span.active {
    background: var(--blue);
}

.app-dashboard-preview {
    padding: 28px;
}

.app-preview-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.app-preview-heading > div {
    display: grid;
}

.app-preview-heading small {
    color: var(--blue);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.app-preview-heading strong {
    color: var(--navy);

    font-size: 20px;
}

.app-preview-pill {
    padding: 6px 10px;

    color: #177b55;

    border: 1px solid #d4eee2;
    border-radius: 30px;

    background: #edf9f4;

    font-size: 9px;
    font-weight: 800;
}

.app-preview-stats {
    display: grid;

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

    gap: 12px;

    margin-top: 24px;
}

.app-preview-stats > div {
    padding: 16px;

    border: 1px solid var(--border);
    border-radius: 13px;

    background: #fbfcfe;
}

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

.app-preview-stats small {
    color: #7b8493;

    font-size: 9px;
}

.app-preview-stats strong {
    margin-top: 3px;

    color: var(--navy);

    font-size: 22px;
}

.app-preview-chart {
    height: 190px;

    display: flex;
    align-items: flex-end;

    gap: 12px;

    margin-top: 18px;

    padding: 25px 24px 20px;

    border: 1px solid var(--border);
    border-radius: 15px;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f9fbff
        );
}

.app-preview-chart span {
    flex: 1;

    min-width: 12px;

    border-radius: 7px 7px 3px 3px;

    background:
        linear-gradient(
            180deg,
            #4f83ff,
            #2563ff
        );
}

.app-tour-section {
    padding: 110px 0;

    background: var(--white);
}

.app-tour-flow {
    display: grid;

    gap: 105px;
}

.app-tour-step {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(430px, 1.1fr);

    align-items: center;

    gap: 78px;
}

.app-tour-step-reverse .app-tour-step-content {
    order: 2;
}

.app-tour-step-reverse .app-tour-screen {
    order: 1;
}

.app-tour-step-label {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--blue);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.35px;

    text-transform: uppercase;
}

.app-tour-step-content h2 {
    margin: 0 0 16px;

    color: var(--navy);

    font-size: clamp(32px, 3.2vw, 46px);
    font-weight: 800;

    line-height: 1.08;
    letter-spacing: -1.8px;
}

.app-tour-step-content > p {
    margin: 0;

    color: var(--text-soft);

    font-size: 15px;

    line-height: 1.8;
}

.app-tour-checklist {
    display: grid;

    gap: 10px;

    margin: 24px 0 0;

    padding: 0;

    list-style: none;
}

.app-tour-checklist li {
    position: relative;

    padding-left: 28px;

    color: #4f5b6d;

    font-size: 13px;
    font-weight: 650;
}

.app-tour-checklist li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: -1px;

    width: 19px;
    height: 19px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--blue);

    border-radius: 50%;

    background: var(--blue-light);

    font-size: 11px;
    font-weight: 800;
}

.app-tour-screen {
    overflow: hidden;

    min-height: 360px;

    padding: 24px;

    border: 1px solid #dce4f0;
    border-radius: 24px;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f8faff
        );

    box-shadow:
        0 24px 60px rgba(13, 27, 42, 0.1);
}

.tour-screen-toolbar {
    display: flex;

    gap: 6px;

    padding-bottom: 18px;

    border-bottom: 1px solid var(--border);
}

.tour-screen-toolbar span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #d6deea;
}

.tour-dashboard-grid {
    display: grid;

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

    gap: 12px;

    margin-top: 22px;
}

.tour-metric {
    padding: 18px;

    border: 1px solid var(--border);
    border-radius: 13px;

    background: var(--white);
}

.tour-metric small,
.tour-metric strong {
    display: block;
}

.tour-metric small {
    color: #7b8493;

    font-size: 9px;
}

.tour-metric strong {
    margin-top: 3px;

    color: var(--navy);

    font-size: 21px;
}

.tour-line-chart {
    position: relative;

    height: 125px;

    margin-top: 16px;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 13px;

    background:
        repeating-linear-gradient(
            0deg,
            #fbfcff,
            #fbfcff 30px,
            #eef2f7 31px
        );
}

.tour-line-chart span {
    position: absolute;

    left: 7%;
    right: 7%;
    bottom: 26px;

    height: 50px;

    border-bottom: 3px solid var(--blue);
    border-radius: 50%;

    transform: rotate(-4deg);
}

.tour-activity-list {
    display: grid;

    gap: 8px;

    margin-top: 14px;
}

.tour-activity-list span {
    height: 10px;

    border-radius: 20px;

    background: #e8edf5;
}

.tour-activity-list span:nth-child(1) {
    width: 88%;
}

.tour-activity-list span:nth-child(2) {
    width: 73%;
}

.tour-activity-list span:nth-child(3) {
    width: 81%;
}

.tour-platform-grid {
    display: grid;

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

    gap: 14px;

    margin-top: 24px;
}

.tour-platform-grid > div {
    min-height: 125px;

    display: grid;
    align-content: center;
    justify-items: start;

    padding: 20px;

    border: 1px solid var(--border);
    border-radius: 15px;

    background: var(--white);
}

.tour-platform-grid b {
    width: 38px;
    height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 9px;

    color: var(--blue);

    border-radius: 10px;

    background: var(--blue-light);
}

.tour-platform-grid span {
    color: var(--navy);

    font-size: 13px;
    font-weight: 800;
}

.tour-platform-grid em {
    margin-top: 3px;

    color: #7b8493;

    font-size: 9px;
    font-style: normal;
}

.tour-table {
    margin-top: 25px;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 14px;

    background: var(--white);
}

.tour-table-row {
    min-height: 58px;

    display: grid;

    grid-template-columns:
        0.9fr
        1.6fr
        0.8fr;

    align-items: center;

    gap: 10px;

    padding: 0 16px;

    border-top: 1px solid var(--border);

    color: #596273;

    font-size: 11px;
}

.tour-table-head {
    min-height: 46px;

    border-top: 0;

    color: #7b8493;

    background: #f7f9fc;

    font-size: 9px;
    font-weight: 800;

    text-transform: uppercase;
}

.tour-sync-flow {
    min-height: 180px;

    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr;

    align-items: center;

    gap: 18px;

    margin-top: 26px;
}

.tour-sync-box {
    min-height: 95px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--navy);

    border: 1px solid var(--border);
    border-radius: 16px;

    background: var(--white);

    font-size: 14px;
    font-weight: 800;
}

.tour-sync-arrows {
    color: var(--blue);

    font-size: 35px;
    font-weight: 800;
}

.tour-sync-options {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}

.tour-sync-options span {
    padding: 7px 11px;

    color: #3158b5;

    border: 1px solid #d8e3ff;
    border-radius: 30px;

    background: #eef3ff;

    font-size: 9px;
    font-weight: 800;
}

.tour-alert {
    margin-top: 25px;

    padding: 18px;

    border: 1px solid #fed7aa;
    border-radius: 14px;

    background: #fff7ed;
}

.tour-alert strong,
.tour-alert span {
    display: block;
}

.tour-alert strong {
    color: #9a3412;

    font-size: 13px;
}

.tour-alert span {
    margin-top: 3px;

    color: #b45309;

    font-size: 10px;
}

.tour-strategy-grid {
    display: grid;

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

    gap: 9px;

    margin-top: 14px;
}

.tour-strategy-grid span {
    padding: 12px 8px;

    color: #3158b5;

    border: 1px solid #d8e3ff;
    border-radius: 11px;

    background: #f4f7ff;

    text-align: center;

    font-size: 9px;
    font-weight: 800;
}

.tour-snapshot-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    margin-top: 15px;

    padding: 16px;

    border: 1px solid var(--border);
    border-radius: 12px;

    background: var(--white);

    color: #596273;

    font-size: 10px;
}

.tour-snapshot-row b {
    color: var(--blue);
}

.tour-inventory-card {
    display: grid;

    gap: 10px;

    margin-top: 25px;
}

.tour-inventory-card > div {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 18px;

    border: 1px solid var(--border);
    border-radius: 13px;

    background: var(--white);
}

.tour-inventory-card strong {
    color: var(--navy);

    font-size: 12px;
}

.tour-inventory-card span {
    color: var(--blue);

    font-size: 18px;
    font-weight: 800;
}

.tour-inventory-total {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 15px;

    padding: 18px;

    border-radius: 13px;

    background: var(--navy);

    color: var(--white);
}

.tour-inventory-total span {
    font-size: 11px;
}

.tour-inventory-total strong {
    font-size: 22px;
}

.app-tour-end {
    padding: 82px 0;

    background:
        linear-gradient(
            135deg,
            #1557ed,
            #2876ff
        );
}

.app-tour-end-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 45px;
}

.app-tour-end h2 {
    margin: 0 0 10px;

    color: var(--white);

    font-size: clamp(34px, 4vw, 50px);
    font-weight: 800;

    line-height: 1.08;
    letter-spacing: -2px;
}

.app-tour-end p {
    max-width: 720px;

    margin: 0;

    color: #dce8ff;

    font-size: 15px;

    line-height: 1.7;
}

.app-tour-end .button-light {
    min-width: 190px;
    min-height: 52px;

    padding: 0 26px;

    color: var(--blue);

    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 12px;

    background: var(--white);

    box-shadow:
        0 14px 32px rgba(8, 19, 33, 0.16);

    font-size: 14px;
    font-weight: 800;

    white-space: nowrap;
}

.app-tour-end .button-light:hover {
    color: var(--blue-dark);

    background: #f8faff;

    border-color: var(--white);

    box-shadow:
        0 18px 38px rgba(8, 19, 33, 0.22);

    transform: translateY(-2px);
}

@media (max-width: 1100px) {

    .app-tour-hero-grid,
    .app-tour-step {
        gap: 45px;
    }

    .app-tour-hero-grid {
        grid-template-columns:
            minmax(0, 0.9fr)
            minmax(440px, 1.1fr);
    }

}

@media (max-width: 1000px) {

    .app-tour-hero-grid,
    .app-tour-step {
        grid-template-columns: 1fr;
    }

    .app-tour-hero-preview {
        max-width: 720px;

        width: 100%;
    }

    .app-window {
        transform: none;
    }

    .app-tour-step-reverse .app-tour-step-content,
    .app-tour-step-reverse .app-tour-screen {
        order: initial;
    }

    .app-tour-screen {
        max-width: 760px;

        width: 100%;
    }

}

@media (max-width: 760px) {

    .app-tour-hero {
        padding: 62px 0;
    }

    .app-tour-hero-copy h1 {
        font-size: 45px;

        letter-spacing: -2px;
    }

    .app-window-body {
        grid-template-columns:
            54px
            minmax(0, 1fr);
    }

    .app-sidebar {
        gap: 14px;
    }

    .app-sidebar span {
        width: 25px;
        height: 25px;
    }

    .app-dashboard-preview {
        padding: 20px;
    }

    .app-preview-stats {
        grid-template-columns: 1fr;
    }

    .app-preview-chart {
        height: 150px;
    }

    .app-tour-section {
        padding: 75px 0;
    }

    .app-tour-flow {
        gap: 72px;
    }

    .app-tour-screen {
        min-height: 320px;

        padding: 18px;
    }

    .tour-dashboard-grid {
        grid-template-columns: 1fr;
    }

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

    .tour-sync-flow {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .tour-sync-arrows {
        transform: rotate(90deg);
    }

    .tour-strategy-grid {
        grid-template-columns: 1fr;
    }

    .app-tour-end {
        padding: 65px 0;
    }

    .app-tour-end-inner {
        flex-direction: column;
        align-items: flex-start;

        gap: 28px;
    }

}

@media (max-width: 520px) {

    .app-tour-hero-copy h1 {
        font-size: 38px;
    }

    .app-window-body {
        grid-template-columns: 1fr;
    }

    .app-sidebar {
        display: none;
    }

    .app-window-topbar {
        min-height: 56px;
    }

    .app-dashboard-preview {
        padding: 16px;
    }

    .app-tour-screen {
        min-height: 285px;
    }

    .tour-table-row {
        grid-template-columns:
            0.85fr
            1.35fr
            0.75fr;

        padding: 0 10px;

        font-size: 9px;
    }

}
