:root {
    --landing-v2-teal: #227c7f;
    --landing-v2-teal-dark: #155f63;
    --landing-v2-ink: #132529;
    --landing-v2-muted: #607174;
    --landing-v2-line: #dce8e8;
    --landing-v2-soft: #f4fbfa;
    --landing-v2-warm: #f8b64c;
    --landing-v2-white: #ffffff;
    --landing-v2-shadow: 0 18px 45px rgba(20, 55, 58, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--landing-v2-ink);
    background: linear-gradient(180deg, #f7fcfb 0%, #ffffff 42%);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    text-rendering: optimizeLegibility;
}

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

img {
    max-width: 100%;
    display: block;
}

.landing-v2-shell {
    min-height: 100vh;
    overflow-x: clip;
}

.landing-v2-container {
    width: min(100% - 32px, 1180px);
    margin-inline: auto;
}

.landing-v2-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(220, 232, 232, 0.78);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
}

.landing-v2-header__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    min-height: 82px;
}

.landing-v2-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    font-size: 1.04rem;
    font-weight: 800;
    color: var(--landing-v2-ink);
}

.landing-v2-brand img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.landing-v2-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2.2vw, 32px);
    color: #304b50;
    font-size: 0.93rem;
    font-weight: 700;
}

.landing-v2-nav a,
.landing-v2-language {
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.landing-v2-nav a:hover,
.landing-v2-language:hover {
    color: var(--landing-v2-teal-dark);
}

.landing-v2-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    white-space: nowrap;
}

.landing-v2-language {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.6em;
    min-height: 46px;
    padding-inline: 0;
    color: #365a5f;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1;
}

.landing-v2-market {
    position: relative;
}

.landing-v2-market summary {
    min-width: 1.6em;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-inline: 0;
    color: #365a5f;
    background: transparent;
    font-size: 0.9rem;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.landing-v2-market summary::-webkit-details-marker {
    display: none;
}

.landing-v2-market summary svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.landing-v2-market__menu {
    position: absolute;
    z-index: 30;
    inset-block-start: calc(100% + 8px);
    inset-inline-end: 0;
    width: 210px;
    border: 1px solid var(--landing-v2-line);
    border-radius: 8px;
    padding: 6px;
    background: var(--landing-v2-white);
    box-shadow: 0 14px 34px rgba(12, 47, 51, 0.16);
}

.landing-v2-market__menu button {
    width: 100%;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 8px 10px;
    color: var(--landing-v2-ink);
    background: transparent;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: start;
    cursor: pointer;
}

.landing-v2-market__menu button:hover,
.landing-v2-market__menu button[aria-current="true"] {
    border-color: #bdd8d8;
    background: var(--landing-v2-soft);
}

.landing-v2-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 0 20px;
    font-size: 0.98rem;
    font-weight: 850;
    line-height: 1;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.landing-v2-button:hover {
    transform: translateY(-1px);
}

.landing-v2-button--primary {
    color: var(--landing-v2-white);
    background: var(--landing-v2-teal);
    box-shadow: 0 12px 24px rgba(34, 124, 127, 0.18);
}

.landing-v2-button--primary:hover {
    background: var(--landing-v2-teal-dark);
}

.landing-v2-button--secondary {
    color: var(--landing-v2-teal-dark);
    border-color: #bdd8d8;
    background: rgba(255, 255, 255, 0.84);
}

.landing-v2-menu-button {
    width: 44px;
    height: 44px;
    display: none;
    align-content: center;
    justify-items: center;
    gap: 4px;
    border: 1px solid var(--landing-v2-line);
    border-radius: 8px;
    padding: 0;
    color: var(--landing-v2-ink);
    background: var(--landing-v2-white);
    cursor: pointer;
    line-height: 0;
}

.landing-v2-menu-button__line {
    width: 21px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: currentColor;
}

.landing-v2-menu-button__line + .landing-v2-menu-button__line {
    margin-top: 0;
}

.landing-v2-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.landing-v2-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: clamp(560px, 68vh, 650px);
    padding: clamp(54px, 6vw, 80px) 0;
    background: #fbf8ef;
    overflow: hidden;
    isolation: isolate;
}

.landing-v2-hero__media,
.landing-v2-hero__overlay {
    position: absolute;
    inset: 0;
}

.landing-v2-hero__media {
    z-index: 0;
}

.landing-v2-hero__overlay {
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(7, 34, 36, 0.82) 0%, rgba(7, 34, 36, 0.72) 26%, rgba(7, 34, 36, 0.36) 48%, rgba(7, 34, 36, 0.12) 68%, rgba(7, 34, 36, 0.03) 100%);
}

html[dir="rtl"] .landing-v2-hero__overlay {
    background: linear-gradient(270deg, rgba(7, 34, 36, 0.82) 0%, rgba(7, 34, 36, 0.72) 26%, rgba(7, 34, 36, 0.36) 48%, rgba(7, 34, 36, 0.12) 68%, rgba(7, 34, 36, 0.03) 100%);
}

.landing-v2-hero__inner {
    position: relative;
    z-index: 2;
    display: block;
}

.landing-v2-hero__content {
    max-width: min(100%, 510px);
    margin-inline-end: auto;
}

.landing-v2-eyebrow {
    margin: 0 0 18px;
    color: var(--landing-v2-teal-dark);
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.landing-v2-hero .landing-v2-eyebrow {
    margin-bottom: 0.75rem;
    color: rgba(224, 255, 252, 0.95);
    font-size: 1.02rem;
    font-weight: 600;
    text-transform: none;
}

.landing-v2-hero h1 {
    margin: 0;
    max-width: 540px;
    color: #ffffff;
    font-size: clamp(2.8rem, 4.1vw, 4.25rem);
    line-height: 1.1;
    letter-spacing: 0;
}

.landing-v2-hero__lead {
    max-width: 50ch;
    margin: 24px 0 0;
    color: rgba(250, 255, 254, 0.94);
    font-size: clamp(1.05rem, 1.2vw, 1.15rem);
    line-height: 1.8;
}

.landing-v2-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.landing-v2-hero__trial {
    margin: 12px 0 0;
    color: rgba(250, 255, 254, 0.84);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.6;
}

.landing-v2-hero__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.landing-v2-hero .landing-v2-button--primary {
    color: #ffffff;
    background: #15999d;
    box-shadow: 0 14px 30px rgba(0, 31, 34, 0.22);
}

.landing-v2-hero .landing-v2-button--primary:hover {
    background: #0f7f83;
}

.landing-v2-hero .landing-v2-button--secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.1);
}

.landing-v2-hero .landing-v2-button--secondary:hover {
    border-color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.16);
}

.landing-v2-motion-ready [data-hero] {
    opacity: 0;
    transition:
        opacity 680ms ease,
        transform 680ms cubic-bezier(0.2, 0.78, 0.24, 1);
}

.landing-v2-motion-ready [data-hero="content"] {
    transform: translate3d(0, 32px, 0);
}

.landing-v2-motion-ready [data-hero="buttons"] {
    transform: translate3d(0, 18px, 0);
    transition-delay: 120ms;
}

.landing-v2-motion-ready [data-hero="visual"] {
    transform: none;
    transition-delay: 40ms;
}

.landing-v2-motion-ready.landing-v2-hero-enter [data-hero] {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

[data-reveal] {
    --landing-v2-reveal-x: 0;
    --landing-v2-reveal-y: 0;
}

.landing-v2-reveal-ready [data-reveal] {
    opacity: 0;
    transform: translate3d(var(--landing-v2-reveal-x), var(--landing-v2-reveal-y), 0);
    transition:
        opacity 700ms ease,
        transform 700ms cubic-bezier(0.2, 0.78, 0.24, 1);
}

[data-reveal="left"] {
    --landing-v2-reveal-x: -55px;
}

[data-reveal="right"] {
    --landing-v2-reveal-x: 55px;
}

[data-reveal="up"] {
    --landing-v2-reveal-y: 46px;
}

.landing-v2-reveal-ready [data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

[data-reveal-stagger] > [data-reveal] {
    transition-delay: calc(var(--landing-v2-reveal-index, 0) * 80ms);
}

.landing-v2-section {
    padding: clamp(64px, 8vw, 112px) 0;
}

.landing-v2-section--storefront {
    background: #fffdf8;
}

.landing-v2-section--direct-sales {
    background: var(--landing-v2-soft);
}

.landing-v2-section--direct-sales .landing-v2-section__grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(640px, 1.18fr);
    gap: clamp(24px, 2.2vw, 32px);
}

.landing-v2-section--operations {
    background: #ffffff;
}

.landing-v2-section--analytics {
    background: #f2fbfa;
}

.landing-v2-section--venue {
    background: #fffaf1;
}

.landing-v2-section--capabilities {
    background: #ffffff;
}

.landing-v2-section--pricing {
    background: #fffdf8;
}

.landing-v2-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
    align-items: center;
    gap: clamp(34px, 6vw, 76px);
}

.landing-v2-section__grid--reverse {
    grid-template-columns: minmax(320px, 1.08fr) minmax(0, 0.92fr);
}

.landing-v2-section__content {
    min-width: 0;
}

.landing-v2-section__content h2,
.landing-v2-section__intro h2 {
    margin: 0;
    max-width: min(100%, 18ch);
    color: var(--landing-v2-ink);
    font-size: clamp(2rem, 3.4vw, 3.45rem);
    line-height: 1.05;
    letter-spacing: 0;
}

.landing-v2-section__intro h2 {
    max-width: min(100%, 20ch);
}

.landing-v2-section__content p,
.landing-v2-section__intro p {
    max-width: 58ch;
    margin: 20px 0 0;
    color: var(--landing-v2-muted);
    font-size: clamp(1rem, 1.2vw, 1.13rem);
    line-height: 1.75;
}

.landing-v2-section--direct-sales .landing-v2-section__content h2 {
    font-weight: 700;
    line-height: 1.2;
}

.landing-v2-points {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.landing-v2-points li {
    position: relative;
    min-height: 34px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #294a4f;
    font-weight: 800;
}

.landing-v2-points li::before {
    content: "";
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: var(--landing-v2-teal);
    box-shadow: 0 0 0 6px rgba(34, 124, 127, 0.1);
}

.landing-v2-storefront-preview {
    width: min(100%, 350px);
    justify-self: center;
}

.landing-v2-storefront-preview__image {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid rgba(34, 124, 127, 0.14);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--landing-v2-shadow);
}

.landing-v2-direct-illustration {
    justify-self: center;
}

.landing-v2-direct-illustration__image {
    display: block;
    width: 100%;
    height: auto;
}

.landing-v2-operations-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    align-items: center;
    gap: clamp(22px, 3vw, 42px);
}

.landing-v2-operations-visual {
    display: grid;
    justify-items: start;
}

.landing-v2-operations-illustration {
    width: min(100%, 700px);
    height: auto;
}

.landing-v2-section__intro {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
}

.landing-v2-section__intro h2,
.landing-v2-section__intro p {
    margin-inline: auto;
}

.landing-v2-analytics-visual {
    width: min(100%, 680px);
    justify-self: center;
    display: grid;
    gap: 14px;
}

.landing-v2-analytics-shot {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(18, 58, 62, 0.12);
}

.landing-v2-analytics-shot--main {
    position: relative;
    z-index: 1;
}

.landing-v2-analytics-supporting {
    display: grid;
    width: min(100%, 620px);
    justify-self: center;
    margin: 12px auto 0;
}

.landing-v2-table-kds {
    width: min(100%, 960px);
    margin: clamp(28px, 4vw, 42px) auto 0;
}

.landing-v2-table-kds img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.landing-v2-table-kds__mobile {
    display: none;
}

.landing-v2-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 2.6vw, 28px);
    margin-top: clamp(34px, 5vw, 54px);
}

.landing-v2-capability-card {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 16px;
    border: 1px solid var(--landing-v2-line);
    border-radius: 8px;
    padding: clamp(14px, 2vw, 20px);
    background: linear-gradient(180deg, #ffffff 0%, #f7fcfb 100%);
    box-shadow: 0 14px 32px rgba(18, 58, 62, 0.08);
}

.landing-v2-capability-card img {
    width: auto;
    max-width: 100%;
    max-height: 260px;
    height: auto;
    justify-self: center;
    border-radius: 8px;
}

.landing-v2-capability-card h3 {
    margin: 0;
    color: var(--landing-v2-ink);
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    font-weight: 850;
    line-height: 1.35;
}

.landing-v2-capability-card p {
    margin: 10px 0 0;
    color: var(--landing-v2-muted);
    font-size: 0.96rem;
    line-height: 1.65;
}

.landing-v2-pricing__header {
    display: grid;
    justify-items: center;
    gap: 16px;
}

.landing-v2-pricing__billing {
    display: inline-flex;
    gap: 4px;
    padding: 4px;
    border: 1px solid rgba(34, 124, 127, 0.14);
    border-radius: 999px;
    background: #eef7f6;
}

.landing-v2-pricing__billing-option {
    min-width: 92px;
    min-height: 42px;
    border: 0;
    border-radius: 999px;
    padding: 0 18px;
    color: var(--landing-v2-muted);
    background: transparent;
    font: inherit;
    font-size: 0.92rem;
    font-weight: 850;
    cursor: pointer;
    transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.landing-v2-pricing__billing-option.is-active {
    color: #ffffff;
    background: var(--landing-v2-teal);
    box-shadow: 0 8px 18px rgba(34, 124, 127, 0.16);
}

.landing-v2-pricing__annual-note {
    display: none;
    margin: 0;
    color: var(--landing-v2-teal-dark);
    font-size: 0.94rem;
    font-weight: 800;
    line-height: 1.5;
    text-align: center;
}

.landing-v2-section--pricing[data-billing-period="annual"] .landing-v2-pricing__annual-note {
    display: block;
}

.landing-v2-pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 24px);
    align-items: stretch;
    margin-top: clamp(34px, 5vw, 54px);
}

.landing-v2-pricing-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 100%;
    border: 1px solid rgba(34, 124, 127, 0.16);
    border-radius: 14px;
    padding: clamp(18px, 2.4vw, 24px);
    background: linear-gradient(180deg, #ffffff 0%, #f7fcfb 100%);
    box-shadow: 0 14px 32px rgba(18, 58, 62, 0.08);
    cursor: pointer;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.landing-v2-pricing-card:hover,
.landing-v2-pricing-card:focus-within {
    transform: translateY(-5px);
    border-color: rgba(34, 124, 127, 0.36);
    box-shadow: 0 20px 46px rgba(18, 58, 62, 0.13);
}

.landing-v2-pricing-card:focus-visible {
    outline: 2px solid rgba(34, 124, 127, 0.48);
    outline-offset: 4px;
}

.landing-v2-pricing-card.is-selected {
    border-color: rgba(34, 124, 127, 0.62);
    background: linear-gradient(180deg, #ffffff 0%, #eefaf8 100%);
    box-shadow: 0 22px 52px rgba(34, 124, 127, 0.18);
}

.landing-v2-pricing-card--featured {
    border-color: rgba(34, 124, 127, 0.42);
    background: linear-gradient(180deg, #ffffff 0%, #effaf8 100%);
    box-shadow: 0 18px 42px rgba(34, 124, 127, 0.14);
}

.landing-v2-pricing-card__top {
    display: grid;
    gap: 18px;
}

.landing-v2-pricing-card__heading {
    width: 100%;
    min-height: calc(clamp(1.22rem, 2vw, 1.5rem) * 1.25);
}

.landing-v2-pricing-card--featured .landing-v2-pricing-card__heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 10px;
    align-items: start;
}

.landing-v2-pricing-card--featured .landing-v2-pricing-card__heading h3 {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
}

.landing-v2-pricing-card--featured .landing-v2-pricing-card__heading .landing-v2-pricing-card__badge {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    white-space: nowrap;
}

.landing-v2-pricing-card h3 {
    margin: 0;
    color: var(--landing-v2-ink);
    font-size: clamp(1.22rem, 2vw, 1.5rem);
    font-weight: 850;
    line-height: 1.25;
}

.landing-v2-pricing-card__badge {
    display: inline-flex;
    flex: 0 0 auto;
    margin-top: 0;
    border-radius: 999px;
    padding: 5px 10px;
    color: var(--landing-v2-teal-dark);
    background: rgba(34, 124, 127, 0.1);
    font-size: 0.78rem;
    font-weight: 850;
    line-height: 1.2;
}

.landing-v2-pricing-card__price {
    padding-block: 4px 2px;
}

.landing-v2-pricing-card__price-line {
    align-items: baseline;
    gap: 7px;
    flex-wrap: wrap;
}

.landing-v2-pricing-card__price-line--monthly {
    display: flex;
}

.landing-v2-pricing-card__price-line--annual {
    display: none;
}

.landing-v2-section--pricing[data-billing-period="annual"] .landing-v2-pricing-card__price-line--monthly {
    display: none;
}

.landing-v2-section--pricing[data-billing-period="annual"] .landing-v2-pricing-card__price-line--annual {
    display: flex;
}

.landing-v2-pricing-card__amount {
    color: var(--landing-v2-ink);
    font-size: clamp(2.15rem, 3.8vw, 3.15rem);
    font-weight: 900;
    line-height: 0.95;
}

.landing-v2-pricing-card__currency {
    color: var(--landing-v2-muted);
    font-size: 1rem;
    font-weight: 800;
}

.landing-v2-pricing-card__period {
    color: var(--landing-v2-muted);
    font-size: 0.94rem;
    font-weight: 700;
}

.landing-v2-pricing-card__features {
    display: grid;
    flex: 1 1 auto;
    align-content: start;
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.landing-v2-pricing-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #294a4f;
    font-size: 0.97rem;
    font-weight: 750;
    line-height: 1.55;
}

.landing-v2-pricing-card__features li > span:first-child {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 0.22em;
    border-radius: 999px;
    background: var(--landing-v2-teal);
    box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.72);
}

.landing-v2-pricing-card__cta {
    width: 100%;
    min-height: 48px;
    margin-top: clamp(28px, 3vw, 34px);
    transform: none;
}

.landing-v2-contact {
    padding: clamp(34px, 3.8vw, 48px) 0;
    color: var(--landing-v2-white);
    background:
        radial-gradient(circle at 18% 24%, rgba(151, 224, 213, 0.22), transparent 32%),
        linear-gradient(135deg, #104f54 0%, #176f73 52%, #0f4a4f 100%);
}

.landing-v2-contact__grid {
    display: grid;
    grid-template-columns: minmax(360px, 1fr) minmax(0, 0.86fr);
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
    direction: ltr;
}

.landing-v2-contact__content {
    max-width: 560px;
    justify-self: end;
}

.landing-v2-contact__content,
.landing-v2-contact__form-card {
    direction: ltr;
}

html[dir="rtl"] .landing-v2-contact__content,
html[dir="rtl"] .landing-v2-contact__form-card {
    direction: rtl;
}

.landing-v2-contact__content .landing-v2-eyebrow,
.landing-v2-contact__content h2 {
    color: var(--landing-v2-white);
}

.landing-v2-contact .landing-v2-eyebrow {
    margin-bottom: 12px;
}

.landing-v2-contact__content h2 {
    margin: 0;
    font-size: clamp(1.85rem, 3vw, 2.875rem);
    line-height: 1.12;
    letter-spacing: 0;
}

.landing-v2-contact__content p {
    margin: 14px 0 0;
    color: rgba(241, 255, 253, 0.86);
    font-size: clamp(1.02rem, 1.25vw, 1.16rem);
    line-height: 1.65;
}

.landing-v2-contact__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
}

.landing-v2-contact__email {
    display: inline-flex;
    margin-top: 10px;
    color: rgba(237, 255, 252, 0.9);
    font-weight: 600;
}

.landing-v2-contact__form-card {
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 16px;
    padding: clamp(16px, 2vw, 24px);
    color: var(--landing-v2-ink);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 58px rgba(5, 39, 42, 0.2);
}

.landing-v2-contact__form-heading h2 {
    margin: 0;
    color: var(--landing-v2-ink);
    font-size: clamp(1.65rem, 2.5vw, 2.35rem);
    line-height: 1.18;
}

.landing-v2-contact__form-heading p:not(.landing-v2-eyebrow) {
    margin: 8px 0 0;
    color: var(--landing-v2-muted);
    line-height: 1.6;
}

.landing-v2-contact-form {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.landing-v2-contact-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.landing-v2-contact-form label {
    display: grid;
    gap: 5px;
    margin: 0;
    color: #294a4f;
    font-size: 0.94rem;
    font-weight: 850;
}

.landing-v2-contact-form > label {
    margin-top: 4px;
}

.landing-v2-contact-form input,
.landing-v2-contact-form textarea {
    width: 100%;
    border: 1px solid var(--landing-v2-line);
    border-radius: 10px;
    padding: 11px 13px;
    color: var(--landing-v2-ink);
    background: #fbfffe;
    font: inherit;
    font-size: 1rem;
    line-height: 1.3;
    transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.landing-v2-contact-form input {
    min-height: 44px;
}

.landing-v2-contact-form textarea {
    min-height: 110px;
    resize: vertical;
}

.landing-v2-contact-form input:focus,
.landing-v2-contact-form textarea:focus {
    outline: 0;
    border-color: rgba(34, 124, 127, 0.58);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(34, 124, 127, 0.1);
}

.landing-v2-contact-form__submit {
    width: 100%;
    min-height: 46px;
    margin-top: 0;
    cursor: pointer;
}

.landing-v2-form-alert {
    margin-top: 14px;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 0.95rem;
    font-weight: 750;
    line-height: 1.55;
}

.landing-v2-form-alert--success {
    color: #146046;
    background: rgba(23, 178, 106, 0.12);
    border: 1px solid rgba(23, 178, 106, 0.26);
}

.landing-v2-form-alert--error {
    color: #9f2f2f;
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.22);
}

.landing-v2-form-alert ul {
    margin: 8px 0 0;
    padding-inline-start: 20px;
}

.landing-v2-button--light {
    color: var(--landing-v2-teal-dark);
    background: #ffffff;
}

.landing-v2-button--outline-light {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.45);
    background: transparent;
}

.landing-v2-footer {
    padding: 36px 0 24px;
    border-top: 1px solid rgba(220, 232, 232, 0.8);
    background: #f7fcfb;
}

.landing-v2-footer__inner {
    display: grid;
    grid-template-columns: minmax(280px, 1.1fr) repeat(2, minmax(160px, 0.55fr));
    gap: clamp(22px, 4vw, 60px);
    align-items: start;
}

.landing-v2-footer__identity p {
    max-width: 48ch;
    margin: 14px 0 0;
    color: var(--landing-v2-muted);
    line-height: 1.7;
}

.landing-v2-footer__brand img {
    width: 38px;
    height: 38px;
}

.landing-v2-footer__nav,
.landing-v2-footer__support {
    display: grid;
    gap: 9px;
    color: #31585d;
    font-weight: 800;
}

.landing-v2-footer__nav h2,
.landing-v2-footer__support h2 {
    margin: 0;
    color: var(--landing-v2-ink);
    font-size: 1rem;
    font-weight: 900;
}

.landing-v2-footer__nav a,
.landing-v2-footer__support a,
.landing-v2-footer__bottom a {
    color: #365a5f;
    transition: color 180ms ease;
}

.landing-v2-footer__nav a:hover,
.landing-v2-footer__support a:hover,
.landing-v2-footer__bottom a:hover {
    color: var(--landing-v2-teal-dark);
}

.landing-v2-footer__payments {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.landing-v2-footer__payments img {
    width: auto;
    height: 28px;
    max-width: 64px;
    object-fit: contain;
}

.landing-v2-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid var(--landing-v2-line);
}

.landing-v2-footer__bottom p {
    margin: 0;
    color: var(--landing-v2-muted);
    font-size: 0.92rem;
}

@media (max-width: 1060px) {
    .landing-v2-header__inner {
        gap: 18px;
    }

    .landing-v2-nav {
        gap: 18px;
    }

    .landing-v2-hero {
        min-height: clamp(560px, 66vw, 640px);
    }

    .landing-v2-hero__content {
        max-width: min(100%, 480px);
    }

    .landing-v2-hero h1 {
        max-width: 520px;
    }

    .landing-v2-hero__overlay {
        background: linear-gradient(90deg, rgba(7, 34, 36, 0.84) 0%, rgba(7, 34, 36, 0.74) 30%, rgba(7, 34, 36, 0.4) 56%, rgba(7, 34, 36, 0.14) 76%, rgba(7, 34, 36, 0.04) 100%);
    }

    html[dir="rtl"] .landing-v2-hero__overlay {
        background: linear-gradient(270deg, rgba(7, 34, 36, 0.84) 0%, rgba(7, 34, 36, 0.74) 30%, rgba(7, 34, 36, 0.4) 56%, rgba(7, 34, 36, 0.14) 76%, rgba(7, 34, 36, 0.04) 100%);
    }

    .landing-v2-section__grid,
    .landing-v2-section__grid--reverse {
        grid-template-columns: minmax(0, 1fr);
    }

    .landing-v2-operations-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: clamp(28px, 4vw, 56px);
    }

    .landing-v2-operations-visual {
        justify-items: center;
    }

    .landing-v2-operations-illustration {
        width: min(100%, 600px);
    }

    .landing-v2-section--direct-sales .landing-v2-section__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .landing-v2-section__grid--reverse .landing-v2-section__content {
        order: -1;
    }

    .landing-v2-contact__grid,
    .landing-v2-footer__inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .landing-v2-footer__nav {
        justify-content: flex-start;
    }
}

@media (min-width: 641px) {
    .landing-v2-direct-illustration {
        width: min(100%, 650px);
        max-width: 100%;
        justify-self: center;
        margin-inline: auto;
    }

    .landing-v2-direct-illustration__image {
        max-width: 100%;
    }
}

@media (min-width: 641px) and (max-width: 1060px) {
    .landing-v2-section__intro h2 {
        max-width: min(100%, 22ch);
    }

    .landing-v2-capabilities-grid {
        align-items: stretch;
    }

    .landing-v2-capability-card {
        grid-template-rows: auto auto;
        align-content: start;
    }

    .landing-v2-capability-card img {
        width: 100%;
        max-width: 100%;
        max-height: none;
        height: clamp(148px, 19vw, 188px);
        object-fit: contain;
        object-position: center;
    }
}

@media (max-width: 860px) {
    .landing-v2-hero {
        display: flex;
        align-items: stretch;
        flex-direction: column;
        min-height: 0;
        padding: 46px 0 0;
    }

    .landing-v2-hero__media {
        position: relative;
        inset: auto;
        right: auto;
        left: auto;
        order: 2;
        width: 100%;
        margin-top: 34px;
    }

    .landing-v2-hero__overlay {
        display: none;
    }

    .landing-v2-hero__inner {
        display: block;
        order: 1;
    }

    .landing-v2-hero__content {
        max-width: 720px;
    }

    .landing-v2-hero .landing-v2-eyebrow {
        color: var(--landing-v2-teal-dark);
    }

    .landing-v2-hero h1 {
        color: var(--landing-v2-ink);
    }

    .landing-v2-hero__lead {
        color: #405c60;
    }

    .landing-v2-hero__trial {
        color: var(--landing-v2-muted);
    }

    .landing-v2-hero .landing-v2-button--primary {
        color: var(--landing-v2-white);
        background: var(--landing-v2-teal);
        box-shadow: 0 12px 24px rgba(34, 124, 127, 0.18);
    }

    .landing-v2-hero .landing-v2-button--primary:hover {
        background: var(--landing-v2-teal-dark);
    }

    .landing-v2-hero .landing-v2-button--secondary {
        color: var(--landing-v2-teal-dark);
        border-color: #bdd8d8;
        background: rgba(255, 255, 255, 0.84);
    }

    .landing-v2-hero .landing-v2-button--secondary:hover {
        border-color: #bdd8d8;
        background: rgba(255, 255, 255, 0.84);
    }

    .landing-v2-storefront-preview {
        width: min(100%, 320px);
    }

    .landing-v2-hero__image {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
    }

    .landing-v2-header__inner {
        grid-template-columns: auto auto;
        min-height: 72px;
    }

    .landing-v2-menu-button {
        display: grid;
        justify-self: end;
    }

    .landing-v2-nav,
    .landing-v2-actions {
        grid-column: 1 / -1;
        display: none;
    }

    .landing-v2-header.is-open .landing-v2-nav,
    .landing-v2-header.is-open .landing-v2-actions {
        display: flex;
    }

    .landing-v2-nav {
        align-items: stretch;
        justify-content: flex-start;
        flex-direction: column;
        gap: 4px;
        padding-top: 6px;
    }

    .landing-v2-nav a {
        min-height: 44px;
        display: flex;
        align-items: center;
        border-radius: 8px;
        padding-inline: 12px;
        background: var(--landing-v2-soft);
    }

    .landing-v2-actions {
        align-items: stretch;
        flex-wrap: wrap;
        justify-content: flex-start;
        padding: 4px 0 18px;
    }

    .landing-v2-market {
        align-self: center;
    }

    .landing-v2-actions .landing-v2-button {
        flex: 1 1 180px;
    }

    .landing-v2-contact__content {
        order: -1;
        max-width: 720px;
        justify-self: stretch;
    }

    .landing-v2-contact__form-card {
        width: 100%;
    }

    .landing-v2-pricing__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .landing-v2-pricing-card:hover,
    .landing-v2-pricing-card:focus-within {
        transform: none;
    }

    .landing-v2-table-kds {
        width: 100%;
        margin-top: 26px;
    }

    .landing-v2-table-kds__desktop {
        display: none;
    }

    .landing-v2-table-kds__mobile {
        display: grid;
        gap: 16px;
    }

    .landing-v2-table-kds__mobile-shot {
        justify-self: center;
        height: auto;
    }

    .landing-v2-table-kds__mobile .landing-v2-table-kds__mobile-shot--qr {
        width: min(100%, 380px);
    }

    .landing-v2-table-kds__mobile .landing-v2-table-kds__mobile-shot--kds {
        width: min(78%, 300px);
    }

    .landing-v2-table-kds__mobile .landing-v2-table-kds__mobile-shot--order {
        width: min(58%, 215px);
    }
}

@media (max-width: 640px) {
    .landing-v2-container {
        width: min(100% - 24px, 1180px);
    }

    .landing-v2-hero {
        padding-top: 42px;
    }

    .landing-v2-hero h1 {
        max-width: 100%;
        font-size: clamp(2.15rem, 12vw, 3.25rem);
    }

    .landing-v2-hero__buttons,
    .landing-v2-actions,
    .landing-v2-contact__actions {
        flex-direction: column;
    }

    .landing-v2-button {
        width: 100%;
    }

    .landing-v2-actions .landing-v2-button {
        flex: 0 0 auto;
        align-self: center;
        width: fit-content;
        max-width: min(100%, 210px);
        min-height: 46px;
        padding-inline: 22px;
    }

    .landing-v2-section {
        padding: 56px 0;
    }

    .landing-v2-storefront-preview {
        width: min(100%, 420px);
    }

    .landing-v2-direct-illustration {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-inline: auto;
    }

    .landing-v2-direct-illustration__image,
    .landing-v2-operations-illustration {
        display: block;
        height: auto;
        max-width: 100%;
        margin-inline: auto;
    }

    .landing-v2-operations-visual {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .landing-v2-analytics-supporting {
        grid-template-columns: 1fr;
        width: 100%;
        margin-top: 0;
    }

    .landing-v2-capabilities-grid {
        grid-template-columns: 1fr;
    }

    .landing-v2-pricing__billing {
        width: 100%;
    }

    .landing-v2-pricing__billing-option {
        flex: 1 1 0;
        min-width: 0;
    }

    .landing-v2-contact-form__row {
        grid-template-columns: 1fr;
    }

    .landing-v2-contact__content h2 {
        font-size: clamp(1.8rem, 8vw, 2rem);
        line-height: 1.2;
    }

    .landing-v2-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .landing-v2-capability-card img {
        width: 100%;
        max-height: none;
    }

    .landing-v2-section__content h2,
    .landing-v2-section__intro h2 {
        max-width: min(100%, 16ch);
        font-size: clamp(1.75rem, 8vw, 2rem);
        line-height: 1.2;
    }

    .landing-v2-section .landing-v2-eyebrow,
    .landing-v2-contact .landing-v2-eyebrow {
        margin-bottom: 12px;
        font-size: 0.8rem;
        line-height: 1.35;
    }

    .landing-v2-section__content p,
    .landing-v2-section__intro p {
        font-size: 0.96rem;
        line-height: 1.68;
    }

    .landing-v2-points {
        gap: 10px;
        margin-top: 22px;
    }

    .landing-v2-points li {
        min-height: 0;
        font-size: 0.93rem;
        line-height: 1.6;
    }

    .landing-v2-capability-card h3,
    .landing-v2-pricing-card h3 {
        font-size: 1.18rem;
        line-height: 1.32;
    }

    .landing-v2-capability-card p,
    .landing-v2-pricing-card__features li,
    .landing-v2-pricing-card__currency,
    .landing-v2-pricing-card__period {
        font-size: 0.93rem;
    }

    [data-reveal="left"],
    [data-reveal="right"] {
        --landing-v2-reveal-x: 0;
        --landing-v2-reveal-y: 22px;
    }

    [data-reveal="up"] {
        --landing-v2-reveal-y: 22px;
    }
}

.landing-v2-legal {
    padding: clamp(36px, 5vw, 64px) 0 clamp(72px, 9vw, 112px);
}

.landing-v2-legal__document {
    max-width: 820px;
    margin-inline: auto;
    border: 1px solid var(--landing-v2-line);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(18, 58, 62, 0.08);
    overflow: hidden;
}

.landing-v2-legal__document .header {
    padding: clamp(20px, 3vw, 28px);
    border-bottom: 1px solid var(--landing-v2-line);
    background: var(--landing-v2-soft);
}

.landing-v2-legal__document .header h1 {
    margin: 0;
    color: var(--landing-v2-ink);
    font-size: clamp(1.75rem, 3.2vw, 2.35rem);
    line-height: 1.2;
    font-weight: 850;
}

.landing-v2-legal__document .effective-date {
    margin-top: 10px;
    color: var(--landing-v2-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.landing-v2-legal__document > .p-4,
.landing-v2-legal__document > .p-4.p-md-5 {
    padding: clamp(20px, 3vw, 36px);
}

.landing-v2-legal__document h2 {
    margin: 2rem 0 0.75rem;
    color: var(--landing-v2-ink);
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    line-height: 1.35;
    font-weight: 850;
}

.landing-v2-legal__document section:first-of-type h2 {
    margin-top: 0;
}

.landing-v2-legal__document p,
.landing-v2-legal__document li {
    color: #3a565a;
    font-size: 0.98rem;
    line-height: 1.75;
}

.landing-v2-legal__document ul,
.landing-v2-legal__document ol {
    margin: 0.75rem 0;
    padding-inline-start: 1.25rem;
}

.landing-v2-legal__document b,
.landing-v2-legal__document strong {
    color: var(--landing-v2-ink);
    font-weight: 800;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .landing-v2-motion-ready [data-hero],
    .landing-v2-reveal-ready [data-reveal],
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition-delay: 0ms;
    }

    .landing-v2-pricing-card:hover,
    .landing-v2-pricing-card:focus-within {
        transform: none;
    }
}
