:root {
  --bg: #edf2ff;
  --bg-2: #f6f8ff;
  --surface: rgba(255, 251, 246, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-dark: #314cc9;
  --line: rgba(77, 111, 255, 0.12);
  --line-strong: rgba(77, 111, 255, 0.22);
  --text: #25305a;
  --muted: #6f7aa8;
  --brand: #4d6fff;
  --brand-strong: #314cc9;
  --gold: #ffb24d;
  --gold-soft: #ffdcae;
  --rose: #ff8a5b;
  --success: #2b8e74;
  --shadow-lg: 0 30px 80px rgba(54, 79, 195, 0.14);
  --shadow-md: 0 18px 44px rgba(54, 79, 195, 0.1);
  --shadow-sm: 0 10px 26px rgba(54, 79, 195, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 32px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  font-family: "IBM Plex Sans Thai", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 178, 77, 0.18), transparent 26%),
    radial-gradient(circle at 88% 14%, rgba(77, 111, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #f5f7ff 0%, #f8f7fb 36%, #eef3ff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 35%),
    repeating-linear-gradient(
      135deg,
      rgba(77, 111, 255, 0.05) 0,
      rgba(77, 111, 255, 0.05) 1px,
      transparent 1px,
      transparent 20px
    );
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 86%);
}

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

button,
input {
  font: inherit;
}

.page-glow {
  position: fixed;
  z-index: -1;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(42px);
  opacity: 0.48;
  pointer-events: none;
}

.page-glow-left {
  top: 120px;
  left: -120px;
  background: rgba(255, 178, 77, 0.2);
}

.page-glow-right {
  top: 340px;
  right: -120px;
  background: rgba(77, 111, 255, 0.16);
}

.site-shell {
  width: var(--container);
  margin: 0 auto;
  padding-bottom: 40px;
}

.inner-page .site-shell {
  padding-bottom: 24px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 16px;
  margin: 18px auto 0;
  padding: 12px 14px;
  background: #102657;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(54, 79, 195, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand-home {
  display: inline-flex;
  align-items: center;
}

.brand-mark {
  flex: 0 0 auto;
  display: block;
  width: 146px;
  height: auto;
}

.brand-kicker,
.eyebrow,
.calculator-kicker,
.card-label {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-kicker {
  color: #b91935;
}

.brand-name {
  display: inline-block;
  margin-top: 1px;
  font-family: "Chonburi", "IBM Plex Sans Thai", serif;
  font-size: 1.26rem;
  font-weight: 700;
  color: var(--brand-strong);
  line-height: 1.12;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a,
.footer-links a,
.contact-card a,
.fact-card a {
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffffff;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.contact-card a:hover,
.contact-card a:focus-visible,
.fact-card a:hover,
.fact-card a:focus-visible {
  color: var(--brand);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.language-switcher button {
  min-width: 44px;
  min-height: 34px;
  padding: 0 11px;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}

.language-switcher button[aria-pressed="true"] {
  color: var(--brand-strong);
  background: #fff8ef;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.language-switcher button:focus-visible {
  outline: 2px solid #fff8ef;
  outline-offset: 2px;
}

.header-cta,
.store-button,
.store-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.header-cta {
  white-space: nowrap;
  color: #fff8ef;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  box-shadow: 0 14px 30px rgba(77, 111, 255, 0.24);
}

.header-cta:hover,
.store-button:hover,
.store-badge-link:hover {
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.96fr);
  gap: 42px;
  align-items: start;
  padding: 86px 0 42px;
}

.hero-title {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 18px;
  margin: 12px 0 18px;
  max-width: 100%;
}

.hero-copy {
  min-width: 0;
  max-width: 100%;
}

.hero-app-logo {
  flex: 0 0 auto;
  width: clamp(52px, 5vw, 76px);
  height: clamp(52px, 5vw, 76px);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(54, 79, 195, 0.14);
}

.hero-copy h1 {
  margin: 12px 0 18px;
  font-family: "Chonburi", "IBM Plex Sans Thai", serif;
  font-size: clamp(3.2rem, 5.3vw, 5.8rem);
  line-height: 1;
  color: var(--brand-strong);
}

.hero-title h1 {
  margin: 0;
  min-width: 0;
  white-space: nowrap;
  font-size: clamp(2.2rem, 3.6vw, 4.2rem);
}

html[lang="en"] .hero-title {
  align-items: flex-start;
}

html[lang="en"] .hero-title h1 {
  max-width: 11ch;
  white-space: normal;
  font-size: clamp(2.15rem, 4.4vw, 4.6rem);
  line-height: 0.95;
}

.hero-lead {
  margin: 0;
  max-width: 28ch;
  font-size: 1.24rem;
  font-weight: 600;
  line-height: 1.5;
}

.hero-text,
.section-heading p,
.company-story p,
.feature-card p,
.timeline p,
.detail-note,
.assurance-copy p,
.assurance-points p,
.faq-grid p,
.contact-card p,
.site-footer p,
.policy-hero p,
.policy-card p,
.policy-contact-card p,
.screen-card p {
  color: var(--muted);
  line-height: 1.74;
  overflow-wrap: anywhere;
}

.verification-card,
.dbd-copy,
.dbd-card {
  overflow-wrap: anywhere;
}

.eyebrow {
  color: var(--brand);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.store-badge-link {
  width: 220px;
  height: 64px;
  padding: 0;
  border-radius: 14px;
  background: transparent;
  box-shadow: 0 12px 28px rgba(54, 79, 195, 0.12);
  overflow: hidden;
}

.store-badge-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.store-button {
  min-width: 224px;
  padding: 16px 18px;
  align-items: flex-start;
  flex-direction: column;
  color: var(--brand-strong);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
}

.store-button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
  border-color: transparent;
}

.store-badge {
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.74;
}

.hero-points,
.detail-list {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-points {
  display: grid;
  gap: 12px;
}

.hero-points li {
  position: relative;
  padding-left: 28px;
  font-weight: 500;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #f2bd65);
  box-shadow: 0 0 0 5px rgba(255, 178, 77, 0.14);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-badges span,
.company-pill-grid span,
.trust-tags span,
.policy-meta span {
  max-width: 100%;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(77, 111, 255, 0.08);
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.hero-showcase {
  position: relative;
  display: grid;
  gap: 18px;
}

.floating-card,
.company-story,
.feature-card,
.screen-card,
.timeline article,
.detail-card,
.calculator-card,
.assurance-copy,
.assurance-points article,
.contact-card,
.faq-item,
.fact-card,
.policy-hero,
.policy-card,
.policy-contact-card {
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}

.floating-card {
  padding: 24px;
}

.legal-card {
  margin-left: 38px;
}

.legal-card h2 {
  margin: 8px 0 0;
  font-size: 1.4rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.hero-metrics div {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.hero-metrics strong {
  display: block;
  font-size: 1.22rem;
  color: var(--brand-strong);
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-device-stage {
  position: relative;
  min-height: 650px;
  padding: 18px 0;
}

.thai-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.6;
}

.thai-orb-one {
  width: 150px;
  height: 150px;
  top: 60px;
  left: 14px;
  background: radial-gradient(circle, rgba(255, 178, 77, 0.45), transparent 70%);
}

.thai-orb-two {
  width: 220px;
  height: 220px;
  right: 18px;
  bottom: 120px;
  background: radial-gradient(circle, rgba(77, 111, 255, 0.22), transparent 70%);
}

.phone-frame {
  width: min(100%, 324px);
  margin: 0 auto;
  padding: 14px;
  border-radius: 36px;
  background: #212844;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 26px 60px rgba(40, 55, 128, 0.28);
}

.hero-phone {
  transform: rotate(-5deg);
}

.hero-app-image {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 18.7;
  object-fit: cover;
  object-position: top center;
  border-radius: 26px;
}

.phone-notch {
  width: 42%;
  height: 18px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.phone-screen {
  border-radius: 26px;
  overflow: hidden;
}

.hero-phone-screen,
.app-shot {
  color: #fff8ef;
  background:
    radial-gradient(circle at top right, rgba(255, 220, 164, 0.78), transparent 24%),
    linear-gradient(180deg, #4d6fff 0%, #3553dd 100%);
}

.hero-phone-screen {
  padding: 18px;
}

.hero-phone-dashboard {
  padding: 16px;
  background:
    radial-gradient(circle at right bottom, rgba(255, 178, 77, 0.4), transparent 20%),
    linear-gradient(180deg, #4d6fff 0%, #dce5ff 36%, #eef2f8 100%);
}

.device-status-icons,
.device-topbar,
.device-topdots,
.device-summary-cards,
.device-action-pills {
  display: flex;
  align-items: center;
}

.device-status-icons {
  gap: 6px;
}

.device-status-icons span,
.device-topdots span {
  display: inline-block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.device-status-icons span:nth-child(1) {
  width: 18px;
  height: 5px;
}

.device-status-icons span:nth-child(2) {
  width: 9px;
  height: 9px;
}

.device-status-icons span:nth-child(3) {
  width: 12px;
  height: 5px;
}

.device-topbar {
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
}

.device-topdots {
  gap: 8px;
}

.device-topdots span {
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.24);
}

.device-balance-card {
  margin: 18px 0 14px;
  padding: 20px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  text-align: center;
  box-shadow: 0 14px 30px rgba(52, 79, 205, 0.18);
}

.device-balance-card p,
.device-balance-card span {
  margin: 0;
  color: #858ba8;
}

.device-balance-card strong {
  display: block;
  margin: 8px 0;
  color: #2a2f46;
  font-size: 1.95rem;
}

.device-summary-cards {
  justify-content: space-between;
  gap: 10px;
}

.device-summary-cards article {
  flex: 1;
  padding: 14px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.device-summary-cards article span {
  display: block;
  width: 14px;
  height: 14px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: rgba(77, 111, 255, 0.18);
}

.device-summary-cards article strong {
  display: block;
  color: #2e3456;
  font-size: 0.98rem;
}

.device-summary-cards article small {
  display: block;
  margin-top: 6px;
  color: #8a90af;
  font-size: 0.75rem;
}

.device-action-pills {
  justify-content: space-between;
  gap: 8px;
  margin-top: 16px;
}

.device-action-pills span {
  flex: 1;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.device-action-pills .active {
  background: linear-gradient(135deg, #ffb24d, #ff9937);
}

.screen-topbar,
.shot-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.82rem;
  opacity: 0.84;
}

.screen-balance-panel,
.shot-balance,
.status-panel,
.payment-panel {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 248, 241, 0.14);
  backdrop-filter: blur(8px);
}

.screen-balance-panel {
  margin: 22px 0 18px;
}

.screen-balance-panel p,
.shot-balance p,
.payment-panel p {
  margin: 0;
  font-size: 0.88rem;
  opacity: 0.78;
}

.screen-balance-panel strong,
.shot-balance strong,
.payment-panel strong {
  display: block;
  margin-top: 10px;
  font-size: 1.8rem;
}

.screen-balance-panel span,
.shot-balance span,
.payment-panel span,
.status-panel span {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  opacity: 0.8;
}

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

.screen-grid article,
.shot-actions article {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 248, 241, 0.08);
}

.screen-grid span,
.shot-actions span {
  display: block;
  font-size: 0.82rem;
  opacity: 0.72;
}

.screen-grid strong,
.shot-actions strong {
  display: block;
  margin-top: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
}

.floating-note {
  position: absolute;
  max-width: 190px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 251, 246, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
}

.floating-note strong {
  display: block;
  font-size: 1rem;
  color: var(--brand-strong);
}

.floating-note span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.note-status {
  left: 14px;
  bottom: 110px;
}

.note-support {
  right: 6px;
  top: 118px;
}

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
  padding: 18px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 252, 248, 0.56);
  box-shadow: var(--shadow-sm);
}

.trust-message p {
  margin: 0;
  color: var(--brand-strong);
  font-weight: 600;
}

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

.verification-section {
  position: relative;
  margin-top: 34px;
  color: var(--text);
}

.verification-section + .verification-section {
  margin-top: 18px;
}

.verification-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.license-verify-section .verification-inner,
.dbd-verify-section .verification-inner {
  border: 1px solid rgba(77, 111, 255, 0.16);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(242, 246, 255, 0.84)),
    rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
}

.license-verify-section .verification-inner {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  align-items: stretch;
  padding: 0;
  text-align: left;
}

.license-verify-section .verification-inner::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  background:
    radial-gradient(circle at 26% 20%, rgba(255, 178, 77, 0.28), transparent 24%),
    linear-gradient(145deg, #102657, #314cc9);
}

.license-verify-section .verification-inner > .verification-pill,
.license-verify-section .verification-inner > h2,
.license-verify-section .verification-inner > .verification-lead {
  position: relative;
  z-index: 1;
  grid-column: 1;
  margin-left: 34px;
  margin-right: 34px;
  color: #fff;
}

.license-verify-section .verification-inner > .verification-pill {
  align-self: end;
  margin-top: 34px;
}

.license-verify-section .verification-inner > h2 {
  margin-top: 16px;
}

.license-verify-section .verification-inner > .verification-lead {
  margin-top: 14px;
  margin-bottom: 34px;
}

.verification-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 178, 77, 0.16);
  color: var(--brand-strong);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.license-verify-section .verification-pill {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.verification-section h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.verification-lead,
.dbd-copy p {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  line-height: 1.72;
}

.license-verify-section .verification-lead {
  max-width: 34ch;
}

.license-verify-section .verification-lead {
  color: rgba(255, 255, 255, 0.82);
}

.verification-card {
  position: relative;
  z-index: 1;
  grid-column: 2;
  margin: 18px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 1px var(--line);
}

.verification-card h3,
.dbd-card h3 {
  margin: 0 0 18px;
  font-size: 1.32rem;
  line-height: 1.25;
}

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

.verification-list div {
  min-height: 112px;
  padding: 16px;
  border-radius: 18px;
  background: #f7f9ff;
  border: 1px solid var(--line);
}

.verification-list dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.verification-list dd {
  margin: 0;
  color: var(--brand-strong);
  font-weight: 800;
  line-height: 1.45;
}

.verification-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 22px;
  padding: 0 24px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  box-shadow: 0 14px 28px rgba(77, 111, 255, 0.22);
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.verification-button:hover,
.verification-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(77, 111, 255, 0.28);
}

.verification-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  color: #755608;
  background: rgba(255, 220, 174, 0.34);
  font-size: 0.92rem;
  line-height: 1.58;
}

.dbd-verify-section .verification-inner.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 22px;
  align-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at right center, rgba(255, 178, 77, 0.14), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 243, 255, 0.86));
}

.dbd-copy {
  padding: 10px;
}

.dbd-copy h2 {
  margin-top: 14px;
  max-width: 720px;
}

.dbd-copy p {
  margin-top: 14px;
}

.verification-button.light {
  color: #fff;
  background: #102657;
  box-shadow: 0 14px 28px rgba(16, 38, 87, 0.18);
}

.verification-checks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.verification-checks li {
  position: relative;
  min-height: 96px;
  padding: 16px 14px 14px 46px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font-weight: 700;
  line-height: 1.45;
}

.verification-checks li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, var(--brand), var(--brand-strong));
  box-shadow: 0 0 0 5px rgba(77, 111, 255, 0.1);
}

.dbd-card {
  padding: 26px;
  border-radius: 24px;
  background: #102657;
  color: #fff;
  box-shadow: var(--shadow-md);
}

.dbd-document {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
  padding: 22px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.94));
  color: var(--brand-strong);
}

.dbd-document span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.dbd-document i {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(77, 111, 255, 0.14);
}

.dbd-document i:nth-of-type(1) {
  width: 64%;
}

.dbd-document i:nth-of-type(2) {
  width: 86%;
}

.dbd-document i:nth-of-type(3) {
  width: 72%;
}

.dbd-document strong {
  margin-top: 18px;
  color: rgba(49, 76, 201, 0.42);
  font-size: 0.78rem;
  line-height: 1.4;
}

.dbd-card h3 {
  color: #fff;
}

.dbd-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.content-section {
  padding: 56px 0;
}

.content-section,
.verification-section,
#download {
  scroll-margin-top: 120px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-heading.compact {
  max-width: 640px;
}

.section-heading h2,
.assurance-copy h2,
.policy-contact-card h2 {
  margin: 12px 0;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.company-grid,
.loan-layout,
.assurance-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 20px;
}

.company-story,
.screen-card,
.detail-card,
.calculator-card,
.assurance-copy {
  padding: 28px;
}

.company-story {
  background:
    radial-gradient(circle at top left, rgba(245, 217, 173, 0.68), transparent 28%),
    rgba(255, 252, 248, 0.82);
}

.company-story h3 {
  margin: 10px 0 12px;
  font-size: 1.56rem;
}

.company-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.company-facts {
  display: grid;
  gap: 16px;
}

.fact-card,
.feature-card,
.contact-card,
.faq-item,
.timeline article,
.assurance-points article,
.policy-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.fact-card {
  background: rgba(255, 255, 255, 0.84);
}

.fact-label {
  display: block;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.fact-card strong {
  display: block;
  line-height: 1.6;
}

.feature-grid,
.faq-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-cards .feature-card:nth-child(1),
.service-cards .feature-card:nth-child(4) {
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.92), rgba(245, 232, 212, 0.9));
}

.service-cards .feature-card:nth-child(2),
.service-cards .feature-card:nth-child(5) {
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.92), rgba(232, 245, 240, 0.92));
}

.service-cards .feature-card:nth-child(3),
.service-cards .feature-card:nth-child(6) {
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.92), rgba(240, 245, 255, 0.92));
}

.feature-card h3,
.screen-card h3,
.timeline h3,
.detail-card h3,
.calculator-card h3,
.contact-card h3,
.policy-card h2 {
  margin: 0 0 10px;
  font-size: 1.22rem;
}

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

.screen-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(246, 248, 255, 0.95), rgba(255, 255, 255, 0.78));
}

.featured-screen {
  transform: none;
}

.app-screenshot-figure {
  position: relative;
  margin: 0 0 22px;
  padding: 14px;
  aspect-ratio: 9 / 18.7;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(77, 111, 255, 0.1), rgba(255, 255, 255, 0.72)),
    #eef3ff;
  box-shadow: inset 0 0 0 1px rgba(77, 111, 255, 0.1);
  overflow: hidden;
}

.app-screenshot-figure::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -44px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 16px solid rgba(255, 178, 77, 0.42);
}

.app-screenshot-figure img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(54, 79, 195, 0.16);
}

.screen-card h3 {
  min-height: 2.8em;
}

.screen-card p {
  flex: 1;
}

.screenshot-phone {
  width: min(100%, 280px);
}

.screen-visual {
  position: relative;
  min-height: 470px;
  padding: 24px 18px 10px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(77, 111, 255, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(247, 249, 255, 0.96), rgba(235, 240, 255, 0.9));
  overflow: hidden;
}

.app-home-visual {
  background:
    linear-gradient(180deg, #dce6ff 0%, #eef2fb 54%, #f7f8fc 100%);
}

.visual-header {
  display: flex;
  gap: 8px;
}

.visual-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(77, 111, 255, 0.22);
}

.visual-phone {
  position: relative;
  z-index: 1;
  margin-top: 18px;
}

.visual-dashboard {
  padding: 16px 16px 18px;
  background:
    radial-gradient(circle at right bottom, rgba(255, 205, 126, 0.52), transparent 24%),
    linear-gradient(180deg, #4d6fff 0%, #dce5ff 36%, #eef2f8 100%);
}

.visual-dashboard-top {
  width: 42%;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
}

.visual-dashboard-card {
  margin-top: 16px;
  padding: 20px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  text-align: center;
  box-shadow: 0 14px 30px rgba(62, 85, 194, 0.18);
}

.visual-dashboard-card p {
  margin: 0;
  color: #8188a4;
  font-size: 0.82rem;
}

.visual-dashboard-card strong {
  display: block;
  margin-top: 8px;
  color: #2a2e45;
  font-size: 1.95rem;
}

.visual-dashboard-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.visual-dashboard-row span {
  display: block;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
}

.visual-dashboard-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.visual-dashboard-buttons span {
  display: block;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.visual-dashboard-buttons .active {
  background: linear-gradient(135deg, #ffb24d, #ff9937);
}

.visual-accent-ring {
  position: absolute;
  right: -36px;
  bottom: -18px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: 14px solid rgba(255, 178, 77, 0.86);
  opacity: 0.8;
}

.app-shot {
  min-height: 500px;
  padding: 18px;
}

.app-shot-status {
  background:
    radial-gradient(circle at top left, rgba(255, 220, 164, 0.72), transparent 22%),
    linear-gradient(180deg, #5d79ff 0%, #3049b6 100%);
}

.app-shot-payment {
  background:
    radial-gradient(circle at top right, rgba(255, 230, 189, 0.7), transparent 20%),
    linear-gradient(180deg, #4e6eff 0%, #2944c9 100%);
}

.shot-balance,
.status-panel,
.payment-panel {
  margin: 22px 0 16px;
}

.status-panel strong {
  display: block;
  font-size: 1.08rem;
}

.status-steps {
  display: grid;
  gap: 12px;
}

.status-steps div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 248, 241, 0.08);
}

.status-steps span {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 248, 241, 0.46);
}

.status-steps p {
  margin: 0;
  color: rgba(255, 248, 241, 0.9);
  font-size: 0.92rem;
}

.status-steps .done span {
  background: #8fe1b4;
  border-color: #8fe1b4;
}

.status-steps .active span {
  background: #ffb24d;
  border-color: #ffb24d;
}

.barcode-block {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;
  align-items: end;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 248, 241, 0.9);
}

.barcode-block div:nth-child(odd) {
  height: 68px;
  background: #131313;
}

.barcode-block div:nth-child(even) {
  height: 46px;
  background: #1f1f1f;
}

.statement-chip {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 248, 241, 0.12);
  text-align: center;
  font-weight: 600;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 18px;
  background: rgba(255, 255, 255, 0.84);
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 220, 164, 0.9), rgba(255, 255, 255, 0.92));
  color: var(--brand-strong);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.timeline p,
.feature-card p,
.contact-card p,
.screen-card p {
  margin: 0;
}

.detail-card {
  background:
    radial-gradient(circle at top left, rgba(255, 220, 164, 0.62), transparent 30%),
    rgba(255, 252, 248, 0.84);
}

.detail-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.detail-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.detail-list span {
  color: var(--muted);
}

.detail-list strong {
  text-align: right;
  color: var(--brand-strong);
}

.calculator-card {
  background:
    radial-gradient(circle at top right, rgba(188, 206, 255, 0.7), transparent 28%),
    rgba(255, 255, 255, 0.9);
}

.calculator-copy p {
  margin: 0;
}

.calculator-form {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.calculator-form label {
  display: grid;
  gap: 10px;
  font-weight: 500;
}

.calculator-form input[type="number"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
}

.calculator-form input[type="range"] {
  width: 100%;
  accent-color: var(--brand);
}

.range-value {
  color: var(--muted);
  font-size: 0.94rem;
}

.range-value strong {
  color: var(--brand-strong);
}

.calculator-result {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.calculator-result article {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
}

.calculator-result span {
  display: block;
  color: var(--muted);
}

.calculator-result strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(1.25rem, 3vw, 1.84rem);
  color: var(--success);
}

.assurance-copy {
  background:
    radial-gradient(circle at left top, rgba(255, 220, 164, 0.38), transparent 24%),
    linear-gradient(135deg, rgba(77, 111, 255, 0.96), rgba(49, 76, 201, 0.96));
}

.assurance-copy .eyebrow,
.assurance-copy h2,
.assurance-copy p {
  color: #fff7eb;
}

.assurance-points {
  display: grid;
  gap: 16px;
}

.assurance-points article {
  background: rgba(255, 255, 255, 0.84);
}

.assurance-points strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.86);
}

.faq-item h3 {
  margin: 0;
  font-weight: 600;
  font-size: 1.06rem;
}

.faq-grid p {
  margin: 14px 0 0;
}

.contact-card {
  background: rgba(255, 255, 255, 0.88);
}

.contact-card a,
.fact-card a {
  color: var(--brand);
  word-break: break-word;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.8fr);
  gap: 18px;
  align-items: start;
  margin-top: 18px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(245, 217, 173, 0.14), transparent 20%),
    rgba(39, 53, 120, 0.98);
  box-shadow: var(--shadow-lg);
}

.site-footer,
.site-footer a,
.site-footer p {
  color: rgba(255, 248, 241, 0.82);
}

.footer-brand {
  margin: 0 0 8px;
  font-family: "Chonburi", "IBM Plex Sans Thai", serif;
  font-size: 1.34rem;
  color: #fff;
}

.footer-links {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.footer-note {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 248, 241, 0.12);
  font-size: 0.92rem;
}

.policy-main {
  padding: 52px 0 0;
}

.policy-hero,
.policy-contact-card {
  padding: 30px;
}

.policy-hero {
  background:
    radial-gradient(circle at right top, rgba(255, 220, 164, 0.54), transparent 28%),
    linear-gradient(180deg, rgba(248, 250, 255, 0.94), rgba(238, 243, 255, 0.92));
}

.policy-hero h1 {
  margin: 14px 0;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.policy-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.72;
}

.policy-contact {
  display: grid;
  gap: 20px;
  padding: 28px 0 52px;
}

.policy-contact-card {
  background:
    radial-gradient(circle at left top, rgba(255, 220, 164, 0.42), transparent 24%),
    rgba(255, 255, 255, 0.9);
}

@media (max-width: 1120px) {
  .site-header {
    display: flex;
    flex-wrap: wrap;
    border-radius: 24px;
  }

  .brand {
    flex: 1 1 0;
    max-width: calc(100% - 104px);
  }

  .language-switcher {
    flex: 0 0 auto;
    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    justify-content: flex-start;
    flex: 0 0 100%;
    order: 3;
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
    padding: 4px 0 2px;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .hero,
  .company-grid,
  .license-verify-section .verification-inner,
  .dbd-verify-section .verification-inner.split,
  .verification-inner.split,
  .split-section,
  .loan-layout,
  .assurance-section,
  .site-footer,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .legal-card {
    margin-left: 0;
  }

  .hero-device-stage {
    min-height: 620px;
  }

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

  .featured-screen {
    transform: none;
  }

  .trust-bar {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 32px;
  }

  .license-verify-section .verification-inner::before {
    width: 100%;
    height: 250px;
    bottom: auto;
  }

  .license-verify-section .verification-inner > .verification-pill,
  .license-verify-section .verification-inner > h2,
  .license-verify-section .verification-inner > .verification-lead,
  .verification-card {
    grid-column: 1;
  }

  .verification-card {
    margin-top: 0;
  }

  .verification-checks {
    grid-template-columns: 1fr;
  }

  .verification-inner.split {
    gap: 32px;
  }
}

@media (max-width: 780px) {
  .site-shell {
    width: calc(100vw - 18px);
    max-width: calc(100vw - 18px);
  }

  .site-header {
    top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px;
    border-radius: 24px;
    max-width: 100%;
    min-width: 0;
    overflow: visible;
  }

  .brand {
    flex: 1 1 0;
    max-width: calc(100% - 104px);
    gap: 10px;
  }

  .brand-mark {
    width: min(34vw, 132px);
  }

  .language-switcher {
    flex: 0 0 auto;
    gap: 2px;
    padding: 3px;
  }

  .language-switcher button {
    min-width: 38px;
    min-height: 32px;
    padding: 0 8px;
  }

  .site-nav {
    flex: 0 0 100%;
    min-width: 0;
    max-width: 100%;
    margin-inline: -2px;
    overflow-x: auto;
    overflow-y: hidden;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0 1px;
    mask-image: linear-gradient(90deg, #000 calc(100% - 28px), transparent);
  }

  .site-nav a {
    min-height: 36px;
    padding: 0 10px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 40px;
    gap: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 15vw, 4.6rem);
  }

  .hero-title {
    align-items: flex-start;
    gap: 10px;
  }

  .hero-app-logo {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .hero-title h1 {
    max-width: calc(100% - 56px);
    white-space: normal;
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  html[lang="en"] .hero-title h1 {
    max-width: 9ch;
    font-size: clamp(2rem, 12vw, 3.35rem);
  }

  .hero-actions,
  .hero-badges,
  .trust-tags,
  .company-pill-grid,
  .policy-meta {
    gap: 8px;
  }

  .store-button {
    width: 100%;
  }

  .store-badge-link {
    width: 220px;
    max-width: 100%;
  }

  .hero-metrics,
  .feature-grid,
  .screens-grid,
  .faq-grid,
  .contact-grid,
  .calculator-result,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .verification-section {
    margin-top: 24px;
  }

  .verification-section h2 {
    font-size: clamp(1.9rem, 9vw, 2.65rem);
  }

  .license-verify-section .verification-inner,
  .dbd-verify-section .verification-inner.split {
    border-radius: 24px;
  }

  .license-verify-section .verification-inner > .verification-pill,
  .license-verify-section .verification-inner > h2,
  .license-verify-section .verification-inner > .verification-lead {
    margin-left: 20px;
    margin-right: 20px;
  }

  .license-verify-section .verification-inner > .verification-pill {
    margin-top: 24px;
  }

  .license-verify-section .verification-inner > .verification-lead {
    margin-bottom: 24px;
  }

  .verification-card {
    margin: 0 12px 12px;
    padding: 20px;
    border-radius: 20px;
  }

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

  .verification-list div {
    min-height: auto;
  }

  .dbd-verify-section .verification-inner.split {
    padding: 16px;
  }

  .dbd-copy {
    padding: 6px;
  }

  .dbd-card {
    padding: 20px;
  }

  .hero-device-stage {
    min-height: auto;
    padding-bottom: 120px;
  }

  .hero-phone {
    transform: none;
  }

  .floating-note {
    position: static;
    max-width: none;
    margin: 14px auto 0;
  }

  .timeline article {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 14px;
  }

  .detail-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .detail-list strong {
    text-align: left;
  }

  .site-footer {
    padding: 24px 20px;
  }

  .screen-card,
  .company-story,
  .detail-card,
  .calculator-card,
  .assurance-copy {
    padding: 24px;
  }
}
