:root {
    --page-bg: #f4f1ea;
    --surface: #ffffff;
    --surface-soft: #f7f5ef;
    --ink: #162531;
    --ink-soft: #5f6f7b;
    --brand: #144d5f;
    --brand-strong: #0d3342;
    --brand-soft: #e5f3f0;
    --accent: #d79c3f;
    --accent-soft: #fff1d8;
    --success: #2f7a5c;
    --shadow-lg: 0 28px 70px rgba(16, 36, 47, 0.14);
    --shadow-md: 0 18px 44px rgba(16, 36, 47, 0.1);
    --shadow-sm: 0 12px 28px rgba(16, 36, 47, 0.08);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --nav-height: 92px;
}

html {
    font-size: 16px;
    scroll-padding-top: 110px;
}

body.landing-body {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    background: var(--page-bg);
    color: var(--ink);
    line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    margin-bottom: 0;
    letter-spacing: -0.03em;
}

p {
    color: var(--ink-soft);
    margin-bottom: 0;
}

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

@media (min-width: 1400px) {
    .container {
        max-width: 1240px;
    }
}

.site-main {
    min-height: 100vh;
}

.page-messages {
    padding-top: calc(var(--nav-height) + 1rem);
}

.page-messages .alert {
    border: 0;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.landing-navbar {
    min-height: var(--nav-height);
    padding: 1rem 0;
    background: rgba(244, 241, 234, 0.72);
    backdrop-filter: blur(16px);
    transition: background-color 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.landing-navbar.navbar-scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 30px rgba(16, 36, 47, 0.08);
    padding: 0.75rem 0;
}

.landing-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-right: 1rem;
}

.landing-brand-mark {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.landing-brand-text {
    font-family: "Manrope", sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--brand-strong);
    letter-spacing: -0.04em;
}

.navbar-nav {
    gap: 0.25rem;
}

.nav-link {
    color: var(--ink) !important;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.7rem 1rem !important;
    border-radius: 999px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
    background: rgba(20, 77, 95, 0.08);
    color: var(--brand) !important;
}

.nav-link-cta {
    margin-top: 0.5rem;
    background: var(--brand-soft);
}

.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(20, 77, 95, 0.08);
    border-radius: 999px;
    padding: 0.25rem;
}

.language-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    padding: 0.42rem 0.7rem;
    border-radius: 999px;
    color: var(--ink-soft);
    font-size: 0.82rem;
    font-weight: 700;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.language-link.is-active {
    background: var(--ink);
    color: #ffffff;
}

.nav-path-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(20, 77, 95, 0.12);
    background: rgba(255, 255, 255, 0.84);
    color: var(--brand);
    font-size: 0.9rem;
    font-weight: 700;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-path-link:hover,
.nav-path-link:focus {
    background: rgba(20, 77, 95, 0.08);
    border-color: rgba(20, 77, 95, 0.18);
    color: var(--brand-strong);
    transform: translateY(-1px);
}

.navbar-toggler {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.74);
}

.nav-cta,
.btn {
    font-weight: 700;
    border-radius: 999px;
    padding: 0.9rem 1.45rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
    background: var(--brand);
    border-color: var(--brand);
    box-shadow: 0 12px 24px rgba(20, 77, 95, 0.18);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--brand-strong);
    border-color: var(--brand-strong);
}

.btn-outline-primary {
    border-color: rgba(20, 77, 95, 0.22);
    color: var(--brand);
    background: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    border-color: var(--brand);
    background: rgba(20, 77, 95, 0.06);
    color: var(--brand-strong);
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: calc(var(--nav-height) + 4.5rem) 0 5rem;
    background:
        radial-gradient(circle at top left, rgba(215, 156, 63, 0.18), transparent 32%),
        radial-gradient(circle at 84% 14%, rgba(20, 77, 95, 0.14), transparent 26%),
        linear-gradient(180deg, #faf7f1 0%, #f4f1ea 100%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0.65;
    pointer-events: none;
}

.hero-orb-one {
    top: 90px;
    left: -40px;
    width: 260px;
    height: 260px;
    background: rgba(215, 156, 63, 0.14);
}

.hero-orb-two {
    right: 4%;
    bottom: 10%;
    width: 220px;
    height: 220px;
    background: rgba(20, 77, 95, 0.12);
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.8rem;
    margin-bottom: 1.15rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(20, 77, 95, 0.08);
    color: var(--brand);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero-title {
    max-width: 11ch;
    font-size: clamp(2.9rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 0.98;
    margin-bottom: 1.4rem;
}

.hero-description {
    max-width: 36rem;
    font-size: 1.1rem;
    color: var(--ink-soft);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.btn-hero {
    min-width: 210px;
    justify-content: center;
}

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

.hero-proof-card {
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(20, 77, 95, 0.08);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.hero-proof-card strong {
    display: block;
    margin-top: 0.45rem;
    margin-bottom: 0.2rem;
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 800;
}

.hero-proof-card p,
.hero-proof-label {
    font-size: 0.84rem;
}

.hero-proof-label {
    color: var(--brand);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-visual {
    position: relative;
    min-height: 670px;
}

.visual-glow {
    position: absolute;
    inset: 9% 13% auto auto;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(215, 156, 63, 0.18);
    filter: blur(26px);
}

.screenshot-window {
    position: relative;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(20, 77, 95, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.window-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.95rem 1.1rem;
    background: rgba(12, 28, 38, 0.96);
    color: #ffffff;
}

.window-dots {
    display: inline-flex;
    gap: 0.35rem;
}

.window-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.75);
}

.window-meta {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
}

.pos-window {
    position: absolute;
    top: 2rem;
    left: 0;
    width: min(100%, 620px);
}

.pos-window-body {
    display: grid;
    grid-template-columns: 1.05fr 0.9fr;
    gap: 1rem;
    padding: 1.2rem;
    background: linear-gradient(180deg, #f7fbfb 0%, #f0f5f5 100%);
}

.pos-sidebar,
.pos-receipt {
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.95);
}

.pos-brand,
.receipt-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.pos-pill,
.receipt-status,
.analytics-filter,
.industry-badge,
.decision-badge,
.pricing-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
}

.pos-pill {
    padding: 0.35rem 0.6rem;
    background: rgba(47, 122, 92, 0.16);
    color: var(--success);
}

.search-shell,
.surface-search {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 0.95rem;
    margin-bottom: 0.95rem;
    border: 1px solid rgba(20, 77, 95, 0.08);
    border-radius: 999px;
    color: #7e8a92;
    font-size: 0.86rem;
}

.product-tile,
.surface-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(20, 77, 95, 0.08);
    background: #ffffff;
}

.product-tile + .product-tile,
.surface-item + .surface-item {
    margin-top: 0.85rem;
}

.product-tile.is-active,
.surface-item.is-highlighted {
    border-color: rgba(20, 77, 95, 0.18);
    background: rgba(20, 77, 95, 0.06);
}

.product-tile > div,
.surface-item strong,
.receipt-heading strong,
.surface-cart strong,
.surface-menu strong {
    flex-shrink: 0;
}

.product-tile div > strong,
.surface-item strong,
.receipt-heading strong,
.surface-cart strong,
.surface-menu strong {
    font-size: 0.95rem;
}

.product-tile p,
.surface-item span,
.receipt-label,
.receipt-line.muted span,
.trend-shell span,
.dashboard-stat span,
.analytics-tile span,
.analytics-header span,
.analytics-footer span,
.analytics-chart-copy span {
    color: #7a8790;
    font-size: 0.79rem;
}

.product-tile span:last-child,
.surface-item span:last-child,
.receipt-total strong,
.pricing-price strong,
.decision-price {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    min-width: 0;
    flex-shrink: 1;
    white-space: nowrap;
}

.receipt-status {
    padding: 0.4rem 0.65rem;
    background: rgba(215, 156, 63, 0.14);
    color: #996824;
}

.receipt-line,
.surface-cart-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.receipt-line + .receipt-line,
.surface-cart-line + .surface-cart-line {
    margin-top: 0.55rem;
}

.receipt-divider {
    height: 1px;
    margin: 1rem 0;
    background: rgba(20, 77, 95, 0.08);
}

.receipt-total,
.surface-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-top: 0.35rem;
}

.receipt-total span,
.surface-total span {
    color: var(--ink-soft);
    font-weight: 700;
}

.receipt-actions,
.surface-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.ui-button {
    border: 0;
    border-radius: 999px;
    padding: 0.9rem 1rem;
    font-size: 0.85rem;
    font-weight: 800;
}

.ui-button-muted {
    background: rgba(20, 77, 95, 0.08);
    color: var(--ink);
}

.ui-button-brand {
    background: var(--brand);
    color: #ffffff;
}

.floating-dashboard {
    position: absolute;
    right: 0;
    bottom: 4rem;
    width: min(88%, 380px);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    padding: 1rem;
}

.dashboard-stat,
.analytics-tile {
    padding: 1rem;
    border-radius: var(--radius-sm);
    background: var(--surface-soft);
}

.dashboard-stat strong,
.analytics-tile strong,
.analytics-chart-copy strong,
.analytics-footer strong {
    display: block;
    margin-top: 0.2rem;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 800;
}

.trend-shell {
    padding: 0 1rem 1rem;
}

.trend-bars,
.analytics-chart {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.55rem;
    align-items: end;
    min-height: 100px;
    margin-top: 0.9rem;
}

.trend-bars i,
.analytics-chart i {
    display: block;
    border-radius: 999px 999px 8px 8px;
    background: linear-gradient(180deg, var(--accent) 0%, var(--brand) 100%);
}

.trend-bars i:nth-child(1) { height: 42px; }
.trend-bars i:nth-child(2) { height: 58px; }
.trend-bars i:nth-child(3) { height: 76px; }
.trend-bars i:nth-child(4) { height: 63px; }
.trend-bars i:nth-child(5) { height: 82px; }
.trend-bars i:nth-child(6) { height: 94px; }
.trend-bars i:nth-child(7) { height: 70px; }

.analytics-chart i:nth-child(1) { height: 48px; }
.analytics-chart i:nth-child(2) { height: 68px; }
.analytics-chart i:nth-child(3) { height: 54px; }
.analytics-chart i:nth-child(4) { height: 84px; }
.analytics-chart i:nth-child(5) { height: 92px; }
.analytics-chart i:nth-child(6) { height: 74px; }

.floating-sync-note {
    position: absolute;
    left: 1.2rem;
    bottom: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.1rem;
    max-width: 290px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(20, 77, 95, 0.08);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.floating-sync-note i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand-soft);
    color: var(--brand);
}

.floating-sync-note strong,
.contact-detail strong,
.footer-title,
.pricing-card h3,
.decision-card h3,
.support-card h3,
.reason-card h3,
.feature-mini-card h3,
.industry-card h3,
.section-heading {
    font-weight: 800;
}

.floating-sync-note strong {
    display: block;
    font-size: 0.92rem;
    color: var(--ink);
}

.floating-sync-note span {
    font-size: 0.8rem;
    color: var(--ink-soft);
}

.proof-strip {
    padding: 0 0 1rem;
}

.proof-strip-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(20, 77, 95, 0.08);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.proof-strip-copy {
    color: var(--ink);
    font-weight: 700;
}

.proof-chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.proof-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(20, 77, 95, 0.08);
    color: var(--ink);
    font-size: 0.85rem;
    font-weight: 700;
}

.proof-chip-accent {
    background: rgba(215, 156, 63, 0.14);
    color: #8b621d;
}

.proof-chip-brand {
    background: rgba(20, 77, 95, 0.08);
    color: var(--brand);
}

.section-block {
    padding: 6rem 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.54) 0%, rgba(255, 255, 255, 0.24) 100%);
}

.section-intro {
    margin-bottom: 3rem;
}

.two-col-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2rem;
    align-items: end;
}

.section-heading {
    max-width: 13ch;
    font-size: clamp(2rem, 3.2vw, 3.5rem);
    line-height: 1.03;
    margin-bottom: 0.9rem;
}

.section-copy {
    max-width: 40rem;
    font-size: 1.02rem;
}

.section-copy-centered {
    max-width: 46rem;
    margin: 0 auto;
}

.text-center .section-heading {
    margin-left: auto;
    margin-right: auto;
}

.reason-card,
.feature-mini-card,
.support-card,
.decision-card,
.pricing-card,
.pricing-note-card {
    height: 100%;
    padding: 1.65rem;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(20, 77, 95, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.reason-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reason-icon,
.feature-mini-card i,
.support-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 1.25rem;
}

.reason-card h3,
.feature-mini-card h3,
.support-card h3,
.decision-card h3,
.pricing-card h3,
.industry-card h3,
.feature-copy h3 {
    font-size: 1.35rem;
    line-height: 1.12;
    margin-bottom: 0.75rem;
}

.comparison-shell {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.comparison-column {
    padding: 1.75rem;
    border-radius: var(--radius-lg);
}

.comparison-column-muted {
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(20, 77, 95, 0.08);
}

.comparison-column-brand {
    background: linear-gradient(180deg, rgba(20, 77, 95, 0.96) 0%, rgba(13, 51, 66, 0.98) 100%);
    box-shadow: var(--shadow-md);
}

.comparison-column-brand .comparison-label,
.comparison-column-brand .comparison-list li {
    color: #ffffff;
}

.comparison-column-brand .comparison-list li::before {
    background: rgba(255, 255, 255, 0.22);
}

.comparison-label {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--brand);
}

.comparison-list,
.feature-list,
.pricing-feature-list,
.decision-list,
.pricing-note-list,
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li,
.feature-list li,
.pricing-feature-list li,
.decision-list li,
.pricing-note-list li,
.footer-links li {
    position: relative;
    padding-left: 1.35rem;
}

.comparison-list li + li,
.feature-list li + li,
.pricing-feature-list li + li,
.decision-list li + li,
.pricing-note-list li + li,
.footer-links li + li {
    margin-top: 0.75rem;
}

.comparison-list li::before,
.feature-list li::before,
.pricing-feature-list li::before,
.decision-list li::before,
.pricing-note-list li::before,
.footer-links li::before {
    content: "";
    position: absolute;
    top: 0.62rem;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

.step-stack {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.step-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.2rem 1.25rem;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(20, 77, 95, 0.08);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--brand);
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.workflow-media-card {
    position: relative;
    min-height: 540px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.workflow-media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-overlay-card {
    position: absolute;
    max-width: 240px;
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(20, 77, 95, 0.08);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.media-overlay-top {
    top: 1.5rem;
    right: 1.5rem;
}

.media-overlay-bottom {
    left: 1.5rem;
    bottom: 1.5rem;
}

.media-overlay-card span {
    display: block;
    font-size: 0.78rem;
    color: var(--brand);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.media-overlay-card strong {
    display: block;
    margin-top: 0.3rem;
    color: var(--ink);
    font-size: 1rem;
}

.feature-panel + .feature-panel {
    margin-top: 2rem;
}

.feature-copy {
    max-width: 34rem;
}

.showcase-card {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(20, 77, 95, 0.08);
    border-radius: var(--radius-xl);
}

.showcase-window,
.analytics-surface {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: #ffffff;
}

.showcase-window-body {
    padding: 1.2rem;
}

.split-surface {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 1rem;
    background: linear-gradient(180deg, #f7fbfb 0%, #f0f4f4 100%);
}

.surface-menu,
.surface-cart {
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.95);
}

.surface-menu-head,
.surface-cart-head,
.analytics-header,
.analytics-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.analytics-surface {
    padding: 1.5rem;
}

.analytics-header {
    margin-bottom: 1rem;
}

.analytics-filter {
    padding: 0.45rem 0.75rem;
    background: var(--brand-soft);
    color: var(--brand);
}

.analytics-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.analytics-chart-shell {
    margin-top: 1rem;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    background: var(--surface-soft);
}

.analytics-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(20, 77, 95, 0.08);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.feature-mini-card {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

.industry-card {
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(20, 77, 95, 0.08);
    box-shadow: var(--shadow-sm);
}

.industry-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.industry-card-body {
    padding: 1.4rem;
}

.industry-badge {
    padding: 0.35rem 0.65rem;
    margin-bottom: 0.95rem;
    background: rgba(47, 122, 92, 0.12);
    color: var(--success);
}

.industry-badge-muted {
    background: rgba(20, 77, 95, 0.1);
    color: var(--brand);
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pricing-card-featured {
    background: linear-gradient(180deg, rgba(20, 77, 95, 0.98) 0%, rgba(13, 51, 66, 0.98) 100%);
    color: #ffffff;
    box-shadow: 0 30px 80px rgba(13, 51, 66, 0.22);
}

.pricing-card-featured h3,
.pricing-card-featured .pricing-eyebrow,
.pricing-card-featured p,
.pricing-card-featured li,
.pricing-card-featured span,
.pricing-card-featured strong {
    color: #ffffff;
}

.pricing-card-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    padding: 0.45rem 0.75rem;
    background: var(--accent-soft);
    color: #8b621d;
}

.v2-pricing-img-shell {
    position: relative;
    display: flex;
    flex-direction: column;
}
.v2-pricing-img-shell .pricing-card-badge {
    top: auto;
    bottom: 1.2rem;
    right: 1.2rem;
    z-index: 2;
}

.pricing-eyebrow {
    display: inline-block;
    margin-bottom: 0.65rem;
    color: var(--brand);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-description {
    margin: 0.55rem 0 0;
    font-size: 0.93rem;
    line-height: 1.6;
    color: var(--ink-soft);
}

.pricing-caption {
    margin-top: 0.3rem;
    font-size: 0.82rem;
    color: var(--ink-soft);
}

.pricing-card-featured .pricing-description,
.pricing-card-featured .pricing-caption {
    color: var(--ink-soft);
}

.pricing-price {
    display: flex;
    align-items: flex-end;
    gap: 0.3rem;
    margin: 1rem 0 0.35rem;
}

.pricing-price strong {
    font-size: clamp(2.7rem, 4vw, 3.8rem);
    line-height: 0.95;
}

.pricing-price span {
    margin-bottom: 0.45rem;
    font-size: 0.95rem;
    color: var(--ink-soft);
}

.pricing-feature-list li {
    color: var(--ink-soft);
}

.pricing-meta {
    display: grid;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: var(--surface-soft);
}

.pricing-meta div,
.pricing-meta-featured div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.pricing-meta span {
    color: var(--ink-soft);
}

.pricing-meta-featured {
    background: rgba(255, 255, 255, 0.08);
}

.pricing-note-card {
    margin-top: 1.5rem;
}

.offer-grid,
.addon-grid,
.trial-grid {
    display: grid;
    gap: 1.2rem;
}

.offer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.offer-card,
.addon-card,
.trial-card {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(20, 77, 95, 0.08);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
}

.offer-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.offer-card h3,
.addon-card h3,
.trial-card h3 {
    font-size: 1.24rem;
    line-height: 1.15;
    margin-bottom: 0;
}

.offer-card p,
.addon-card p,
.trial-card p {
    color: var(--ink-soft);
}

.offer-card-brand {
    background: linear-gradient(180deg, rgba(20, 77, 95, 0.97) 0%, rgba(13, 51, 66, 0.99) 100%);
    border-color: rgba(20, 77, 95, 0.24);
}

.offer-card-featured {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfb 100%);
    border-color: rgba(20, 77, 95, 0.16);
}

.offer-card-brand h3,
.offer-card-brand p,
.offer-card-brand li,
.offer-card-brand .offer-badge {
    color: #ffffff;
}

.offer-card-accent {
    background: linear-gradient(180deg, #fff8eb 0%, #fff3df 100%);
}

.offer-card-muted {
    background: rgba(20, 77, 95, 0.06);
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(20, 77, 95, 0.08);
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.offer-card-brand .offer-badge {
    background: rgba(255, 255, 255, 0.16);
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer-list li + li {
    margin-top: 0.7rem;
}

.offer-list li {
    position: relative;
    padding-left: 1.25rem;
}

.offer-list li::before {
    content: "";
    position: absolute;
    top: 0.65rem;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

.offer-card-brand .offer-list li::before {
    background: rgba(255, 255, 255, 0.7);
}

.addon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1.5rem;
}

.addon-card {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.addon-icon,
.trial-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.addon-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 1.2rem;
}

.addon-price-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.addon-price-row span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(20, 77, 95, 0.08);
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 800;
}

.trial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trial-card {
    position: relative;
    padding-top: 4.2rem;
}

.trial-step {
    position: absolute;
    top: 1.35rem;
    left: 1.35rem;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--brand);
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
}

.trial-assurance {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin-top: 1.5rem;
    padding: 1.4rem 1.5rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #f7fbfb 0%, #eef5f5 100%);
    border: 1px solid rgba(20, 77, 95, 0.08);
}

.trial-assurance strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--ink);
}

.decision-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.decision-badge {
    width: fit-content;
    padding: 0.4rem 0.7rem;
    background: var(--brand-soft);
    color: var(--brand);
}

.decision-price {
    margin-top: auto;
    font-size: 1.2rem;
    color: var(--brand-strong);
}

.support-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.support-card-featured {
    background: linear-gradient(180deg, #fef8ee 0%, #fff2dc 100%);
}

.faq-shell {
    max-width: 980px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(20, 77, 95, 0.08);
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    padding: 1.3rem 1.45rem;
    font-family: "Manrope", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--brand);
    background: #ffffff;
}

.accordion-body {
    padding: 0 1.45rem 1.35rem;
    color: var(--ink-soft);
}

.contact-section {
    padding: 2rem 0 6rem;
}

.contact-shell {
    position: relative;
    overflow: hidden;
    padding: 3rem;
    border-radius: calc(var(--radius-xl) + 4px);
    background:
        radial-gradient(circle at top right, rgba(215, 156, 63, 0.2), transparent 28%),
        linear-gradient(135deg, rgba(20, 77, 95, 0.98) 0%, rgba(13, 51, 66, 0.98) 100%);
    box-shadow: var(--shadow-lg);
}

.section-heading-light,
.contact-copy,
.contact-detail strong,
.contact-detail span {
    color: #ffffff;
}

.contact-detail-list {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-detail i {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.contact-detail strong {
    display: block;
    margin-bottom: 0.2rem;
}

.contact-detail span {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
}

.contact-form-card {
    padding: 2rem;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.form-label {
    margin-bottom: 0.55rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ink);
}

.form-control {
    border: 1px solid rgba(20, 77, 95, 0.14);
    border-radius: 18px;
    padding: 0.95rem 1rem;
    font-size: 0.96rem;
    color: var(--ink);
    background: #ffffff;
}

.form-select {
    border: 1px solid rgba(20, 77, 95, 0.14);
    border-radius: 18px;
    padding: 0.95rem 1rem;
    font-size: 0.96rem;
    color: var(--ink);
    background-color: #ffffff;
}

.form-control:focus {
    border-color: rgba(20, 77, 95, 0.32);
    box-shadow: 0 0 0 0.25rem rgba(20, 77, 95, 0.08);
}

.form-select:focus {
    border-color: rgba(20, 77, 95, 0.32);
    box-shadow: 0 0 0 0.25rem rgba(20, 77, 95, 0.08);
}

.form-note {
    max-width: 22rem;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.contact-submit {
    min-width: 220px;
}

.profile-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem;
}

.profile-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
}

.site-footer {
    padding: 4rem 0 2rem;
    background: #102029;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-family: "Manrope", sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
}

.footer-brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.footer-copy {
    max-width: 26rem;
    color: rgba(255, 255, 255, 0.72);
}

.footer-title {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1rem;
}

.footer-links li,
.footer-links li a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

.footer-links li::before {
    background: rgba(215, 156, 63, 0.9);
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 1.25rem;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.site-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer-bottom p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.9rem;
}

.footer-privacy-note {
    max-width: 860px;
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.82rem;
    line-height: 1.6;
}

.modal-content {
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.modal-title {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
}

.entry-modal-dialog {
    max-width: 1160px;
}

.entry-modal {
    overflow: hidden;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top right, rgba(215, 156, 63, 0.16), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 253, 0.98) 100%);
}

.entry-modal-header {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    gap: 1.5rem;
    align-items: start;
    padding: 1.8rem 1.9rem 0;
}

.entry-modal-copy p {
    max-width: 42rem;
}

.entry-modal-copy .text-muted {
    color: var(--ink-soft) !important;
    line-height: 1.65;
}

.entry-modal-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background: rgba(20, 77, 95, 0.08);
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.entry-modal-helper {
    display: grid;
    gap: 0.3rem;
    padding: 1rem 1.05rem;
    border-radius: var(--radius-md);
    background: rgba(20, 77, 95, 0.06);
    border: 1px solid rgba(20, 77, 95, 0.08);
}

.entry-modal-helper strong {
    color: var(--ink);
    font-size: 0.95rem;
}

.entry-modal-helper span {
    color: var(--ink-soft);
    font-size: 0.88rem;
}

.entry-modal-body {
    padding: 1.6rem 1.9rem 1.9rem;
}

.entry-language-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.entry-language-panel {
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(20, 77, 95, 0.08);
    box-shadow: var(--shadow-sm);
}

.entry-language-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.entry-language-head strong {
    color: var(--ink);
    font-size: 1.05rem;
}

.entry-language-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    padding: 0.35rem 0.55rem;
    border-radius: 999px;
    background: rgba(20, 77, 95, 0.08);
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 800;
}

.entry-option-stack {
    display: grid;
    gap: 1rem;
}

.entry-option-card {
    display: grid;
    gap: 0.65rem;
    height: 100%;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(20, 77, 95, 0.08);
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(16, 36, 47, 0.04);
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.entry-option-card:hover,
.entry-option-card:focus {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(16, 36, 47, 0.08);
    border-color: rgba(20, 77, 95, 0.16);
}

.entry-option-card .btn {
    margin-top: 0.2rem;
}

.entry-option-card-new {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(247, 250, 252, 1) 100%);
}

.entry-option-card-active {
    background: linear-gradient(180deg, rgba(245, 250, 250, 1) 0%, rgba(238, 246, 247, 1) 100%);
}

.entry-option-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(20, 77, 95, 0.08);
    color: var(--brand);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.entry-option-card-active .entry-option-badge {
    background: rgba(47, 122, 92, 0.12);
    color: var(--success);
}

.entry-option-title {
    color: var(--ink);
    font-size: 1.12rem;
    line-height: 1.25;
}

.entry-option-copy {
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.6;
}

.entry-option-meta {
    color: var(--brand);
    font-size: 0.82rem;
    font-weight: 700;
}

/* --- Audience-based modal panels (New Business vs Active Business) --- */
.entry-audience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.entry-audience-panel {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.6rem 1.5rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
}

.entry-audience-panel-new {
    background: linear-gradient(155deg, #f0fdf7 0%, #e4f7ed 100%);
    border-color: #a3e4c3;
    box-shadow: 0 4px 24px rgba(22, 163, 74, 0.08);
}

.entry-audience-panel-active {
    background: linear-gradient(155deg, #0f2d3d 0%, #0d3a4f 100%);
    border-color: #1e4a62;
    box-shadow: 0 4px 24px rgba(15, 45, 61, 0.28);
}

.entry-audience-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.8rem;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    align-self: flex-start;
}

.entry-audience-panel-new .entry-audience-badge {
    background: rgba(22, 163, 74, 0.13);
    color: #15803d;
}

.entry-audience-panel-active .entry-audience-badge {
    background: rgba(255, 255, 255, 0.12);
    color: #7dd3fc;
}

.entry-audience-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.entry-audience-title {
    color: var(--ink);
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.25;
    font-family: "Manrope", sans-serif;
}

.entry-audience-panel-active .entry-audience-title {
    color: #ffffff;
}

.entry-audience-title-ms {
    color: var(--ink-soft);
    font-size: 0.88rem;
    font-style: italic;
    line-height: 1.4;
}

.entry-audience-panel-active .entry-audience-title-ms {
    color: rgba(255, 255, 255, 0.6);
}

.entry-audience-copy {
    color: var(--ink-soft);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.entry-audience-panel-active .entry-audience-copy {
    color: rgba(255, 255, 255, 0.68);
}

.entry-audience-meta {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.entry-audience-panel-new .entry-audience-meta {
    color: #15803d;
}

.entry-audience-panel-active .entry-audience-meta {
    color: #5eead4;
}

.entry-audience-lang-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.entry-lang-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.85rem 0.6rem;
    border-radius: var(--radius-sm);
    text-align: center;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    border: 1.5px solid transparent;
    cursor: pointer;
}

.entry-lang-btn:hover,
.entry-lang-btn:focus {
    transform: translateY(-2px);
    text-decoration: none;
}

.entry-lang-btn-new {
    background: #ffffff;
    border-color: #a3e4c3;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.1);
    color: var(--ink);
}

.entry-lang-btn-new:hover,
.entry-lang-btn-new:focus {
    background: #f0fdf4;
    box-shadow: 0 6px 18px rgba(22, 163, 74, 0.18);
    border-color: #4ade80;
    color: var(--ink);
}

.entry-lang-btn-active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
    color: #ffffff;
}

.entry-lang-btn-active:hover,
.entry-lang-btn-active:focus {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
    border-color: rgba(255, 255, 255, 0.45);
    color: #ffffff;
}

.entry-lang-code {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.entry-lang-btn-new .entry-lang-code {
    color: #15803d;
}

.entry-lang-btn-active .entry-lang-code {
    color: #7dd3fc;
}

.entry-lang-label {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
}

:root {
    --page-bg: #f6f8fb;
    --surface: #ffffff;
    --surface-soft: #f3f6fa;
    --ink: #102331;
    --ink-soft: #5c6c79;
    --brand: #144d5f;
    --brand-strong: #0f3f4e;
    --brand-soft: #ecf4f7;
    --accent: #d79c3f;
    --accent-soft: #fff5e3;
    --shadow-lg: 0 28px 60px rgba(16, 36, 47, 0.1);
    --shadow-md: 0 18px 38px rgba(16, 36, 47, 0.08);
    --shadow-sm: 0 10px 24px rgba(16, 36, 47, 0.05);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --nav-height: 88px;
}

body.landing-body {
    background: linear-gradient(180deg, #fbfcfe 0%, var(--page-bg) 36%, #f8fbfd 100%);
}

.landing-navbar {
    padding: 0.9rem 0;
    background: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(16, 36, 47, 0.04);
    backdrop-filter: blur(14px);
}

.landing-navbar.navbar-scrolled {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 28px rgba(16, 36, 47, 0.06);
}

.nav-link {
    font-size: 0.92rem;
    padding: 0.65rem 0.9rem !important;
}

.nav-path-link {
    background: rgba(255, 255, 255, 0.92);
}

.language-switch {
    background: rgba(255, 255, 255, 0.9);
}

.nav-cta,
.btn {
    padding: 0.85rem 1.35rem;
}

.btn-primary {
    box-shadow: 0 12px 28px rgba(20, 77, 95, 0.14);
}

.btn-outline-primary {
    background: #ffffff;
}

.hero-section {
    padding: calc(var(--nav-height) + 4rem) 0 5.75rem;
    background:
        radial-gradient(circle at top left, rgba(215, 156, 63, 0.1), transparent 24%),
        radial-gradient(circle at 85% 12%, rgba(20, 77, 95, 0.08), transparent 20%),
        linear-gradient(180deg, #ffffff 0%, #f7fafe 68%, var(--page-bg) 100%);
}

.hero-orb {
    opacity: 0.4;
    filter: blur(18px);
}

.hero-orb-one {
    top: 110px;
    left: -60px;
    width: 220px;
    height: 220px;
}

.hero-orb-two {
    right: 6%;
    bottom: 12%;
    width: 180px;
    height: 180px;
}

.section-kicker {
    padding: 0.4rem 0.72rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(16, 36, 47, 0.06);
    color: var(--brand-strong);
    font-size: 0.76rem;
    letter-spacing: 0.04em;
}

.hero-title {
    max-width: 13ch;
    font-size: clamp(3rem, 5.6vw, 4.75rem);
    line-height: 1.01;
    margin-bottom: 1.2rem;
}

.hero-description {
    max-width: 39rem;
    font-size: 1.12rem;
    line-height: 1.75;
    color: var(--ink-soft);
}

.hero-route-note {
    margin: -0.4rem 0 1.35rem;
    max-width: 39rem;
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.65;
}

.hero-route-note a {
    color: var(--brand);
    text-decoration: none;
}

.hero-route-note a:hover,
.hero-route-note a:focus {
    text-decoration: underline;
}

.hero-actions {
    gap: 0.85rem;
    margin: 2.25rem 0 2.5rem;
}

.btn-hero {
    min-width: 200px;
}

.hero-proof-grid {
    gap: 0.85rem;
}

.hero-proof-card {
    padding: 1.3rem;
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(16, 36, 47, 0.07);
    box-shadow: var(--shadow-sm);
}

.hero-proof-card strong {
    font-size: 1.02rem;
}

.hero-proof-card p,
.hero-proof-label {
    font-size: 0.82rem;
}

.hero-visual {
    min-height: 620px;
}

.visual-glow {
    width: 200px;
    height: 200px;
    background: rgba(215, 156, 63, 0.14);
    filter: blur(38px);
}

.screenshot-window,
.workflow-media-card,
.industry-card,
.contact-form-card,
.contact-shell {
    box-shadow: var(--shadow-md);
}

.screenshot-window {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(16, 36, 47, 0.08);
}

.window-topbar {
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    border-bottom: 1px solid rgba(16, 36, 47, 0.06);
}

.window-dots span {
    background: rgba(16, 36, 47, 0.18);
}

.window-meta {
    color: var(--ink-soft);
    font-size: 0.78rem;
}

.pos-window-body,
.split-surface {
    padding: 1.05rem;
    background: linear-gradient(180deg, #fbfcfe 0%, #f4f8fb 100%);
}

.pos-sidebar,
.pos-receipt,
.surface-menu,
.surface-cart {
    padding: 1rem;
    border: 1px solid rgba(16, 36, 47, 0.06);
    background: #ffffff;
}

.search-shell,
.surface-search {
    padding: 0.78rem 0.9rem;
    margin-bottom: 0.85rem;
    background: #fbfcfe;
    border-color: rgba(16, 36, 47, 0.06);
}

.product-tile,
.surface-item {
    padding: 0.9rem;
    border-color: rgba(16, 36, 47, 0.06);
}

.product-tile.is-active,
.surface-item.is-highlighted {
    background: #f4f8fb;
    border-color: rgba(20, 77, 95, 0.12);
}

.pos-pill,
.receipt-status,
.analytics-filter,
.industry-badge,
.decision-badge,
.pricing-card-badge {
    font-size: 0.72rem;
}

.dashboard-grid {
    gap: 0.75rem;
}

.dashboard-stat,
.analytics-tile {
    background: #ffffff;
    border: 1px solid rgba(16, 36, 47, 0.06);
}

.trend-bars,
.analytics-chart {
    min-height: 88px;
    gap: 0.45rem;
}

.floating-dashboard {
    bottom: 2.5rem;
    width: min(86%, 330px);
}

.floating-sync-note {
    left: 1rem;
    bottom: 0.8rem;
    max-width: 260px;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(16, 36, 47, 0.06);
    box-shadow: var(--shadow-sm);
}

.floating-sync-note i {
    width: 40px;
    height: 40px;
}

.proof-strip {
    padding: 0.5rem 0 1.5rem;
}

.proof-strip-shell {
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(16, 36, 47, 0.06);
    box-shadow: none;
}

.proof-strip-copy {
    font-size: 0.98rem;
    line-height: 1.6;
    max-width: 42rem;
}

.proof-chip {
    padding: 0.55rem 0.85rem;
    border-color: rgba(16, 36, 47, 0.06);
    font-size: 0.83rem;
}

.section-block {
    padding: 7rem 0;
}

.section-soft {
    background: linear-gradient(180deg, #fbfcfe 0%, #f5f8fc 100%);
}

.section-intro {
    margin-bottom: 3.4rem;
}

.two-col-intro {
    gap: 2.75rem;
    align-items: start;
}

.section-heading {
    max-width: 14ch;
    font-size: clamp(2.15rem, 3.1vw, 3.4rem);
    line-height: 1.04;
    margin-bottom: 1rem;
}

.section-copy {
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--ink-soft);
}

.section-copy-centered {
    max-width: 48rem;
}

.reason-card,
.feature-mini-card,
.support-card,
.decision-card,
.pricing-card,
.pricing-note-card,
.offer-card,
.addon-card,
.trial-card,
.step-card,
.comparison-column,
.accordion-item {
    box-shadow: var(--shadow-sm);
}

.reason-card,
.feature-mini-card,
.support-card,
.decision-card,
.pricing-card,
.pricing-note-card {
    padding: 1.9rem;
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(16, 36, 47, 0.06);
}

.reason-icon,
.feature-mini-card i,
.support-card i,
.addon-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 1.15rem;
}

.reason-card h3,
.feature-mini-card h3,
.support-card h3,
.decision-card h3,
.pricing-card h3,
.industry-card h3,
.feature-copy h3,
.offer-card h3,
.addon-card h3,
.trial-card h3 {
    font-size: 1.28rem;
    line-height: 1.18;
    margin-bottom: 0.55rem;
}

.comparison-shell {
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.comparison-column {
    padding: 2rem;
    border: 1px solid rgba(16, 36, 47, 0.06);
    background: #ffffff;
}

.comparison-column-muted {
    background: #ffffff;
    border-color: rgba(16, 36, 47, 0.06);
}

.comparison-column-brand {
    background: linear-gradient(180deg, #1a4656 0%, #123543 100%);
    box-shadow: var(--shadow-md);
}

.step-card {
    padding: 1.3rem 1.35rem;
    background: #ffffff;
    border-color: rgba(16, 36, 47, 0.06);
}

.step-number {
    min-width: 48px;
    height: 48px;
    border-radius: 14px;
}

.workflow-media-card {
    min-height: 500px;
    border: 1px solid rgba(16, 36, 47, 0.06);
}

.media-overlay-card {
    max-width: 260px;
    padding: 0.95rem 1rem;
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(16, 36, 47, 0.06);
}

.feature-panel + .feature-panel {
    margin-top: 2.5rem;
}

.showcase-card {
    padding: 0.8rem;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.showcase-window,
.analytics-surface {
    border: 1px solid rgba(16, 36, 47, 0.06);
}

.analytics-surface {
    padding: 1.65rem;
}

.analytics-chart-shell {
    margin-top: 1.2rem;
    padding: 1.15rem;
    background: #f7fafc;
}

.feature-grid {
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.industry-card img {
    height: 220px;
}

.industry-card-body {
    padding: 1.5rem;
}

.solution-explainer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.solution-card {
    padding: 1.7rem;
    border: 1px solid rgba(16, 36, 47, 0.06);
    border-radius: calc(var(--radius-xl) - 2px);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.solution-card.is-active {
    border-color: rgba(20, 77, 95, 0.24);
    box-shadow: 0 18px 36px rgba(20, 77, 95, 0.14);
    transform: translateY(-2px);
}

.solution-card-invoice {
    background: linear-gradient(180deg, #ffffff 0%, #fffaf3 100%);
}

.solution-card-pos {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.solution-card-head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.solution-icon-badge {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 18px;
    font-size: 1.3rem;
    box-shadow: inset 0 0 0 1px rgba(16, 36, 47, 0.06);
}

.solution-card-invoice .solution-icon-badge {
    background: rgba(215, 156, 63, 0.14);
    color: #af7416;
}

.solution-card-pos .solution-icon-badge {
    background: rgba(20, 77, 95, 0.1);
    color: var(--brand);
}

.solution-card-copy {
    margin-top: 0.35rem;
    font-size: 0.97rem;
}

.solution-visual-shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.35rem;
}

.solution-physical-card,
.solution-output-shell {
    padding: 1rem;
    border: 1px solid rgba(16, 36, 47, 0.06);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.8);
}

.solution-mini-label {
    display: block;
    width: fit-content;
    padding: 0.34rem 0.7rem;
    border-radius: 999px;
    background: rgba(20, 77, 95, 0.06);
    color: var(--brand);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.solution-card-invoice .solution-mini-label {
    background: rgba(215, 156, 63, 0.14);
    color: #9c6816;
}

.solution-physical-img {
    width: 100%;
    height: 300px;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
    display: block;
    margin-top: 0.85rem;
    border-radius: 14px;
}

.solution-outputs-preview-wrap {
    display: block;
    margin-top: 0.85rem;
}

.solution-outputs-preview-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    border: 1px solid rgba(16, 36, 47, 0.06);
}

.solution-output-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 0.85rem;
}

.solution-output-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(16, 36, 47, 0.06);
    border-radius: 14px;
    background: #fbfcfe;
}

.solution-output-card-photo {
    padding: 0;
}

.solution-output-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

.solution-output-meta {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem 0.8rem;
}

.solution-output-icon-small {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(20, 77, 95, 0.08);
    color: var(--brand);
    font-size: 0.72rem;
}

.solution-card-invoice .solution-output-icon-small {
    background: rgba(215, 156, 63, 0.14);
    color: #a46d15;
}

.solution-output-meta strong {
    display: block;
    font-size: 0.82rem;
    line-height: 1.3;
}

.solution-output-meta span {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.74rem;
    line-height: 1.45;
    color: var(--ink-soft);
}

.solution-output-top {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 0.8rem;
    padding: 0.9rem 0.85rem 0;
}

.solution-output-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: rgba(20, 77, 95, 0.08);
    color: var(--brand);
    font-size: 0.92rem;
}

.solution-card-invoice .solution-output-icon {
    background: rgba(215, 156, 63, 0.14);
    color: #a46d15;
}

.solution-output-preview {
    flex: 1;
    display: grid;
    gap: 0.28rem;
}

.solution-output-preview span {
    display: block;
    height: 6px;
    border-radius: 999px;
    background: #d9e3ea;
}

.solution-output-preview span:nth-child(2) {
    width: 76%;
}

.solution-output-preview span:nth-child(3) {
    width: 58%;
}


.solution-fit-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: rgba(20, 77, 95, 0.06);
}

.solution-card-invoice .solution-fit-pill {
    background: rgba(215, 156, 63, 0.14);
}

.solution-fit-pill span {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.solution-fit-pill strong {
    font-size: 0.92rem;
    color: var(--ink);
}

.solution-card-action {
    margin-top: 1rem;
}

.solution-card-action .btn {
    width: 100%;
}

.solution-card-action .btn.is-active {
    background: var(--brand);
    border-color: var(--brand);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(20, 77, 95, 0.18);
}

.solution-card-action .btn.is-active:hover,
.solution-card-action .btn.is-active:focus {
    background: var(--brand-strong);
    border-color: var(--brand-strong);
    color: #ffffff;
}

.pricing-card {
    gap: 0;
    padding: 0;
    background: #ffffff;
    border: 1px solid rgba(16, 36, 47, 0.06);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pricing-card.is-active {
    border-color: rgba(20, 77, 95, 0.24);
    box-shadow: 0 18px 36px rgba(20, 77, 95, 0.14);
    transform: translateY(-2px);
}

.pricing-card .btn.is-active {
    background: var(--brand);
    border-color: var(--brand);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(20, 77, 95, 0.18);
}

.pricing-card .btn.is-active:hover,
.pricing-card .btn.is-active:focus {
    background: var(--brand-strong);
    border-color: var(--brand-strong);
    color: #ffffff;
}

.pricing-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.pricing-card-body {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    padding: 1.6rem;
    flex: 1;
}

.pricing-card-featured {
    background: linear-gradient(180deg, #ffffff 0%, #f6fbfb 100%);
    color: var(--ink);
    border: 1px solid rgba(20, 77, 95, 0.18);
    box-shadow: 0 22px 48px rgba(16, 36, 47, 0.08);
}

.pricing-card-featured h3,
.pricing-card-featured .pricing-eyebrow,
.pricing-card-featured p,
.pricing-card-featured li,
.pricing-card-featured strong {
    color: var(--ink);
}

.pricing-card-featured span {
    color: var(--ink-soft);
}

.pricing-card-featured .pricing-card-badge {
    background: var(--brand);
    color: #ffffff;
}

.pricing-card-badge {
    top: auto;
    bottom: 1.3rem;
    right: 1.3rem;
    padding: 0.4rem 0.7rem;
}

.pricing-solution-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.55rem;
    padding: 0.34rem 0.62rem;
    border-radius: 999px;
    background: rgba(20, 77, 95, 0.06);
    color: var(--brand);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.pricing-solution-tag i {
    font-size: 0.78rem;
}

.pricing-solution-tag span,
.pricing-card-featured .pricing-solution-tag span,
.pricing-card-featured .pricing-solution-tag i {
    color: var(--brand);
}

.pricing-eyebrow {
    margin-bottom: 0.5rem;
    font-size: 0.78rem;
}

.pricing-price {
    gap: 0.35rem;
    margin: 0.85rem 0 0.25rem;
}

.pricing-price strong {
    font-size: clamp(2.45rem, 4vw, 3.45rem);
}

.pricing-meta {
    padding: 0.95rem 1rem;
    background: #f6f9fc;
    border: 1px solid rgba(16, 36, 47, 0.06);
}

.pricing-meta-featured {
    background: rgba(20, 77, 95, 0.04);
}

.pricing-note-card {
    margin-top: 1.75rem;
    background: #ffffff;
}

.offer-grid,
.addon-grid,
.trial-grid {
    gap: 1.25rem;
}

.offer-card,
.addon-card,
.trial-card {
    padding: 1.7rem;
    border-color: rgba(16, 36, 47, 0.06);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.offer-card-brand {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
    border-color: rgba(20, 77, 95, 0.18);
}

.offer-card-featured {
    background: #ffffff;
    border-color: rgba(20, 77, 95, 0.14);
}

.offer-card-accent {
    background: #fffaf2;
}

.offer-card-muted {
    background: #f8fbfd;
}

.offer-card-brand h3,
.offer-card-brand p,
.offer-card-brand li,
.offer-card-brand .offer-badge {
    color: var(--ink);
}

.offer-badge {
    font-size: 0.74rem;
    padding: 0.38rem 0.7rem;
    background: rgba(20, 77, 95, 0.06);
}

.offer-card-brand .offer-badge {
    background: rgba(20, 77, 95, 0.08);
    color: var(--brand);
}

.offer-card-brand .offer-list li::before {
    background: var(--accent);
}

.addon-price-row span {
    padding: 0.5rem 0.8rem;
    background: #f5f8fb;
    font-size: 0.84rem;
}

.trial-card {
    padding-top: 4rem;
}

.trial-step {
    top: 1.25rem;
    left: 1.25rem;
    width: 42px;
    height: 42px;
    border-radius: 12px;
}

.trial-assurance {
    margin-top: 2rem;
    padding: 1.45rem 1.5rem;
    background: #ffffff;
    border: 1px solid rgba(16, 36, 47, 0.06);
    box-shadow: var(--shadow-sm);
}

.faq-shell {
    max-width: 920px;
}

.accordion-item {
    margin-bottom: 0.85rem;
    border-color: rgba(16, 36, 47, 0.06);
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(16, 36, 47, 0.04);
}

.accordion-button {
    padding: 1.2rem 1.35rem;
    font-size: 1.02rem;
    background: #ffffff;
}

.accordion-body {
    padding: 0 1.35rem 1.2rem;
}

.contact-section {
    padding: 3rem 0 7rem;
}

.contact-shell {
    padding: 3.25rem;
    border-radius: calc(var(--radius-xl) + 2px);
    background:
        radial-gradient(circle at top right, rgba(215, 156, 63, 0.1), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
    border: 1px solid rgba(16, 36, 47, 0.06);
}

.section-heading-light,
.contact-copy,
.contact-detail strong {
    color: var(--ink);
}

.contact-detail span {
    color: var(--ink-soft);
}

.contact-detail-list {
    gap: 0.9rem;
    margin-top: 1.8rem;
}

.contact-detail {
    padding: 1rem 1.05rem;
    background: #ffffff;
    border-color: rgba(16, 36, 47, 0.06);
    box-shadow: var(--shadow-sm);
}

.contact-detail i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--brand-soft);
    color: var(--brand);
}

.contact-form-card {
    padding: 2.15rem;
    border: 1px solid rgba(16, 36, 47, 0.06);
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(16, 36, 47, 0.06);
}

.form-label {
    font-size: 0.88rem;
}

.form-control,
.form-select {
    border-color: rgba(16, 36, 47, 0.08);
    border-radius: 16px;
    padding: 0.9rem 0.95rem;
    font-size: 0.95rem;
    background: #ffffff;
}

.form-note {
    max-width: 24rem;
    font-size: 0.92rem;
}

.contact-submit {
    min-width: 200px;
}

.site-footer {
    padding: 4.5rem 0 2rem;
    background: #0f2430;
}

.site-footer-bottom {
    margin-top: 3rem;
    padding-top: 1.6rem;
}

@media (max-width: 1199px) {
    .hero-proof-grid,
    .feature-grid,
    .offer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .addon-grid,
    .trial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    :root {
        --nav-height: 82px;
    }

    .landing-navbar {
        background: rgba(255, 255, 255, 0.92);
    }

    .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.96);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-sm);
    }

    .hero-section {
        padding-top: calc(var(--nav-height) + 3rem);
    }

    .hero-title,
    .section-heading {
        max-width: none;
    }

    .hero-visual {
        min-height: 700px;
    }

    .two-col-intro,
    .comparison-shell,
    .split-surface,
    .trial-assurance {
        grid-template-columns: 1fr;
    }

    .proof-strip-shell,
    .site-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .entry-modal-header,
    .entry-language-grid,
    .entry-audience-grid {
        grid-template-columns: 1fr;
    }

    .proof-strip-copy,
    .proof-chip-group {
        width: 100%;
    }

    .trial-assurance {
        display: grid;
    }

    .floating-dashboard {
        bottom: 5rem;
    }

    .contact-shell {
        padding: 2rem;
    }

    .entry-modal-body,
    .entry-modal-header {
        padding-left: 1.35rem;
        padding-right: 1.35rem;
    }
}

@media (max-width: 767px) {
    html {
        font-size: 15px;
    }

    .hero-actions,
    .hero-proof-grid,
    .feature-grid,
    .offer-grid,
    .addon-grid,
    .trial-grid,
    .analytics-stat-grid,
    .receipt-actions,
    .surface-actions {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        display: grid;
    }

    .hero-route-note {
        margin-bottom: 1rem;
        font-size: 0.92rem;
    }

    .hero-visual {
        min-height: 760px;
    }

    .pos-window {
        top: 0;
    }

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

    .floating-dashboard {
        position: absolute;
        left: 1rem;
        right: 1rem;
        width: auto;
        bottom: 5.5rem;
    }

    .floating-sync-note {
        left: 1rem;
        right: 1rem;
        max-width: none;
    }

    .workflow-media-card {
        min-height: 420px;
    }

    .industry-card img {
        height: 210px;
    }

    .contact-shell,
    .contact-form-card,
    .reason-card,
    .feature-mini-card,
    .support-card,
    .decision-card,
    .solution-card,
    .pricing-note-card {
        padding: 1.35rem;
    }

    .pricing-card-body {
        padding: 1.35rem;
    }

    .profile-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .profile-cta-button,
    .contact-submit,
    .btn-hero {
        width: 100%;
    }
}

@media (max-width: 1199px) {
    .section-block {
        padding: 6rem 0;
    }

    .hero-visual {
        min-height: 560px;
    }
}

@media (max-width: 991px) {
    .landing-navbar {
        background: rgba(255, 255, 255, 0.92);
    }

    .hero-section {
        padding-top: calc(var(--nav-height) + 2.6rem);
        padding-bottom: 4.5rem;
    }

    .hero-visual {
        min-height: 560px;
    }

    .floating-dashboard {
        width: min(82%, 320px);
    }

    .section-block {
        padding: 5.5rem 0;
    }

    .solution-explainer-grid {
        grid-template-columns: 1fr;
    }

    .contact-shell {
        padding: 2.25rem;
    }

    .entry-language-panel {
        padding: 1rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        max-width: 12ch;
        font-size: clamp(2.4rem, 12vw, 3.45rem);
    }

    .hero-description,
    .section-copy {
        font-size: 1rem;
    }

    .hero-visual {
        min-height: 640px;
    }

    .workflow-media-card {
        min-height: 360px;
    }

    .media-overlay-top {
        top: 1rem;
        right: 1rem;
        max-width: 200px;
    }

    .media-overlay-bottom {
        left: 1rem;
        bottom: 1rem;
        max-width: 200px;
    }

    .media-overlay-card {
        max-width: 200px;
        padding: 0.75rem 0.85rem;
    }

    .proof-strip-shell {
        padding: 0.95rem 1rem;
    }

    .proof-chip-group {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .proof-chip {
        width: 100%;
        justify-content: flex-start;
    }

    .entry-modal-body,
    .entry-modal-header {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .entry-modal-helper,
    .entry-language-panel,
    .entry-option-card {
        padding: 1rem;
    }

    .entry-option-card .btn {
        width: 100%;
    }

    .contact-shell,
    .contact-form-card,
    .reason-card,
    .feature-mini-card,
    .support-card,
    .decision-card,
    .solution-card,
    .pricing-note-card,
    .offer-card,
    .addon-card,
    .trial-card {
        padding: 1.25rem;
    }

    .pricing-card-body,
    .solution-physical-card,
    .solution-output-shell {
        padding: 1.25rem;
    }

    .pricing-card-img {
        height: 240px;
        aspect-ratio: auto;
    }

    .solution-physical-img {
        height: 240px;
    }

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

    .solution-fit-pill {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-detail {
        padding: 0.9rem 0.95rem;
    }
}

/* WhatsApp floating action button */
.whatsapp-fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1050;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-fab:hover,
.whatsapp-fab:focus {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
    text-decoration: none;
}
.whatsapp-fab i {
    font-size: 1.35rem;
}
@media (max-width: 767px) {
    .whatsapp-fab {
        bottom: 1rem;
        right: 1rem;
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
}

/* Proof strip */
.proof-strip {
    padding: 1.25rem 0;
    background: var(--brand);
    color: #fff;
}
.proof-strip-shell {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.proof-strip-copy {
    max-width: 38rem;
    font-size: 0.92rem;
    line-height: 1.55;
    opacity: 0.92;
}
.proof-chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.proof-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
.proof-chip-brand {
    background: rgba(255, 255, 255, 0.22);
}
.proof-chip-accent {
    background: var(--accent);
    color: var(--ink);
}
@media (max-width: 767px) {
    .proof-strip-shell {
        flex-direction: column;
        text-align: center;
    }
    .proof-chip-group {
        justify-content: center;
    }
}

/* Hero route note */
.hero-route-note {
    margin-top: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.88rem;
    color: var(--ink-soft);
}
.hero-route-note a {
    color: var(--brand);
}

/* Testimonial placeholders */
.testimonial-strip {
    padding: 3rem 0;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.testimonial-card {
    padding: 1.25rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(16, 36, 47, 0.06);
    box-shadow: 0 12px 28px rgba(16, 36, 47, 0.05);
}
.testimonial-card blockquote {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--ink);
    font-style: italic;
}
.testimonial-card cite {
    display: block;
    font-size: 0.82rem;
    font-style: normal;
    font-weight: 700;
    color: var(--ink-soft);
}
@media (max-width: 991px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* Who-this-is-for strip (V1) */
.audience-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
}
.audience-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    background: var(--brand-soft);
    color: var(--brand);
    text-decoration: none;
    transition: background 0.15s;
}
.audience-chip.is-active {
    background: var(--brand);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(20, 77, 95, 0.18);
}

.audience-chip.is-active i {
    color: #ffffff;
}

.audience-chip:hover {
    background: rgba(20, 77, 95, 0.15);
    color: var(--brand);
    text-decoration: none;
}

.audience-chip.is-active:hover,
.audience-chip.is-active:focus {
    background: var(--brand-strong);
    color: #ffffff;
}

.profile-feedback-anchor {
    min-height: 1px;
}

/* Progressive profiling feedback strip */
.profile-feedback-strip {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 5.75rem;
    z-index: 1045;
}

.profile-feedback-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    padding: 0.9rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(20, 77, 95, 0.12);
    box-shadow: 0 14px 36px rgba(16, 36, 47, 0.14);
}

.profile-feedback-body {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex: 1 1 16rem;
}

.profile-feedback-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(47, 122, 92, 0.14);
    color: var(--success);
    font-size: 0.95rem;
    font-weight: 800;
    flex-shrink: 0;
}

.profile-feedback-copy strong {
    display: block;
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 800;
}

.profile-feedback-copy p {
    margin-top: 0.15rem;
    font-size: 0.86rem;
    color: var(--ink-soft);
}

.profile-feedback-actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.profile-feedback-change {
    padding: 0;
    color: var(--brand);
    font-size: 0.84rem;
    font-weight: 800;
    text-decoration: none;
}

.profile-feedback-change:hover,
.profile-feedback-change:focus {
    color: var(--brand-strong);
    text-decoration: none;
}

.profile-feedback-dismiss {
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .profile-feedback-strip {
        position: static;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 1.25rem;
    }

    .profile-feedback-card {
        box-shadow: 0 12px 28px rgba(16, 36, 47, 0.08);
    }
}

@media (max-width: 767px) {
    .profile-feedback-strip {
        bottom: 5.25rem;
    }

    .profile-feedback-card {
        padding: 0.85rem 0.9rem;
    }

    .profile-feedback-actions {
        width: 100%;
        justify-content: space-between;
    }
}
