:root {
  --navy: #062a52;
  --navy-2: #0b3a6f;
  --green: #18a83d;
  --green-2: #22c55e;
  --cyan: #0ea5e9;
  --amber: #e89a16;
  --ink: #102033;
  --muted: #526273;
  --line: #dce6ef;
  --soft: #f3f8fc;
  --white: #ffffff;
  --shadow: 0 18px 46px rgba(5, 37, 70, .14);
  --radius: 8px;
  --container: 1180px;
  --gutter: clamp(20px, 4vw, 48px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans Thai", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(24, 168, 61, .35);
  outline-offset: 3px;
}

section {
  scroll-margin-top: 96px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 82px;
  padding: 12px var(--gutter);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(220, 230, 239, .88);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(150px, 16vw, 220px);
  height: 56px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.main-nav a {
  position: relative;
  padding: 6px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn svg {
  width: 23px;
  height: 23px;
  margin-right: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-login {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 24px rgba(6, 42, 82, .18);
}

.btn-login:hover {
  background: var(--navy-2);
}

.btn-contact {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 24px rgba(24, 168, 61, .18);
}

.btn-contact:hover {
  background: #119034;
}

.btn-large {
  min-width: 170px;
  min-height: 56px;
  font-size: 16px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.2fr);
  align-items: center;
  max-width: 1440px;
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  inset: 0 auto 0 42%;
  width: 34%;
  content: "";
  background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, .28), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: clamp(30px, 5vw, 58px) var(--gutter);
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4.8vw, 58px);
  font-weight: 900;
  line-height: 1.12;
}

.hero h1::first-letter {
  color: var(--green);
}

.hero-lead {
  max-width: 560px;
  margin: 18px 0 0;
  color: #1b2d42;
  font-size: clamp(14px, 1.35vw, 17px);
  font-weight: 500;
  line-height: 1.62;
}

.hero-support {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.offer-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 630px;
  margin: 22px 0 20px;
  overflow: hidden;
  border: 1px solid #b8c7d4;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 8px 22px rgba(6, 42, 82, .08);
}

.offer-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px 16px;
  color: var(--green);
  font-size: clamp(13px, 1.25vw, 16px);
  font-weight: 900;
  line-height: 1.32;
}

.offer-item + .offer-item {
  border-left: 1px solid #b8c7d4;
}

.offer-item svg {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 560px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 82px);
  object-fit: cover;
  object-position: 54% center;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading.align-left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.service-copy h2,
.why h2,
.contact-cta h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 900;
  line-height: 1.22;
}

.section-heading p,
.service-copy p,
.service-kicker,
.benefit-grid p,
.why-copy li,
.contact-cta p,
address {
  color: var(--muted);
  font-size: 15px;
}

.service-kicker {
  margin: 10px 0 8px;
  color: var(--green);
  font-weight: 900;
}

.company-line {
  font-weight: 800;
}

.feature-strip {
  padding: 58px var(--gutter) 52px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 28px auto 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(6, 42, 82, .07);
}

.trust-strip div {
  min-width: 0;
  padding: 18px 20px;
}

.trust-strip div + div {
  border-left: 1px solid var(--line);
}

.trust-strip strong {
  display: block;
  color: var(--green);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
}

.trust-strip span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  max-width: var(--container);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-card {
  min-width: 0;
  padding: 28px 18px 30px;
  text-align: center;
}

.feature-card + .feature-card {
  border-left: 1px solid var(--line);
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 14px;
  color: var(--cyan);
  border: 3px solid rgba(14, 165, 233, .2);
  border-radius: 50%;
}

.icon-circle.green {
  color: var(--green);
  border-color: rgba(24, 168, 61, .2);
}

.icon-circle.amber {
  color: var(--amber);
  border-color: rgba(232, 154, 22, .23);
}

.icon-circle svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

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

.service-band {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  align-items: center;
  gap: 42px;
  padding: 62px var(--gutter);
  background: var(--soft);
}

.service-copy,
.vehicle-list,
.standards,
.benefits,
.why,
.contact-cta {
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.vehicle-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vehicle-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 16px;
  border: 1px solid rgba(6, 42, 82, .14);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(6, 42, 82, .06);
}

.standards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 62px 0;
}

.approval-banner {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: clamp(18px, 2.6vw, 30px);
  border: 1.5px solid rgba(16, 32, 51, .62);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(6, 42, 82, .07);
}

.approval-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: center;
}

.approval-item + .approval-item {
  padding-left: 24px;
  border-left: 1px solid rgba(16, 32, 51, .55);
}

.approval-emblem {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
}

.approval-emblem.nbct {
  border: 0;
  background: transparent;
}

.approval-emblem.dlt {
  border: 0;
  background: transparent;
}

.approval-emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.approval-item h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 900;
  line-height: 1.18;
}

.approval-item p {
  margin: 0;
  color: #222b35;
  font-size: clamp(13px, 1.18vw, 15.5px);
  font-weight: 500;
  line-height: 1.34;
}

.benefits {
  padding: 18px 0 68px;
}

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

.benefit-grid article {
  min-height: 196px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(6, 42, 82, .08);
}

.benefit-grid h3 {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.3;
}

.process {
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 0 0 68px;
}

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

.process-grid article {
  position: relative;
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}

.process-grid h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.why {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: 38px;
  padding: 58px clamp(24px, 5vw, 58px);
  border-radius: var(--radius);
  background: var(--navy);
}

.why h2,
.why-copy li {
  color: var(--white);
}

.why-copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.why-copy li {
  position: relative;
  padding-left: 30px;
}

.why-copy li::before {
  position: absolute;
  top: .62em;
  left: 0;
  width: 12px;
  height: 12px;
  content: "";
  border-radius: 50%;
  background: var(--green-2);
}

.why-stats {
  display: grid;
  gap: 14px;
}

.why-stats div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
}

.why-stats strong {
  display: block;
  color: var(--green-2);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1;
}

.why-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .84);
  font-weight: 700;
}

.app-demo {
  display: grid;
  grid-template-columns: minmax(420px, 3fr) minmax(0, 2fr);
  gap: 34px;
  align-items: center;
  width: min(var(--container), 100%);
  margin: 34px auto 0;
  padding: 42px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f5fbff 0%, #ffffff 58%, #eef9f1 100%);
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(6, 42, 82, .08);
}

.app-title-row {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 16px;
  align-items: center;
}

.app-title-row img {
  width: 74px;
  height: 74px;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(6, 42, 82, .14);
}

.app-title-row h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.18;
}

.app-title-row p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.app-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.app-feature-list span {
  padding: 8px 12px;
  border: 1px solid rgba(24, 168, 61, .2);
  border-radius: 999px;
  color: var(--green);
  background: rgba(24, 168, 61, .07);
  font-size: 13px;
  font-weight: 900;
}

.app-download-card {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(14, 48, 84, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 14px 34px rgba(6, 42, 82, .08);
}

.app-download-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
}

.app-download-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

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

.app-download-qr a {
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: 18px 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--navy);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}

.app-download-qr img {
  width: clamp(124px, 12vw, 158px);
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 8px;
}

.store-label {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: min(168px, 100%);
  min-height: 48px;
  padding: 8px 12px;
  border-radius: 10px;
  background: #061522;
  box-shadow: 0 10px 20px rgba(6, 21, 34, .14);
  color: var(--white);
  line-height: 1.05;
  text-align: left;
}

.store-label svg {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.store-label span {
  display: grid;
  gap: 2px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
}

.store-label small {
  color: rgba(255, 255, 255, .78);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.store-google svg {
  width: 26px;
  height: 26px;
  flex-basis: 26px;
}

.app-slider {
  position: relative;
  min-width: 0;
  width: min(390px, 100%);
  justify-self: center;
}

.app-screens {
  display: flex;
  gap: 0;
  overflow-x: auto;
  max-width: 100%;
  padding: 2px 0 12px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.app-screens::-webkit-scrollbar {
  display: none;
}

.app-screen-card {
  flex: 0 0 100%;
  display: grid;
  justify-items: center;
  min-width: 100%;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(6, 42, 82, .1);
  scroll-snap-align: center;
}

.app-screen-card.is-featured {
  flex-basis: 100%;
}

.app-screen-card img {
  width: auto;
  max-width: min(100%, 300px);
  height: min(68vh, 650px);
  object-fit: contain;
  object-position: top center;
  border-radius: 6px;
  background: #f8fafc;
}

.app-screen-card figcaption {
  margin-top: 8px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.app-slide-btn {
  display: grid;
  place-items: center;
  position: absolute;
  top: 45%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 26px rgba(6, 42, 82, .18);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.app-slide-prev {
  left: -16px;
}

.app-slide-next {
  right: -16px;
}

.app-slide-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.app-slide-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(14, 48, 84, .22);
  cursor: pointer;
}

.app-slide-dots button.is-active {
  width: 24px;
  background: var(--green);
}

.contact-qr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.qr-card {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
  box-shadow: 0 12px 28px rgba(6, 42, 82, .08);
}

.qr-card img {
  width: min(176px, 100%);
  aspect-ratio: 1;
  height: auto;
  object-fit: contain;
  padding: 8px;
  border: 1px solid #edf2f7;
  border-radius: 6px;
  background: var(--white);
}

.qr-card h3 {
  margin: 4px 0 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

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

.qr-card.compact {
  min-height: 0;
  padding: 14px;
  box-shadow: none;
}

.qr-card.compact img {
  width: min(150px, 100%);
  max-height: 160px;
  padding: 6px;
}

.qr-card.compact h3 {
  font-size: 15px;
}

.contact-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: 34px;
  align-items: start;
  padding: 68px 0;
}

address {
  font-style: normal;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--soft);
  border: 1px solid var(--line);
}

.contact-line {
  display: block;
  color: var(--navy);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.btn-wide {
  width: 100%;
}

footer {
  padding: 24px;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav a {
    text-align: center;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
  }

  .header-actions {
    display: none;
  }

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

  .hero::before {
    display: none;
  }

  .hero-content {
    padding: 34px var(--gutter) 42px;
  }

  .hero-visual {
    min-height: 360px;
    order: -1;
  }

  .hero-visual img {
    min-height: 360px;
  }

  .approval-banner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .approval-item + .approval-item {
    padding-top: 18px;
    padding-left: 0;
    border-top: 1px solid rgba(16, 32, 51, .25);
    border-left: 0;
  }

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

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

  .app-demo {
    grid-template-columns: minmax(420px, 3fr) minmax(0, 2fr);
    align-items: start;
    padding: 30px;
  }

  .app-title-row {
    grid-template-columns: 64px 1fr;
  }

  .app-title-row img {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }

  .trust-strip div:nth-child(3) {
    border-left: 0;
  }

  .trust-strip div:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

  .feature-card:nth-child(4) {
    border-left: 0;
  }

  .feature-card:nth-child(n+4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .store-label {
    width: 100%;
    min-height: 42px;
    gap: 6px;
    padding: 8px 6px;
  }

  .store-label span {
    font-size: 12px;
  }

  .store-label small {
    display: none;
  }

  .store-label svg,
  .store-google svg {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }

  .site-header {
    min-height: 70px;
    gap: 12px;
  }

  .brand {
    width: 138px;
    height: 48px;
  }

  .main-nav {
    top: 70px;
  }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 28px 20px 38px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 230px;
  }

  .hero-visual img {
    object-position: 58% center;
  }

	  .offer-row,
	  .hero-actions,
	  .service-band,
	  .standards,
	  .benefit-grid,
	  .process-grid,
	  .why,
	  .contact-cta {
	    grid-template-columns: 1fr;
	  }

  .offer-row {
    max-width: 100%;
  }

  .offer-item + .offer-item {
    border-top: 1px solid #b8c7d4;
    border-left: 0;
  }

  .hero-actions {
    align-items: stretch;
    gap: 10px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .feature-card,
  .feature-card + .feature-card,
  .feature-card:nth-child(n+4) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-band,
  .feature-strip {
    padding: 40px 20px;
  }

	  .standards,
	  .benefits,
	  .process,
	  .app-demo,
	  .why,
	  .contact-cta {
	    width: auto;
	    margin-right: 20px;
    margin-left: 20px;
  }

  .standards {
    padding-top: 40px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    width: auto;
    margin: 20px 20px 0;
  }

  .trust-strip div {
    padding: 14px 16px;
  }

  .trust-strip div + div,
  .trust-strip div:nth-child(n+3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .trust-strip strong {
    font-size: 18px;
  }

  .process {
    padding-bottom: 46px;
  }

  .app-demo {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 22px;
  }

  .app-title-row {
    grid-template-columns: 58px 1fr;
    gap: 12px;
  }

  .app-title-row img {
    width: 58px;
    height: 58px;
    border-radius: 14px;
  }

  .app-title-row p {
    font-size: 14px;
  }

  .app-feature-list {
    margin: 18px 0;
  }

  .app-screens {
    display: flex;
    gap: 0;
    overflow-x: auto;
    max-width: 100%;
    padding: 2px 0 12px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .app-screens::-webkit-scrollbar {
    display: none;
  }

  .app-screen-card {
    flex: 0 0 100%;
    display: grid;
    justify-items: center;
    scroll-snap-align: center;
    box-shadow: none;
    border-color: rgba(14, 48, 84, .12);
  }

  .app-screen-card.is-featured {
    flex-basis: 100%;
  }

  .app-screen-card img {
    width: min(64vw, 230px);
  }

  .app-slide-btn {
    display: grid;
    place-items: center;
    position: absolute;
    top: 45%;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: var(--navy);
    box-shadow: 0 12px 26px rgba(6, 42, 82, .18);
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
  }

  .app-slide-prev {
    left: -8px;
  }

  .app-slide-next {
    right: -8px;
  }

  .app-slide-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
  }

  .app-slide-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(14, 48, 84, .22);
    cursor: pointer;
  }

  .app-slide-dots button.is-active {
    width: 24px;
    background: var(--green);
  }

  .process-grid article {
    min-height: 0;
    padding: 20px;
  }

  .why {
    padding: 34px 22px;
  }

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

  .approval-banner {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .approval-item {
    grid-template-columns: 92px 1fr;
    gap: 14px;
  }

  .approval-item + .approval-item {
    margin-top: 18px;
    padding-top: 18px;
    padding-left: 0;
    border-top: 1px solid rgba(16, 32, 51, .25);
    border-left: 0;
  }

  .approval-emblem {
    width: 84px;
    height: 84px;
  }

  .approval-item h3 {
    margin-bottom: 8px;
  }
}
