.es-landing {
    min-height: 100vh;
    color: #0f172a;
    background:
        radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.1), transparent 30%),
        radial-gradient(circle at 92% 88%, rgba(14, 165, 233, 0.09), transparent 28%),
        linear-gradient(135deg, #f8fafc 0%, #eef5ff 48%, #f6f9fc 100%);
}

.es-container {
    width: min(1160px, calc(100% - 2rem));
    margin: 0 auto;
}

.es-landing-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.9rem 0;
    background: rgba(248, 250, 252, 0.78);
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
    backdrop-filter: blur(18px);
}

.es-landing-header__inner {
    width: min(1160px, calc(100% - 2rem));
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 0 auto;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 999px;
    padding: 0.5rem 0.65rem 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.es-landing-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #0f172a;
    text-decoration: none;
}

.es-landing-brand__logo {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #1d4ed8;
    background: linear-gradient(135deg, #eff6ff, #ffffff);
    border: 1px solid rgba(37, 99, 235, 0.12);
    font-size: 1.1rem;
    font-weight: 900;
}

.es-landing-brand__wordmark {
    font-size: 0.96rem;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.es-landing-nav,
.es-landing-actions,
.es-hero__actions,
.es-hero__chips,
.es-cta__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.es-landing-nav a {
    color: #64748b;
    font-size: 0.88rem;
    font-weight: 750;
    text-decoration: none;
    padding: 0.5rem 0.6rem;
    border-radius: 999px;
}

.es-landing-nav a:hover {
    color: #1d4ed8;
    background: #eff6ff;
}

.es-btn {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.48rem;
    border-radius: 999px;
    padding: 0.68rem 0.95rem;
    color: #0f172a;
    background: #fff;
    border: 1px solid rgba(148, 163, 184, 0.34);
    font-size: 0.88rem;
    font-weight: 850;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

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

.es-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, #0f172a, #1d4ed8);
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.2);
}

.es-btn--secondary,
.es-btn--ghost {
    background: #fff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.es-btn--ghost {
    background: transparent;
    box-shadow: none;
}

.es-btn--large {
    min-height: 48px;
    padding: 0.82rem 1.15rem;
    border-radius: 17px;
}

.es-hero {
    width: min(1160px, calc(100% - 2rem));
    min-height: calc(100vh - 150px);
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(430px, 1.06fr);
    align-items: center;
    gap: 3rem;
    margin: 0 auto;
    padding: 3.6rem 0 3.4rem;
}

.es-hero__content {
    max-width: 590px;
}

.es-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    border-radius: 999px;
    padding: 0.42rem 0.76rem;
    color: #1d4ed8;
    background: #eff6ff;
    border: 1px solid rgba(37, 99, 235, 0.14);
    font-size: 0.76rem;
    font-weight: 850;
}

.es-hero h1 {
    max-width: 640px;
    margin: 1rem 0 0;
    color: #0f172a;
    font-size: clamp(2.55rem, 4.8vw, 4.25rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.es-hero p {
    max-width: 520px;
    margin: 1.15rem 0 0;
    color: #64748b;
    font-size: clamp(0.98rem, 1.25vw, 1.08rem);
    line-height: 1.7;
}

.es-hero__actions {
    margin-top: 1.45rem;
}

.es-hero__chips {
    margin-top: 1.1rem;
}

.es-hero__chips span {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    color: #64748b;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 999px;
    padding: 0.42rem 0.7rem;
    font-size: 0.8rem;
    font-weight: 750;
}

.es-hero__chips i {
    color: #1d4ed8;
}

.es-hero__visual {
    position: relative;
    min-height: 460px;
    display: grid;
    place-items: center;
}

.es-product-window {
    width: min(590px, 100%);
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.13);
    backdrop-filter: blur(18px);
}

.es-product-window__top {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.es-window-dots {
    display: flex;
    gap: 0.45rem;
}

.es-window-dots span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.22);
}

.es-window-pill {
    border-radius: 999px;
    padding: 0.38rem 0.68rem;
    color: #1d4ed8;
    background: #eff6ff;
    border: 1px solid rgba(37, 99, 235, 0.14);
    font-size: 0.74rem;
    font-weight: 850;
}

.es-product-window__body {
    min-height: 330px;
    display: grid;
    grid-template-columns: 84px 1fr;
}

.es-product-sidebar {
    display: grid;
    align-content: start;
    gap: 0.75rem;
    padding: 1rem;
    border-right: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(248, 250, 252, 0.62);
}

.es-product-sidebar span {
    height: 40px;
    border-radius: 15px;
    background: rgba(37, 99, 235, 0.09);
}

.es-product-sidebar span:first-child {
    background: rgba(37, 99, 235, 0.18);
}

.es-product-main {
    padding: 1.1rem;
}

.es-product-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.es-product-stat,
.es-product-invoice-card,
.es-product-chart,
.es-module-card,
.es-workflow-card,
.es-einvoice-box {
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(255, 255, 255, 0.76);
}

.es-product-stat {
    border-radius: 19px;
    padding: 0.92rem;
}

.es-product-stat small,
.es-product-invoice-card span {
    display: block;
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 800;
}

.es-product-stat strong,
.es-product-invoice-card strong {
    display: block;
    margin-top: 0.3rem;
    color: #0f172a;
    font-size: 0.98rem;
}

.es-product-invoice-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.9rem;
    border-radius: 20px;
    padding: 0.95rem;
}

.es-product-invoice-card i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #1d4ed8;
    background: rgba(37, 99, 235, 0.09);
    font-size: 1.15rem;
}

.es-product-chart {
    height: 125px;
    display: flex;
    align-items: end;
    gap: 0.7rem;
    margin-top: 0.9rem;
    padding: 0.95rem;
    border-radius: 22px;
}

.es-product-chart span {
    flex: 1;
    min-width: 24px;
    border-radius: 999px 999px 10px 10px;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.52), rgba(147, 197, 253, 0.24));
}

.es-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.72rem;
    min-width: 164px;
    border-radius: 22px;
    padding: 0.9rem 0.95rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.13);
    backdrop-filter: blur(18px);
}

.es-floating-card i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #1d4ed8;
    background: rgba(37, 99, 235, 0.09);
    font-size: 1.15rem;
}

.es-floating-card span {
    display: block;
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 800;
}

.es-floating-card strong {
    display: block;
    margin-top: 0.12rem;
    color: #0f172a;
    font-size: 0.94rem;
}

.es-floating-card--invoice {
    right: -8px;
    top: 78px;
}

.es-floating-card--stock {
    left: -14px;
    bottom: 58px;
}

.es-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.62);
}

.es-section--soft {
    background: rgba(248, 250, 252, 0.76);
    border-top: 1px solid rgba(148, 163, 184, 0.14);
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.es-section-header {
    max-width: 620px;
    margin: 0 auto 2rem;
    text-align: center;
}

.es-section-header span,
.es-cta__box span {
    display: inline-flex;
    width: fit-content;
    border-radius: 999px;
    padding: 0.42rem 0.76rem;
    color: #1d4ed8;
    background: #eff6ff;
    border: 1px solid rgba(37, 99, 235, 0.14);
    font-size: 0.76rem;
    font-weight: 850;
}

.es-section-header h2,
.es-einvoice-box h2,
.es-cta__box h2,
.es-demo-video-box__content h2 {
    margin: 0.8rem 0 0;
    color: #0f172a;
    font-size: clamp(1.75rem, 3vw, 2.6rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.es-section-header p,
.es-einvoice-box p,
.es-demo-video-box__content p {
    margin: 0.75rem 0 0;
    color: #64748b;
    font-size: 0.98rem;
    line-height: 1.65;
}

.es-demo-section {
    background: rgba(255, 255, 255, 0.66);
}

.es-demo-video-box {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1.25fr);
    gap: 2rem;
    align-items: center;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 32px;
    padding: clamp(1.25rem, 3vw, 2rem);
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.09), transparent 28%),
        rgba(255, 255, 255, 0.78);
    box-shadow: 0 24px 72px rgba(15, 23, 42, 0.1);
}

.es-demo-video-frame {
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: #020617;
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.18);
}

.es-demo-video-frame video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #020617;
}

.es-module-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.es-module-card {
    border-radius: 26px;
    padding: 1.1rem;
    box-shadow: 0 20px 54px rgba(15, 23, 42, 0.07);
}

.es-module-card i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #1d4ed8;
    background: rgba(37, 99, 235, 0.09);
    font-size: 1.2rem;
}

.es-module-card h3 {
    margin: 0.9rem 0 0;
    color: #0f172a;
    font-size: 1.02rem;
}

.es-module-card p {
    margin: 0.42rem 0 0;
    color: #64748b;
    line-height: 1.55;
}

.es-einvoice-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 2rem;
    align-items: center;
    border-radius: 32px;
    padding: clamp(1.25rem, 3vw, 2rem);
    box-shadow: 0 24px 72px rgba(15, 23, 42, 0.09);
}

.es-einvoice-list {
    display: grid;
    gap: 0.8rem;
}

.es-einvoice-list div {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 18px;
    padding: 0.85rem;
    color: #0f172a;
    background: rgba(248, 250, 252, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.16);
    font-weight: 800;
}

.es-einvoice-list i {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #1d4ed8;
    background: #eff6ff;
}

.es-workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.es-workflow-card {
    border-radius: 26px;
    padding: 1.2rem;
    box-shadow: 0 20px 54px rgba(15, 23, 42, 0.07);
}

.es-workflow-card > span {
    color: #1d4ed8;
    font-weight: 950;
    font-size: 0.86rem;
}

.es-workflow-card h3 {
    margin: 0.65rem 0 0;
    color: #0f172a;
    font-size: 1.08rem;
}

.es-workflow-card p {
    margin: 0.42rem 0 0;
    color: #64748b;
    line-height: 1.55;
}

.es-cta {
    padding: 4rem 0;
}

.es-cta__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 32px;
    padding: clamp(1.25rem, 3vw, 2rem);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 24px 72px rgba(15, 23, 42, 0.1);
}

@media (max-width: 1080px) {
    .es-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        text-align: center;
    }

    .es-hero__content {
        margin: 0 auto;
    }

    .es-badge,
    .es-hero__actions,
    .es-hero__chips {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .es-hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .es-demo-video-box {
        grid-template-columns: 1fr;
    }

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

    .es-einvoice-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .es-landing-header {
        position: static;
    }

    .es-landing-header__inner {
        align-items: flex-start;
        border-radius: 28px;
        flex-direction: column;
    }

    .es-landing-nav,
    .es-landing-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .es-hero {
        padding-top: 2.5rem;
    }

    .es-hero h1 {
        font-size: clamp(2.25rem, 11vw, 3.35rem);
    }

    .es-hero__visual {
        min-height: auto;
    }

    .es-product-window__body {
        grid-template-columns: 1fr;
    }

    .es-product-sidebar {
        display: none;
    }

    .es-product-stats,
    .es-module-grid,
    .es-workflow-grid {
        grid-template-columns: 1fr;
    }

    .es-floating-card {
        display: none;
    }

    .es-section,
    .es-cta {
        padding: 3.2rem 0;
    }

    .es-cta__box {
        align-items: flex-start;
        flex-direction: column;
    }
}