:root {
  --navy: #0d1733;
  --navy-soft: #18254a;
  --blue: #235ee7;
  --blue-dark: #1749c1;
  --blue-pale: #eef4ff;
  --coral: #ff755f;
  --ink: #101a35;
  --muted: #62708b;
  --line: #dfe5f0;
  --surface: #f7f9fd;
  --white: #fff;
  --success: #17885d;
  --danger: #c34242;
  --shadow: 0 26px 70px rgba(13, 23, 51, .12);
  --shadow-soft: 0 12px 34px rgba(13, 23, 51, .08);
  --radius: 22px;
  --font: "Noto Sans Myanmar", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img, svg { display: block; max-width: 100%; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 116px 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 18px; top: -80px; z-index: 1000;
  background: var(--navy); color: white; padding: 10px 16px; border-radius: 8px;
}
.skip-link:focus { top: 18px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(223, 229, 240, .78);
  backdrop-filter: blur(16px);
}
.nav-wrap { height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 23px; font-weight: 800; letter-spacing: -.5px; }
.brand-mark {
  width: 37px; height: 37px; display: grid; place-items: center;
  color: var(--white); background: var(--blue); border-radius: 12px;
}
.brand-mark svg { width: 25px; }
.brand-mark path { fill: currentColor; }
.brand-mark circle { fill: var(--blue); }
.primary-nav { display: flex; align-items: center; gap: 31px; font-size: 14px; font-weight: 600; }
.primary-nav > a:not(.button) { color: #3f4c68; transition: color .2s; }
.primary-nav > a:not(.button):hover { color: var(--blue); }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; }
.menu-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px; background: var(--navy); }

.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 12px 23px; border: 1px solid var(--blue);
  border-radius: 10px; color: var(--white); background: var(--blue);
  font-size: 14px; font-weight: 700; cursor: pointer;
  box-shadow: 0 10px 22px rgba(35, 94, 231, .18);
  transition: transform .2s, background .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); background: var(--blue-dark); box-shadow: 0 14px 28px rgba(35, 94, 231, .24); }
.button-small { min-height: 42px; padding: 9px 17px; font-size: 13px; }
.button-outline { color: var(--blue); background: transparent; box-shadow: none; }
.button-outline:hover { color: var(--white); }
.text-link { color: var(--navy); font-size: 14px; font-weight: 700; }
.text-link span { display: inline-block; margin-left: 5px; color: var(--blue); transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }

.hero { position: relative; overflow: hidden; padding: 108px 0 112px; }
.hero::before {
  content: ""; position: absolute; width: 680px; height: 680px; right: -270px; top: -220px;
  background: radial-gradient(circle, rgba(35, 94, 231, .08), transparent 68%); pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 58px; align-items: center; }
.hero-copy h1 {
  margin: 0 0 26px; max-width: 620px;
  color: var(--navy); font-size: clamp(42px, 4.35vw, 58px); line-height: 1.4; letter-spacing: -2.2px;
}
.hero-copy h1 span { color: var(--blue); }
.hero-copy > p { margin: 0; max-width: 600px; color: var(--muted); font-size: 17px; line-height: 1.9; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 35px; }
.channel-line { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-top: 34px; color: #56637d; font-size: 12px; font-weight: 600; }
.channel-icon { width: 23px; height: 23px; display: grid; place-items: center; color: white; border-radius: 50%; font: 700 11px/1 system-ui; }
.messenger-icon { background: linear-gradient(145deg, #8159ff, #1689f8); }
.telegram-icon { background: #2ba3df; }
.channel-dot { width: 3px; height: 3px; margin: 0 5px; border-radius: 50%; background: #a7b1c3; }

.product-stage { position: relative; min-height: 520px; }
.chat-window {
  position: absolute; top: 38px; left: 50%; z-index: 3; width: min(440px, 88%);
  border: 1px solid #d8e0ee; border-radius: 24px; background: var(--white);
  box-shadow: var(--shadow); transform: translateX(-50%); overflow: hidden;
}
.window-bar { display: flex; justify-content: space-between; align-items: center; padding: 17px 20px; border-bottom: 1px solid #e6ebf3; }
.window-person { display: flex; align-items: center; gap: 11px; }
.avatar { width: 38px; height: 38px; display: grid; place-items: center; color: white; background: var(--blue); border-radius: 12px; font-size: 15px; font-weight: 800; }
.window-person strong, .window-person small { display: block; line-height: 1.45; }
.window-person strong { font-size: 13px; }
.window-person small { color: var(--success); font-size: 10px; }
.window-more { color: #8590a5; letter-spacing: 2px; }
.chat-body { padding: 22px; background: #f8faff; }
.message { max-width: 84%; margin-bottom: 13px; padding: 12px 14px; border-radius: 14px; font-size: 12px; line-height: 1.7; }
.message.customer { margin-left: auto; color: white; background: var(--blue); border-bottom-right-radius: 4px; }
.message.bot { color: #34415d; background: white; border: 1px solid #e1e7f0; border-bottom-left-radius: 4px; }
.quick-actions { display: grid; gap: 7px; margin: 16px 0; }
.quick-actions button { padding: 9px; color: var(--blue); background: white; border: 1px solid #b9caef; border-radius: 9px; font-size: 10px; font-weight: 700; }
.cart-row { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: 18px; padding: 13px; border-radius: 12px; background: #edf3ff; font-size: 10px; }
.cart-row > div { display: flex; align-items: center; gap: 9px; }
.cart-row span span, .cart-row small { display: block; }
.cart-row small { color: #68758d; margin-top: 2px; }
.cart-icon { width: 25px; height: 25px; display: grid !important; place-items: center; color: white; background: var(--success); border-radius: 50%; }
.admin-alert, .memory-chip {
  position: absolute; z-index: 4; display: flex; align-items: center; gap: 11px;
  padding: 14px 17px; background: white; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-soft);
}
.admin-alert { right: -4px; top: 86px; }
.memory-chip { left: -7px; bottom: 62px; }
.admin-alert strong, .admin-alert small, .memory-chip strong, .memory-chip small { display: block; line-height: 1.5; }
.admin-alert strong, .memory-chip strong { font-size: 11px; }
.admin-alert small, .memory-chip small { color: var(--muted); font-size: 9px; }
.alert-icon, .memory-chip > span { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 9px; font-weight: 800; }
.alert-icon { color: #d44c3b; background: #fff0ed; }
.memory-chip > span { color: var(--blue); background: var(--blue-pale); }
.signal-line { position: absolute; z-index: 1; border: 1px solid #bed0f7; border-radius: 50%; opacity: .7; }
.signal-one { width: 430px; height: 430px; right: -38px; top: 22px; }
.signal-two { width: 330px; height: 330px; left: 5px; top: 112px; }

.section-heading { max-width: 690px; margin-bottom: 56px; }
.section-heading.centered { margin-right: auto; margin-left: auto; text-align: center; }
.section-heading h2 { margin: 0 0 16px; color: var(--navy); font-size: clamp(31px, 4vw, 48px); line-height: 1.35; letter-spacing: -1.5px; }
.section-heading p { margin: 0; color: var(--muted); font-size: 16px; }

.capabilities { background: var(--surface); }
.capability-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 86px; align-items: center; }
.capability-list { border-top: 1px solid var(--line); }
.capability-row { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.capability-number { color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: 1px; }
.capability-row h3 { margin: 0 0 6px; color: var(--navy); font-size: 18px; }
.capability-row p { margin: 0; color: var(--muted); font-size: 13px; }
.automation-visual { position: relative; min-height: 500px; border: 1px solid #d9e2f4; border-radius: var(--radius); background: white; box-shadow: var(--shadow-soft); overflow: hidden; }
.automation-visual::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(#dce5f7 1px, transparent 1px); background-size: 18px 18px; opacity: .55; }
.flow-title { position: absolute; left: 50%; top: 40px; z-index: 2; padding: 10px 18px; color: white; background: var(--navy); border-radius: 9px; font-size: 12px; font-weight: 700; transform: translateX(-50%); }
.flow-path { position: absolute; left: 50%; top: 79px; width: 2px; height: 310px; background: #c9d7f4; }
.flow-node, .flow-admin { position: absolute; z-index: 2; display: flex; align-items: center; gap: 12px; padding: 13px 16px; border: 1px solid #dce4f2; border-radius: 12px; background: white; box-shadow: 0 8px 24px rgba(13, 23, 51, .08); font-size: 11px; }
.flow-node > span, .flow-admin > span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 8px; color: white; background: var(--blue); font: 700 10px/1 system-ui; }
.node-ai { left: 35px; top: 130px; }
.node-data { right: 29px; top: 235px; }
.node-order { left: 60px; top: 342px; }
.node-order > span { background: var(--success); }
.flow-admin { right: 25px; bottom: 28px; color: #ae493b; background: #fff8f6; border-color: #ffd4cd; }
.flow-admin > span { color: #ca4937; background: #ffe8e3; }

.difference { background: white; }
.comparison { display: grid; grid-template-columns: 1fr 90px 1fr; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.comparison-side { padding: 46px 48px; }
.comparison-side h3 { margin: 0 0 27px; font-size: 22px; }
.comparison-side ul, .price-plan ul { margin: 0; padding: 0; list-style: none; }
.comparison-side li { position: relative; margin: 16px 0; padding-left: 31px; color: #4c5973; font-size: 14px; }
.comparison-side li::before { position: absolute; left: 0; top: 3px; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; font-size: 11px; }
.ordinary { background: #f8f9fc; }
.ordinary h3 { color: #69758b; }
.ordinary li::before { content: "×"; color: #8d97a9; background: #e8ebf1; }
.zaybot-side h3 { color: var(--blue); }
.zaybot-side li { color: var(--navy); font-weight: 600; }
.zaybot-side li::before { content: "✓"; color: white; background: var(--blue); }
.comparison-divider { position: relative; display: grid; place-items: center; background: linear-gradient(90deg, #f8f9fc 50%, white 50%); }
.comparison-divider::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: var(--line); }
.comparison-divider span { z-index: 1; width: 48px; height: 48px; display: grid; place-items: center; color: var(--blue); background: white; border: 1px solid #bed0f7; border-radius: 50%; font: 800 12px/1 system-ui; }
.digital-admin-statement { margin: 50px 0 0; text-align: center; color: var(--navy); font-size: clamp(22px, 3vw, 34px); font-weight: 700; }
.digital-admin-statement span { color: var(--blue); }

.process { color: white; background: var(--navy); }
.process .section-heading h2 { color: white; }
.process .section-heading p { color: #aeb9d1; }
.process-list { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; margin: 0; padding: 0; list-style: none; }
.process-list::before { content: ""; position: absolute; left: 5%; right: 5%; top: 28px; height: 1px; background: #3c4968; }
.process-list li { position: relative; z-index: 1; }
.process-list li > span { width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 25px; color: white; background: var(--blue); border: 7px solid var(--navy); border-radius: 50%; font: 800 11px/1 system-ui; box-shadow: 0 0 0 1px #4d5a78; }
.process-list h3 { margin: 0 0 10px; font-size: 15px; line-height: 1.65; }
.process-list p { margin: 0; color: #aeb9d1; font-size: 12px; line-height: 1.8; }

.pricing { background: var(--blue-pale); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-plan { position: relative; display: flex; flex-direction: column; padding: 38px 34px; background: white; border: 1px solid #d8e3f8; border-radius: 18px; }
.price-plan.featured { border: 2px solid var(--blue); box-shadow: 0 22px 50px rgba(35, 94, 231, .13); transform: translateY(-10px); }
.recommended { position: absolute; top: 0; right: 0; left: 0; padding: 7px; color: white; background: var(--blue); border-radius: 15px 15px 0 0; text-align: center; font-size: 10px; font-weight: 700; }
.featured h3 { margin-top: 17px !important; }
.price-plan h3 { margin: 0 0 6px; color: var(--navy); font-size: 25px; }
.plan-fit { min-height: 54px; margin: 0 0 25px; color: var(--muted); font-size: 12px; }
.price-block { padding: 19px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.price-block small { display: block; margin-bottom: 5px; color: var(--muted); font-size: 11px; }
.price-block strong { color: var(--navy); font-size: 25px; line-height: 1.4; }
.price-block strong span { font-size: 11px; font-weight: 600; }
.monthly { display: flex; align-items: baseline; gap: 5px; margin: 18px 0; color: var(--blue); }
.monthly strong { font-size: 17px; }
.monthly span { color: var(--muted); font-size: 11px; }
.price-plan ul { flex: 1; margin-bottom: 30px; }
.price-plan li { position: relative; margin: 13px 0; padding-left: 25px; color: #46536c; font-size: 13px; }
.price-plan li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 800; }
.pricing-note { margin: 26px 0 0; color: #69758c; text-align: center; font-size: 11px; }

.contact { background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 82px; align-items: center; }
.contact-copy h2 { margin: 0 0 22px; color: white; font-size: clamp(34px, 4vw, 50px); line-height: 1.45; letter-spacing: -1.5px; }
.contact-copy p { margin: 0; color: #b1bdd5; font-size: 15px; }
.direct-links { display: grid; gap: 10px; margin-top: 34px; }
.direct-links a { color: white; font-size: 13px; font-weight: 700; }
.direct-links span { margin-left: 5px; color: #7ea3ff; }
.demo-form { display: grid; grid-template-columns: 1fr 1fr; gap: 19px; padding: 36px; background: white; border-radius: var(--radius); box-shadow: 0 30px 70px rgba(0, 0, 0, .2); }
.field label, .field legend { display: block; margin-bottom: 7px; color: var(--navy); font-size: 12px; font-weight: 700; }
.field label span { color: var(--muted); font-weight: 400; }
.field input[type="text"], .field input[type="tel"], .field textarea {
  width: 100%; padding: 12px 13px; color: var(--ink); background: #fbfcff;
  border: 1px solid #d6deeb; border-radius: 9px; outline: none;
  font-size: 13px; transition: border .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(35, 94, 231, .1); }
.field input.invalid { border-color: var(--danger); }
.channel-options { margin: 0; padding: 0; border: 0; }
.channel-options > label { display: flex; align-items: center; gap: 8px; margin: 7px 0; color: #44516c; font-weight: 500; }
.channel-options input { accent-color: var(--blue); }
.full-field { grid-column: 1 / -1; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
#form-status { margin: 0; color: var(--muted); font-size: 11px; }
#form-status.success { color: var(--success); }
#form-status.error { color: var(--danger); }
.demo-form button[disabled] { opacity: .65; cursor: wait; }

.site-footer { color: #aeb9d1; background: #091126; border-top: 1px solid #26314e; }
.footer-main { display: flex; justify-content: space-between; gap: 50px; padding: 58px 0 42px; }
.footer-brand { color: white; }
.footer-main > div > p { max-width: 460px; margin: 16px 0 0; font-size: 12px; }
.footer-main nav { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; font-size: 11px; }
.footer-main nav a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; padding: 21px 0; border-top: 1px solid #26314e; font-size: 10px; }

.legal-page { min-height: 100vh; background: var(--surface); }
.legal-header { background: white; border-bottom: 1px solid var(--line); }
.legal-nav { height: 78px; display: flex; align-items: center; justify-content: space-between; }
.legal-nav > a:last-child { color: var(--blue); font-size: 13px; font-weight: 700; }
.legal-content { max-width: 820px; margin: 70px auto 100px; padding: 50px 55px; background: white; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-soft); }
.legal-content h1 { margin: 0 0 8px; color: var(--navy); font-size: 38px; }
.legal-updated { margin: 0 0 40px; color: var(--muted); font-size: 12px; }
.legal-content h2 { margin: 34px 0 10px; color: var(--navy); font-size: 20px; }
.legal-content p, .legal-content li { color: #536078; font-size: 14px; }

.reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .primary-nav {
    position: fixed; inset: 78px 0 auto; display: grid; gap: 0; padding: 12px 20px 25px;
    background: white; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-soft);
    transform: translateY(-130%); transition: transform .3s ease;
  }
  .primary-nav.open { transform: translateY(0); }
  .primary-nav a { padding: 12px; }
  .primary-nav .button { margin-top: 8px; }
  .hero { padding-top: 76px; }
  .hero-grid, .capability-layout, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 54px; }
  .hero-copy { max-width: 720px; }
  .product-stage { width: min(650px, 100%); margin: 0 auto; }
  .capability-layout { gap: 56px; }
  .automation-visual { width: min(580px, 100%); margin: 0 auto; }
  .process-list { grid-template-columns: 1fr 1fr; gap: 38px; }
  .process-list::before { display: none; }
  .process-list li { display: grid; grid-template-columns: 56px 1fr; gap: 16px; }
  .process-list li > span { margin: 0; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
  .price-plan.featured { transform: none; }
  .contact-grid { gap: 55px; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 82px 0; }
  .nav-wrap { height: 68px; }
  .primary-nav { inset: 68px 0 auto; }
  .hero { padding: 60px 0 75px; }
  .hero-grid { gap: 40px; }
  .hero-copy h1 { font-size: 37px; letter-spacing: -1.4px; }
  .hero-copy > p { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .product-stage { min-height: 420px; }
  .chat-window { top: 20px; width: 94%; border-radius: 18px; }
  .chat-body { padding: 16px; }
  .admin-alert { right: -2px; top: 300px; }
  .memory-chip { left: -2px; bottom: 6px; }
  .signal-one { width: 330px; height: 330px; }
  .signal-two { width: 250px; height: 250px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2 { font-size: 31px; letter-spacing: -.8px; }
  .capability-row { grid-template-columns: 38px 1fr; gap: 8px; }
  .capability-row h3 { font-size: 16px; }
  .automation-visual { min-height: 460px; }
  .flow-node, .flow-admin { max-width: 190px; }
  .node-ai { left: 16px; }
  .node-data { right: 14px; }
  .node-order { left: 25px; }
  .flow-admin { right: 14px; }
  .comparison { grid-template-columns: 1fr; }
  .comparison-side { padding: 34px 28px; }
  .comparison-divider { height: 60px; background: linear-gradient(#f8f9fc 50%, white 50%); }
  .comparison-divider::before { top: 50%; right: 0; bottom: auto; left: 0; width: auto; height: 1px; }
  .process-list { grid-template-columns: 1fr; }
  .price-plan { padding: 34px 27px; }
  .demo-form { grid-template-columns: 1fr; padding: 28px 22px; }
  .full-field { grid-column: auto; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .footer-main, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-main nav { align-items: flex-start; flex-direction: column; gap: 12px; }
  .legal-content { margin: 30px 14px 70px; padding: 34px 24px; }
  .legal-content h1 { font-size: 30px; }
}
