:root {
  --red: #E11D2E;
  --red-deep: #B30C1C;
  --red-soft: #FCE7E9;
  --ink: #0E0E10;
  --ink-2: #2A2A2E;
  --muted: #6B6B70;
  --paper: #FAF7F4;
  --line: rgba(14, 14, 16, 0.10);
  --line-strong: rgba(14, 14, 16, 0.18);
  --line-green: #06C755;
  --info-blue: #0077FF;
  --orange: #FF8800;
  --orange-light: #ff9a25;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background: var(--paper);
}

body {
  background: var(--paper);
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  container-type: inline-size;
}

section {
  font-family: 'Kanit', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
  position: relative;
  font-feature-settings: "ss01", "cv11";
  letter-spacing: -0.005em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Kanit', sans-serif;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0.5em;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(36px, 5cqi, 64px);
}

h2 {
  font-size: clamp(30px, 4cqi, 48px);
}

h3 {
  font-size: clamp(24px, 3cqi, 36px);
}

h4 {
  font-size: clamp(20px, 2.5cqi, 28px);
}

h5 {
  font-size: clamp(18px, 2cqi, 24px);
}

h6 {
  font-size: clamp(16px, 1.5cqi, 20px);
}

/* ===== shared utilities ===== */
.pad {
  padding: clamp(40px, 6cqi, 80px) clamp(20px, 5cqi, 80px);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(11px, 1.1cqi, 14px);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--red);
}

.brandmark {
  display: inline-flex;
  align-items: center;
  height: 56px;
}

.brandmark img {
  height: 100%;
  width: auto;
  display: block;
}

.brandmark.lg {
  height: 80px;
}

.brandmark.white img {
  filter: brightness(0) invert(1);
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.m-t-50 {
  margin-top: 50px;
}

.footer-bar {
  position: absolute;
  bottom: 50px;
  left: 80px;
  right: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 24px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== Slide 1 — Cover ===== */
.cover {
  background-image:
    linear-gradient(to bottom, rgba(225, 29, 46, 0.5), rgba(179, 12, 28, 0.5)),
    url(image/ooakosimo-blank-billboard-2859899.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cover .grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.cover .pad {
  position: relative;
}

.cover .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(11px, 1.1cqi, 14px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}

.cover .center {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.cover .center .lead {
  text-align: center;
}

.cover h1 {
  font-family: 'Kanit', sans-serif;
  font-size: clamp(80px, 15cqi, 230px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.cover .logo-card {
  background: #fff;
  border-radius: 28px;
  padding: clamp(12px, 3cqi, 30px) clamp(12px, 3cqi, 30px);
  min-width: min(320px, 70cqi);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.cover .logo-card img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 280px;
}

.cover .hero-image {
  margin-top: 20px;
}

.cover .hero-image img {
  width: 100%;
  max-width: clamp(280px, 60cqi, 500px);
  /* ปรับขนาดตรงนี้ได้เลยครับ 500px คือกว้างสุด */
  height: auto;
  display: block;
}

.cover .lead {
  font-size: clamp(18px, 2.5cqi, 38px);
  font-weight: 400;
  line-height: 1.4;
  margin-top: 40px;
  opacity: 0.95;
}

.cover .bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(11px, 1cqi, 13px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

.cover .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: clamp(11px, 1cqi, 13px);
}

.cover .pill .live {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.25);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.0);
  }
}

/* ===== Slide 2 — Problem ===== */
.problem .eyebrow {
  justify-content: center;
}

.problem h2 {
  text-align: center;
  font-size: clamp(36px, 5.5cqi, 84px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.3;
  margin-top: 24px;
  margin-bottom: 40px;
}

.problem h2 strong {
  color: var(--red);
  font-weight: 700;
}

.problem .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .problem .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(16px, 2cqi, 28px) clamp(18px, 2.5cqi, 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  position: relative;
}

.pcard .badge {
  flex-shrink: 0;
  width: clamp(36px, 4cqi, 52px);
  height: clamp(36px, 4cqi, 52px);
  border-radius: 12px;
  background: var(--red-soft);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: clamp(16px, 1.8cqi, 22px);
  font-family: 'Kanit', sans-serif;
}

.pcard .body {
  flex: 1;
}

.pcard .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(10px, 0.9cqi, 12px);
  color: var(--red);
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.pcard h3 {
  font-size: clamp(16px, 2cqi, 24px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.pcard p {
  font-size: clamp(13px, 1.4cqi, 16px);
  color: var(--muted);
  line-height: 1.45;
  margin-top: 8px;
}

/* ===== Slide 3 — Solution ===== */
.solution {
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0.466)),
    url(image/ooakosimo-blank-billboard-2859899.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.solution .eyebrow {
  color: #fff;
  justify-content: center;
}

.solution .eyebrow::before {
  background: #fff;
}

.solution h2 {
  text-align: center;
  font-size: clamp(36px, 6cqi, 96px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.3;
  margin-top: 24px;
  margin-bottom: 36px;
}

.solution h2 .red {
  color: var(--red);
}

.solution .copy {
  text-align: center;
  font-size: clamp(13px, 1.5cqi, 17px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 32px;
}

.solution .stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

@media (min-width: 600px) {
  .solution .stats {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

.stat {
  text-align: center;
  background: #fff;
  border-radius: 12px;
  padding: clamp(14px, 1.8cqi, 22px) clamp(16px, 2cqi, 24px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat .v {
  font-family: 'Kanit', sans-serif;
  font-size: clamp(24px, 3.5cqi, 44px);
  font-weight: 700;
  color: var(--red);
  letter-spacing: -0.02em;
}

.stat .l {
  font-size: clamp(11px, 1cqi, 13px);
  color: var(--ink);
  margin-top: 4px;
  font-weight: 500;
}

.phone {
  background: #fff;
  border-radius: 32px;
  color: var(--ink);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 60px 120px rgba(225, 29, 46, 0.25), 0 20px 40px rgba(0, 0, 0, 0.35);
  border: 8px solid #1a1a1c;
  max-width: 600px;
  align-self: center;
  width: 100%;
}

.phone .topbar {
  background: var(--red);
  color: #fff;
  padding: clamp(12px, 1.5cqi, 18px) clamp(16px, 2cqi, 24px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.phone .topbar .t {
  font-weight: 700;
  font-size: clamp(13px, 1.4cqi, 17px);
  letter-spacing: -0.01em;
}

.phone .topbar .dots {
  display: flex;
  gap: 6px;
}

.phone .topbar .dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
}

.phone .canvas {
  flex: 1;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: #F2EEEA;
}

.ad-tile {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.ad-tile .thumb {
  flex: 1;
  min-height: 80px;
  background:
    repeating-linear-gradient(45deg, rgba(225, 29, 46, 0.10) 0 8px, rgba(225, 29, 46, 0.04) 8px 16px),
    var(--red-soft);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.ad-tile .thumb::after {
  content: attr(data-l);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(9px, 0.9cqi, 11px);
  color: var(--red);
  letter-spacing: 0.08em;
  text-align: center;
  padding: 4px;
}

.ad-tile .meta {
  padding: 8px 10px;
}

.ad-tile .meta .h {
  font-weight: 600;
  font-size: clamp(12px, 1.2cqi, 15px);
}

.ad-tile .meta .s {
  font-size: clamp(10px, 0.9cqi, 12px);
  color: var(--muted);
  margin-top: 2px;
  font-family: 'JetBrains Mono', monospace;
}

.phone .tabbar {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: clamp(12px, 1.5cqi, 18px) clamp(16px, 2cqi, 24px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.phone .tabbar .add {
  background: var(--red);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 300;
}

.phone .tabbar .lbl {
  font-size: clamp(11px, 1cqi, 13px);
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
}

/* ===== Slide 4 — Features ===== */
.features .eyebrow {
  justify-content: center;
}

.features .pad {
  align-items: center;
}

.features h2 {
  text-align: center;
  font-size: clamp(32px, 5cqi, 84px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.3;
  margin-top: 24px;
  margin-bottom: 36px;
}

.features h2 strong {
  color: var(--red);
  font-weight: 700;
}

.features .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .features .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fcard.span2 {
    grid-column: span 2;
    flex-direction: row;
    text-align: left;
    align-items: center;
    padding: 40px;
    gap: 40px;
  }

  .fcard.span2>div:first-child {
    flex: 1;
  }

  .fcard.span2 .glyph {
    display: none;
  }
}

.fcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(18px, 2.5cqi, 28px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
  position: relative;
}

.fcard.span2 {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.fcard img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  margin: 0 auto;
}

.fcard.span2 img {
  max-width: clamp(384px, 48cqi, 768px);
}

.fcard.span2 .label {
  color: rgba(255, 255, 255, 0.7);
}

.fcard.span2 h3 {
  color: #fff;
}

.fcard.span2 p {
  color: rgba(255, 255, 255, 0.85);
}

.fcard.dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.fcard.dark h3 {
  color: #fff;
}

.fcard.store-card {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 12px;
}

.fcard.store-card .big-dl {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.fcard.store-card h3 {
  margin-top: 4px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
}

.fcard.store-card .cta-mini {
  font-size: 15px;
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 540px;
  margin: 32px auto 0;
}

@media (max-width: 600px) {
  .store-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
}

.fcard .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(10px, 0.9cqi, 12px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.fcard h3 {
  font-size: clamp(15px, 1.8cqi, 22px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 12px;
}

.fcard p {
  font-size: clamp(12px, 1.2cqi, 15px);
  color: var(--muted);
  line-height: 1.45;
  margin-top: 10px;
}

.fcard .glyph {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: var(--red-soft);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 600;
  margin: 20px auto 0;
  align-self: center;
}

.fcard.span2 .glyph {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* ===== Slide 5 — Steps ===== */
.steps .eyebrow {
  justify-content: center;
}

.steps h2 {
  text-align: center;
  font-size: clamp(32px, 5.5cqi, 88px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.3;
  margin-top: 24px;
  margin-bottom: 40px;
}

.steps h2 .red {
  color: var(--red);
}

.steps .stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 900px) {
  .steps .stack {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(16px, 2cqi, 24px) clamp(18px, 2.5cqi, 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(16px, 2.5cqi, 20px);
  position: relative;
}

.step .n {
  font-family: 'Kanit', sans-serif;
  font-size: clamp(48px, 7cqi, 90px);
  font-weight: 800;
  line-height: 0.85;
  color: var(--red);
  letter-spacing: -0.05em;
  flex-shrink: 0;
  width: clamp(70px, 8cqi, 110px);
  text-align: center;
}

.step .txt {
  flex: 1;
}

.step h3 {
  font-size: clamp(15px, 1.8cqi, 22px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.step p {
  font-size: clamp(12px, 1.3cqi, 15px);
  color: var(--muted);
  line-height: 1.5;
  margin-top: 8px;
}

.step .tag {
  position: absolute;
  top: 14px;
  right: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(10px, 0.9cqi, 12px);
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--paper);
  padding: 3px 8px;
  border-radius: 4px;
}

.step .txt {
  padding-top: 16px;
}

.step .txt-img {
  display: block;
  margin: 12px auto 0;
  max-width: clamp(180px, 20cqi, 250px);
  height: auto;
  border-radius: 8px;
}

.step-image {
  flex-shrink: 0;
  width: 100%;
  max-width: 300px;
  margin: 16px auto 0;
}

.step-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* ===== Slide 6 — Audience ===== */
.audience .pad {
  align-items: center;
}

.audience h2 {
  text-align: center;
  font-size: clamp(32px, 5.5cqi, 88px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.3;
  margin-top: 24px;
  margin-bottom: 36px;
}

.audience h2 .red {
  color: var(--red);
}

.audience .visual {
  background-image:
    linear-gradient(to bottom, rgba(225, 29, 46, 0.5), rgba(179, 12, 28, 0.5)),
    url(image/ooakosimo-blank-billboard-2859899.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: clamp(20px, 3cqi, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 24px;
  width: 100%;
}

.audience .visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 40px 40px;
}

.audience .visual .row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  gap: 12px;
}

.audience .visual .big {
  font-family: 'Kanit', sans-serif;
  font-size: clamp(60px, 10cqi, 140px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.audience .visual .big sup {
  font-size: clamp(22px, 4cqi, 50px);
  font-weight: 600;
  vertical-align: super;
  opacity: 0.85;
}

.audience .visual .lbl {
  font-size: clamp(13px, 1.4cqi, 17px);
  line-height: 1.4;
  opacity: 0.95;
  max-width: 400px;
  padding-bottom: 12px;
}

.audience .visual .meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(10px, 0.9cqi, 12px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  position: relative;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.audience-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
  width: 100%;
}

.info-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  height: 100%;
  aspect-ratio: auto;
}

.info-card:hover {
  transform: translateY(-12px);
  border-color: var(--red);
  box-shadow: 0 30px 60px rgba(225, 29, 46, 0.12);
}

.info-card .icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--red-soft);
  color: var(--red);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.info-card:hover .icon-wrap {
  background: var(--red);
  color: #fff;
  transform: scale(1.1);
}

.info-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.info-card .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

.info-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}

.info-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.info-card .img-box {
  width: 100%;
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 10px;
}

.info-card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.info-card:hover .img-box img {
  transform: scale(1.1);
}

@media (min-width: 768px) {
  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* ===== Slide 7 — Contact ===== */
.contact .eyebrow {
  justify-content: center;
}

.contact .pad {
  align-items: center;
}

.contact h2 {
  text-align: center;
  font-size: clamp(32px, 5.5cqi, 92px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.3;
  margin-top: 24px;
  margin-bottom: 36px;
}

.contact h2 .red {
  color: var(--red);
}

.contact .channels {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.contact .channels .ch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact .channels .ch .k {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(10px, 0.9cqi, 12px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
  width: 80px;
}

.contact .channels .ch .v {
  font-family: 'Kanit', sans-serif;
  font-size: clamp(14px, 1.5cqi, 18px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-align: right;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  width: 100%;
}

.contact .left {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(20px, 3cqi, 36px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  width: 100%;
  max-width: 600px;
}


*/ .contact .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(10px, 0.9cqi, 12px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact .lineid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.contact .lineid .chip {
  background: var(--line-green);
  color: #fff;
  width: clamp(40px, 4cqi, 60px);
  height: clamp(40px, 4cqi, 60px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: clamp(28px, 3.5cqi, 42px);
}

.contact .website {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.contact .website .chip {
  background: var(--info-blue);
  color: #fff;
  width: clamp(40px, 4cqi, 60px);
  height: clamp(40px, 4cqi, 60px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: clamp(28px, 3.5cqi, 42px);
}

.contact .email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.contact .email .chip {
  background: var(--red-deep);
  color: #fff;
  width: clamp(40px, 4cqi, 60px);
  height: clamp(40px, 4cqi, 60px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: clamp(28px, 3.5cqi, 42px);
}

.contact .phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.contact .phone .chip {
  background: var(--orange);
  color: #fff;
  width: clamp(40px, 4cqi, 60px);
  height: clamp(40px, 4cqi, 60px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: clamp(28px, 3.5cqi, 42px);
}


.material-symbols-outlined {
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24
}

.contact .lineid .chip.web {
  background: var(--ink);
}

.contact .lineid .id {
  font-family: 'Kanit', sans-serif;
  font-size: clamp(22px, 3.5cqi, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}

.contact .lineid .id .at {
  color: var(--line-green);
}

.contact .sub {
  font-size: clamp(12px, 1.2cqi, 14px);
  color: var(--muted);
  line-height: 1.4;
}

.contact .cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  padding: clamp(12px, 1.5cqi, 18px) clamp(16px, 2cqi, 24px);
  border-radius: 12px;
  font-size: clamp(13px, 1.3cqi, 16px);
  font-weight: 600;
  letter-spacing: -0.01em;
  align-self: center;
}

.contact .right {
  background: var(--red);
  color: #fff;
  border-radius: 16px;
  padding: clamp(20px, 3cqi, 36px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  flex: 1;
}

.contact .right::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 40px 40px;
}

.contact .right h3 {
  font-size: clamp(18px, 2.5cqi, 32px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  position: relative;
}

.contact .right ol {
  list-style: none;
  counter-reset: c;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.contact .right ol li {
  counter-increment: c;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: clamp(13px, 1.3cqi, 16px);
  line-height: 1.4;
}

.contact .right ol li::before {
  content: counter(c, decimal-leading-zero);
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(11px, 1cqi, 13px);
  color: rgba(255, 255, 255, 0.7);
  width: 28px;
  flex-shrink: 0;
  padding-top: 2px;
}

.mb {
  margin-bottom: 60px;
}

@keyframes moveUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0px);
    opacity: 1;
  }
}

.my-move-up-1 {
  animation: moveUp 1s ease-in-out both;
}

.my-move-up-2 {
  animation: moveUp 1s ease-in-out both;
  animation-delay: 0.5s;
}

.my-move-up-3 {
  animation: moveUp 1s ease-in-out both;
  animation-delay: 1s;
}

/* แอนิเมชันจะเล่นเมื่อเลื่อนมาถึง (รองรับทุกเบราว์เซอร์) */
.scroll-reveal {
  opacity: 0;
  /* ซ่อนไว้ก่อน */
  visibility: hidden;
  /* ป้องกันการคลิกมั่วตอนมองไม่เห็น */
  opacity: 0;
  visibility: hidden;
}

.scroll-reveal.active {
  visibility: visible;
  animation: moveUp 0.8s ease-out both;
}

/* Lightbox Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
  backdrop-filter: blur(8px);
}

.modal-content {
  margin: auto;
  display: block;
  width: 90%;
  max-width: 1000px;
  border-radius: 12px;
  animation: zoom 0.3s;
}

@keyframes zoom {
  from {transform:scale(0.8); opacity: 0;}
  to {transform:scale(1); opacity: 1;}
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #fff;
  padding: 20px 0;
  font-family: 'Kanit', sans-serif;
  font-size: 24px;
  font-weight: 600;
}