:root {
    --ink: #121826;
    --muted: #667085;
    --subtle: #8a96a8;
    --line: #d8dee8;
    --soft: #f4f7fa;
    --panel: #ffffff;
    --brand: #176b66;
    --brand-dark: #0f403d;
    --amber: #ef8a1f;
    --danger: #d92d20;
    --success: #039855;
    --shadow: 0 18px 45px rgba(18, 24, 38, .10);
}

@media (max-width: 980px) {
    .payment-account-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .hero-demo-caption {
        width: auto;
        justify-self: center;
        max-width: 100%;
    }

    .payment-picker {
        width: 100%;
    }

    .payment-method-title {
        display: grid;
        gap: 4px;
    }

    .payment-method-title span {
        text-align: left;
    }

    .bank-account-list {
        grid-template-columns: 1fr;
    }
}

* {
    box-sizing: border-box;
    letter-spacing: 0;
}

body {
    margin: 0;
    color: var(--ink);
    background: #f2f5f8;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

section[id] {
    scroll-margin-top: 92px;
}

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

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

.site-shell {
    min-height: 100vh;
    background: #f5f7fa;
    display: flex;
    flex-direction: column;
    padding-top: 72px;
}

.site-shell main {
    flex: 1;
}

.mobile-floating-actions {
    display: none;
}

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

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 40;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 24px rgba(18, 24, 38, .06);
    transition: transform .22s ease, box-shadow .18s ease, background .18s ease;
    will-change: transform;
}

.topbar.is-hidden {
    transform: translateY(-100%);
}

.nav {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 850;
}

.brand strong {
    display: block;
    line-height: 1.1;
}

.brand small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 650;
}

.brand-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border: 1px solid #cdd7e4;
    background: #fff;
    padding: 5px;
}

.brand-mark,
.icon-box {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid #cdd7e4;
    background: #eef5f4;
    color: var(--brand);
    font-weight: 850;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #344054;
    font-size: 14px;
    font-weight: 700;
}

.nav-links a:not(.btn):hover {
    color: var(--brand);
}

.mobile-nav-cta {
    display: none;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid var(--brand);
    color: var(--brand);
    font-size: 13px;
    font-weight: 850;
}

.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid #cdd7e4;
    background: #fff;
    color: var(--brand);
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
}

.mobile-site-menu[hidden] {
    display: none;
}

.mobile-site-menu {
    display: none;
    border-top: 1px solid var(--line);
    background: rgba(255,255,255,.98);
    box-shadow: 0 18px 34px rgba(18, 24, 38, .10);
}

.mobile-site-menu-inner {
    display: grid;
    gap: 8px;
    padding-top: 12px;
    padding-bottom: 16px;
}

.mobile-site-menu a {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid #e4eaf2;
    color: #344054;
    font-size: 14px;
    font-weight: 800;
}

.mobile-site-menu .mobile-menu-primary {
    justify-content: center;
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    font-weight: 800;
    cursor: pointer;
    transition: box-shadow .16s ease, border-color .16s ease, background .16s ease;
}

.btn:hover {
    border-color: #b9c5d5;
    box-shadow: 0 10px 24px rgba(18, 24, 38, .08);
}

.btn-primary {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

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

.btn-dark {
    background: #111827;
    border-color: #111827;
    color: #fff;
}

.btn-danger {
    background: #fff1f1;
    border-color: #ffb4b4;
    color: var(--danger);
}

.btn-small {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
}

.btn-light {
    background: rgba(255, 255, 255, .10);
    color: #fff;
    border-color: rgba(255, 255, 255, .34);
}

.btn-wide {
    width: 100%;
}

.disabled-btn {
    cursor: default;
    color: var(--subtle);
    background: #eef2f6;
    border-color: #dde5ee;
    box-shadow: none;
}

.flash-wrap {
    padding-top: 18px;
}

.hero {
    position: relative;
    min-height: 0;
    overflow: hidden;
    background: #102725;
    color: #fff;
    padding: 76px 0;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(16, 39, 37, .98) 0%, rgba(16, 39, 37, .90) 48%, rgba(16, 39, 37, .82) 100%),
        #102725;
    z-index: 1;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 440px;
    gap: 54px;
    align-items: center;
}

.hero-copy {
    min-width: 0;
    grid-column: 1;
    grid-row: 1;
}

.hero-cta {
    min-width: 0;
    grid-column: 1;
    grid-row: 2;
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.mobile-title,
.mobile-copy {
    display: none;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    background: rgba(255, 255, 255, .12);
    color: #d9f4ef;
    border: 1px solid rgba(255, 255, 255, .18);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.muted-eyebrow,
.section-kicker {
    background: #eef5f4;
    color: var(--brand);
    border-color: #cde6e2;
}

.hero h1 {
    width: min(760px, 100%);
    margin: 18px 0 16px;
    color: #fff;
    font-size: 54px;
    line-height: 1.05;
}

.hero p {
    width: min(650px, 100%);
    color: #d9e6e6;
    font-size: 18px;
    margin: 0;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-cta .hero-actions,
.hero-cta .download-actions {
    margin-top: 0;
}

.demo-card {
    width: min(560px, 100%);
    margin-top: 24px;
    padding: 13px 15px;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.10);
    color: #eef7f6;
}

.demo-card strong {
    display: block;
    margin-bottom: 4px;
    color: #fff;
}

.demo-card span {
    display: block;
    color: #d6e3e3;
    font-size: 14px;
}

.download-actions {
    width: min(560px, 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 14px;
}

.download-actions a,
.download-disabled {
    display: grid;
    gap: 4px;
    min-height: 76px;
    align-content: center;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.32);
    background: #ffffff;
    color: var(--ink);
}

.download-actions a:nth-child(2),
.download-actions .download-disabled:nth-child(2) {
    background: rgba(255,255,255,.10);
    color: #fff;
}

.download-actions a span,
.download-disabled span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
}

.download-actions a:nth-child(2) span,
.download-actions .download-disabled:nth-child(2) span {
    color: #d6e3e3;
}

.download-actions b,
.download-disabled b {
    font-size: 17px;
}

.download-disabled {
    opacity: .62;
    cursor: not-allowed;
}

.hero-points {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.hero-points span {
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
    color: #e4eeee;
    padding: 8px 11px;
    font-size: 13px;
    font-weight: 750;
}

.purchase-points {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px;
}

.purchase-points span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, .20);
    background: rgba(255, 255, 255, .09);
    color: #eef7f6;
    font-size: 13px;
    font-weight: 800;
}

.purchase-points.on-light span {
    border-color: #cde6e2;
    background: #eef5f4;
    color: var(--brand-dark);
}

.hero-panel {
    background: #f8fafc;
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 26px 70px rgba(0,0,0,.25);
    color: var(--ink);
    overflow: hidden;
}

.hero-panel-head {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 16px;
    border-bottom: 1px solid #dfe6ef;
    background: #fff;
}

.hero-panel-head span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 750;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 16px;
}

.hero-metrics div,
.hero-list p {
    border: 1px solid #dbe3ed;
    background: #fff;
    padding: 14px;
}

.hero-metrics span {
    display: block;
    color: #69778a;
    font-size: 11px;
}

.hero-metrics b {
    display: block;
    margin-top: 8px;
    color: #111827;
    font-size: 18px;
}

.hero-bars {
    height: 150px;
    margin: 0 16px 16px;
    padding: 18px;
    border: 1px solid #dbe3ed;
    background: #fff;
    display: flex;
    align-items: end;
    gap: 16px;
}

.hero-bars span {
    flex: 1;
    background: var(--brand);
    min-height: 18px;
}

.hero-list {
    display: grid;
    gap: 10px;
    padding: 0 16px 16px;
}

.hero-list p {
    margin: 0;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: #344054;
}

.hero-list span {
    color: var(--brand);
    font-weight: 800;
}

.hero-demo {
    grid-column: 2;
    grid-row: 1 / span 2;
    display: grid;
    justify-items: center;
    gap: 14px;
}

.hero-demo-tabs {
    width: min(360px, 100%);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.hero-demo-tabs button {
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .08);
    color: #d8e7e6;
    font: inherit;
    font-size: 13px;
    font-weight: 850;
    cursor: pointer;
}

.hero-demo-tabs button.active {
    border-color: #ffffff;
    background: #ffffff;
    color: #102725;
}

.hero-phone-frame {
    width: min(342px, 100%);
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .24);
    background: #081817;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .32);
}

.hero-phone-top {
    height: 28px;
    display: grid;
    place-items: center;
}

.hero-phone-top span {
    width: 72px;
    height: 5px;
    background: #233b39;
}

.hero-phone-screen {
    position: relative;
    aspect-ratio: 9 / 19.5;
    overflow: hidden;
    border: 1px solid #1d3432;
    background: #f4f7fb;
}

.hero-demo-pane {
    display: none;
    width: 100%;
    height: 100%;
}

.hero-demo-pane.active {
    display: block;
}

.hero-demo-pane iframe {
    width: 100%;
    height: 100%;
    border: 0;
    background: #ffffff;
}

.hero-media-preview {
    width: 100%;
    height: 100%;
    background: #f4f7fb;
}

.hero-media-preview img,
.hero-media-preview video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
}

.hero-app-preview {
    height: 100%;
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 14px;
    color: #142033;
    background: linear-gradient(180deg, #ffffff 0%, #eef4f7 100%);
}

.hero-app-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid #d9e3ed;
}

.hero-app-head b {
    font-size: 15px;
}

.hero-app-head span {
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    padding: 0 8px;
    background: #e8f5f3;
    color: var(--brand);
    font-size: 11px;
    font-weight: 850;
}

.hero-app-total {
    border: 1px solid #d9e3ed;
    background: #ffffff;
    padding: 14px;
}

.hero-app-total small {
    display: block;
    color: #66758a;
    font-weight: 750;
}

.hero-app-total strong {
    display: block;
    margin-top: 7px;
    color: #101828;
    font-size: 22px;
    line-height: 1.1;
}

.hero-app-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
}

.hero-app-stats span {
    min-height: 50px;
    display: grid;
    place-items: center;
    padding: 8px;
    border: 1px solid #d9e3ed;
    background: #ffffff;
    color: #344054;
    font-size: 11px;
    font-weight: 800;
    text-align: center;
}

.hero-app-list {
    display: grid;
    gap: 8px;
}

.hero-app-list p {
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px;
    border: 1px solid #d9e3ed;
    background: #ffffff;
    color: #25364d;
}

.hero-app-list p span {
    width: 8px;
    height: 8px;
    background: var(--brand);
}

.hero-app-list b {
    font-size: 13px;
}

.hero-demo-caption {
    width: auto;
    margin: 0;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .08);
    color: #f5fffd;
    font-size: 12px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.hero-demo-caption::after {
    display: none;
}

.section {
    padding: 58px 0;
}

.white-section {
    background: #fff;
}

.intro-section {
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.intro-grid {
    display: grid;
    grid-template-columns: 440px 1fr;
    gap: 58px;
    align-items: start;
}

.intro-grid h2,
.section-title h2,
.compare-grid h2,
.cta-inner h2 {
    margin: 10px 0 0;
    font-size: 34px;
    line-height: 1.14;
}

.intro-grid p,
.section-title p,
.compare-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
}

.purchase-section {
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.purchase-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1.2fr;
    gap: 16px;
}

.purchase-card {
    min-height: 100%;
    padding: 24px;
    border: 1px solid var(--line);
    background: #fff;
}

.purchase-card.highlight {
    background: #102725;
    color: #fff;
    border-color: #102725;
}

.purchase-card h2 {
    margin: 12px 0 10px;
    font-size: 30px;
    line-height: 1.12;
}

.purchase-card b {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.purchase-card p {
    margin: 0;
    color: var(--muted);
}

.purchase-card.highlight p {
    color: #d7e8e6;
}

.market-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.marketplace-buttons .btn {
    justify-content: flex-start;
}

.marketplace-buttons .channel-icon {
    width: 19px;
    height: 19px;
    border: 0;
    background: transparent;
    color: currentColor;
}

.marketplace-buttons .channel-icon svg {
    width: 19px;
    height: 19px;
    stroke-width: 2.2;
}

.marketplace-buttons .channel-icon img {
    width: 19px;
    height: 19px;
}

.marketplace-buttons .btn-primary .channel-icon {
    color: currentColor;
}

.marketplace-buttons-compact {
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.marketplace-buttons-compact:empty {
    display: none;
}

.marketplace-buttons-compact .btn {
    min-height: 36px;
    padding: 0 10px;
    justify-content: center;
    font-size: 12px;
    font-weight: 850;
}

.marketplace-buttons-compact .channel-icon {
    width: 16px;
    height: 16px;
}

.marketplace-buttons-compact .channel-icon svg,
.marketplace-buttons-compact .channel-icon img {
    width: 16px;
    height: 16px;
}

.compact-actions {
    margin-top: 10px;
}

.section-title {
    max-width: 780px;
    margin-bottom: 26px;
}

.split-title {
    max-width: none;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 32px;
    align-items: end;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.mobile-scroll-hint {
    display: none;
    margin: -4px 0 12px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 750;
}

.advanced-section {
    background: #f5f7fa;
}

.advanced-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.advanced-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 20px;
}

.advanced-card b {
    display: block;
    margin-bottom: 8px;
    font-size: 17px;
}

.advanced-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.product-card,
.panel,
.step-card,
.ops-board,
.compare-table,
.download-panel {
    background: #fff;
    border: 1px solid var(--line);
}

.product-card {
    padding: 24px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.product-card-exclusive {
    position: relative;
    overflow: hidden;
    gap: 14px;
    padding: 20px;
}

.product-card-exclusive::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: var(--brand);
}

.product-card-exclusive .icon-box {
    background: #eef5f4;
    border-color: #c9dfdc;
    overflow: hidden;
    flex: 0 0 42px;
}

.product-card-exclusive .icon-box > img.product-card-thumb-img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border: 0;
    padding: 0;
}

.product-card-exclusive .product-head span {
    color: var(--brand-dark);
    text-transform: uppercase;
    letter-spacing: 0;
}

.product-card-headline {
    color: var(--ink) !important;
    font-size: 17px;
    font-weight: 850;
    line-height: 1.35;
}

.product-card-desc {
    min-height: 66px;
    font-size: 14px;
    line-height: 1.55;
}

.product-card-price {
    padding-top: 2px;
}

.product-chip-list {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 12px 0;
    border-top: 1px solid #eef2f6;
    border-bottom: 1px solid #eef2f6;
}

.product-chip-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #2f3e52;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.product-chip-list li::before {
    display: none;
}

.product-chip-list li span {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    background: var(--brand);
}

.product-chip-list li b {
    font-weight: 800;
}

.product-card-kasir::before,
.product-card-kasir .btn-primary {
    background: #157a72;
    border-color: #157a72;
}

.product-card-rental::before,
.product-card-rental .btn-primary {
    background: #172947;
    border-color: #172947;
}

.product-card-rental .icon-box {
    background: #edf2f8;
    border-color: #c9d4e5;
    color: #172947;
}

.product-card-rental .product-head span {
    color: #172947;
}

.product-card-rental .product-chip-list li {
    color: #172947;
}

.product-card-rental .product-chip-list li span {
    background: #172947;
}

.product-card-laundry::before,
.product-card-laundry .btn-primary {
    background: #3267a8;
    border-color: #3267a8;
}

.product-card-laundry .icon-box {
    background: #edf5ff;
    border-color: #c8dcf5;
    color: #27548d;
}

.product-card-laundry .product-head span {
    color: #27548d;
}

.product-card-laundry .product-chip-list li span {
    background: #3267a8;
}

.product-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.product-head span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-align: right;
}

.product-card h3 {
    margin: 0;
    font-size: 24px;
}

.product-card p {
    margin: 0;
    color: var(--muted);
}

.price {
    font-size: 30px;
    font-weight: 900;
}

.feature-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: grid;
    gap: 11px;
}

.feature-list li {
    display: flex;
    gap: 10px;
    color: #344054;
    font-size: 14px;
}

.feature-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-top: 8px;
    background: var(--brand);
    flex: 0 0 auto;
}

.feature-list.roomy {
    gap: 16px;
    margin-top: 18px;
}

.card-actions {
    margin-top: auto;
    display: grid;
    gap: 10px;
}

.proof-section {
    background: #f5f7fa;
}

.proof-grid,
.compare-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 18px;
    align-items: stretch;
}

.compare-grid {
    grid-template-columns: 1fr;
}

.panel {
    padding: 24px;
}

.panel h1,
.panel h2,
.panel h3 {
    margin-top: 0;
}

.proof-copy h2 {
    margin: 10px 0;
    font-size: 30px;
    line-height: 1.14;
}

.proof-copy p,
.lead-copy {
    color: var(--muted);
    font-size: 15px;
}

.proof-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 18px;
}

.proof-list span {
    border: 1px solid var(--line);
    background: #f8fafc;
    padding: 12px;
    font-weight: 750;
    color: #344054;
}

.proof-list b,
.proof-list small {
    display: block;
}

.proof-list b {
    margin-bottom: 3px;
    color: var(--ink);
}

.proof-list small {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.ops-board {
    padding: 18px;
    display: grid;
    gap: 14px;
}

.ops-board-head span,
.ops-board-head b {
    display: block;
}

.ops-board-head span {
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.ops-board-head b {
    font-size: 20px;
    line-height: 1.2;
}

.ops-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.ops-mini-grid div {
    border: 1px solid #e5ebf2;
    background: #f8fafc;
    padding: 12px;
}

.ops-mini-grid b,
.ops-mini-grid strong {
    display: block;
}

.ops-mini-grid b {
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.ops-mini-grid strong {
    color: var(--brand);
    font-size: 16px;
    line-height: 1.2;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.step-card {
    padding: 22px;
}

.step-card span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--brand);
    font-weight: 900;
}

.step-card h3 {
    margin: 0 0 8px;
}

.step-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.compare-grid {
    align-items: start;
}

.compare-table {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    border: 0;
    background: transparent;
}

.compare-table div {
    padding: 16px;
    border: 1px solid #e7edf4;
    background: #fff;
}

.compare-table div:last-child {
    border-bottom: 1px solid #e7edf4;
}

.compare-table b,
.compare-table span {
    display: block;
}

.compare-table span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 14px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 34px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.tutorial-group + .tutorial-group {
    margin-top: 54px;
}

.tutorial-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.tutorial-toolbar a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border: 1px solid var(--line);
    background: #fff;
    color: #344054;
    font-weight: 850;
}

.tutorial-toolbar a.active {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.compact-tutorial-group {
    margin-top: 0;
}

.tutorial-title {
    margin-bottom: 14px;
}

.tutorial-title h2 {
    margin-top: 0;
}

.tutorial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.tutorial-card {
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
}

.tutorial-section-block {
    display: grid;
    gap: 12px;
}

.tutorial-section-block + .tutorial-section-block {
    margin-top: 22px;
}

.tutorial-section-block > h3 {
    margin: 0;
    font-size: 18px;
}

.tutorial-pdf-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.tutorial-pdf-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 14px;
    align-items: center;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
}

.tutorial-pdf-card b {
    display: block;
    line-height: 1.35;
}

.tutorial-pdf-card p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #0f172a;
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.tutorial-copy {
    padding: 18px;
}

.tutorial-copy h3 {
    margin: 0 0 8px;
}

.tutorial-copy p {
    margin: 0;
    color: var(--muted);
}

.tutorial-pdf-button {
    min-height: 38px;
    width: 100%;
    justify-content: center;
}

.legal-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    gap: 22px;
    align-items: start;
}

.legal-content {
    max-width: 960px;
}

.legal-content h2,
.legal-content h3 {
    margin: 0 0 10px;
}

.legal-content h2:not(:first-child),
.legal-content h3:not(:first-child) {
    margin-top: 24px;
}

.legal-content p {
    margin: 0 0 14px;
    color: var(--muted);
}

.legal-content a {
    color: var(--brand-dark);
    font-weight: 850;
}

.legal-content a.btn-primary {
    color: #fff;
}

.legal-content a.btn-primary:hover,
.legal-content a.btn-primary:focus-visible {
    color: #fff;
}

.legal-meta {
    display: inline-flex;
    margin-bottom: 22px !important;
    padding: 8px 10px;
    border: 1px solid #d9e7e5;
    background: #f3faf9;
    color: var(--brand-dark) !important;
    font-size: 13px;
    font-weight: 800;
}

.legal-callout {
    margin: 18px 0 24px;
    padding: 16px 18px;
    border-left: 4px solid var(--brand);
    background: #f4faf9;
    color: #344054;
}

details {
    border: 1px solid var(--line);
    background: #fff;
    padding: 18px;
}

summary {
    cursor: pointer;
    font-weight: 850;
}

details p {
    color: var(--muted);
    margin: 12px 0 0;
}

.page-hero {
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 54px 0;
}

.page-hero.compact {
    padding: 38px 0;
}

.page-hero h1 {
    margin: 14px 0 10px;
    font-size: 44px;
    line-height: 1.12;
}

.page-hero p,
.product-detail-hero p {
    max-width: 720px;
    color: var(--muted);
    font-size: 17px;
    margin: 0;
}

.split {
    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 28px;
    align-items: start;
}

.product-detail-hero {
    align-items: center;
}

.price-panel .summary {
    margin-top: 20px;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 18px;
}

.product-showcase {
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 54px 0 46px;
}

.product-detail-page {
    --product-accent: var(--brand);
    --product-accent-dark: var(--brand-dark);
    --product-accent-soft: #e7f5f2;
    --product-accent-border: #cde6e2;
    --product-accent-rgb: 23, 107, 102;
}

.product-theme-rental {
    --product-accent: #172947;
    --product-accent-dark: #0d1830;
    --product-accent-soft: #eef3f9;
    --product-accent-border: #c9d4e5;
    --product-accent-rgb: 23, 41, 71;
}

.product-theme-laundry {
    --product-accent: #3267a8;
    --product-accent-dark: #244c80;
    --product-accent-soft: #edf5ff;
    --product-accent-border: #c8dcf5;
    --product-accent-rgb: 50, 103, 168;
}

.product-detail-page .section-kicker {
    background: var(--product-accent-soft);
    border-color: var(--product-accent-border);
    color: var(--product-accent-dark);
}

.product-detail-page .btn-primary,
.product-detail-page .phone-demo-button {
    background: var(--product-accent);
    border-color: var(--product-accent);
}

.product-detail-page .btn-primary:hover {
    background: var(--product-accent-dark);
    border-color: var(--product-accent-dark);
}

.product-detail-page .product-showcase {
    border-top: 4px solid var(--product-accent);
}

.product-detail-page .phone-mockup {
    border-color: var(--product-accent-dark);
    background: var(--product-accent-dark);
    box-shadow: 0 22px 55px rgba(var(--product-accent-rgb), .22);
}

.product-detail-page .phone-app-head {
    color: var(--product-accent-dark);
}

.product-detail-page .phone-app-head b,
.product-detail-page .phone-menu span {
    background: var(--product-accent-soft);
    color: var(--product-accent);
}

.product-detail-page .product-result-card {
    border-color: var(--product-accent-border);
    background: linear-gradient(180deg, #fff, var(--product-accent-soft));
}

.product-detail-page .product-result-card span,
.product-detail-page .license-plan-card strong,
.product-detail-page .product-timeline span {
    color: var(--product-accent);
}

.product-detail-page .plan-badge {
    background: var(--product-accent-soft);
    color: var(--product-accent);
}

.product-detail-page .feature-list li::before {
    background: var(--product-accent);
}

.product-detail-page .license-plan-card:hover,
.product-detail-page .product-timeline div:hover,
.product-detail-page .feature-card:hover {
    border-color: var(--product-accent-border);
    box-shadow: 0 12px 30px rgba(var(--product-accent-rgb), .10);
}

.product-showcase-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 46px;
    align-items: center;
}

.product-showcase-copy h1 {
    max-width: 760px;
    margin: 14px 0 14px;
    font-size: 46px;
    line-height: 1.08;
}

.product-showcase-copy p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.product-showcase-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 26px 0 14px;
}

.product-demo-wrap {
    display: grid;
    justify-items: center;
    gap: 12px;
}

.phone-mockup {
    width: min(100%, 286px);
    padding: 12px;
    border: 1px solid #1c3b38;
    background: #102725;
    box-shadow: 0 22px 55px rgba(18, 24, 38, .20);
}

.phone-speaker {
    width: 58px;
    height: 6px;
    margin: 2px auto 12px;
    background: rgba(255,255,255,.22);
}

.phone-screen {
    min-height: 500px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
    background: #f5f8fb;
}

.phone-app-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #dce4ee;
    color: var(--brand-dark);
    font-weight: 850;
}

.phone-app-head b {
    padding: 5px 8px;
    background: #e7f5f2;
    color: var(--brand);
    font-size: 11px;
}

.phone-stat {
    padding: 14px;
    border: 1px solid #d8e1ea;
    background: #fff;
}

.phone-stat small {
    display: block;
    color: var(--muted);
    font-weight: 700;
}

.phone-stat strong {
    display: block;
    margin-top: 6px;
    font-size: 24px;
    line-height: 1.15;
}

.phone-menu {
    display: grid;
    gap: 8px;
}

.phone-menu div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px;
    border: 1px solid #dce4ee;
    background: #fff;
}

.phone-menu span {
    width: 22px;
    height: 22px;
    background: #e7f5f2;
}

.phone-menu b {
    font-size: 13px;
}

.phone-demo-button {
    margin-top: auto;
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    background: var(--brand);
    color: #fff;
    font-weight: 850;
}

.mockup-note {
    max-width: 310px;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    text-align: center;
}

.compact-product-section {
    padding: 42px 0;
}

.product-focus-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 26px;
    align-items: stretch;
}

.product-focus-grid h2,
.product-workflow-grid h2 {
    margin: 12px 0 16px;
    font-size: 32px;
    line-height: 1.12;
}

.product-result-card {
    padding: 22px;
    border: 1px solid #cfd9e5;
    background: #f8fafc;
}

.product-result-card span {
    display: block;
    margin-bottom: 10px;
    color: var(--brand);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.product-result-card p {
    margin: 0;
    color: #344054;
    font-size: 18px;
    line-height: 1.55;
}

.seo-answer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 26px;
    align-items: start;
}

.seo-answer-grid h2 {
    margin: 12px 0 14px;
    font-size: 34px;
    line-height: 1.12;
}

.seo-lead {
    max-width: 780px;
    margin: 0 0 18px;
    color: #1f2937;
    font-size: 18px;
    line-height: 1.7;
}

.seo-device-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.25;
}

.seo-device-card p {
    font-size: 16px;
}

.license-plan-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.license-plan-card {
    position: relative;
    min-height: 170px;
    padding: 18px;
    border: 1px solid #d4dde8;
    background: #fff;
}

.license-plan-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.license-plan-card p {
    min-height: 42px;
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 13px;
}

.license-plan-card strong {
    display: block;
    font-size: 25px;
    line-height: 1.1;
}

.plan-badge {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 5px 8px;
    background: #e8f5f3;
    color: var(--brand);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.product-workflow-grid {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

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

.product-timeline div {
    display: block;
    padding: 18px;
    border: 1px solid #d4dde8;
    background: #fff;
}

.product-timeline span {
    display: block;
    margin-bottom: 18px;
}

.product-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.seo-article-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.seo-article-card {
    min-height: 220px;
    padding: 18px;
    border: 1px solid #d4dde8;
    background: #fff;
}

.seo-article-card span {
    display: block;
    margin-bottom: 12px;
    color: var(--brand);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.seo-article-card h3 {
    margin: 0 0 10px;
    font-size: 19px;
    line-height: 1.28;
}

.seo-article-card h3 a {
    color: inherit;
}

.seo-article-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.timeline-list {
    display: grid;
    gap: 12px;
}

.timeline-list div {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 12px;
}

.timeline-list div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.timeline-list span {
    color: var(--brand);
    font-weight: 900;
    flex: 0 0 auto;
}

.feature-card h3 {
    margin-bottom: 8px;
}

.cta-band {
    background: #102725;
    color: #fff;
}

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

.cta-inner h2 {
    color: #fff;
    max-width: 740px;
}

.checkout-section {
    padding-top: 28px;
}

.checkout-hero {
    padding: 34px 0;
}

.checkout-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: end;
}

.checkout-hero h1 {
    margin-top: 10px;
    font-size: 38px;
}

.checkout-hero p {
    max-width: 660px;
}

.checkout-hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.checkout-hero-points span {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d7e4e1;
    background: #f4faf9;
    color: var(--brand-dark);
    font-size: 12px;
    font-weight: 900;
    text-align: center;
}

.checkout-layout {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 22px;
}

.checkout-card {
    padding: 22px;
}

.checkout-card .form-head {
    padding-bottom: 14px;
    border-bottom: 1px solid #edf2f7;
}

.checkout-card .form-head h2 {
    font-size: 24px;
    line-height: 1.15;
}

.checkout-guard-note {
    padding: 12px 14px;
    border: 1px solid #cfe5e2;
    background: #f3faf9;
    color: #42526b;
    font-size: 13px;
    line-height: 1.55;
}

.checkout-guard-note a {
    color: var(--brand-dark);
    font-weight: 850;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.checkout-conflict-panel {
    display: grid;
    gap: 14px;
    padding: 16px;
    border: 1px solid #d7a53f;
    background: #fffaf0;
    color: #1f2937;
}

.checkout-conflict-panel span {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 8px;
    padding: 4px 8px;
    border: 1px solid #f3d48a;
    background: #fff7df;
    color: #8a5a00;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.checkout-conflict-panel h3 {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.2;
}

.checkout-conflict-panel p {
    margin: 0;
    color: #5d6678;
    font-size: 13px;
    line-height: 1.55;
}

.checkout-conflict-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.checkout-conflict-specs div {
    padding: 11px 12px;
    border: 1px solid #eadfc7;
    background: rgba(255, 255, 255, 0.72);
}

.checkout-conflict-specs small {
    display: block;
    margin-bottom: 4px;
    color: #7a8799;
    font-size: 11px;
    font-weight: 800;
}

.checkout-conflict-specs b {
    display: block;
    color: #111827;
    font-size: 13px;
    line-height: 1.35;
}

.checkout-conflict-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.checkout-conflict-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.checkout-conflict-note {
    padding-top: 2px;
    color: #7a4b00 !important;
    font-weight: 700;
}

@media (max-width: 980px) {
    .checkout-conflict-specs,
    .checkout-conflict-actions {
        grid-template-columns: 1fr;
    }
}

.checkout-contact-grid {
    gap: 12px;
}

.form-grid {
    display: grid;
    gap: 16px;
}

.form-head h2 {
    margin: 0 0 6px;
}

.form-head p {
    margin: 0;
    color: var(--muted);
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.field label {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    color: #344054;
    font-weight: 800;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid #cbd5e1;
    background: #fff;
    color: var(--ink);
}

.field textarea {
    min-height: 110px;
    resize: vertical;
}

.field small {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}

.form-error {
    display: block;
    margin-top: 7px;
    color: #b42318;
    font-size: 13px;
    font-weight: 800;
}

.payment-proof-panel {
    display: grid;
    gap: 16px;
}

.marketplace-template-panel {
    display: grid;
    gap: 14px;
}

.marketplace-template {
    display: block;
    width: 100%;
    min-height: 360px;
    padding: 18px;
    border: 1px solid #d7e0ea;
    background: #f8fafc;
    color: var(--ink);
    font: 15px/1.7 Arial, sans-serif;
    resize: vertical;
    white-space: pre-wrap;
}

.payment-proof-panel h2 {
    margin-bottom: 6px;
}

.proof-current {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px;
    border: 1px solid #abefc6;
    background: #ecfdf3;
}

.proof-current b,
.proof-current span {
    display: block;
}

.proof-current span {
    margin-top: 3px;
    color: #067647;
    font-size: 13px;
}

.proof-current a {
    white-space: nowrap;
    color: var(--brand-dark);
    font-weight: 900;
    text-decoration: underline;
}

.proof-upload-form {
    display: grid;
    gap: 12px;
}

.proof-upload-form input[type="file"] {
    padding: 11px;
    cursor: pointer;
}

.activation-wait-panel {
    display: grid;
    gap: 18px;
    border-color: #c8dedb;
    background: #fbfefe;
}

.activation-wait-head h2 {
    margin: 8px 0 6px;
}

.activation-wait-head p {
    margin: 0;
    color: var(--muted);
}

.activation-checklist {
    display: grid;
    gap: 10px;
}

.activation-checklist div {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 3px;
    padding: 13px;
    border: 1px solid #dbe7e5;
    background: #f4faf9;
}

.activation-checklist span {
    grid-row: span 2;
    color: var(--brand);
    font-size: 12px;
    font-weight: 950;
}

.activation-checklist b {
    line-height: 1.25;
}

.activation-checklist p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.activation-contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px;
    border: 1px solid #c8dedb;
    background: #eef7f6;
}

.activation-contact-box span,
.activation-contact-box b {
    display: block;
}

.activation-contact-box span {
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.activation-contact-box b {
    overflow-wrap: anywhere;
}

.lookup-grid {
    display: grid;
    grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.lookup-card {
    padding: 24px;
}

.lookup-help h2 {
    margin-bottom: 14px;
}

.lookup-benefits {
    display: grid;
    gap: 10px;
}

.lookup-benefits div,
.license-status-box {
    padding: 14px;
    border: 1px solid #e1e8f0;
    background: #f8fafc;
}

.lookup-benefits b,
.lookup-benefits span {
    display: block;
}

.lookup-benefits b {
    margin-bottom: 4px;
}

.lookup-benefits span {
    color: var(--muted);
    font-size: 14px;
}

.license-status-box {
    margin-top: 16px;
}

.license-status-box h3 {
    margin: 0 0 10px;
}

.license-price-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.license-price-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: start;
    min-height: 88px;
    padding: 13px;
    border: 1px solid #d8e0ea;
    background: #f8fafc;
    cursor: pointer;
}

.license-price-item.active {
    border-color: var(--brand);
    background: #eef8f6;
    box-shadow: inset 0 0 0 1px var(--brand);
}

.license-price-item b,
.license-price-item span {
    display: block;
}

.license-price-item b {
    margin-bottom: 4px;
}

.license-price-item span {
    color: var(--muted);
    font-size: 13px;
}

.license-price-item strong {
    color: var(--brand-dark);
    white-space: nowrap;
}

.license-price-item em {
    position: absolute;
    right: 12px;
    bottom: 10px;
    font-style: normal;
    font-size: 11px;
    font-weight: 900;
    color: #b54708;
    background: #fffaeb;
    border: 1px solid #fedf89;
    padding: 3px 7px;
}

.sticky-summary {
    position: sticky;
    top: 92px;
}

.checkout-summary {
    padding: 20px;
}

.checkout-summary h3 {
    margin: 0 0 14px;
}

.checkout-note-field textarea {
    min-height: 74px;
}

.notice-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.notice-list p {
    margin: 0;
    color: var(--muted);
    background: #f8fafc;
    border: 1px solid #e5ebf2;
    padding: 14px;
    font-size: 14px;
}

.payment-instructions {
    display: grid;
    gap: 16px;
}

.payment-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
}

.payment-head h2 {
    margin: 0 0 4px;
}

.payment-head p {
    margin: 0;
    color: var(--muted);
}

.payment-head span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    background: #eef8f6;
    color: var(--brand-dark);
    font-size: 12px;
    font-weight: 900;
}

.payment-picker {
    position: relative;
    width: min(100%, 360px);
}

.payment-picker-trigger {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid var(--brand);
    background: var(--brand);
    color: #fff;
    font: inherit;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
}

.payment-picker-trigger::after {
    content: "Pilih";
    float: right;
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
    text-transform: uppercase;
}

.payment-picker-menu {
    display: grid;
    gap: 8px;
    margin-top: 8px;
    padding: 8px;
    border: 1px solid #d8e0ea;
    background: #fff;
    box-shadow: 0 16px 34px rgba(16, 24, 40, .12);
}

.payment-picker-menu[hidden],
.payment-method-detail[hidden] {
    display: none !important;
}

.payment-picker-menu button {
    display: grid;
    gap: 3px;
    padding: 12px;
    border: 1px solid #d8e0ea;
    background: #f8fafc;
    color: var(--ink);
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.payment-picker-menu button:hover,
.payment-picker-menu button.active {
    border-color: var(--brand);
    background: #eef8f6;
}

.payment-picker-menu span {
    color: var(--muted);
    font-size: 13px;
}

.payment-method-detail {
    display: grid;
    gap: 14px;
    padding: 16px;
    border: 1px solid #d8e0ea;
    background: #fff;
}

.payment-method-title {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.payment-method-title b,
.payment-method-title span {
    display: block;
}

.payment-method-title b {
    color: var(--ink);
    font-size: 17px;
}

.payment-method-title span {
    color: var(--muted);
    font-size: 14px;
    text-align: right;
}

.bank-account-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
}

.bank-account-item {
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid #d8e0ea;
    background: #f8fafc;
}

.bank-account-item > b {
    color: var(--brand-dark);
    font-size: 16px;
}

.bank-account-item .summary-row {
    align-items: flex-start;
}

.bank-account-item .summary-row strong {
    overflow-wrap: anywhere;
    text-align: right;
}

.qris-payment-detail img {
    width: min(100%, 260px);
    aspect-ratio: 1;
    object-fit: contain;
    border: 1px solid #d8e0ea;
    background: #fff;
}

.payment-method-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.payment-method-card {
    border: 1px solid #d8e0ea;
    background: #f8fafc;
    padding: 14px;
}

.payment-method-card > b {
    display: block;
    margin-bottom: 10px;
}

.payment-method-card .summary-row {
    padding: 8px 0;
}

.qris-card img {
    display: block;
    width: min(100%, 220px);
    aspect-ratio: 1;
    object-fit: contain;
    border: 1px solid #d8e0ea;
    background: #fff;
}

.qris-card span,
.payment-note,
.payment-confirm-note {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.payment-confirm-note {
    border: 1px solid #fedf89;
    background: #fffaeb;
    color: #93370d;
    padding: 12px;
}

.download-status {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 11px;
    font-size: 12px;
    font-weight: 850;
    margin-bottom: 16px;
    color: #fff;
    background: var(--brand);
}

.download-status.ok {
    color: #fff;
    background: #157a72;
}

.download-status.pending {
    color: #fff;
    background: #9a4d0f;
}

.download-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.download-choice-hero {
    background:
        linear-gradient(90deg, rgba(15, 64, 61, .06), rgba(15, 64, 61, 0)),
        #ffffff;
}

.download-picker-section {
    background: #f4f7fa;
}

.download-picker-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: end;
    margin-bottom: 22px;
}

.download-picker-top .section-title {
    margin-bottom: 0;
}

.download-picker-help {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border: 1px solid #d8dee8;
    background: #ffffff;
}

.download-picker-help b {
    color: var(--ink);
    font-size: 14px;
}

.download-picker-help span {
    color: #556173;
    font-size: 13px;
    line-height: 1.5;
}

.download-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.download-product-card {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    gap: 18px;
    min-height: 100%;
    padding: 22px;
    border: 1px solid #d5dee9;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(18, 24, 38, .05);
}

.download-product-card-kasir {
    border-top: 4px solid #157a72;
}

.download-product-card-rental {
    border-top: 4px solid #172947;
}

.download-product-card-laundry {
    border-top: 4px solid #3267a8;
}

.download-product-head {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    position: relative;
    min-height: 70px;
}

.download-product-icon {
    width: 48px;
    height: 48px;
    max-width: 48px;
    max-height: 48px;
    min-width: 48px;
    display: grid;
    place-items: center;
    border: 1px solid #c9dfdc;
    background: #eef8f6;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 900;
    overflow: hidden;
}

.download-product-card .download-product-icon > img.download-product-thumb-img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.download-product-card-rental .download-product-icon {
    border-color: #c9d4e5;
    background: #edf2f8;
    color: #172947;
}

.download-product-card-laundry .download-product-icon {
    border-color: #c8dcf5;
    background: #edf5ff;
    color: #27548d;
}

.download-product-title {
    min-width: 0;
    padding-right: 90px;
}

.download-product-title span {
    display: block;
    margin-bottom: 5px;
    color: #667085;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
}

.download-product-card h3 {
    margin: 0;
    color: var(--ink);
    font-size: 24px;
    line-height: 1.15;
}

.download-product-status {
    position: absolute;
    top: 0;
    right: 0;
    min-height: 26px;
    display: inline-flex;
    align-items: center;
    padding: 0 9px;
    border: 1px solid #d5dee9;
    background: #f8fafc;
    color: #667085;
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap;
}

.download-product-status.is-ready {
    border-color: #c9dfdc;
    background: #eef8f6;
    color: var(--brand-dark);
}

.download-product-status.is-pending {
    border-color: #ead7bf;
    background: #fff7ed;
    color: #9a4d0f;
}

.download-product-copy {
    min-height: 48px;
    margin: 0;
    color: #556173;
    font-size: 14px;
    line-height: 1.55;
}

.download-platform-list {
    display: grid;
    gap: 10px;
}

.download-platform-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 48px;
    padding: 11px 12px;
    border: 1px solid #e1e7ef;
    background: #f8fafc;
}

.download-platform-list b {
    color: #243047;
    font-size: 13px;
    line-height: 1.25;
}

.download-platform-list small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
    text-align: right;
    white-space: nowrap;
}

.download-platform-list .ready {
    border-color: #c9dfdc;
    background: #f1f8f7;
}

.download-platform-list .ready small {
    color: var(--brand-dark);
}

.download-platform-list .pending {
    color: #667085;
}

.download-product-card-rental .download-platform-list .ready {
    border-color: #c9d4e5;
    background: #f3f6fa;
}

.download-product-card-rental .download-platform-list .ready small {
    color: #172947;
}

.download-product-card-laundry .download-platform-list .ready {
    border-color: #c8dcf5;
    background: #f4f8ff;
}

.download-product-card-laundry .download-platform-list .ready small {
    color: #27548d;
}

.download-card-actions {
    display: grid;
    grid-template-columns: 1.25fr .95fr;
    gap: 10px;
    margin-top: 2px;
}

.download-card-actions .btn {
    width: 100%;
    min-height: 44px;
}

.download-picker-note {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    padding: 16px 18px;
    border: 1px solid #c9dfdc;
    background: #eef8f6;
}

.download-picker-note b {
    flex: 0 0 auto;
    color: var(--brand-dark);
}

.download-picker-note span {
    color: #344054;
    font-size: 14px;
}

.download-summary {
    margin: 22px 0;
}

.download-panel h2 {
    margin-bottom: 12px;
}

.download-panel p {
    line-height: 1.55;
}

.empty-download {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    padding: 16px;
    border: 1px solid #e5ebf2;
    background: #f8fafc;
}

.empty-download b,
.empty-download span {
    display: block;
}

.empty-download span {
    color: var(--muted);
    font-size: 14px;
}

.download-editor-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.pricing-editor-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 16px;
    border: 1px solid #d8e0ea;
    background: #f8fafc;
}

.pricing-editor-wide {
    grid-column: 1 / -1;
}

.download-editor-card {
    display: grid;
    gap: 14px;
    padding: 16px;
    border: 1px solid #d8e0ea;
    background: #f8fafc;
}

.download-editor-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.download-editor-head b,
.download-editor-head span {
    display: block;
}

.download-editor-head b {
    margin-bottom: 4px;
    color: var(--ink);
}

.download-editor-head span {
    color: var(--muted);
    font-size: 13px;
}

.download-editor-head a {
    flex: 0 0 auto;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 850;
}

.product-thumbnail-editor {
    background: #ffffff;
}

.admin-product-thumb-preview,
.admin-product-thumb-placeholder {
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
    border: 1px solid #c9dfdc;
    background: #eef8f6;
}

.admin-product-thumb-preview {
    object-fit: cover;
}

.admin-product-thumb-placeholder {
    display: grid;
    place-items: center;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 900;
}

.muted {
    color: var(--muted);
}

.small {
    font-size: 13px;
}

.status-note {
    padding: 14px 16px;
    border: 1px solid #fedf89;
    background: #fffaeb;
    color: #9a5200;
    font-size: 14px;
}

.summary {
    display: grid;
    gap: 12px;
}

.compact-summary {
    margin: 14px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 10px;
}

.summary-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.summary-row code {
    max-width: 68%;
    overflow-wrap: anywhere;
    color: var(--brand-dark);
    font-size: 12px;
    text-align: right;
}

.contact-help-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.contact-help-grid div {
    border: 1px solid var(--line);
    background: #f8fafc;
    padding: 14px;
}

.contact-help-grid b {
    display: block;
    margin-bottom: 6px;
    color: var(--ink);
}

.contact-help-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.alert {
    padding: 12px 14px;
    margin-bottom: 14px;
    border: 1px solid var(--line);
    background: #fff;
}

.alert.success {
    border-color: #abefc6;
    background: #ecfdf3;
    color: #067647;
}

.alert.error {
    border-color: #fecdca;
    background: #fef3f2;
    color: #b42318;
}

footer {
    padding: 30px 0;
    border-top: 1px solid var(--line);
    color: var(--muted);
    background: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
    gap: 24px;
    align-items: start;
}

.footer-grid p,
.footer-grid span {
    display: block;
    margin: 4px 0 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 800;
}

.footer-links a {
    color: #344054;
}

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

.footer-product-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    margin-top: 14px;
}

.footer-product-links span {
    width: 100%;
    margin: 0;
    color: var(--ink);
    font-size: 13px;
    font-weight: 850;
}

.footer-product-links a {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    padding: 0 10px;
    border: 1px solid #d7e4e1;
    background: #f6fbfa;
    color: var(--brand-dark);
    font-size: 12px;
    font-weight: 850;
    line-height: 1;
}

.footer-product-links a:hover {
    border-color: #9ccbc5;
    background: #eef8f6;
    color: var(--brand);
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 0 12px 0 8px;
    border: 1px solid #d7e4e1;
    background: #f6fbfa;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.social-links a span {
    margin: 0;
}

.social-links a b {
    font-size: 13px;
}

.channel-icon {
    width: 27px;
    height: 27px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid #b9d6d2;
    background: #eef8f6;
    color: var(--brand);
}

.channel-icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.channel-icon svg.brand-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    stroke: none;
}

.channel-icon svg.brand-icon * {
    stroke-linecap: round;
    stroke-linejoin: round;
}

.channel-icon img {
    width: 18px;
    height: 18px;
    display: block;
    object-fit: contain;
}

.social-links .channel-icon {
    width: 24px;
    height: 24px;
    border: 0;
    background: transparent;
}

.social-links .channel-icon img {
    width: 22px;
    height: 22px;
}

.social-links .channel-icon-youtube,
.market-links .channel-icon-youtube {
    border-color: #ffd5d5;
    background: #fff1f1;
    color: #ff0000;
}

.channel-icon-youtube .brand-shape {
    fill: #ff0000;
    stroke: none;
}

.channel-icon-youtube .brand-cutout {
    fill: #fff;
    stroke: none;
}

.social-links .channel-icon-shopee,
.market-links .channel-icon-shopee {
    border-color: #ffd9c8;
    background: #fff3ee;
    color: #ee4d2d;
}

.channel-icon-shopee .brand-shape {
    fill: #ee4d2d;
    stroke: none;
}

.channel-icon-shopee .brand-handle {
    fill: none;
    stroke: #fff;
    stroke-width: 1.7;
}

.channel-icon-shopee text {
    fill: #fff;
    stroke: none;
    font-size: 7.4px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900;
}

.social-links .channel-icon-tiktok,
.market-links .channel-icon-tiktok {
    border-color: #d7dbe6;
    background: #f5f6fb;
    color: #111827;
}

.social-links .channel-icon-instagram {
    border-color: #f0c9da;
    background: #fff1f7;
    color: #c13584;
}

.social-links .channel-icon-facebook {
    border-color: #c9daf8;
    background: #eef5ff;
    color: #1877f2;
}

.social-links .channel-icon-whatsapp {
    border-color: #bfeccb;
    background: #edfff2;
    color: #25d366;
}

.social-links .channel-icon {
    border: 0;
    background: transparent;
}

.footer-copy {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
    font-weight: 750;
    text-align: center;
}

.admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 260px 1fr;
}

.sidebar {
    background: #102725;
    color: #d5e7e5;
    padding: 22px;
}

.sidebar .brand {
    color: #fff;
    margin-bottom: 28px;
}

.side-nav {
    display: grid;
    gap: 8px;
}

.side-nav a,
.side-nav button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 12px;
    background: transparent;
    border: 0;
    color: #d5e7e5;
    text-align: left;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.side-nav a.active,
.side-nav a:hover,
.side-nav button:hover {
    background: rgba(255,255,255,.09);
    color: #fff;
}

.side-nav a.active {
    position: relative;
    background: rgba(255,255,255,.14);
    color: #fff;
    box-shadow: inset 3px 0 0 #7bd3c8;
}

.admin-main {
    padding: 28px;
    padding-bottom: 96px;
}

.admin-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}

.admin-top h1 {
    margin: 0;
}

.admin-actions-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.admin-actions-inline form {
    margin: 0;
}

.admin-section-panel {
    margin-bottom: 22px;
}

.admin-section-head,
.admin-section-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.admin-section-head h2,
.admin-section-title h2 {
    margin: 0 0 4px;
    font-size: 20px;
}

.admin-section-head p,
.admin-section-title p {
    margin: 0;
}

.settings-tabbar {
    position: sticky;
    top: 0;
    z-index: 25;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
    border: 1px solid #d8dee8;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(10px);
}

.settings-tabbar button {
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid #d8dee8;
    background: #f8fafc;
    color: var(--ink);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.settings-tabbar button.active {
    border-color: var(--brand);
    background: var(--brand);
    color: #fff;
}

[data-settings-panel][hidden] {
    display: none !important;
}

.sticky-admin-submit {
    position: fixed;
    left: 260px;
    right: 0;
    bottom: 0;
    z-index: 35;
    padding: 12px 28px;
    border-top: 1px solid #d8dee8;
    background: rgba(245, 247, 250, .94);
    backdrop-filter: blur(10px);
}

.sticky-admin-submit .btn {
    width: 100%;
}

.payment-account-list {
    display: grid;
    gap: 12px;
    margin-bottom: 12px;
}

.payment-account-row {
    display: grid;
    grid-template-columns: minmax(140px, 1fr) minmax(160px, 1fr) minmax(180px, 1fr) auto;
    gap: 10px;
    align-items: end;
    padding: 14px;
    border: 1px solid #d8e0ea;
    background: #f8fafc;
}

.payment-account-row .field {
    gap: 6px;
}

.channel-link-row {
    grid-template-columns: minmax(130px, .8fr) minmax(150px, 1fr) minmax(220px, 1.2fr) minmax(180px, 1fr) minmax(170px, .9fr) auto;
}

.btn-danger-soft {
    border-color: #fecdca;
    background: #fff5f5;
    color: #b42318;
}

.compact-alert {
    margin-bottom: 14px;
}

.admin-compact-table {
    margin-top: 0;
}

.license-filter-bar {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    margin-bottom: 14px;
}

.license-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.license-tabs a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    border: 1px solid #d8dee8;
    background: #f8fafc;
    color: var(--ink);
    font-weight: 850;
}

.license-tabs a.active {
    border-color: var(--brand);
    background: var(--brand);
    color: #fff;
}

.license-sort-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.license-sort-form label {
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.license-sort-form select {
    min-height: 38px;
    padding: 0 34px 0 10px;
    border: 1px solid #d8dee8;
    background: #fff;
    font-weight: 800;
}

.license-search-panel {
    display: grid;
    grid-template-columns: auto minmax(260px, 1fr) auto;
    gap: 10px;
    align-items: center;
    margin: 0 0 14px;
    padding: 12px;
    border: 1px solid #d8dee8;
    background: #f8fafc;
}

.license-search-panel label,
.license-search-panel span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.license-search-panel input {
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid #cbd5e1;
    background: #fff;
    color: var(--ink);
    font-weight: 750;
}

.license-search-panel input:focus {
    outline: 2px solid rgba(23, 107, 102, .16);
    border-color: var(--brand);
}

.license-kind-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 14px;
}

.license-kind-bar a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    border: 1px solid #d8dee8;
    background: #fff;
    color: var(--ink);
    font-weight: 850;
}

.license-kind-bar a.active {
    border-color: var(--brand);
    background: #e9f7f5;
    color: var(--brand);
}

.demo-cleanup-panel {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(220px, 300px) auto;
    gap: 12px;
    align-items: center;
    margin: 0 0 14px;
    padding: 14px;
    border: 1px solid #fecdca;
    background: #fff8f8;
}

.demo-cleanup-panel b,
.demo-cleanup-panel span {
    display: block;
}

.demo-cleanup-panel b {
    margin-bottom: 3px;
    color: #b42318;
}

.demo-cleanup-panel span {
    color: #667085;
}

.demo-cleanup-panel input {
    min-height: 42px;
    border: 1px solid #fecdca;
    background: #fff;
}

.license-edit-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 2px;
}

.license-edit-summary div {
    min-height: 74px;
    padding: 14px 16px;
    border: 1px solid #dbe4ef;
    background: #f8fafc;
}

.license-edit-summary span {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.license-edit-summary b {
    word-break: break-word;
}

.license-edit-form {
    display: grid;
    gap: 14px;
    max-width: 1180px;
}

.license-edit-sections {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 14px;
    align-items: start;
}

.license-edit-section {
    display: grid;
    gap: 12px;
    padding: 14px;
    border: 1px solid #dbe4ef;
    background: #fbfdff;
}

.license-edit-status-section {
    grid-column: 1 / -1;
}

.license-edit-section-head h2 {
    margin: 0 0 4px;
    font-size: 16px;
}

.license-edit-section-head p {
    margin: 0;
}

.license-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
}

.license-edit-form .license-edit-section .license-field-grid {
    grid-template-columns: 1fr;
}

.license-field-grid .field {
    display: block;
    align-content: start;
    margin: 0;
}

.license-field-grid .field span {
    display: block;
    margin-bottom: 4px;
    color: #344054;
    font-size: 12px;
    font-weight: 850;
}

.license-field-grid .field input,
.license-field-grid .field select {
    width: 100%;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid #cbd5e1;
    background: #fff;
    color: var(--ink);
    font-weight: 750;
}

.license-field-grid .field input:focus,
.license-field-grid .field select:focus {
    outline: 2px solid rgba(23, 107, 102, .16);
    border-color: var(--brand);
}

.license-field-grid .field small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.35;
}

.license-toggle-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.license-edit-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 2px;
}

.license-device-panel {
    margin-top: 18px;
}

.license-device-panel .admin-section-head form {
    flex: 0 0 auto;
    margin: 0;
}

.license-device-list {
    display: grid;
    gap: 10px;
}

.license-device-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid #dbe4ef;
    background: #f8fafc;
}

.license-device-main {
    min-width: 0;
}

.license-device-main b,
.license-device-main span {
    display: block;
}

.license-device-main b {
    margin-bottom: 4px;
    color: var(--ink);
    word-break: break-all;
}

.license-device-main span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.empty-device-state {
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid #dbe4ef;
    background: #f8fafc;
}

.empty-device-state span {
    color: var(--muted);
}

.check-row {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    border: 1px solid var(--line);
    background: #f8fafc;
    font-weight: 800;
}

.checkbox-stack {
    display: grid;
    gap: 10px;
}

.check-row input[type="checkbox"],
.radio-box input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-height: 18px;
    flex: 0 0 18px;
    margin: 0;
    accent-color: var(--brand);
}

.danger-zone {
    margin-top: 18px;
    border-color: #ffb4b4;
    background: #fff8f8;
}

.danger-zone h2 {
    margin: 0 0 6px;
    color: var(--danger);
}

.danger-zone form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
    gap: 12px;
    align-items: end;
    margin-top: 16px;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}

.stat {
    background: #fff;
    border: 1px solid var(--line);
    padding: 18px;
}

.stat span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 6px;
}

.stat b {
    font-size: 24px;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid var(--line);
}

.table th,
.table td {
    padding: 14px 16px;
    border-bottom: 1px solid #e9eef5;
    text-align: left;
    vertical-align: top;
}

.table th {
    color: #526174;
    font-size: 12px;
    text-transform: uppercase;
    background: #f8fafc;
}

.table .clickable-row {
    cursor: pointer;
}

.table .clickable-row td {
    transition: background 0.16s ease, box-shadow 0.16s ease;
}

.table .clickable-row:hover td {
    background: #f5f9fb;
}

.table .clickable-row:focus {
    outline: none;
}

.table .clickable-row:focus td {
    background: #eef8f7;
    box-shadow: inset 0 1px 0 rgba(17, 119, 111, 0.18), inset 0 -1px 0 rgba(17, 119, 111, 0.18);
}

.table .clickable-row:active td {
    background: #e8f3f2;
}

.badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 8px;
    font-size: 12px;
    font-weight: 800;
    background: #edf2f7;
    color: #344054;
}

.badge.ok {
    background: #dcfae6;
    color: #067647;
}

.badge.warn {
    background: #fffaeb;
    color: #b54708;
}

.badge.danger {
    background: #fee4e2;
    color: #b42318;
}

.password-reveal {
    display: inline-block;
    min-width: 88px;
    padding: 0;
    border: 0;
    background: transparent;
}

.password-reveal summary {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 0 9px;
    border: 1px solid #d4dde8;
    background: #f8fafc;
    color: var(--brand-dark);
    font-size: 12px;
    font-weight: 850;
    list-style: none;
}

.password-reveal summary::-webkit-details-marker {
    display: none;
}

.password-reveal code {
    display: block;
    margin-top: 6px;
    padding: 6px 8px;
    border: 1px solid #d4dde8;
    background: #fff;
    color: var(--ink);
    font-size: 12px;
    word-break: break-word;
}

.actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.radio-box {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    color: #344054;
    font-weight: 800;
}

@media (max-width: 980px) {
    .site-shell {
        padding-top: 64px;
    }

    .nav-links {
        display: none;
    }

    .mobile-nav-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        flex: 0 0 auto;
    }

    .mobile-site-menu {
        display: block;
    }

    .nav {
        min-height: 64px;
    }

    .brand {
        min-width: 0;
    }

    .brand span:last-child {
        min-width: 0;
    }

    .brand strong {
        max-width: 175px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .brand small {
        max-width: 230px;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        line-height: 1.2;
    }

    .brand-mark,
    .brand-logo {
        width: 38px;
        height: 38px;
    }

    .hero {
        padding: 42px 0 34px;
    }

    .hero::before {
        background:
            linear-gradient(180deg, rgba(16,39,37,.98), rgba(16,39,37,.94)),
            #102725;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 34px;
        line-height: 1.08;
    }

    .hero h1 {
        margin-top: 0;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.62;
    }

    .hero-actions {
        grid-template-columns: 1fr;
        display: grid;
        gap: 10px;
        margin-top: 20px;
    }

    .download-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        display: grid;
        margin-top: 12px;
    }

    .hero-actions .btn,
    .download-actions a,
    .download-disabled {
        width: 100%;
    }

    .download-actions a,
    .download-disabled {
        min-height: 68px;
        padding: 12px;
    }

    .download-actions b,
    .download-disabled b {
        font-size: 15px;
        line-height: 1.2;
    }

    .demo-card {
        margin-top: 18px;
        padding: 14px;
    }

    .hero-points {
        gap: 8px;
    }

    .hero-points span {
        font-size: 12px;
        padding: 7px 9px;
    }

    .intro-grid,
    .hero-grid,
    .product-showcase-grid,
    .product-focus-grid,
    .product-workflow-grid,
    .seo-answer-grid,
    .checkout-hero-grid,
    .checkout-layout,
    .lookup-grid,
    .purchase-grid,
    .legal-grid,
    .contact-grid,
    .split-title,
    .proof-grid,
    .compare-grid,
    .faq-grid,
    .split,
    .detail-grid,
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .hero-copy,
    .hero-demo,
    .hero-cta {
        grid-column: 1;
        grid-row: auto;
    }

    .sticky-admin-submit {
        left: 0;
        padding: 10px 14px;
    }

    .settings-tabbar {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .settings-tabbar button {
        flex: 0 0 auto;
        min-height: 38px;
        padding: 0 14px;
    }

    .license-filter-bar {
        align-items: stretch;
        flex-direction: column;
    }

    .license-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: thin;
    }

    .license-tabs a {
        flex: 0 0 auto;
    }

    .license-sort-form {
        justify-content: space-between;
    }

    .license-sort-form select {
        min-width: 180px;
    }

    .license-search-panel {
        grid-template-columns: 1fr;
    }

    .demo-cleanup-panel {
        grid-template-columns: 1fr;
    }

    .demo-cleanup-panel .btn {
        width: 100%;
    }

    .tutorial-grid,
    .steps-grid,
    .stat-grid {
        grid-template-columns: 1fr;
    }

    .product-grid,
    .advanced-grid,
    .license-plan-grid,
    .download-product-grid,
    .seo-article-grid,
    .product-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .download-picker-top {
        grid-template-columns: 1fr;
        gap: 14px;
    }

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

    .product-showcase {
        padding: 34px 0;
    }

    .product-showcase-copy h1 {
        font-size: 34px;
    }

    .product-demo-wrap {
        justify-items: start;
    }

    .phone-mockup {
        width: min(100%, 320px);
    }

    .two-col,
    .checkout-contact-grid,
    .download-editor-grid,
    .pricing-editor-grid,
    .license-price-list,
    .proof-list,
    .license-field-grid,
    .license-edit-summary,
    .license-toggle-grid,
    .payment-account-row,
    .channel-link-row,
    .license-device-row,
    .danger-zone form {
        grid-template-columns: 1fr;
    }

    .license-device-panel .admin-section-head {
        align-items: stretch;
        flex-direction: column;
    }

    .license-device-panel .admin-section-head .btn,
    .license-device-row .btn {
        width: 100%;
    }

    .license-edit-actions {
        flex-direction: column-reverse;
    }

    .license-edit-actions .btn {
        width: 100%;
    }

    .license-edit-form .license-edit-sections {
        grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    }

    .license-edit-form .license-field-grid {
        grid-template-columns: 1fr;
    }

    .license-edit-form .license-toggle-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .license-edit-form .license-edit-actions {
        flex-direction: row;
    }

    .license-edit-form .license-edit-actions .btn {
        width: auto;
    }

    .sticky-summary {
        position: static;
    }

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

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

    .hero-grid {
        gap: 24px;
    }

    .hero-panel {
        box-shadow: 0 16px 38px rgba(0,0,0,.22);
    }

    .hero-demo {
        justify-items: start;
    }

    .hero-demo-tabs,
    .hero-phone-frame,
    .hero-demo-caption {
        width: min(100%, 330px);
    }

    .hero-demo-caption {
        width: auto;
    }

    .hero-phone-frame {
        box-shadow: 0 18px 44px rgba(0,0,0,.24);
    }

    .hero-metrics {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 12px;
    }

    .hero-metrics div {
        padding: 10px;
    }

    .hero-metrics b {
        font-size: 17px;
    }

    .hero-bars {
        height: 98px;
        gap: 9px;
        margin: 0 12px 12px;
        padding: 12px;
    }

    .hero-list {
        padding: 0 12px 12px;
    }

    .hero-list p {
        padding: 10px;
        font-size: 13px;
    }

    .section {
        padding: 34px 0;
    }

    .intro-grid h2,
    .section-title h2,
    .compare-grid h2,
    .cta-inner h2,
    .proof-copy h2 {
        font-size: 28px;
    }

    .section-title {
        margin-bottom: 18px;
    }

    .panel,
    .product-card,
    .step-card,
    .advanced-card,
    .purchase-card {
        padding: 16px;
    }

    .product-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .price {
        font-size: 26px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .footer-grid > div {
        min-width: 0;
    }

    .footer-grid p,
    .footer-grid span {
        max-width: 100%;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 14px;
    }

    .footer-links a {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .footer-product-links {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .footer-product-links a {
        width: 100%;
        justify-content: center;
    }

    .social-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .social-links a {
        width: 100%;
        min-width: 0;
        padding-right: 8px;
    }

    .social-links a b {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

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

    .market-links .btn {
        width: 100%;
    }

    .summary-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .summary-row code {
        max-width: 100%;
        text-align: left;
    }

    .contact-help-grid {
        grid-template-columns: 1fr;
    }

    .payment-method-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 980px) {
    footer {
        padding-bottom: 112px;
    }

    .mobile-floating-actions {
        position: fixed;
        right: 14px;
        bottom: 34px;
        z-index: 55;
        display: grid;
        gap: 8px;
        animation: floating-actions-in .42s ease both;
        transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    }

    .mobile-floating-actions.is-hidden-on-hero {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(12px);
    }

    .mobile-floating-actions a {
        width: 48px;
        height: 48px;
        display: grid;
        place-items: center;
        border: 0;
        background: transparent;
        box-shadow: none;
        transition: transform .18s ease, filter .18s ease;
        filter: drop-shadow(0 8px 14px rgba(16, 24, 40, .22));
        will-change: transform;
        animation: sticky-icon-breathe 2.8s ease-in-out infinite;
    }

    .mobile-floating-actions a:hover,
    .mobile-floating-actions a:focus-visible {
        transform: translateY(-4px) scale(1.08);
        filter: drop-shadow(0 12px 18px rgba(16, 24, 40, .28));
        animation-play-state: paused;
    }

    .mobile-floating-actions a:active {
        transform: translateY(0) scale(.96);
        filter: drop-shadow(0 5px 10px rgba(16, 24, 40, .22));
    }

    .mobile-floating-actions a.whatsapp {
        background: transparent;
    }

    .mobile-floating-actions a.shopee {
        background: transparent;
    }

    .mobile-floating-actions .channel-icon {
        width: 48px;
        height: 48px;
        border: 0;
        background: transparent;
        color: #fff;
    }

    .mobile-floating-actions .channel-icon svg {
        width: 46px;
        height: 46px;
        fill: #fff;
        stroke: none;
    }

    .mobile-floating-actions .channel-icon img {
        width: 46px;
        height: 46px;
    }

    .mobile-floating-actions .channel-icon-whatsapp img {
        width: 42px;
        height: 42px;
    }

    .mobile-floating-actions .channel-icon-shopee .brand-shape {
        fill: #fff;
    }

    .mobile-floating-actions .channel-icon-shopee .brand-handle {
        stroke: #ee4d2d;
    }

    .mobile-floating-actions .channel-icon-shopee text {
        fill: #ee4d2d;
    }

    @keyframes floating-actions-in {
        from {
            opacity: 0;
            transform: translateY(18px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes sticky-icon-breathe {
        0%,
        100% {
            transform: translateY(0) scale(1);
        }

        50% {
            transform: translateY(-2px) scale(1.03);
        }
    }

    .container {
        width: calc(100% - 28px);
        max-width: 390px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero {
        padding: 28px 0 24px;
    }

    .hero-grid {
        gap: 0;
        width: 100%;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        overflow: hidden;
    }

    .hero-copy {
        display: grid;
        gap: 14px;
    }

    .desktop-title,
    .desktop-copy {
        display: none;
    }

    .mobile-title,
    .mobile-copy {
        display: block;
    }

    .hero h1 {
        margin: 0;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.55;
    }

    .demo-card,
    .hero-actions,
    .download-actions {
        margin-top: 0;
    }

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

    .download-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .download-actions a,
    .download-disabled {
        min-height: 66px;
        padding: 10px 12px;
    }

    .download-actions b,
    .download-disabled b {
        font-size: 14px;
    }

    .download-actions a:nth-child(2),
    .download-actions .download-disabled:nth-child(2) {
        background: #fff;
        color: var(--ink);
    }

    .download-actions a:nth-child(2) span,
    .download-actions .download-disabled:nth-child(2) span {
        color: var(--muted);
    }

    .hero-panel {
        display: none;
    }

    .hero-demo {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding-top: 22px;
        justify-items: center;
        overflow: hidden;
    }

    .hero-demo-tabs,
    .hero-phone-frame,
    .hero-demo-caption {
        width: clamp(248px, 82vw, 310px);
        max-width: 100%;
    }

    .hero-demo-caption {
        width: auto;
        max-width: 100%;
    }

    .hero-demo-tabs button {
        height: 36px;
        font-size: 12px;
    }

    .hero-phone-frame {
        padding: 10px;
        margin-left: auto;
        margin-right: auto;
        flex: 0 1 auto;
    }

    .hero-phone-screen,
    .hero-demo-pane,
    .hero-media-preview {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .hero-media-preview img,
    .hero-media-preview video {
        max-width: 100%;
        min-width: 0;
    }

    .hero-app-preview {
        gap: 10px;
        padding: 12px;
    }

    .hero-app-total strong {
        font-size: 20px;
    }

    .purchase-card h2 {
        font-size: 26px;
        line-height: 1.16;
    }

    .page-hero {
        padding: 30px 0;
    }

    .page-hero.compact {
        padding: 20px 0;
    }

    .page-hero h1 {
        margin: 0 0 8px;
        font-size: 28px;
        line-height: 1.1;
    }

    .page-hero p {
        font-size: 14px;
        line-height: 1.55;
    }

    .checkout-hero {
        padding: 22px 0;
    }

    .checkout-hero h1 {
        margin: 8px 0 8px;
        font-size: 25px;
        line-height: 1.12;
    }

    .checkout-hero-points {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
        margin-top: 14px;
    }

    .checkout-hero-points span {
        min-height: 36px;
        padding: 0 6px;
        font-size: 10px;
        line-height: 1.2;
    }

    .checkout-section {
        padding-top: 18px;
    }

    .checkout-card,
    .checkout-summary {
        padding: 16px;
    }

    .download-grid {
        gap: 12px;
    }

    .download-product-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .download-product-card {
        padding: 16px;
        gap: 13px;
        box-shadow: none;
    }

    .download-product-card h3 {
        font-size: 21px;
    }

    .download-product-head {
        grid-template-columns: 44px minmax(0, 1fr);
        min-height: 58px;
    }

    .download-product-icon {
        width: 44px;
        height: 44px;
        max-width: 44px;
        max-height: 44px;
        min-width: 44px;
    }

    .download-product-title {
        padding-right: 0;
    }

    .download-product-title span {
        font-size: 11px;
    }

    .download-product-status {
        position: static;
        grid-column: 1 / -1;
        justify-self: start;
        min-height: 24px;
        margin-top: 2px;
    }

    .download-product-copy {
        min-height: 0;
        font-size: 13px;
    }

    .download-platform-list div {
        min-height: 42px;
        padding: 9px 10px;
    }

    .download-platform-list b,
    .download-platform-list small {
        font-size: 12px;
    }

    .download-card-actions {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .download-card-actions .btn {
        min-height: 42px;
    }

    .download-picker-note {
        display: grid;
        gap: 6px;
        padding: 14px;
    }

    .download-panel,
    .split > aside.panel {
        padding: 16px;
    }

    .download-status {
        min-height: 24px;
        margin-bottom: 10px;
        padding: 0 9px;
        font-size: 11px;
    }

    .download-panel h2,
    .split > aside.panel h3 {
        margin-bottom: 10px;
        font-size: 22px;
        line-height: 1.18;
    }

    .download-panel p,
    .split > aside.panel p {
        font-size: 14px;
        line-height: 1.5;
    }

    .download-panel .btn-wide {
        margin-top: 12px;
    }

    .download-summary {
        margin: 14px 0;
    }

    .checkout-card .form-head {
        padding-bottom: 10px;
    }

    .checkout-card .form-head h2 {
        font-size: 21px;
    }

    .checkout-card .form-head p {
        font-size: 13px;
        line-height: 1.45;
    }

    .activation-contact-box {
        display: grid;
        gap: 12px;
    }

    .activation-contact-box .btn {
        width: 100%;
    }

    .checkout-card.form-grid,
    .checkout-card .form-grid {
        gap: 12px;
    }

    .checkout-form > .two-col:not(.checkout-contact-grid) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .field label {
        margin-bottom: 5px;
        font-size: 12px;
    }

    .field input,
    .field select,
    .field textarea {
        min-height: 43px;
        padding: 8px 10px;
        font-size: 14px;
    }

    .checkout-license-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .license-price-item {
        grid-template-columns: 1fr;
        gap: 6px;
        min-height: 118px;
        padding: 10px;
    }

    .license-price-item span {
        font-size: 12px;
        line-height: 1.35;
    }

    .license-price-item strong {
        font-size: 14px;
    }

    .license-price-item em {
        position: static;
        justify-self: start;
        padding: 2px 6px;
        font-size: 10px;
    }

    .checkout-note-field textarea {
        min-height: 62px;
    }

    .checkout-summary .summary {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .checkout-summary .summary-row {
        display: block;
        padding: 12px;
        border: 1px solid #edf2f7;
        background: #f8fafc;
    }

    .checkout-summary .summary-row span {
        display: block;
        margin-bottom: 6px;
        font-size: 12px;
        font-weight: 750;
    }

    .checkout-summary .summary-row b {
        font-size: 14px;
        line-height: 1.25;
    }

    .notice-list {
        margin-top: 10px;
        gap: 8px;
    }

    .notice-list p {
        padding: 10px;
        font-size: 13px;
        line-height: 1.4;
    }

    .contact-grid .panel {
        padding: 16px;
    }

    .contact-grid h2,
    .contact-grid h3 {
        margin-bottom: 12px;
        font-size: 22px;
        line-height: 1.15;
    }

    .contact-grid .summary-row {
        padding: 9px 0;
    }

    .contact-grid .summary-row span,
    .contact-grid .summary-row b {
        font-size: 14px;
    }

    .contact-grid .hero-actions {
        margin-top: 14px;
    }

    .contact-help-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-top: 14px;
    }

    .contact-help-grid div {
        padding: 10px;
    }

    .contact-help-grid b {
        margin-bottom: 4px;
        font-size: 13px;
        line-height: 1.25;
    }

    .contact-help-grid p {
        font-size: 12px;
        line-height: 1.35;
    }

    .page-hero p {
        font-size: 14px;
        line-height: 1.5;
    }

    .section-title h2,
    .compare-grid h2,
    .cta-inner h2,
    .proof-copy h2 {
        font-size: 25px;
        line-height: 1.14;
    }

    .section-title p,
    .compare-grid p,
    .proof-copy p {
        font-size: 14px;
        line-height: 1.55;
    }

    .proof-copy h2 {
        font-size: 25px;
        line-height: 1.14;
    }

    .proof-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-top: 14px;
    }

    .proof-list span {
        padding: 10px;
    }

    .proof-list b {
        font-size: 13px;
    }

    .proof-list small {
        font-size: 11px;
    }

    .ops-board {
        padding: 14px;
        gap: 12px;
    }

    .ops-board-head b {
        font-size: 18px;
    }

    .ops-mini-grid {
        gap: 8px;
    }

    .ops-mini-grid div {
        padding: 10px;
    }

    .ops-mini-grid strong {
        font-size: 14px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .step-card {
        padding: 13px;
    }

    .step-card span {
        margin-bottom: 10px;
        font-size: 13px;
    }

    .step-card h3 {
        margin-bottom: 5px;
        font-size: 15px;
        line-height: 1.25;
    }

    .step-card p {
        font-size: 12px;
        line-height: 1.45;
    }

    .compare-table {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        border: 0;
        background: transparent;
    }

    .compare-table div {
        padding: 12px;
        border: 1px solid var(--line);
        background: #fff;
    }

    .compare-table div:last-child {
        border-bottom: 1px solid var(--line);
    }

    .compare-table b {
        font-size: 13px;
        line-height: 1.25;
    }

    .compare-table span {
        font-size: 11px;
        line-height: 1.4;
    }

    .advanced-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .advanced-card {
        padding: 13px;
    }

    .advanced-card b {
        margin-bottom: 6px;
        font-size: 14px;
        line-height: 1.25;
    }

    .advanced-card p {
        font-size: 12px;
        line-height: 1.45;
    }

    .mobile-scroll-hint {
        display: block;
    }

    .product-carousel {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(286px, 84%);
        grid-template-columns: none;
        gap: 12px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 0;
        padding: 0 22px 12px 0;
        margin-right: -14px;
        scrollbar-width: thin;
    }

    .product-carousel::after {
        content: "";
        width: 1px;
    }

    .product-carousel .product-card {
        scroll-snap-align: start;
        min-height: auto;
    }

    .product-card h3 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .product-card p {
        font-size: 14px;
        line-height: 1.55;
    }

    .product-card-exclusive {
        gap: 11px;
        padding: 16px;
    }

    .product-card-headline {
        font-size: 15px;
        line-height: 1.3;
    }

    .product-card-desc {
        min-height: 0;
        font-size: 12px !important;
        line-height: 1.45 !important;
    }

    .product-card-price .price {
        font-size: 23px;
    }

    .product-chip-list {
        grid-template-columns: 1fr;
        gap: 6px;
        margin: 10px 0;
    }

    .product-chip-list li {
        min-height: 0;
        padding: 7px 9px;
        font-size: 11px;
    }

    .feature-list {
        gap: 8px;
        margin: 14px 0;
    }

    .card-actions {
        gap: 8px;
    }

    .tutorial-toolbar {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-bottom: 12px;
    }

    .tutorial-toolbar a {
        min-height: 38px;
        padding: 0 8px;
        font-size: 12px;
        text-align: center;
    }

    .tutorial-title {
        gap: 6px;
        margin-bottom: 10px;
    }

    .tutorial-title h2 {
        font-size: 22px;
    }

    .tutorial-title p {
        font-size: 13px;
        line-height: 1.45;
    }

    .compact-tutorial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .tutorial-pdf-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .tutorial-pdf-card {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 12px;
    }

    .tutorial-card {
        min-width: 0;
    }

    .tutorial-copy {
        padding: 10px;
    }

    .tutorial-copy h3 {
        margin-bottom: 4px;
        font-size: 13px;
        line-height: 1.25;
    }

    .tutorial-copy p {
        display: none;
    }

    .tutorial-pdf-button {
        margin-top: 8px;
        min-height: 34px;
        padding: 0 10px;
        font-size: 12px;
    }

    .product-showcase {
        padding: 26px 0;
    }

    .product-showcase-grid {
        gap: 24px;
    }

    .product-showcase-copy h1 {
        margin: 10px 0;
        font-size: 28px;
        line-height: 1.12;
    }

    .product-showcase-copy p {
        font-size: 14px;
        line-height: 1.55;
    }

    .product-showcase-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        margin: 18px 0 10px;
    }

    .product-demo-wrap {
        justify-items: center;
    }

    .phone-mockup {
        width: min(100%, 280px);
        padding: 10px;
    }

    .phone-screen {
        min-height: 420px;
        padding: 12px;
    }

    .mockup-note {
        font-size: 11px;
    }

    .compact-product-section {
        padding: 28px 0;
    }

    .product-focus-grid h2,
    .product-workflow-grid h2,
    .seo-answer-grid h2 {
        font-size: 24px;
    }

    .product-result-card {
        padding: 16px;
    }

    .product-result-card p {
        font-size: 15px;
    }

    .license-plan-grid,
    .seo-article-grid,
    .product-feature-grid,
    .product-timeline {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .seo-lead {
        font-size: 16px;
    }

    .seo-article-card {
        min-height: auto;
        padding: 15px;
    }

    .license-plan-card {
        min-height: auto;
        padding: 15px;
    }

    .license-plan-card p {
        min-height: 0;
    }

    .product-timeline div {
        padding: 14px;
    }

    .product-timeline span {
        margin-bottom: 8px;
    }

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

@media (max-width: 420px) {
    .container {
        width: calc(100% - 24px);
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .brand strong {
        max-width: 210px;
    }

    .brand small {
        display: block;
        max-width: 230px;
        font-size: 11px;
    }

    .hero h1 {
        font-size: 29px;
        line-height: 1.1;
    }

    .page-hero h1 {
        font-size: 25px;
        line-height: 1.12;
    }

    .purchase-card h2 {
        font-size: 24px;
    }

    .download-actions a {
        min-height: 62px;
    }

    .checkout-select-grid {
        grid-template-columns: 1fr !important;
    }

}

@media (max-width: 340px) {
    .download-actions {
        grid-template-columns: 1fr;
    }

    .checkout-form > .two-col:not(.checkout-contact-grid),
    .checkout-license-list {
        grid-template-columns: 1fr;
    }
}

/* Admin Responsive Styles */
.admin-mobile-topbar {
    display: none;
    height: 60px;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    background: #102725;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.admin-mobile-topbar .brand {
    color: #fff;
    margin: 0;
    font-size: 16px;
    font-weight: 850;
    display: flex;
    align-items: center;
    gap: 12px;
}
.admin-mobile-topbar .brand-mark {
    width: 32px;
    height: 32px;
    font-size: 16px;
    background: #eef5f4;
    color: var(--brand);
    border-radius: 4px;
    display: grid;
    place-items: center;
}

.admin-menu-toggle {
    width: 38px;
    height: 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    border-radius: 4px;
}

.admin-menu-toggle span {
    width: 18px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

.admin-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 40;
    backdrop-filter: blur(2px);
}

@media (max-width: 980px) {
    .admin-mobile-topbar {
        display: flex;
    }
    
    .admin-shell {
        display: flex !important;
        flex-direction: column;
    }
    
    .sidebar {
        position: fixed;
        top: 0;
        left: -280px;
        bottom: 0;
        width: 260px;
        z-index: 50;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        box-shadow: 4px 0 24px rgba(0,0,0,0.2);
    }
    
    .sidebar.sidebar-open {
        transform: translateX(280px);
    }
    
    .admin-sidebar-overlay.active {
        display: block;
    }
    
    .admin-main {
        padding: 16px;
        padding-bottom: 96px;
    }
}

@media (max-width: 760px) {
    .license-edit-form .license-edit-sections {
        grid-template-columns: 1fr;
    }

    .license-edit-status-section {
        grid-column: auto;
    }

    .license-edit-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .license-edit-form .license-toggle-grid {
        grid-template-columns: 1fr;
    }

    .license-edit-form .license-edit-actions {
        flex-direction: column-reverse;
    }

    .license-edit-form .license-edit-actions .btn {
        width: 100%;
    }
}
