:root {
  --gold: #f5c518;
  --gold-2: #ffdb58;
  --gold-deep: #c8951a;
  --amber: #ff9b21;
  --bg: #080808;
  --bg-2: #0f0e0c;
  --card: #15130f;
  --card-2: #1c1a15;
  --line: rgba(245, 197, 24, 0.16);
  --line-soft: rgba(255, 255, 255, 0.07);
  --txt: #f4efe4;
  --txt-dim: #b6ad9a;
  --radius: 20px;
  --shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.8);
  --glow: 0 0 40px -6px rgba(245, 197, 24, 0.45);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Kanit", system-ui, sans-serif;
  background: var(--bg);
  color: var(--txt);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(
      900px 600px at 78% -5%,
      rgba(245, 197, 24, 0.18),
      transparent 60%
    ),
    radial-gradient(
      700px 500px at 5% 15%,
      rgba(255, 155, 33, 0.1),
      transparent 55%
    ),
    radial-gradient(
      1000px 800px at 50% 110%,
      rgba(245, 197, 24, 0.08),
      transparent 60%
    ),
    var(--bg);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}
.gold-text {
  background: linear-gradient(
    120deg,
    #fff3c0,
    var(--gold) 45%,
    var(--amber) 90%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gold-2);
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid var(--line);
  padding: 7px 15px;
  border-radius: 100px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: "Kanit", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}
.btn-gold {
  background: linear-gradient(
    120deg,
    var(--gold-2),
    var(--gold) 55%,
    var(--amber)
  );
  color: #080808;
  box-shadow: var(--glow);
}
.btn-gold:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
  box-shadow: 0 0 50px -4px rgba(245, 197, 24, 0.6);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--txt);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  background: rgba(245, 197, 24, 0.1);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* ---------- NAV ---------- */
header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(8, 8, 8, 0.72);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.3px;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: var(--glow);
}
.brand b {
  color: #fff;
}
.brand b span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  font-size: 0.95rem;
  /* color: var(--txt-dim); */
  font-weight: 500;
  transition: color 0.2s;
}

.nav-cta {
  padding: 10px 22px;
  color: #080808;
}
.burger {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 70px 0 60px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.3rem, 5.2vw, 3.9rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.5px;
}
.hero p.lead {
  margin-top: 22px;
  font-size: 1.15rem;
  color: var(--txt-dim);
  max-width: 540px;
}
.hero .cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.trust {
  display: flex;
  gap: 26px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.trust div {
  display: flex;
  flex-direction: column;
}
.trust b {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}
.trust small {
  color: var(--txt-dim);
  font-size: 0.85rem;
}
.hero-visual {
  position: relative;
}
.hero-visual .frame {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow:
    var(--shadow),
    0 0 80px -20px rgba(245, 197, 24, 0.4);
}
.hero-visual .frame img {
  width: 100%;
}
.float-badge {
  position: absolute;
  background: var(--card-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.float-badge .ic {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(245, 197, 24, 0.14);
  color: var(--gold);
  font-size: 1.1rem;
}
.float-badge b {
  font-size: 0.9rem;
  display: block;
  line-height: 1.2;
}
.float-badge small {
  font-size: 0.72rem;
  color: var(--txt-dim);
}
.fb-1 {
  top: 18px;
  left: -14px;
  animation: floaty 5s ease-in-out infinite;
}
.fb-2 {
  bottom: 26px;
  right: -14px;
  animation: floaty 6s ease-in-out infinite 0.6s;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* ---------- MARQUEE (platforms) ---------- */
.platforms {
  padding: 26px 0;
  border-block: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.015);
}
.platforms .lbl {
  text-align: center;
  color: var(--txt-dim);
  font-size: 0.85rem;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.plat-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.chip {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  border-radius: 100px;
  background: var(--card);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 1rem;
}
.chip .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* ---------- SECTION ---------- */
section {
  padding: 80px 0;
}
.sec-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}
.sec-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 800;
  line-height: 1.2;
  margin-top: 14px;
}
.sec-head p {
  color: var(--txt-dim);
  margin-top: 14px;
  font-size: 1.08rem;
}

/* ---------- FEATURES ---------- */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feat {
  background: linear-gradient(180deg, var(--card), var(--bg-2));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition:
    transform 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.feat:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.feat .ic {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  background: linear-gradient(
    135deg,
    rgba(245, 197, 24, 0.2),
    rgba(255, 155, 33, 0.12)
  );
  border: 1px solid var(--line);
  margin-bottom: 18px;
}
.feat h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.feat p {
  color: var(--txt-dim);
  font-size: 0.98rem;
}

/* ---------- STEPS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: s;
}
.step {
  position: relative;
  padding: 28px 22px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line-soft);
}
.step::before {
  counter-increment: s;
  content: counter(s);
  font-family: "Kanit";
  font-weight: 800;
  font-size: 1.5rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #241a02;
  margin-bottom: 16px;
}
.step h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.step p {
  color: var(--txt-dim);
  font-size: 0.92rem;
}

/* ---------- PRICING (image-forward) ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price {
  background: linear-gradient(180deg, var(--card-2), var(--bg-2));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}
.price:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow:
    var(--shadow),
    0 0 50px -18px rgba(245, 197, 24, 0.5);
}
.price.pop {
  border-color: var(--gold);
  box-shadow: var(--glow);
}
/* price-free image header — real lion artwork, price is editable text below */
.price-media {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: var(--brand, #16140f);
}
.price-media img.cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  transition: transform 0.6s ease;
}
.price:hover .price-media img.cover {
  transform: scale(1.06);
}
.price-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(10, 9, 7, 0.35) 72%,
    var(--card-2) 100%
  );
}
.plat-name {
  position: absolute;
  left: 16px;
  bottom: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
  letter-spacing: 0.3px;
}
.plat-name::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dot, var(--gold));
  box-shadow: 0 0 10px var(--dot, var(--gold));
}
.ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  background: linear-gradient(120deg, var(--gold-2), var(--amber));
  color: #241a02;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}
/* editable price block */
.price-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.price-body .sub {
  color: var(--txt-dim);
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.price-num {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 18px;
}
.price-num .from {
  align-self: center;
  font-size: 0.66rem;
  font-weight: 700;
  background: var(--amber);
  color: #241a02;
  padding: 3px 9px;
  border-radius: 100px;
  margin-right: 4px;
}
.price-num b {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}
.price-num .cur {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
}
.price-num small {
  font-size: 0.85rem;
  color: var(--txt-dim);
  font-weight: 500;
}
.price-num .full {
  align-self: center;
  margin-left: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--txt-dim);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 90, 90, 0.8);
}
.save-badge {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #ff6b6b;
  background: rgba(255, 90, 90, 0.12);
  border: 1px solid rgba(255, 90, 90, 0.35);
  padding: 4px 12px;
  border-radius: 100px;
}
.price-body ul {
  list-style: none;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.price-body li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--txt-dim);
  font-size: 0.93rem;
}
.price-body li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 800;
  flex-shrink: 0;
}
.price-body .btn {
  width: 100%;
}
.ask-card {
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 26px;
  background:
    radial-gradient(
      400px 220px at 50% 0%,
      rgba(245, 197, 24, 0.16),
      transparent 70%
    ),
    linear-gradient(180deg, var(--card-2), var(--bg-2));
}

/* ---------- CREDIBILITY BAND ---------- */
.cred-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.cred {
  text-align: center;
  padding: 26px 18px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--card), var(--bg-2));
  border: 1px solid var(--line-soft);
}
.cred b {
  display: block;
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(120deg, #fff3c0, var(--gold) 50%, var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cred small {
  color: var(--txt-dim);
  font-size: 0.88rem;
  margin-top: 8px;
  display: block;
}
.guarantees {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.gpill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 100px;
  background: rgba(245, 197, 24, 0.07);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.95rem;
}
.gpill .gic {
  font-size: 1.15rem;
}
/* testimonials */
.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tst {
  background: linear-gradient(180deg, var(--card), var(--bg-2));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tst .stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 1rem;
}
.tst p {
  color: var(--txt);
  font-size: 0.98rem;
  flex: 1;
}
.tst .who {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tst .av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #241a02;
}
.tst .who b {
  display: block;
  font-size: 0.95rem;
}
.tst .who small {
  color: var(--txt-dim);
  font-size: 0.8rem;
}

/* ---------- WHY / TRUST ---------- */
.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.why-visual {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-item .ic {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid var(--line);
  color: var(--gold);
}
.why-item h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.why-item p {
  color: var(--txt-dim);
  font-size: 0.96rem;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
details {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 4px 22px;
  transition: border-color 0.2s;
}
details[open] {
  border-color: var(--line);
}
summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 600;
  font-size: 1.08rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.2s;
}
details[open] summary::after {
  transform: rotate(45deg);
}
details p {
  color: var(--txt-dim);
  padding: 0 0 20px;
  font-size: 0.98rem;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  text-align: center;
  padding: 64px 30px;
  background:
    radial-gradient(
      600px 300px at 50% 0%,
      rgba(245, 197, 24, 0.22),
      transparent 70%
    ),
    linear-gradient(180deg, var(--card-2), #0c0b09);
  border: 1px solid var(--line);
}
.cta-banner h2 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
}
.cta-banner p {
  color: var(--txt-dim);
  margin: 16px auto 30px;
  max-width: 560px;
  font-size: 1.1rem;
}
.cta-row-c {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- FOOTER ---------- */
footer {
  border-top: 1px solid var(--line-soft);
  padding: 50px 0 34px;
  margin-top: 20px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 34px;
}
.foot-brand p {
  color: var(--txt-dim);
  margin-top: 14px;
  font-size: 0.94rem;
  max-width: 320px;
}
.foot-col h5 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 14px;
}
.foot-col a {
  display: block;
  color: var(--txt-dim);
  font-size: 0.94rem;
  padding: 5px 0;
  transition: color 0.2s;
}
.foot-col a:hover {
  color: var(--gold);
}
.foot-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--txt-dim);
  font-size: 0.86rem;
}
.socials {
  display: flex;
  gap: 12px;
}
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--gold);
  transition: 0.2s;
}
.socials a:hover {
  background: var(--gold);
  color: #111;
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero-grid,
  .why {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: -1;
    max-width: 460px;
    margin: 0 auto;
  }
  .feat-grid,
  .price-grid,
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links {
    display: none;
  }
  .burger {
    display: block;
  }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(8, 8, 8, 0.97);
    padding: 20px 22px;
    gap: 16px;
    border-bottom: 1px solid var(--line);
  }
}
@media (max-width: 560px) {
  section {
    padding: 56px 0;
  }
  .feat-grid,
  .price-grid,
  .showcase-grid,
  .steps,
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .float-badge {
    display: none;
  }
  .trust {
    gap: 18px;
  }
}
