:root {
  --sz-black: #101010;
  --sz-ink: #202124;
  --sz-muted: #686c73;
  --sz-line: #e7e3dc;
  --sz-soft: #f7f5f1;
  --sz-warm: #fbfaf7;
  --sz-gold: #eeb15c;
  --sz-gold-dark: #96621d;
  --sz-green: #2f8068;
  --sz-blue: #386fa4;
  --sz-white: #ffffff;
  --sz-radius: 8px;
  --sz-shadow: 0 20px 70px rgba(16, 16, 16, 0.12);
  --sz-container: 1160px;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  color: var(--sz-ink);
  background: var(--sz-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

/* Inter has no Myanmar glyphs; fall back to system fonts for Burmese. */
[lang="my"] body {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: var(--sz-gold-dark);
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

a:hover {
  color: var(--sz-black);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--sz-black);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.08;
}

p {
  overflow-wrap: anywhere;
}

.ast-container,
.site-content .ast-container {
  max-width: var(--sz-container);
}

.site-header,
.ast-primary-header-bar {
  border-bottom: 1px solid var(--sz-line);
  background: rgba(255, 255, 255, 0.96);
}

.ast-site-identity {
  padding: 14px 0;
}

.main-header-menu .menu-link {
  color: #4f5358;
  font-size: 14px;
  font-weight: 750;
}

.main-header-menu .menu-link:hover,
.main-header-menu .current-menu-item > .menu-link {
  color: var(--sz-black);
}

.site-title a {
  color: var(--sz-black);
  font-weight: 850;
}

.site-title a::before {
  content: "S";
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-right: 10px;
  border-radius: 7px;
  color: var(--sz-black);
  background: var(--sz-gold);
  font-size: 16px;
  font-weight: 900;
  vertical-align: middle;
}

.ast-button,
.button,
button,
input[type="button"],
input[type="submit"],
.wp-block-button__link,
.elementor-button {
  border-radius: var(--sz-radius);
  font-weight: 850;
  letter-spacing: 0;
}

.ast-button,
.button,
button,
input[type="button"],
input[type="submit"],
.wp-block-button__link,
.elementor-button {
  color: var(--sz-white);
  border-color: var(--sz-black);
  background: var(--sz-black);
}

.ast-button:hover,
.button:hover,
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover,
.elementor-button:hover {
  border-color: var(--sz-gold);
  color: var(--sz-black);
  background: var(--sz-gold);
}

.sz-container {
  width: min(100% - 40px, var(--sz-container));
  margin-inline: auto;
}

.sz-section {
  padding: 94px 0;
}

.sz-section-soft {
  background: var(--sz-soft);
}

.sz-section-warm {
  background: var(--sz-warm);
}

.sz-section-dark {
  color: var(--sz-white);
  background: var(--sz-black);
}

.sz-section-dark h1,
.sz-section-dark h2,
.sz-section-dark h3 {
  color: var(--sz-white);
}

.sz-eyebrow {
  margin: 0 0 14px;
  color: var(--sz-gold-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sz-section-dark .sz-eyebrow {
  color: var(--sz-gold);
}

.sz-copy {
  max-width: 680px;
  color: var(--sz-muted);
  font-size: 18px;
}

.sz-section-dark .sz-copy {
  color: rgba(255, 255, 255, 0.76);
}

.sz-button-primary .elementor-button,
.sz-button-primary,
a.sz-button-primary {
  color: var(--sz-black) !important;
  border: 1px solid var(--sz-gold) !important;
  background: var(--sz-gold) !important;
}

.sz-button-dark .elementor-button,
.sz-button-dark,
a.sz-button-dark {
  color: var(--sz-white) !important;
  border: 1px solid var(--sz-black) !important;
  background: var(--sz-black) !important;
}

.sz-button-secondary .elementor-button,
.sz-button-secondary,
a.sz-button-secondary {
  color: var(--sz-black) !important;
  border: 1px solid var(--sz-line) !important;
  background: var(--sz-white) !important;
}

.sz-button-ghost .elementor-button,
.sz-button-ghost,
a.sz-button-ghost {
  color: var(--sz-white) !important;
  border: 1px solid rgba(255, 255, 255, 0.42) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.sz-button-primary:hover .elementor-button,
.sz-button-secondary:hover .elementor-button,
.sz-button-dark:hover .elementor-button,
.sz-button-ghost:hover .elementor-button,
a.sz-button-primary:hover,
a.sz-button-secondary:hover,
a.sz-button-dark:hover,
a.sz-button-ghost:hover {
  transform: translateY(-1px);
}

.sz-hero {
  position: relative;
  min-height: 70svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 28px 0 68px;
  color: var(--sz-white);
  background: var(--sz-black);
}

.sz-front-page {
  background: var(--sz-white);
}

.sz-front-page p {
  margin-bottom: 0;
}

.sz-front-page h2 {
  font-size: clamp(32px, 5vw, 56px);
}

.sz-front-page h3 {
  font-size: 22px;
}

/* Astra wraps templates in .ast-container; let the front page sections
   bleed full width — .sz-container provides the inner 1160px constraint. */
body.home .site-content .ast-container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.sz-language-row {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 28px;
}

.sz-language-button {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
}

.sz-language-button:hover,
.sz-language-button.is-active {
  border-color: var(--sz-gold);
  color: var(--sz-black);
  background: var(--sz-gold);
}

.sz-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.82fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.sz-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.sz-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--sz-radius);
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.sz-pos-shell {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: #f7f5f1;
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.42);
  overflow: hidden;
  transform: rotate(-2deg);
}

.sz-pos-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: #202124;
}

.sz-pos-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #b6babf;
}

.sz-pos-title {
  margin-left: 10px;
  color: #f7f5f1;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sz-pos-status {
  margin-left: auto;
  padding: 5px 10px;
  border-radius: 999px;
  color: #143d32;
  background: #dceee8;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.sz-pos-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
  padding: 16px;
}

.sz-pos-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  align-content: start;
}

.sz-pos-tile {
  display: grid;
  align-content: space-between;
  gap: 12px;
  min-height: 96px;
  padding: 14px;
  border: 1px solid #ded9d0;
  border-radius: 10px;
  background: var(--sz-white);
}

.sz-pos-tile span:first-child {
  color: var(--sz-ink);
  font-size: 14px;
  font-weight: 800;
}

.sz-pos-tile span:last-child {
  color: var(--sz-muted);
  font-size: 13px;
  font-weight: 750;
}

.sz-pos-tile.is-active {
  border-color: var(--sz-gold);
  background: #fdf3e0;
  box-shadow: inset 0 0 0 1px var(--sz-gold);
}

.sz-pos-cart {
  display: flex;
  flex-direction: column;
  padding: 16px;
  border: 1px solid #ded9d0;
  border-radius: 10px;
  color: var(--sz-ink);
  background: var(--sz-white);
}

.sz-pos-cart-label {
  margin-bottom: 10px;
  color: var(--sz-muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.sz-pos-cart-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid #eee9df;
  font-size: 13px;
}

.sz-pos-cart-row span:nth-child(2) {
  color: var(--sz-muted);
}

.sz-pos-cart-row strong {
  font-weight: 800;
}

.sz-pos-cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: auto;
  padding-top: 14px;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.sz-pos-cart-total strong {
  font-size: 21px;
  font-weight: 900;
}

.sz-pos-pay {
  margin-top: 12px;
  padding: 13px;
  border-radius: 8px;
  text-align: center;
  color: var(--sz-black);
  background: var(--sz-gold);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.sz-pos-pay-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

.sz-pos-pay-row span {
  padding: 9px;
  border: 1px solid #ded9d0;
  border-radius: 8px;
  text-align: center;
  color: var(--sz-ink);
  background: #faf8f4;
  font-size: 12px;
  font-weight: 800;
}

.sz-hero h1 {
  max-width: 780px;
  color: var(--sz-white);
  font-size: clamp(42px, 7vw, 76px);
}

.sz-hero .sz-copy {
  margin-top: 18px;
  font-size: clamp(17px, 2vw, 21px);
}

.sz-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin: 22px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  list-style: none;
  font-size: 14px;
  font-weight: 750;
}

.sz-trust-list li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--sz-gold);
  vertical-align: 1px;
}

.sz-two-column {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

.sz-section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

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

.sz-problem-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 86px;
  padding: 18px 0;
  border-bottom: 1px solid var(--sz-line);
}

.sz-problem-list span {
  color: var(--sz-gold-dark);
  font-weight: 900;
}

.sz-problem-list p {
  margin: 0;
  font-size: 19px;
  font-weight: 750;
}

.sz-solution-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.sz-solution-points div {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--sz-line);
  border-radius: var(--sz-radius);
  background: var(--sz-white);
}

.sz-solution-points strong {
  display: block;
  margin-bottom: 12px;
  color: var(--sz-gold-dark);
  font-size: 13px;
  text-transform: uppercase;
}

.sz-solution-points span {
  display: block;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.35;
}

.sz-feature-grid,
.sz-pricing-grid,
.sz-flow-grid {
  display: grid;
  gap: 16px;
}

.sz-feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.sz-pricing-grid {
  grid-template-columns: repeat(4, 1fr);
}

.sz-flow-grid {
  grid-template-columns: repeat(4, 1fr);
}

.sz-card,
.sz-feature-card,
.sz-pricing-card,
.sz-flow-card {
  border: 1px solid var(--sz-line);
  border-radius: var(--sz-radius);
  background: var(--sz-white);
}

.sz-feature-card {
  min-height: 220px;
  padding: 26px;
}

.sz-feature-card p,
.sz-pricing-card p {
  color: var(--sz-muted);
}

.sz-feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: var(--sz-radius);
  color: var(--sz-black);
  background: var(--sz-gold);
  font-weight: 900;
}

.sz-pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 330px;
  padding: 26px;
}

.sz-pricing-card .sz-button {
  margin-top: auto;
}

.sz-pricing-card.is-featured,
.sz-pricing-card.sz-featured {
  border-color: var(--sz-gold);
  box-shadow: var(--sz-shadow);
}

.sz-price {
  margin: 0;
  color: var(--sz-black);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.sz-price span {
  display: block;
  margin-top: 8px;
  color: var(--sz-muted);
  font-size: 13px;
  font-weight: 750;
}

.sz-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--sz-black);
  background: var(--sz-gold);
  font-size: 12px;
  font-weight: 900;
}

.sz-flow-card {
  min-height: 170px;
  padding: 24px;
}

.sz-flow-card p {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
}

.sz-step-number {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 26px;
  border-radius: 999px;
  color: var(--sz-black);
  background: var(--sz-gold);
  font-weight: 900;
}

.sz-faq details,
.sz-faq .elementor-accordion-item {
  border: 1px solid var(--sz-line);
  border-radius: var(--sz-radius);
  background: var(--sz-white);
}

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

.sz-faq details {
  padding: 0;
}

.sz-faq summary {
  padding: 20px 22px;
  color: var(--sz-black);
  font-size: 18px;
  font-weight: 850;
  cursor: pointer;
}

.sz-faq details p {
  padding: 0 22px 22px;
  color: var(--sz-muted);
}

.sz-final-cta {
  max-width: 820px;
}

.sz-faq .elementor-tab-title {
  color: var(--sz-black);
  font-size: 18px;
  font-weight: 850;
}

.sz-faq .elementor-tab-content {
  color: var(--sz-muted);
}

@media (max-width: 980px) {
  .sz-hero-inner {
    grid-template-columns: 1fr;
  }

  .sz-pos-shell {
    opacity: 0.9;
    transform: none;
  }

  .sz-two-column {
    grid-template-columns: 1fr;
  }

  .sz-feature-grid,
  .sz-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sz-flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .sz-container {
    width: min(100% - 28px, var(--sz-container));
  }

  .sz-section {
    padding: 68px 0;
  }

  .sz-hero {
    min-height: auto;
    padding: 24px 0 72px;
  }

  .sz-language-row {
    justify-content: flex-start;
    margin-bottom: 24px;
    overflow-x: auto;
  }

  .sz-actions .sz-button {
    width: 100%;
  }

  .sz-pos-shell {
    display: none;
  }

  .sz-trust-list {
    display: grid;
  }

  .sz-problem-list article {
    grid-template-columns: 42px 1fr;
  }

  .sz-solution-points,
  .sz-feature-grid,
  .sz-pricing-grid,
  .sz-flow-grid {
    grid-template-columns: 1fr;
  }

  .sz-feature-card,
  .sz-pricing-card,
  .sz-flow-card {
    min-height: auto;
  }
}
