:root {
  --bg: #f5f7fc;
  --surface: #ffffff;
  --ink: #0b1020;
  --muted: #5a6376;
  --line: #e2e6f2;
  --brand: #2230e3;
  --brand-2: #5b6cff;
  --brand-soft: #ecedff;
  --shadow: 0 24px 70px rgba(20, 24, 80, .14);
  --radius: 8px;
  --font-th: "IBM Plex Sans Thai", system-ui, sans-serif;
  --font-latin: Inter, "IBM Plex Sans Thai", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; scrollbar-width: thin; scrollbar-color: rgba(34,48,227,.62) transparent; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { border: 3px solid transparent; border-radius: 999px; background: rgba(34,48,227,.66); background-clip: padding-box; }
::-webkit-scrollbar-thumb:hover { background: rgba(34,48,227,.86); background-clip: padding-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  overflow-x: clip;
  font-family: var(--font-th);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
.section-shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 18px;
  z-index: 50;
  width: min(1120px, calc(100% - 48px));
  height: 58px;
  margin: 18px auto 0;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(15, 33, 25, .08);
  border-radius: var(--radius);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 14px 42px rgba(14, 31, 24, .08);
}
.brand { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-latin); font-weight: 900; letter-spacing: 0; }
.brand-mark { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 6px; background: var(--brand); color: #fff; font-weight: 900; }
.brand-logo { height: 30px; width: auto; max-width: 168px; display: block; object-fit: contain; }
.nav-links { display: flex; flex: 1 1 auto; align-items: center; justify-content: center; gap: 30px; font: 700 13.5px/1 var(--font-latin); color: #2b3140; }
.nav-links a:hover, .login-link:hover { color: var(--brand); }
/* nav dropdown popups */
.nav-item.has-menu { position: relative; }
.nav-item.has-menu > a { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.caret { font-size: 9px; opacity: .55; transition: transform .15s; }
.nav-item.has-menu:hover .caret { transform: rotate(180deg); }
.nav-item.has-menu::after { content: ""; position: absolute; left: -10px; right: -10px; top: 100%; height: 18px; }
.nav-menu { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px); min-width: 232px; background: #fff; border: 1px solid rgba(11,31,58,.1); border-radius: 14px; box-shadow: 0 16px 44px rgba(11,31,58,.14); padding: 8px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .16s ease, transform .16s ease; z-index: 60; }
.nav-item.has-menu:hover .nav-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-menu a { display: block; padding: 10px 12px; border-radius: 10px; color: #0b1f3a; font: 700 13.5px/1.3 var(--font-latin); }
.nav-menu a small { display: block; color: #8b919c; font-weight: 500; font-size: 11.5px; margin-top: 2px; }
.nav-menu a:hover { background: var(--brand-soft); color: var(--brand); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.language-switch { display: inline-flex; align-items: center; justify-content: center; min-width: 46px; height: 34px; border: 1px solid rgba(34,48,227,.2); border-radius: 999px; background: var(--brand-soft); color: var(--brand); font: 900 12px/1 var(--font-latin); }
.language-switch:hover { border-color: var(--brand); background: #fff; }
.mobile-subscribe-link { display: none; }
.login-link { font: 700 13px/1 var(--font-latin); }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 22px; border-radius: 11px; border: 1px solid var(--brand); background: var(--brand); color: #fff; font-weight: 800; box-shadow: 0 12px 26px rgba(34, 48, 227, .26); transition: transform .14s ease, box-shadow .14s ease, background .14s ease; }
.button:hover { transform: translateY(-1px); box-shadow: 0 16px 30px rgba(34, 48, 227, .32); }
.button:hover { background: #1a23c8; }
.button-small { min-height: 38px; padding-inline: 15px; font-size: 13px; }
.button-secondary { background: #fff; color: var(--brand); border-color: rgba(34, 48, 227, .26); box-shadow: 0 6px 16px rgba(15, 23, 60, .06); }
.button-secondary:hover { background: var(--brand-soft); border-color: var(--brand); box-shadow: 0 10px 22px rgba(34, 48, 227, .14); }

/* Promo board — homepage announcement strip (editable per promotion) */
.promo-shell { padding-top: 24px; padding-bottom: 0; }
.promo-board { position: relative; display: flex; align-items: center; gap: 16px; padding: 14px 18px; border-radius: 16px; background: linear-gradient(100deg, #2230e3 0%, #4733d6 54%, #6a3ddb 100%); box-shadow: 0 18px 40px rgba(34, 48, 227, .22); color: #fff; overflow: hidden; }
.promo-board::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 180% at 88% -40%, rgba(255,255,255,.26), transparent 55%); pointer-events: none; }
.promo-badge { position: relative; flex: 0 0 auto; display: inline-flex; align-items: center; padding: 5px 11px; border-radius: 999px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.34); font: 800 11px/1 var(--font-latin); letter-spacing: .07em; text-transform: uppercase; }
.promo-text { position: relative; flex: 1 1 auto; min-width: 0; margin: 0; font-size: 14.5px; line-height: 1.5; color: rgba(255,255,255,.94); overflow-wrap: anywhere; }
.promo-text b { color: #fff; font-weight: 800; }
.promo-cta { position: relative; flex: 0 0 auto; display: inline-flex; align-items: center; gap: 6px; padding: 9px 18px; border-radius: 999px; background: #fff; color: var(--brand); font: 800 13.5px/1 var(--font-latin); white-space: nowrap; box-shadow: 0 8px 18px rgba(8, 12, 40, .18); transition: transform .14s ease; }
.promo-cta:hover { transform: translateY(-1px); }
.promo-x { position: relative; flex: 0 0 auto; width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 50%; background: rgba(255,255,255,.16); color: #fff; font-size: 13px; cursor: pointer; transition: background .14s ease; }
.promo-x:hover { background: rgba(255,255,255,.3); }
@media (max-width: 700px) {
  .promo-board { flex-wrap: wrap; padding: 14px; }
  .promo-badge { order: 1; }
  .promo-x { order: 2; margin-left: auto; }
  .promo-text { order: 3; flex: 1 1 100%; margin-top: 2px; }
  .promo-cta { order: 4; flex: 1 1 100%; justify-content: center; margin-top: 4px; }
}

/* Promo slider — auto-rotating banner carousel (real banner images) */
.promo-slider-shell { padding-top: 10px; }
.promo-slider { position: relative; margin-top: 22px; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(15,23,60,.14); background: #0b1330; aspect-ratio: 1200 / 480; }
.ps-track { display: flex; height: 100%; transition: transform .6s cubic-bezier(.4,0,.2,1); will-change: transform; }
.ps-slide { position: relative; flex: 0 0 100%; min-width: 100%; height: 100%; display: block; line-height: 0; }
.ps-slide picture { display: block; width: 100%; height: 100%; }
.ps-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ps-dots { display: flex; gap: 8px; justify-content: center; margin-top: 16px; }
.ps-dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 999px; background: rgba(34,48,227,.26); cursor: pointer; transition: width .2s ease, background .2s ease; }
.ps-dot.is-active { width: 26px; background: var(--brand); }
.ps-dot:hover { background: rgba(34,48,227,.5); }
@media (max-width: 760px) {
  .promo-slider { aspect-ratio: 820 / 740; border-radius: 16px; }
  .ps-dots { margin-top: 13px; }
}

/* Supported-channel logos (real app icons) */
.channel-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 30px; margin: 2px auto 34px; max-width: 640px; }
.channel { display: flex; flex-direction: column; align-items: center; gap: 9px; width: 78px; }
.channel img { width: 60px; height: 60px; border-radius: 15px; box-shadow: 0 8px 20px rgba(15,23,60,.12); transition: transform .15s ease; }
.channel:hover img { transform: translateY(-3px); }
.channel span { font-size: 12.5px; color: var(--muted); font-weight: 700; }
@media (max-width: 560px) {
  .channel-row { gap: 16px 18px; }
  .channel { width: 68px; }
  .channel img { width: 52px; height: 52px; border-radius: 13px; }
}

/* ── Motion & decorative effects ── */
/* Scroll-reveal — JS IntersectionObserver (works in all browsers). Targets are hidden only
   when <html class="js"> (set by inline head script) so there is no flash; .is-in reveals. */
.js .section-heading, .js .svc-card, .js .company-facts > article, .js .security-proof > article,
.js .industry-grid > a, .js .case-card, .js .channel, .js .nw-cmp-wrap, .js .demo-copy,
.js .lead-form, .js .implementation-grid > li, .js .promo-slider-shell, .js .marquee-shell {
  opacity: 0;
  transform: translateY(38px) scale(.985);
  transition: opacity .7s cubic-bezier(.16,.84,.44,1), transform .7s cubic-bezier(.16,.84,.44,1);
}
.js .is-in { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
  .js .section-heading, .js .svc-card, .js .company-facts > article, .js .security-proof > article,
  .js .industry-grid > a, .js .case-card, .js .channel, .js .nw-cmp-wrap, .js .demo-copy,
  .js .lead-form, .js .implementation-grid > li, .js .promo-slider-shell, .js .marquee-shell {
    opacity: 1; transform: none; transition: none;
  }
}

/* Services mega-menu */
.nav-mega { width: 480px; left: 0; transform: translateX(-16px) translateY(8px); padding: 12px; }
.nav-item.has-menu:hover .nav-mega { transform: translateX(-16px) translateY(0); }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.nav-mega .mega-item { display: flex; align-items: flex-start; gap: 11px; padding: 10px 11px; border-radius: 12px; }
.nav-mega .mega-item:hover { background: var(--brand-soft); }
.mega-ic { flex: 0 0 auto; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; background: var(--brand-soft); color: var(--brand); }
.mega-ic svg { width: 19px; height: 19px; }
.mega-item.is-soon .mega-ic { background: #f1f3f7; color: #9098a6; }
.mega-tx { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.mega-tx b { font-size: 14px; color: #0b1f3a; font-weight: 700; line-height: 1.25; }
.mega-tx b em { font-style: normal; font-size: 9.5px; font-weight: 800; color: #8b93a7; background: #eef0f4; padding: 1.5px 6px; border-radius: 999px; margin-left: 5px; vertical-align: middle; }
.nav-mega .mega-tx small { display: block; font-size: 11.5px; color: #6b7280; font-weight: 500; line-height: 1.4; margin: 0; }
.mega-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 8px; padding: 12px 11px 2px; border-top: 1px solid var(--line); }
.mega-foot span { font-size: 12.5px; font-weight: 700; color: #5b6470; }
.mega-foot a { display: inline; padding: 0; font-size: 13px; font-weight: 800; color: var(--brand); text-decoration: none; white-space: nowrap; }
.mega-foot a:hover { background: none; text-decoration: underline; }
@media (max-width: 1080px) { .nav-mega { width: 420px; } }

/* Floating chat widget (bubble + contact panel) */
.nw-widget { position: fixed; right: 22px; bottom: 22px; z-index: 90; }
.nw-bubble { width: 58px; height: 58px; border: 0; border-radius: 50%; background: var(--brand); color: #fff; cursor: pointer; box-shadow: 0 14px 34px rgba(34,48,227,.42); display: grid; place-items: center; transition: transform .15s ease, box-shadow .15s ease; }
.nw-bubble:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(34,48,227,.5); }
.nw-bubble svg { width: 26px; height: 26px; }
.nw-bubble .nw-i-close { display: none; }
.nw-open .nw-bubble .nw-i-chat { display: none; }
.nw-open .nw-bubble .nw-i-close { display: block; }
.nw-panel { position: absolute; right: 0; bottom: 72px; width: 340px; max-width: calc(100vw - 28px); background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 24px 60px rgba(15,23,60,.28); border: 1px solid rgba(15,23,60,.08); animation: nwPop .2s ease; }
@keyframes nwPop { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.nw-phead { position: relative; padding: 26px 22px 22px; background: linear-gradient(135deg, #2230e3, #6a52e6); color: #fff; }
.nw-pclose { position: absolute; right: 14px; top: 14px; width: 28px; height: 28px; border: 0; border-radius: 50%; background: rgba(255,255,255,.2); color: #fff; cursor: pointer; font-size: 13px; line-height: 1; }
.nw-plogo { width: 42px; height: 42px; border-radius: 11px; background: #fff; display: grid; place-items: center; margin-bottom: 12px; overflow: hidden; }
.nw-plogo img { width: 34px; height: 34px; object-fit: contain; }
.nw-phead h3 { margin: 0; font-size: 22px; font-weight: 800; color: #fff; }
.nw-phead p { margin: 4px 0 0; font-size: 14px; color: rgba(255,255,255,.92); }
.nw-pbody { padding: 16px; }
.nw-pcard { display: block; padding: 14px 16px; border-radius: 14px; border: 1px solid var(--line); text-decoration: none; transition: box-shadow .15s ease, border-color .15s ease; }
.nw-pcard:hover { border-color: rgba(34,48,227,.3); box-shadow: 0 8px 20px rgba(15,23,60,.08); }
.nw-pcard b { display: block; font-size: 15px; color: #0b1f3a; }
.nw-pcard span { display: block; margin: 3px 0 9px; font-size: 12.5px; color: #5b6470; }
.nw-pcard em { font-style: normal; font-size: 13px; font-weight: 700; color: var(--brand); }
.nw-chlabel { margin: 16px 0 9px; font-size: 12px; color: #8b919c; font-weight: 700; }
.nw-channels { display: flex; gap: 10px; }
.nw-ch { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: #f4f6fb; color: #5b6470; text-decoration: none; transition: background .15s ease; overflow: hidden; }
.nw-ch:hover { background: var(--brand-soft); }
.nw-ch img { width: 44px; height: 44px; object-fit: cover; border-radius: 12px; }
.nw-ch svg { width: 21px; height: 21px; }
.nw-demolink { display: block; margin-top: 14px; padding: 12px 14px; border-radius: 12px; background: #f4f6fb; text-decoration: none; color: #0b1f3a; font-size: 13.5px; font-weight: 700; }
.nw-demolink:hover { background: var(--brand-soft); color: var(--brand); }
.nw-pfoot { padding: 12px; text-align: center; font-size: 11px; color: #aab0b8; border-top: 1px solid var(--line); }
@media (max-width: 560px) { .nw-widget { right: 14px; bottom: 14px; } .nw-panel { bottom: 70px; } }

/* Chat feature showcase (roadmap) */
.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 24px; }
.cf-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 18px; background: #fff; overflow: hidden; box-shadow: 0 10px 30px rgba(15,23,60,.05); }
.cf-info { padding: 24px 24px 4px; }
.cf-badge { display: inline-block; padding: 4px 11px; border-radius: 999px; background: #f1f3f7; color: #8b93a7; font: 800 11px/1 var(--font-latin); letter-spacing: .03em; }
.cf-info h3 { margin: 12px 0 7px; font-size: 19px; color: #0b1f3a; }
.cf-info p { margin: 0; color: #5b6470; font-size: 14px; line-height: 1.6; }
.cf-mock { margin: 16px 20px 22px; padding: 18px; border-radius: 14px; background: linear-gradient(160deg, #f6f8fe, #eef1fb); min-height: 150px; display: flex; align-items: center; }
.cf-chat { width: 100%; display: flex; flex-direction: column; gap: 8px; }
.cf-b { max-width: 82%; padding: 9px 13px; border-radius: 14px; font-size: 13px; line-height: 1.4; }
.cf-in { align-self: flex-start; background: #fff; color: #0b1f3a; border: 1px solid #e7e9f2; }
.cf-out { align-self: flex-end; position: relative; background: linear-gradient(120deg,#2230e3,#6a52e6); color: #fff; }
.cf-ai { position: absolute; right: -6px; top: -8px; background: #fff; color: #6a52e6; font: 800 9px/1 var(--font-latin); padding: 3px 6px; border-radius: 999px; box-shadow: 0 2px 6px rgba(0,0,0,.12); }
.cf-typing { align-self: flex-start; display: inline-flex; align-items: center; gap: 5px; font-size: 11.5px; color: #8b93a7; }
.cf-typing span { width: 5px; height: 5px; border-radius: 50%; background: #b9c0d4; }
.cf-flow { list-style: none; margin: 0; padding: 0; width: 100%; display: flex; flex-direction: column; gap: 8px; }
.cf-flow li { display: flex; align-items: center; gap: 10px; padding: 9px 12px; background: #fff; border: 1px solid #e7e9f2; border-radius: 10px; font-size: 13px; color: #0b1f3a; }
.cf-flow li::before { content: "✓"; display: grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; background: #16a34a; color: #fff; font-size: 11px; font-weight: 800; flex: 0 0 auto; }
.cf-flow li.cf-pending { color: #8b93a7; }
.cf-flow li.cf-pending::before { content: ""; background: #fff; border: 2px solid #cdd3e2; }
.cf-broad { width: 100%; display: flex; flex-direction: column; gap: 11px; }
.cf-opt { display: flex; align-items: center; gap: 9px; padding: 11px 13px; background: #fff; border: 1.5px solid #2230e3; border-radius: 11px; font-size: 13px; font-weight: 600; color: #0b1f3a; }
.cf-radio { width: 16px; height: 16px; border-radius: 50%; border: 4px solid #2230e3; flex: 0 0 auto; }
.cf-tags { display: flex; gap: 7px; }
.cf-tags span { padding: 5px 11px; border-radius: 999px; background: #eef1fb; color: #2230e3; font-size: 12px; font-weight: 700; }
.cf-est { padding: 11px 13px; background: #fff; border: 1px solid #e7e9f2; border-radius: 11px; font-size: 13px; color: #5b6470; }
.cf-est b { color: #16a34a; font-size: 16px; }
.cf-ana { width: 100%; display: flex; align-items: flex-end; gap: 16px; }
.cf-bars { flex: 1; display: flex; align-items: flex-end; gap: 7px; height: 90px; }
.cf-bars span { flex: 1; background: linear-gradient(180deg,#5b6cff,#2230e3); border-radius: 5px 5px 0 0; }
.cf-stat { flex: 0 0 auto; text-align: right; }
.cf-stat small { display: block; font-size: 11px; color: #8b93a7; }
.cf-stat b { display: block; font-size: 22px; color: #0b1f3a; }
.cf-stat i { font-size: 11px; color: #16a34a; font-style: normal; }
@media (max-width: 760px) { .cf-grid { grid-template-columns: 1fr; } }

/* Real app screenshots — premium product showcase */
.appshots-section { position: relative; padding-top: 66px; padding-bottom: 70px; margin-top: 26px; }
.appshots-section::before {
  content: ""; position: absolute; z-index: -1; inset: 0 auto; top: 0; bottom: 0; left: 50%; width: 100vw; transform: translateX(-50%);
  background:
    radial-gradient(1100px 420px at 16% -5%, rgba(91,108,255,.16), transparent 60%),
    radial-gradient(1000px 460px at 94% 105%, rgba(124,61,219,.13), transparent 60%),
    linear-gradient(180deg, #f4f6ff 0%, #eef1fe 100%);
}
.appshots-section .section-heading { max-width: 720px; margin-inline: auto; text-align: center; }
.appshots-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 8px; }
.appshot {
  margin: 0; border: 1px solid rgba(34,48,227,.10); border-radius: 20px; overflow: hidden; background: #fff;
  box-shadow: 0 22px 55px rgba(20,30,90,.13);
  transition: transform .38s cubic-bezier(.2,.7,.2,1), box-shadow .38s cubic-bezier(.2,.7,.2,1);
  display: flex; flex-direction: column;
}
.appshot:hover { transform: translateY(-9px); box-shadow: 0 42px 92px rgba(20,30,90,.24); }
.appshot-bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: linear-gradient(180deg,#fbfcff,#eef1fa); border-bottom: 1px solid rgba(34,48,227,.08); }
.appshot-bar span { width: 11px; height: 11px; border-radius: 50%; background: #d3d8e4; }
.appshot-bar span:nth-child(1) { background: #ff5f57; }
.appshot-bar span:nth-child(2) { background: #febc2e; }
.appshot-bar span:nth-child(3) { background: #28c840; }
.appshot-img { overflow: hidden; background: #f6f8fd; }
.appshot-img img { display: block; width: 100%; height: 322px; object-fit: cover; object-position: top left; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.appshot:hover .appshot-img img { transform: scale(1.045); }
.appshot figcaption { padding: 20px 22px 22px; }
.appshot figcaption b { display: block; font-size: 16.5px; color: #0b1f3a; font-weight: 800; letter-spacing: -.01em; }
.appshot figcaption span { display: block; margin-top: 6px; font-size: 13.5px; color: #5b6470; line-height: 1.62; }
@media (prefers-reduced-motion: reduce) { .appshot, .appshot-img img { transition: none; } .appshot:hover { transform: none; } .appshot:hover .appshot-img img { transform: none; } }
@media (max-width: 760px) {
  .appshots-section { padding-top: 38px; padding-bottom: 40px; }
  .appshots-grid { grid-template-columns: 1fr; gap: 18px; }
  .appshot-img img { height: 230px; }
  .appshot figcaption { padding: 16px 18px 18px; }
}
/* AI agent — decorative hero visual (chat mockup + glowing orb) */
.aihero { position: relative; width: min(460px, 100%); margin-inline: auto; padding: 14px 0 60px; }
.aihero-card { position: relative; display: flex; flex-direction: column; gap: 14px; padding: 22px; border-radius: 24px; background: rgba(255,255,255,.74); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.8); box-shadow: 0 34px 80px rgba(40,44,120,.20); }
.aihero-row { display: flex; align-items: flex-end; gap: 9px; }
.aihero-row.out { flex-direction: row-reverse; }
.aihero-av, .aihero-mini { width: 30px; height: 30px; border-radius: 50%; flex: none; }
.aihero-av.a1 { background: linear-gradient(135deg,#fbc2eb,#a6c1ee); }
.aihero-av.a2 { background: linear-gradient(135deg,#a1c4fd,#c2e9fb); }
.aihero-mini { display: grid; place-items: center; background: linear-gradient(140deg,#34d399,#6366f1); box-shadow: 0 5px 14px rgba(99,102,241,.4); }
.aihero-mini svg { width: 17px; height: 17px; }
.aihero-bubble { max-width: 78%; padding: 10px 14px; border-radius: 16px; font-size: 14px; line-height: 1.5; background: #fff; color: #1f2738; box-shadow: 0 6px 16px rgba(30,40,90,.08); }
.aihero-row.in .aihero-bubble { border-bottom-left-radius: 5px; }
.aihero-bubble.ai { color: #fff; background: linear-gradient(120deg,#2bb6a3 0%,#6a5cf0 78%); border-bottom-right-radius: 5px; box-shadow: 0 10px 26px rgba(106,92,240,.34); }
.aihero-bubble.gen { display: inline-flex; align-items: center; gap: 8px; color: #5b6680; background: #eef1fb; border-bottom-right-radius: 5px; box-shadow: none; }
.aihero-dots { display: inline-flex; gap: 3px; }
.aihero-dots b { width: 5px; height: 5px; border-radius: 50%; background: #8a94c8; animation: aiBlink 1.3s infinite; }
.aihero-dots b:nth-child(2) { animation-delay: .2s; }
.aihero-dots b:nth-child(3) { animation-delay: .4s; }
@keyframes aiBlink { 0%,60%,100% { opacity: .3; } 30% { opacity: 1; } }
.aihero-orb { position: absolute; left: 50%; bottom: 6px; transform: translateX(-50%); width: 96px; height: 96px; display: grid; place-items: center; }
.aihero-orb-glow { position: absolute; inset: -18px; border-radius: 50%; background: radial-gradient(circle at 50% 50%, rgba(52,211,153,.65), rgba(99,102,241,.5) 45%, transparent 70%); filter: blur(12px); animation: aiPulse 3.2s ease-in-out infinite; }
.aihero-orb-core { position: relative; width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(140deg,#34d399,#6366f1); box-shadow: 0 16px 34px rgba(80,70,200,.42), inset 0 2px 7px rgba(255,255,255,.55); }
.aihero-orb-core svg { width: 36px; height: 36px; }
@keyframes aiPulse { 0%,100% { transform: scale(1); opacity: .8; } 50% { transform: scale(1.14); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .aihero-orb-glow, .aihero-dots b { animation: none; } }
/* AI service page — real screenshot frame */
.ai-shot { margin: 0 auto; max-width: 900px; border: 1px solid rgba(34,48,227,.12); border-radius: 18px; overflow: hidden; background: #fff; box-shadow: 0 26px 64px rgba(20,30,90,.16); }
.ai-shot-bar { display: flex; gap: 7px; padding: 12px 16px; background: linear-gradient(180deg,#fbfcff,#eef1fa); border-bottom: 1px solid rgba(34,48,227,.08); }
.ai-shot-bar span { width: 11px; height: 11px; border-radius: 50%; background: #d3d8e4; }
.ai-shot-bar span:nth-child(1) { background: #ff5f57; }
.ai-shot-bar span:nth-child(2) { background: #febc2e; }
.ai-shot-bar span:nth-child(3) { background: #28c840; }
.ai-shot img { display: block; width: 100%; height: auto; }
@media (max-width: 760px) { .aihero { width: 100%; padding-bottom: 52px; } .aihero-card { padding: 16px; } .aihero-bubble { font-size: 13px; } }
/* Gradient text accent */
.grad-text { background: linear-gradient(100deg, #1a23b8 0%, #2230e3 45%, #6a3ddb 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
/* Complementary hero depth blob (::before already used for the right glow) */
.hero::after { content: ""; position: absolute; z-index: 0; bottom: -120px; left: -100px; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(122,63,240,.18), transparent 68%); filter: blur(55px); pointer-events: none; }
.hero-copy, .hero-visual { z-index: 1; }
/* Channel logo marquee (auto-scroll, infinite, pause on hover) */
.marquee-shell { padding-top: 8px; padding-bottom: 8px; }
.marquee-head { text-align: center; color: var(--muted); font-size: 13.5px; font-weight: 700; margin-bottom: 16px; }
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; width: max-content; gap: 54px; animation: nwMarquee 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: flex; align-items: center; gap: 11px; flex: 0 0 auto; color: #5b6470; font-weight: 700; font-size: 15px; white-space: nowrap; }
.marquee-item img { width: 34px; height: 34px; border-radius: 9px; }
@keyframes nwMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; } .marquee { -webkit-mask-image: none; mask-image: none; } }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  min-height: 700px;
  padding: 112px 0 72px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 -7vw auto auto;
  width: 75%;
  height: 450px;
  background: radial-gradient(circle at 65% 42%, rgba(91,108,255,.24), transparent 36%), linear-gradient(160deg, rgba(230,233,255,.85), transparent 65%);
  pointer-events: none;
}
.hero-copy { position: relative; align-self: center; }
.eyebrow { margin: 0 0 14px; color: var(--brand); font: 900 12px/1.3 var(--font-latin); letter-spacing: .1em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 620px; margin-bottom: 20px; font: 800 clamp(42px, 6vw, 70px)/1.04 var(--font-th); letter-spacing: 0; }
.lead { max-width: 640px; margin-bottom: 28px; color: #2d3340; font-size: 20px; line-height: 1.6; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-points { display: grid; grid-template-columns: repeat(3, max-content); gap: 16px; padding: 0; margin: 26px 0 0; list-style: none; color: var(--muted); font-size: 14px; font-weight: 700; }
.hero-points li::before { content: "✓"; color: var(--brand); margin-right: 7px; }
.hero-visual { position: relative; align-self: center; min-height: 420px; }
.floating-card { box-shadow: var(--shadow); }
.dashboard-window {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(34,48,227,.15);
  border-radius: var(--radius);
  background: rgba(255,255,255,.95);
  transform: rotate(-4deg);
}
.dashboard-window::after { content: ""; position: absolute; right: -26px; bottom: 42px; width: 130px; height: 130px; border-radius: 50%; background: rgba(91,108,255,.32); filter: blur(22px); z-index: -1; }
.window-top { display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 10px; padding-bottom: 12px; border-bottom: 1px solid #eef2ef; }
.mini-logo { font: 900 11px/1 var(--font-latin); color: var(--brand); }
.window-pill { height: 12px; border-radius: 999px; background: #edf2ef; }
.window-dot { width: 8px; height: 8px; border-radius: 50%; background: #ccd7d0; }
.window-dot.active { background: var(--brand); }
.dashboard-grid { display: grid; grid-template-columns: 88px 1fr 150px; gap: 14px; padding-top: 14px; }
.sidebar { display: grid; align-content: start; gap: 9px; padding: 10px; border-radius: 7px; background: #f2f6f4; }
.sidebar span { height: 9px; border-radius: 999px; background: #dfe8e3; }
.sidebar .active-line { background: var(--brand); }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.stat-row div, .chart-card, .profit-panel, .table-lines { border: 1px solid #e7eee9; border-radius: 7px; background: #fbfdfc; }
.stat-row div { padding: 12px; }
.stat-row small { display: block; color: var(--muted); font-size: 10px; font-weight: 800; }
.stat-row strong { display: block; margin-top: 4px; font: 900 17px/1 var(--font-latin); }
.chart-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.chart-card { height: 96px; padding: 12px; }
.chart-card span { display: block; height: 56px; border-bottom: 4px solid var(--brand-2); border-radius: 0 0 50% 45%; opacity: .8; }
.table-lines { display: grid; gap: 8px; margin-top: 10px; padding: 12px; }
.table-lines span { height: 10px; border-radius: 999px; background: linear-gradient(90deg, #dceee5, #edf4f0); }
.profit-panel { padding: 13px; }
.profit-panel strong { display: block; margin-bottom: 18px; font-size: 12px; }
.profit-panel label { display: block; margin: 11px 0 5px; color: var(--muted); font-size: 10px; font-weight: 800; }
.bar { display: block; height: 8px; border-radius: 999px; background: var(--brand); }
.w74 { width: 74%; } .w58 { width: 58%; } .w42 { width: 42%; }
.floating-metric { position: absolute; right: 12px; bottom: 6px; z-index: 3; padding: 13px 16px; border: 1px solid rgba(34,48,227,.15); border-radius: 7px; background: #fff; color: var(--muted); font-size: 12px; font-weight: 800; box-shadow: var(--shadow); }
.floating-metric strong { display: block; color: var(--brand); font-size: 23px; }

@media (min-width: 981px) and (max-width: 1380px) {
  .hero { grid-template-columns: minmax(0, .98fr) minmax(0, .92fr); gap: 38px; }
  .hero-visual { min-width: 0; }
  .dashboard-window { width: min(100%, 560px); margin-left: auto; padding: 14px; transform: rotate(-3deg); }
  .dashboard-window::after { right: -12px; bottom: 34px; width: 104px; height: 104px; }
  .dashboard-grid { grid-template-columns: 74px minmax(0, 1fr) 130px; gap: 10px; }
  .stat-row, .chart-row { gap: 8px; }
  .stat-row div { padding: 10px; }
  .stat-row strong { font-size: 15px; }
  .profit-panel { padding: 11px; }
  .profit-panel strong { font-size: 11px; }
}

.trust-strip { display: flex; align-items: center; gap: 27px; padding: 18px 0 30px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow-x: auto; white-space: nowrap; }
.trust-strip span { color: var(--muted); font-size: 13px; font-weight: 800; }
.trust-strip b { font: 900 17px/1 var(--font-latin); }

.founder-vision { display: grid; grid-template-columns: .82fr 1.18fr; gap: 24px 38px; align-items: center; padding: 72px 0; border-bottom: 1px solid var(--line); }
.founder-vision > div { grid-row: span 2; }
.founder-vision h2 { margin-bottom: 0; }
.founder-vision blockquote { margin: 0; padding: 26px; border-left: 4px solid var(--brand); border-radius: var(--radius); background: #fff; box-shadow: 0 14px 45px rgba(20,43,33,.07); }
.founder-vision blockquote p { margin: 0 0 14px; color: var(--ink); font: 800 clamp(26px, 3vw, 42px)/1.18 var(--font-th); letter-spacing: 0; }
.founder-vision cite { color: var(--brand); font-style: normal; font-weight: 900; }
.founder-vision > p { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.8; }

.company-trust { border-bottom: 1px solid var(--line); }
.trust-intro { display: grid; grid-template-columns: .82fr 1.18fr; gap: 28px 44px; align-items: end; margin-bottom: 28px; }
.trust-intro h2 { margin-bottom: 0; }
.trust-intro p:not(.eyebrow) { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.company-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.company-facts article, .security-proof article, .implementation-grid li { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 12px 38px rgba(20,43,33,.05); }
.company-facts article { min-height: 136px; padding: 20px; }
.company-facts span { display: block; margin-bottom: 9px; color: var(--muted); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.company-facts b { display: block; color: var(--ink); font-size: 18px; line-height: 1.35; }
.security-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 14px; }
.security-proof article { padding: 22px; }
.security-proof b { display: block; margin-bottom: 8px; color: var(--brand); font-size: 18px; }
.security-proof p { margin: 0; color: var(--muted); line-height: 1.7; }
.trust-actions { margin-top: 22px; }

.content-section, .split-section, .faq-section, .industries-section, .demo-section, .company-trust, .implementation-section { padding: 82px 0; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading.compact { max-width: 640px; margin-inline: auto; text-align: center; }
h2 { margin-bottom: 14px; font: 800 clamp(30px, 4vw, 48px)/1.12 var(--font-th); letter-spacing: 0; }
html[lang="en"] h1 { font-family: var(--font-latin); font-weight: 900; line-height: .98; letter-spacing: -.02em; }
html[lang="en"] h2 { font-family: var(--font-latin); font-weight: 900; line-height: 1.04; letter-spacing: -.015em; }
.section-heading p:not(.eyebrow), .split-section > div > p, .faq-section p { color: var(--muted); font-size: 17px; line-height: 1.75; }
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.industry-grid article { min-height: 150px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 12px 38px rgba(20, 43, 33, .05); }
.industry-grid b { display: block; margin-bottom: 9px; font-size: 18px; letter-spacing: -.01em; }
.industry-grid span { color: var(--muted); line-height: 1.7; }
.bento-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 16px; }
.bento-card { min-height: 210px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, #fff, #f8fbf9); box-shadow: 0 12px 38px rgba(20, 43, 33, .06); }
.bento-large { grid-row: span 2; min-height: 445px; border-color: rgba(34,48,227,.45); background: radial-gradient(circle at 60% 25%, rgba(91,108,255,.18), transparent 32%), #fff; }
.market-flow { display: grid; grid-template-columns: 120px 1fr 1.2fr; gap: 18px; align-items: center; min-height: 210px; }
.market-stack { display: grid; gap: 14px; }
.market-stack span { padding: 14px 16px; border: 1px solid #e4ece7; border-radius: 7px; background: #fff; box-shadow: 0 10px 25px rgba(9,39,28,.08); font-weight: 900; }
.flow-line { height: 2px; background: linear-gradient(90deg, var(--brand), transparent); }
.mini-dashboard { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 16px; border: 1px solid var(--line); border-radius: 7px; background: #f8fbf9; }
.mini-dashboard span { height: 54px; border-radius: 6px; background: #fff; box-shadow: inset 0 0 0 1px #e7eee9; }
.card-icon { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 8px; background: var(--brand-soft); color: var(--brand); font: 900 17px/1 Inter, sans-serif; }
.bento-card h3 { margin: 22px 0 8px; font-size: 24px; letter-spacing: -.02em; }
.bento-card p { color: var(--muted); line-height: 1.7; }

.split-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.system-steps { display: grid; gap: 14px; padding: 0; margin: 0; list-style: none; }
.system-steps li { display: grid; grid-template-columns: 130px 1fr; gap: 18px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 10px 32px rgba(20, 43, 33, .05); }
.system-steps b { color: var(--brand); font: 900 20px/1 Inter, sans-serif; }
.system-steps span { color: var(--muted); line-height: 1.65; }

.proof-section { padding: 82px 0; background: linear-gradient(180deg, #eef0ff, #fff); }
.proof-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; }
.roi-card, .testimonial-list article, .price-card, details { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 14px 45px rgba(20,43,33,.07); }
.roi-card { padding: 28px; }
.roi-head { text-align: center; margin-bottom: 24px; }
.roi-head p { color: var(--muted); }
.control-row { display: grid; grid-template-columns: 1.4fr repeat(3, .55fr); gap: 8px; align-items: center; margin: 12px 0; padding: 10px; border: 1px solid #e7eee9; border-radius: 7px; }
.control-row span { padding: 9px 10px; border-radius: 999px; background: #f3f5f4; text-align: center; font-size: 13px; font-weight: 800; }
.control-row .selected { background: var(--brand); color: #fff; }
.net-profit { margin-top: 18px; padding: 16px; border-radius: 7px; background: var(--brand); color: #fff; text-align: center; font-weight: 800; }
.net-profit strong { display: block; margin-top: 4px; font: 900 32px/1 Inter, sans-serif; }
.testimonial-list { display: grid; gap: 14px; }
.testimonial-list article { padding: 20px; }
.testimonial-list p { margin: 7px 0 0; color: var(--muted); line-height: 1.65; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-card { display: flex; flex-direction: column; padding: 26px; }
.price-card.featured { border-color: var(--brand); box-shadow: 0 18px 50px rgba(34,48,227,.17); }
.price-card h3 { margin-bottom: 12px; font-size: 23px; }
.price-card strong { display: block; margin-bottom: 14px; font: 900 40px/1 Inter, sans-serif; }
.price-card small { font-size: 13px; color: var(--muted); }
.price-card p, .price-card li { color: var(--muted); line-height: 1.7; }
.price-card ul { padding-left: 18px; min-height: 92px; }
.price-card a { display: flex; justify-content: center; align-items: center; min-height: 42px; margin-top: auto; border: 1px solid var(--line); border-radius: 7px; font-weight: 900; }
.price-card.featured a { border-color: var(--brand); background: var(--brand); color: #fff; }
.pricing-selector { padding-top: 58px; }
.pricing-selector .section-heading { max-width: 860px; }
.pricing-radio { position: absolute; opacity: 0; pointer-events: none; }
.pricing-controls { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; margin: -4px 0 28px; padding: 12px; border: 1px solid rgba(34,48,227,.18); border-radius: var(--radius); background: rgba(255,255,255,.82); box-shadow: 0 14px 45px rgba(20,43,33,.06); }
.pricing-controls-single { justify-content: flex-start; }
.pricing-control-group { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.pricing-control-group span { margin-right: 4px; color: var(--muted); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.pricing-control-group label { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 0 15px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: #2d3340; cursor: pointer; font-size: 14px; font-weight: 900; transition: border-color .18s ease, background-color .18s ease, color .18s ease, box-shadow .18s ease; }
.pricing-control-group label:hover { border-color: rgba(34,48,227,.5); color: var(--brand); }
#pricing-th-personal:focus-visible ~ .pricing-controls label[for="pricing-th-personal"],
#pricing-th-company:focus-visible ~ .pricing-controls label[for="pricing-th-company"],
#pricing-th-monthly:focus-visible ~ .pricing-controls label[for="pricing-th-monthly"],
#pricing-th-yearly:focus-visible ~ .pricing-controls label[for="pricing-th-yearly"],
#pricing-en-personal:focus-visible ~ .pricing-controls label[for="pricing-en-personal"],
#pricing-en-company:focus-visible ~ .pricing-controls label[for="pricing-en-company"],
#pricing-en-monthly:focus-visible ~ .pricing-controls label[for="pricing-en-monthly"],
#pricing-en-yearly:focus-visible ~ .pricing-controls label[for="pricing-en-yearly"],
#pricing-home-personal:focus-visible ~ .pricing-controls label[for="pricing-home-personal"],
#pricing-home-company:focus-visible ~ .pricing-controls label[for="pricing-home-company"],
#pricing-home-monthly:focus-visible ~ .pricing-controls label[for="pricing-home-monthly"],
#pricing-home-yearly:focus-visible ~ .pricing-controls label[for="pricing-home-yearly"] { outline: 3px solid rgba(34,48,227,.24); outline-offset: 3px; }
#pricing-th-personal:checked ~ .pricing-controls label[for="pricing-th-personal"],
#pricing-th-company:checked ~ .pricing-controls label[for="pricing-th-company"],
#pricing-th-monthly:checked ~ .pricing-controls label[for="pricing-th-monthly"],
#pricing-th-yearly:checked ~ .pricing-controls label[for="pricing-th-yearly"],
#pricing-en-personal:checked ~ .pricing-controls label[for="pricing-en-personal"],
#pricing-en-company:checked ~ .pricing-controls label[for="pricing-en-company"],
#pricing-en-monthly:checked ~ .pricing-controls label[for="pricing-en-monthly"],
#pricing-en-yearly:checked ~ .pricing-controls label[for="pricing-en-yearly"],
#pricing-home-personal:checked ~ .pricing-controls label[for="pricing-home-personal"],
#pricing-home-company:checked ~ .pricing-controls label[for="pricing-home-company"],
#pricing-home-monthly:checked ~ .pricing-controls label[for="pricing-home-monthly"],
#pricing-home-yearly:checked ~ .pricing-controls label[for="pricing-home-yearly"] { border-color: var(--brand); background: var(--brand); color: #fff; box-shadow: 0 10px 22px rgba(34,48,227,.18); }
.pricing-panel { display: none; }
#pricing-th-personal:checked ~ .pricing-panels .pricing-panel-personal,
#pricing-th-company:checked ~ .pricing-panels .pricing-panel-company,
#pricing-en-personal:checked ~ .pricing-panels .pricing-panel-personal,
#pricing-en-company:checked ~ .pricing-panels .pricing-panel-company,
#pricing-home-personal:checked ~ .pricing-panels .pricing-panel-personal,
#pricing-home-company:checked ~ .pricing-panels .pricing-panel-company { display: block; }
.pricing-panel-heading { display: grid; grid-template-columns: minmax(0, .9fr) minmax(280px, .55fr); gap: 24px; align-items: end; margin-bottom: 22px; }
.pricing-panel-heading h2 { margin-bottom: 0; }
.pricing-panel-heading p:not(.eyebrow) { margin: 0; color: var(--muted); line-height: 1.75; }
.plan-badge { display: inline-flex; align-items: center; min-height: 28px; margin-bottom: 14px; padding: 5px 10px; border-radius: 999px; background: var(--brand-soft); color: var(--brand); font-size: 12px; font-weight: 900; }
.price-lines { min-height: 56px; }
.annual-note { margin: -4px 0 12px; color: var(--brand) !important; font-size: 14px; font-weight: 900; }
.price-yearly, .annual-only { display: none; }
#pricing-th-yearly:checked ~ .pricing-panels .price-monthly,
#pricing-en-yearly:checked ~ .pricing-panels .price-monthly,
#pricing-th-yearly:checked ~ .pricing-panels .monthly-only,
#pricing-en-yearly:checked ~ .pricing-panels .monthly-only,
#pricing-home-yearly:checked ~ .pricing-panels .price-monthly,
#pricing-home-yearly:checked ~ .pricing-panels .monthly-only { display: none; }
#pricing-th-yearly:checked ~ .pricing-panels .price-yearly,
#pricing-en-yearly:checked ~ .pricing-panels .price-yearly,
#pricing-home-yearly:checked ~ .pricing-panels .price-yearly { display: block; }
#pricing-th-yearly:checked ~ .pricing-panels .annual-only,
#pricing-en-yearly:checked ~ .pricing-panels .annual-only,
#pricing-home-yearly:checked ~ .pricing-panels .annual-only { display: list-item; }
.pricing-home .trust-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.implementation-grid { counter-reset: impl; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding: 0; margin: 34px 0 0; list-style: none; }
.implementation-grid li { position: relative; min-height: 190px; padding: 22px; }
.implementation-grid li::before { counter-increment: impl; content: counter(impl); display: grid; place-items: center; width: 34px; height: 34px; margin-bottom: 18px; border-radius: 7px; background: var(--brand); color: #fff; font: 900 15px/1 Inter, sans-serif; }
.implementation-grid b { display: block; margin-bottom: 8px; font: 900 20px/1 Inter, sans-serif; color: var(--ink); }
.implementation-grid span { color: var(--muted); line-height: 1.68; }
.demo-section { display: grid; grid-template-columns: .95fr 1.05fr; gap: 34px; align-items: start; }
.demo-copy { padding: 28px 0; }
.demo-copy p { color: var(--muted); font-size: 17px; line-height: 1.75; }
.demo-copy ul { display: grid; gap: 12px; padding: 0; margin: 24px 0 0; list-style: none; }
.demo-copy li { position: relative; padding-left: 28px; color: #2d3340; line-height: 1.7; font-weight: 700; }
.demo-copy li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--brand); font-weight: 900; }
.lead-form { display: grid; gap: 14px; padding: 26px; border: 1px solid rgba(34,48,227,.22); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.lead-form label { display: grid; gap: 7px; color: #2b3140; font-size: 13px; font-weight: 900; }
.lead-form input, .lead-form select, .lead-form textarea { width: 100%; min-height: 44px; border: 1px solid var(--line); border-radius: 7px; padding: 10px 12px; color: var(--ink); background: #fbfdfc; font: 600 15px/1.5 var(--font-th); }
.lead-form textarea { resize: vertical; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { outline: 2px solid rgba(34,48,227,.2); border-color: var(--brand); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-status { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.hp-field { position: absolute; width: 1px !important; min-height: 0 !important; height: 1px !important; margin: -1px; padding: 0 !important; border: 0 !important; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; opacity: 0; pointer-events: none; }
.lead-form button:disabled { opacity: .65; cursor: wait; }
.faq-section { max-width: 920px; }
details { padding: 20px 22px; margin: 12px 0; }
summary { cursor: pointer; font-weight: 900; font-size: 18px; }

.site-footer { position: relative; padding: 72px 0 34px; overflow: hidden; border-top: 1px solid rgba(255,255,255,.08); background: linear-gradient(180deg, #0b1030 0%, #060a20 100%); color: #f4f6ff; }
.site-footer::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(91,108,255,.12), transparent 43%, rgba(255,255,255,.04)); pointer-events: none; }
.footer-shell { position: relative; display: grid; gap: 30px; }
.footer-top { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 430px); gap: 34px; align-items: end; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand-block { max-width: 690px; }
.footer-kicker { margin: 0 0 14px; color: #9aa6ef; font: 900 12px/1.2 var(--font-latin); letter-spacing: .12em; text-transform: uppercase; }
.brand.light { color: #fff; }
.brand.light .brand-mark { background: var(--brand-2); box-shadow: 0 0 0 1px rgba(255,255,255,.12) inset; }
.footer-brand { font-size: 24px; }
.footer-brand .brand-mark { width: 36px; height: 36px; }
.footer-statement { max-width: 680px; margin: 20px 0 20px; color: #d8dcf0; font-size: 17px; line-height: 1.9; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-badges span { display: inline-flex; align-items: center; min-height: 31px; padding: 6px 11px; border: 1px solid rgba(200,206,255,.18); border-radius: 999px; background: rgba(255,255,255,.055); color: #dde1f5; font-size: 12px; font-weight: 800; line-height: 1.25; }
.footer-connect { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; margin-top: 18px; }
.footer-email { display: inline-flex; align-items: center; gap: 8px; color: #dde1f5; font-weight: 800; }
.footer-email:hover { color: #fff; text-decoration: underline; }
.footer-social { display: inline-flex; gap: 10px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 999px; border: 1px solid rgba(200,206,255,.2); background: rgba(255,255,255,.05); color: #dde1f5; transition: background .15s ease, border-color .15s ease, color .15s ease; }
.footer-social a:hover { background: var(--brand-2); border-color: var(--brand-2); color: #0a1340; }
.footer-action-card { justify-self: end; width: min(100%, 430px); padding: 22px; border: 1px solid rgba(200,206,255,.16); border-radius: var(--radius); background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.045)); box-shadow: inset 0 1px 0 rgba(255,255,255,.06); }
.footer-action-card span { display: block; color: #9aa6e0; font: 900 11px/1.3 var(--font-latin); letter-spacing: .1em; text-transform: uppercase; }
.footer-action-card b { display: block; margin: 9px 0 10px; color: #fff; font-size: 24px; line-height: 1.26; }
.footer-action-card p { margin: 0 0 18px; color: #bcc2dd; font-size: 14px; line-height: 1.7; }
.footer-action-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; }
.button-footer { width: 100%; border-color: #fff; background: #fff; color: #10184f; box-shadow: none; }
.button-footer:hover { background: #e6e9ff; color: #0c1242; }
.footer-secondary-link { color: #dde1f5; font-weight: 900; white-space: nowrap; }
.footer-secondary-link:hover { color: #fff; }
.footer-directory { display: grid; grid-template-columns: .95fr 1.08fr .95fr 1.42fr; gap: 30px; padding: 4px 0 2px; }
.footer-mobile-directory { display: none; }
.footer-column { display: grid; align-content: start; gap: 5px; min-width: 0; }
.footer-column b { display: block; margin-bottom: 10px; color: #fff; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.footer-column a { display: block; padding: 4px 0; color: #bcc2dd; line-height: 1.58; }
.footer-column a:hover { color: #fff; }
.footer-legal { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 22px; }
.footer-legal b { grid-column: 1 / -1; }
.footer-proof-line { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); color: #a9b9b1; }
.footer-proof-card { display: grid; gap: 4px; align-content: center; min-width: 0; min-height: 66px; padding: 12px; border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); background: rgba(255,255,255,.035); }
.footer-proof-card small { color: #8f97c8; font: 900 10px/1.25 var(--font-latin); letter-spacing: .08em; text-transform: uppercase; }
.footer-proof-card b { color: #dde1f5; font-size: 13px; line-height: 1.4; }
.footer-bottom { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px 14px; align-items: center; color: #969db8; font-size: 13px; line-height: 1.65; }
.footer-copy { min-width: 0; }
.footer-note { grid-column: 1 / -1; color: #7f9288; }
.footer-language { display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 28px; padding: 0 10px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(255,255,255,.045); color: #dde1f5; font: 900 11px/1 var(--font-latin); justify-self: end; }
.footer-language:hover { border-color: rgba(255,255,255,.32); color: #fff; }
.breadcrumb { display: inline-flex; margin-bottom: 22px; color: var(--brand); font-weight: 900; }
.case-hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 42px; align-items: center; padding: 96px 0 64px; }
.case-tags { display: flex; flex-wrap: wrap; gap: 9px; margin: 24px 0 28px; }
.case-tags span { padding: 8px 12px; border: 1px solid rgba(34,48,227,.18); border-radius: 999px; background: var(--brand-soft); color: var(--brand); font-size: 13px; font-weight: 900; }
.case-panel { padding: 26px; border: 1px solid rgba(34,48,227,.22); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.case-panel h2 { font-size: 32px; }
.case-panel ul { display: grid; gap: 12px; padding-left: 18px; color: var(--muted); line-height: 1.7; }
.case-section { padding: 68px 0; }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.case-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 12px 38px rgba(20,43,33,.05); }
.case-card b { display: block; margin-bottom: 10px; font-size: 18px; }
.case-card p { color: var(--muted); line-height: 1.7; }
.case-flow { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.case-flow li { list-style: none; position: relative; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; color: var(--muted); line-height: 1.65; }
.case-flow li::before { counter-increment: step; content: counter(step); display: grid; place-items: center; width: 32px; height: 32px; margin-bottom: 14px; border-radius: 7px; background: var(--brand); color: #fff; font-weight: 900; }
.industry-grid a { color: inherit; }
.legal-body { max-width: 900px; padding: 20px 0 80px; }
.legal-body h2 { margin-top: 34px; font-size: 32px; }
.legal-body p, .legal-body li { color: var(--muted); line-height: 1.8; }
.legal-body ul { padding-left: 20px; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 22px; }
.contact-grid article { min-height: 150px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 12px 38px rgba(20,43,33,.05); }
.contact-grid b { display: block; margin-bottom: 8px; color: var(--brand); font-size: 18px; }
.contact-grid p { margin: 0; color: var(--muted); line-height: 1.7; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero, .split-section, .proof-grid, .demo-section, .case-hero, .founder-vision, .trust-intro { grid-template-columns: 1fr; }
  .founder-vision > div { grid-row: auto; }
  .hero { padding-top: 80px; min-height: auto; }
  .hero-points { grid-template-columns: 1fr; }
  .bento-grid, .pricing-grid, .footer-grid, .industry-grid, .case-grid, .case-flow, .company-facts, .security-proof, .implementation-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-action-card { justify-self: stretch; width: 100%; }
  .footer-directory { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-legal { grid-column: 1 / -1; }
  .footer-proof-line { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dashboard-grid { grid-template-columns: 1fr; }
  .pricing-panel-heading { grid-template-columns: 1fr; align-items: start; }
  .sidebar, .profit-panel { display: none; }
}

@media (max-width: 620px) {
  html { scrollbar-color: rgba(91,108,255,.52) transparent; }
  ::-webkit-scrollbar { width: 7px; height: 7px; }
  ::-webkit-scrollbar-thumb { border-width: 2px; background: rgba(91,108,255,.48); background-clip: padding-box; }
  .section-shell { width: min(430px, calc(100vw - 28px)); max-width: min(430px, calc(100vw - 28px)); margin-left: auto; margin-right: auto; }
  .site-header { top: 10px; width: min(430px, calc(100vw - 28px)); max-width: min(430px, calc(100vw - 28px)); height: 54px; margin: 10px auto 0; padding-inline: 10px; justify-content: flex-start; gap: 8px; overflow: hidden; }
  .brand { flex: 1 1 auto; min-width: 0; }
  .brand span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .language-switch { flex: 0 0 auto; min-width: 42px; height: 32px; font-size: 12px; }
  .mobile-subscribe-link { display: inline-flex; flex: 0 0 auto; align-items: center; justify-content: center; min-height: 34px; padding: 0 11px; border: 1px solid var(--brand); border-radius: 7px; background: var(--brand); color: #fff; font-size: 12px; font-weight: 900; line-height: 1; white-space: nowrap; box-shadow: 0 10px 22px rgba(34,48,227,.18); }
  .mobile-subscribe-link:hover { background: #1a23c8; }
  .nav-actions { display: none; }
  .login-link { display: none; }
  .site-header .button { width: auto; }
  .button-small { min-height: 34px; padding-inline: 10px; font-size: 12px; white-space: nowrap; }
  h1 { max-width: 100%; font-size: 29px; line-height: 1.12; letter-spacing: 0; white-space: normal; overflow-wrap: normal; word-break: normal; text-wrap: balance; }
  .case-hero h1 { font-size: 27px; overflow-wrap: anywhere; word-break: break-word; text-wrap: balance; }
  html[lang="en"] h1 { line-height: 1.02; letter-spacing: 0; }
  html[lang="en"] h2 { letter-spacing: 0; }
  h2 { letter-spacing: 0; overflow-wrap: anywhere; }
  .eyebrow { margin-bottom: 10px; font-size: 11px; letter-spacing: .11em; }
  .breadcrumb { margin-bottom: 14px; font-size: 13px; }
  .lead, p, li, .case-card b, .company-facts b { overflow-wrap: break-word; word-break: normal; }
  .lead { max-width: 100%; margin-bottom: 16px; font-size: 14px; line-height: 1.65; }
  .hero-actions .button, .trust-actions .button, .lead-form .button { min-height: 42px; padding-inline: 12px; text-align: center; font-size: 13px; }
  .hero-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; width: 100%; }
  .hero-actions .button:first-child { grid-column: 1 / -1; }
  .hero, .case-hero { display: block; }
  .hero-copy, .case-hero > div, .lead, .case-tags, .hero-actions, .case-panel, .lead-form, .dashboard-window { min-width: 0; width: 100%; max-width: 100%; }
  .hero { padding-top: 34px; padding-bottom: 24px; }
  .hero::before { display: none; }
  .case-hero { padding-top: 28px; padding-bottom: 22px; }
  .case-panel { margin-top: 14px; padding: 16px; }
  .case-panel h2 { font-size: 22px; }
  .case-panel ul { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 14px; padding-left: 16px; font-size: 13px; line-height: 1.6; }
  .case-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 14px 0 16px; }
  .case-tags span { display: inline-flex; align-items: center; justify-content: center; max-width: 100%; min-width: 0; padding: 7px 10px; text-align: center; white-space: normal; font-size: 12px; }
  .hero-points { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin-top: 14px; font-size: 12px; }
  .hero-points li { min-height: 58px; padding: 10px 9px; border: 1px solid var(--line); border-radius: 7px; background: #fff; line-height: 1.58; }
  .hero-points li::before { display: block; margin: 0 0 4px; }
  .hero-visual { min-height: auto; }
  .dashboard-window { max-width: 100%; margin-top: 14px; padding: 10px; overflow: hidden; transform: none; }
  .dashboard-window::after { display: none; }
  .window-top { gap: 8px; padding-bottom: 9px; }
  .dashboard-main { min-width: 0; }
  .stat-row div { min-width: 0; padding: 10px; }
  .stat-row strong { font-size: 15px; overflow-wrap: anywhere; }
  .stat-row { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; }
  .stat-row small { font-size: 9px; }
  .chart-row { grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 7px; }
  .chart-card { height: 68px; padding: 9px; }
  .chart-card span { height: 38px; }
  .table-lines { gap: 6px; margin-top: 7px; padding: 9px; }
  .table-lines span { height: 8px; }
  .market-flow, .system-steps li, .control-row { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .floating-metric { position: static; margin-top: 12px; }
  .trust-strip { flex-wrap: wrap; gap: 8px; padding: 12px 0 14px; overflow-x: visible; white-space: normal; }
  .trust-strip::-webkit-scrollbar, .pricing-grid::-webkit-scrollbar { display: none; }
  .trust-strip span, .trust-strip b { flex: 0 0 auto; padding: 8px 10px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-size: 12px; line-height: 1; scroll-snap-align: start; }
  .content-section, .split-section, .faq-section, .industries-section, .demo-section, .company-trust, .implementation-section, .case-section { padding: 38px 0; }
  .section-heading { margin-bottom: 18px; }
  .section-heading.compact { text-align: left; }
  .section-heading p:not(.eyebrow), .split-section > div > p, .faq-section p, .demo-copy p { font-size: 14px; line-height: 1.68; }
  h2 { font-size: 25px; line-height: 1.18; }
  .trust-intro { gap: 12px; margin-bottom: 16px; }
  .company-facts, .security-proof, .industry-grid, .case-grid, .case-flow, .implementation-grid, .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .company-facts article, .security-proof article, .industry-grid article, .case-card, .case-flow li, .implementation-grid li, .contact-grid article { min-height: 0; padding: 14px; box-shadow: 0 10px 28px rgba(20,43,33,.045); }
  .company-facts span { margin-bottom: 6px; font-size: 10px; }
  .company-facts b, .security-proof b, .industry-grid b, .case-card b, .implementation-grid b { font-size: 14px; line-height: 1.38; }
  .security-proof p, .industry-grid span, .case-card p, .implementation-grid span, .contact-grid p { font-size: 12px; line-height: 1.62; }
  .trust-actions { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .trust-actions .button:first-child { grid-column: auto; }
  .trust-actions .button { width: auto; min-height: 40px; padding-inline: 8px; font-size: 12px; }
  .pricing-grid { display: grid; grid-auto-flow: column; grid-auto-columns: 82%; grid-template-columns: none; gap: 12px; margin: 0; padding: 4px 0 12px; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .pricing-grid > .price-card { width: auto; scroll-snap-align: start; box-shadow: 0 8px 22px rgba(20,43,33,.12); }
  .pricing-grid > .price-card.featured { box-shadow: 0 10px 26px rgba(34,48,227,.20); }
  .pricing-selector { padding-top: 32px; }
  .pricing-controls { display: grid; gap: 10px; margin-bottom: 18px; padding: 10px; }
  .pricing-control-group { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .pricing-control-group span { grid-column: 1 / -1; margin: 0; font-size: 11px; }
  .pricing-control-group label { min-height: 38px; padding: 0 9px; text-align: center; font-size: 12px; line-height: 1.25; }
  .pricing-panel-heading { gap: 10px; margin-bottom: 16px; }
  .pricing-panel-heading p:not(.eyebrow) { font-size: 13px; line-height: 1.65; }
  .price-card { width: 100%; padding: 18px; }
  .price-card h3 { font-size: 20px; }
  .price-card strong { font-size: 32px; }
  .price-card ul { min-height: 0; margin-bottom: 14px; }
  .price-card p, .price-card li { font-size: 13px; line-height: 1.55; }
  .implementation-grid { margin-top: 20px; }
  .implementation-grid li::before, .case-flow li::before { width: 28px; height: 28px; margin-bottom: 10px; border-radius: 6px; font-size: 13px; }
  .demo-copy { padding: 0; }
  .demo-copy ul { gap: 8px; margin-top: 14px; }
  .demo-copy li { padding-left: 22px; font-size: 13px; line-height: 1.62; }
  .lead-form { gap: 11px; padding: 18px; box-shadow: 0 16px 45px rgba(9,39,28,.12); }
  .lead-form label { font-size: 12px; }
  .lead-form input, .lead-form select, .lead-form textarea { min-height: 42px; padding: 9px 10px; font-size: 13px; }
  .lead-form textarea { min-height: 90px; }
  details { padding: 15px 16px; margin: 10px 0; }
  summary { font-size: 15px; line-height: 1.35; }
  .legal-body { padding: 0 0 48px; }
  .legal-body h2 { margin-top: 26px; font-size: 24px; }
  .legal-body p, .legal-body li { font-size: 14px; line-height: 1.78; }
  .site-footer { padding: 38px 0 24px; }
  .footer-shell { gap: 22px; }
  .footer-top { gap: 16px; padding-bottom: 22px; }
  .footer-kicker { margin-bottom: 10px; font-size: 11px; }
  .footer-brand { font-size: 18px; }
  .footer-brand .brand-mark { width: 32px; height: 32px; }
  .footer-statement { margin: 14px 0 16px; font-size: 14px; line-height: 1.9; }
  .footer-badges { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
  .footer-badges span { justify-content: center; min-height: 30px; padding: 6px 8px; text-align: center; font-size: 11px; line-height: 1.3; }
  .footer-action-card { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px 12px; align-items: center; padding: 15px; }
  .footer-action-card span { grid-column: 1 / -1; }
  .footer-action-card b { margin: 0; font-size: 17px; line-height: 1.45; }
  .footer-action-card p { grid-column: 1 / -1; margin: 0; font-size: 12px; line-height: 1.6; }
  .footer-action-row { grid-column: 1 / -1; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .button-footer { width: 100%; min-width: 0; min-height: 38px; padding-inline: 12px; }
  .footer-secondary-link { display: inline-flex; align-items: center; justify-content: center; min-height: 38px; padding: 0 10px; border: 1px solid rgba(255,255,255,.2); border-radius: 7px; background: rgba(255,255,255,.055); font-size: 12px; text-align: center; }
  .footer-directory { display: none; }
  .footer-mobile-directory { display: grid; border-top: 1px solid rgba(255,255,255,.08); }
  .footer-mobile-directory details { margin: 0; padding: 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.08); border-radius: 0; background: transparent; box-shadow: none; }
  .footer-mobile-directory summary { display: flex; align-items: center; justify-content: space-between; min-height: 46px; color: #fff; font: 900 12px/1.2 var(--font-latin); letter-spacing: .08em; text-transform: uppercase; list-style: none; }
  .footer-mobile-directory summary::-webkit-details-marker { display: none; }
  .footer-mobile-directory summary::after { content: "+"; color: #9aa6e0; font-size: 18px; line-height: 1; }
  .footer-mobile-directory details[open] summary::after { content: "-"; }
  .footer-mobile-directory details div { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 18px; padding: 0 0 14px; }
  .footer-mobile-directory a { padding: 5px 0; color: #bcc2dd; font-size: 13px; line-height: 1.6; }
  .footer-mobile-directory a:hover { color: #fff; }
  .footer-column { gap: 3px; }
  .footer-column b { margin-bottom: 7px; font-size: 12px; }
  .footer-column a { padding: 3px 0; font-size: 13px; line-height: 1.7; }
  .footer-legal { grid-column: 1 / -1; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-proof-line { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; padding: 12px 0; }
  .footer-proof-card { min-height: 64px; padding: 10px; }
  .footer-proof-card small { font-size: 9px; letter-spacing: .06em; }
  .footer-proof-card b { font-size: 12px; line-height: 1.45; }
  .footer-bottom { grid-template-columns: minmax(0, 1fr) auto; gap: 8px 12px; font-size: 12px; line-height: 1.7; }
  .footer-language { min-width: 36px; height: 28px; padding: 0 9px; }
}

/* ───────────────────────────────────────────────────────────────────────
   Footer brand lockup — NLC logo on the dark footer (white plate so the
   coloured logo always reads against the navy background).
   ─────────────────────────────────────────────────────────────────────── */
.footer-brand-lockup { display: inline-block; margin-bottom: 6px; }
.footer-brand-logo { display: block; width: 232px; height: 70px; background: linear-gradient(102deg, #ffffff 0%, #e2e7ff 44%, #aab8ff 100%); -webkit-mask: url(/logo.png) no-repeat left center / contain; mask: url(/logo.png) no-repeat left center / contain; }

/* ───────────────────────────────────────────────────────────────────────
   Animated product preview — recreation of the app.nexwest.app dashboard
   with a scripted cursor + soft camera-zoom (cursor.ai / claude.ai style).
   ─────────────────────────────────────────────────────────────────────── */
.case-hero-demo .case-panel { display: none; }
@media (min-width: 981px) { .case-hero-demo { grid-template-columns: 1.02fr .98fr; gap: 44px; } }

.nw-demo { position: relative; width: 100%; max-width: 560px; margin-inline: auto; perspective: 1500px; animation: nwFloat 7.5s ease-in-out infinite; }
.nw-frame { position: relative; max-width: 100%; border-radius: 16px; overflow: hidden; background: #fff; border: 1px solid rgba(34,48,227,.16); box-shadow: 0 30px 72px rgba(20,24,80,.22); transform: rotate(-1.3deg); transition: transform .6s ease; }
.nw-demo:hover .nw-frame { transform: rotate(0deg); }
.nw-frame::after { content: ""; position: absolute; right: -42px; bottom: -34px; width: 160px; height: 160px; border-radius: 50%; background: rgba(91,108,255,.30); filter: blur(28px); z-index: 0; pointer-events: none; }
.nw-bar { position: relative; z-index: 1; display: flex; align-items: center; gap: 7px; min-width: 0; height: 36px; padding: 0 14px; border-bottom: 1px solid #eef0f8; background: #f7f8fd; }
.nw-tdot { flex: none; width: 9px; height: 9px; border-radius: 50%; background: #d6dae8; }
.nw-tdot:nth-child(1) { background: #ff5f57; } .nw-tdot:nth-child(2) { background: #febc2e; } .nw-tdot:nth-child(3) { background: #28c840; }
.nw-url { margin-left: 12px; width: 56%; max-width: 230px; height: 16px; border-radius: 999px; background: #e7eaf6; }
.nw-stage { position: relative; z-index: 1; transform-origin: 62% 44%; will-change: transform; }
.nw-stage.nw-punch { animation: nwPunch .92s cubic-bezier(.34,.12,.2,1); }
.nw-body { display: grid; grid-template-columns: 132px 1fr; }
.nw-side { display: flex; flex-direction: column; gap: 6px; padding: 14px 12px; border-right: 1px solid #eef0f8; background: #fafbff; }
.nw-side-logo { display: block; width: 100%; max-width: 118px; height: auto; margin: 0 0 2px; }
.nw-side-chip { align-self: flex-start; margin-bottom: 8px; padding: 3px 9px; border-radius: 6px; background: var(--brand-soft); color: var(--brand); font: 800 10px/1.3 var(--font-latin); }
.nw-tabs { display: flex; flex-direction: column; gap: 3px; }
.nw-tab { display: flex; align-items: center; gap: 9px; width: 100%; padding: 8px 9px; border: 0; border-radius: 8px; background: transparent; color: #46506b; font: 700 12.5px/1 var(--font-th); text-align: left; cursor: pointer; transition: background .2s, color .2s; }
.nw-tab svg { width: 15px; height: 15px; flex: none; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.nw-tab:hover { background: #eef0fb; color: var(--brand); }
.nw-tab.is-active { background: var(--brand); color: #fff; box-shadow: 0 8px 18px rgba(34,48,227,.30); }
.nw-tab-muted { color: #aab0c4; cursor: default; }
.nw-main { position: relative; height: 306px; overflow: hidden; }
.nw-screen { position: absolute; inset: 0; display: flex; flex-direction: column; gap: 10px; padding: 16px; opacity: 0; transform: scale(1.05) translateY(8px); pointer-events: none; transition: opacity .45s ease, transform .45s ease; }
.nw-screen.is-active { opacity: 1; transform: none; pointer-events: auto; }
.nw-head h4 { margin: 0; font: 800 16px/1.2 var(--font-th); color: var(--ink); }
.nw-head span { display: block; margin-top: 2px; color: var(--muted); font-size: 11px; }
.nw-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.nw-stat { padding: 10px 11px; border: 1px solid #eaecf6; border-radius: 10px; background: #fbfcff; }
.nw-stat small { display: block; color: var(--muted); font-size: 10px; font-weight: 800; }
.nw-stat b { display: block; margin-top: 3px; font: 900 17px/1 var(--font-latin); color: var(--ink); }
.nw-stat i { display: block; margin-top: 2px; min-height: 12px; font-style: normal; font-size: 10px; font-weight: 800; color: var(--muted); }
.nw-stat i.up { color: #0f9d6e; }
.nw-ovlow { display: grid; grid-template-columns: 1.25fr 1fr; gap: 10px; flex: 1; min-height: 0; }
.nw-chart { display: flex; align-items: flex-end; padding: 8px; border: 1px solid #eaecf6; border-radius: 10px; background: #fbfcff; }
.nw-area { display: block; width: 100%; height: 100%; }
.nw-prog { display: flex; flex-direction: column; justify-content: center; gap: 3px; padding: 2px; }
.nw-prog span { color: var(--muted); font-size: 10px; font-weight: 800; }
.nw-pbar { height: 7px; margin-bottom: 6px; border-radius: 999px; background: #e7e9f6; overflow: hidden; }
.nw-pbar i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--brand), var(--brand-2)); }
.nw-chips { display: flex; gap: 6px; }
.nw-chips.col { flex-direction: column; align-items: flex-end; gap: 5px; }
.nw-chip { padding: 4px 10px; border-radius: 999px; border: 1px solid #e2e5f3; background: #f5f6fd; color: #5a6278; font: 800 11px/1.3 var(--font-latin); white-space: nowrap; }
.nw-chip.is-on { border-color: var(--brand); background: var(--brand-soft); color: var(--brand); }
.nw-rows { display: flex; flex-direction: column; gap: 7px; flex: 1; min-height: 0; }
.nw-row { display: flex; align-items: center; gap: 10px; padding: 8px 11px; border: 1px solid #eaecf6; border-radius: 10px; background: #fbfcff; }
.nw-ava { display: grid; place-items: center; width: 26px; height: 26px; flex: none; border-radius: 50%; background: var(--brand-soft); color: var(--brand); font: 900 12px/1 var(--font-latin); }
.nw-rmain { flex: 1; min-width: 0; }
.nw-rmain b { display: block; font: 700 12.5px/1.2 var(--font-th); color: var(--ink); }
.nw-rmain small { display: block; color: var(--muted); font-size: 10.5px; }
.nw-amt { font: 900 13px/1 var(--font-latin); color: var(--ink); white-space: nowrap; }
.nw-tag { padding: 3px 9px; border-radius: 999px; font: 800 10px/1.3 var(--font-latin); white-space: nowrap; }
.nw-tag.warn { background: #fff3e0; color: #c9760a; }
.nw-tag.ok { background: #e7f6ee; color: #0f9d6e; }
.nw-tag.paid { background: #eef0fb; color: #5a6278; }
.nw-total { display: flex; align-items: center; justify-content: space-between; padding: 11px 13px; border-radius: 10px; background: linear-gradient(120deg, var(--brand), #1a23b8); color: #fff; }
.nw-total span { font-size: 11px; font-weight: 700; opacity: .9; }
.nw-total b { font: 900 17px/1 var(--font-latin); }
.nw-total.mini { padding: 8px 11px; }
.nw-total.mini b { font-size: 14px; }
.nw-ctarow { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.nw-cta { padding: 9px 13px; border-radius: 9px; background: var(--brand); color: #fff; font: 800 11.5px/1.2 var(--font-th); box-shadow: 0 8px 18px rgba(34,48,227,.28); white-space: nowrap; }
.nw-note { color: var(--muted); font-size: 11px; font-weight: 700; }
.nw-prtop { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 13px; border: 1px solid #eaecf6; border-radius: 10px; background: #fbfcff; }
.nw-big small { display: block; color: var(--muted); font-size: 10px; font-weight: 800; }
.nw-big b { display: block; margin-top: 2px; font: 900 24px/1 var(--font-latin); color: var(--ink); }
.nw-big i { font-style: normal; font-size: 10.5px; font-weight: 700; color: var(--muted); }
.nw-cursor { position: absolute; top: 0; left: 0; z-index: 6; pointer-events: none; transform: translate(150px, 250px); transition: transform .72s cubic-bezier(.6,.05,.18,1); }
.nw-cur-in { display: block; filter: drop-shadow(0 3px 5px rgba(11,16,32,.35)); transition: transform .18s ease; }
.nw-cursor.is-click .nw-cur-in { transform: scale(.8); }
.nw-ring { position: absolute; z-index: 5; width: 12px; height: 12px; margin: -6px 0 0 -6px; border-radius: 50%; background: rgba(34,48,227,.45); pointer-events: none; animation: nwRing .62s ease-out forwards; }

@keyframes nwFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes nwPunch { 0% { transform: scale(1); } 34% { transform: scale(1.055); } 100% { transform: scale(1); } }
@keyframes nwRing { from { transform: scale(1); opacity: .6; } to { transform: scale(4.4); opacity: 0; } }

@media (max-width: 620px) {
  .nw-demo { max-width: 430px; animation: none; }
  .nw-frame { transform: none; }
  .nw-cursor { display: none; }
  .nw-frame::after { display: none; }
  .nw-body { grid-template-columns: 104px 1fr; }
  .nw-side { padding: 11px 8px; }
  .nw-side-logo { max-width: 96px; }
  .nw-tab { gap: 7px; padding: 7px; font-size: 11px; }
  .nw-tab-muted { display: none; }
  .nw-main { height: 344px; }
  .nw-screen { gap: 7px; padding: 11px; }
  .nw-head h4 { font-size: 14px; }
  .nw-stats { gap: 7px; }
  .nw-stat { padding: 8px 9px; }
  .nw-stat b { font-size: 15px; }
  .nw-ovlow { gap: 8px; }
  .nw-pbar { margin-bottom: 4px; }
  .nw-rows { overflow: hidden; }
  .nw-big b { font-size: 20px; }
  .nw-big small { display: none; }
  .nw-prtop { gap: 7px; padding: 10px 11px; }
  .nw-prtop .nw-chips { display: none; }
  .nw-screen[data-screen-panel="payouts"] .nw-row:nth-child(3) { display: none; }
  .nw-ctarow { flex-direction: column; align-items: stretch; gap: 7px; }
  .nw-total.mini { width: 100%; }
  .nw-cta { white-space: normal; text-align: center; padding: 8px 10px; font-size: 11px; line-height: 1.3; }
  .nw-note { text-align: center; }
  .footer-brand-logo { width: 200px; height: 60px; }
}

@media (prefers-reduced-motion: reduce) {
  .nw-demo, .nw-stage, .nw-screen, .nw-ring, .nw-cur-in { animation: none !important; transition: none !important; }
  .nw-cursor { display: none !important; }
  .nw-frame { transform: rotate(-1deg); }
}

/* Plan comparison table (pricing page) */
.nw-cmp-wrap { overflow-x: auto; margin: 8px 0 4px; -webkit-overflow-scrolling: touch; border: 1px solid rgba(11,31,58,.1); border-radius: 14px; }
.nw-cmp { width: 100%; min-width: 720px; border-collapse: collapse; font-size: 14px; background: #fff; }
.nw-cmp th, .nw-cmp td { padding: 11px 14px; border-bottom: 1px solid rgba(11,31,58,.08); text-align: center; white-space: nowrap; }
.nw-cmp th:first-child, .nw-cmp td:first-child { text-align: left; white-space: normal; font-weight: 500; color: #0b1f3a; }
.nw-cmp thead th { background: #0b1f3a; color: #fff; font-weight: 600; }
.nw-cmp thead th:first-child { border-top-left-radius: 14px; color: #fff; }
.nw-cmp thead th:last-child { border-top-right-radius: 14px; }
.nw-cmp tbody tr:nth-child(even) { background: rgba(34,48,227,.03); }
.nw-cmp tbody tr:hover { background: rgba(34,48,227,.06); }

/* Services showcase (homepage) */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 10px; }
.svc-card { position: relative; border: 1px solid rgba(11,31,58,.1); border-radius: 16px; padding: 24px; background: #fff; transition: box-shadow .2s ease, transform .2s ease; }
.svc-card:hover { box-shadow: 0 10px 28px rgba(11,31,58,.09); transform: translateY(-2px); }
.svc-card h3 { margin: 12px 0 8px; font-size: 18px; color: #0b1f3a; }
.svc-card p { margin: 0 0 16px; color: #5b6470; font-size: 14px; line-height: 1.6; }
.svc-card a { color: #2230e3; font-weight: 600; text-decoration: none; }
.svc-card a:hover { text-decoration: underline; }
.svc-badge { display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 999px; letter-spacing: .3px; }
.svc-badge.is-live { background: #e8f7ef; color: #15803d; }
.svc-badge.is-soon { background: #fff4e6; color: #b45309; }
.svc-card.svc-soon { background: #fafbfc; }
.svc-soon-label { color: #6b7280; font-weight: 600; font-size: 14px; }
@media (max-width: 880px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }
