:root {
  --c-pink: #febaec;
  --c-blue: #1c1468;
  --c-green: #7df0a3;
  --c-black: #080808;
  --c-white: #ffffff;
  --c-shell: #f4f4f4;
  --c-copy: #1e1e1e;
  --c-copy-soft: #626262;
  --c-line: rgba(125, 240, 163, 0.32);
  --shadow-card: 0 30px 80px rgba(0, 0, 0, 0.14);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.1);
  --radius-xxl: 40px;
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --shell-width: min(92vw, 1460px);
  --osans: "Open Sans", sans-serif;
  --kanit: "Kanit", sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--osans);
  color: var(--c-copy);
  background: var(--c-shell);
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.site-root { overflow: clip; }
.shell { width: var(--shell-width); margin: 0 auto; }
.page-hero {
  position: relative;
  color: var(--c-white);
  background:
    radial-gradient(circle at 12% 14%, rgba(254, 186, 236, 0.18), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(125, 240, 163, 0.16), transparent 24%),
    linear-gradient(180deg, #000000 0%, #0d0d0d 100%);
  padding-bottom: 110px;
}
.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.9;
}
.page-hero::before {
  top: 160px;
  right: max(4vw, calc((100vw - 1460px) / 2));
  width: 124px;
  height: 170px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 153.05393 188.13214'%3E%3Cpolygon points='89.692 27.416 62.275 45.39 89.692 63.363 107.665 90.779 125.638 63.363 153.054 45.39 125.638 27.416 107.665 0 89.692 27.416' style='fill: %237df0a3'/%3E%3Cpolygon points='112.221 152.17 100.555 159.818 112.221 167.466 119.869 179.132 127.517 167.466 139.182 159.818 127.517 152.17 119.869 140.505 112.221 152.17' style='fill: %237df0a3'/%3E%3Cpolygon points='11.666 161.171 0 168.819 11.666 176.466 19.314 188.132 26.961 176.466 38.627 168.819 26.961 161.171 19.314 149.505 11.666 161.171' style='fill: %237df0a3'/%3E%3C/svg%3E");
}
.page-hero::after {
  left: max(3vw, calc((100vw - 1460px) / 2));
  bottom: 72px;
  width: 88px;
  height: 110px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 106.10695 133.17657'%3E%3Cpolygon points='62.1 19.007 43.1 31.465 62.1 43.922 74.557 62.922 87.015 43.922 106.107 31.465 87.015 19.007 74.557 0 62.1 19.007' style='fill: %23febaec'/%3E%3Cpolygon points='75.157 107.082 67.074 112.381 75.157 117.681 80.457 125.764 85.756 117.681 93.839 112.381 85.756 107.082 80.457 98.999 75.157 107.082' style='fill: %23febaec'/%3E%3Cpolygon points='8.083 111.414 0 116.714 8.083 122.013 13.383 130.096 18.682 122.013 26.765 116.714 18.682 111.414 13.383 103.331 8.083 111.414' style='fill: %23febaec'/%3E%3C/svg%3E");
}
#header {
  position: relative;
  z-index: 6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--c-green);
  padding: 20px 0;
}
#header .logo img { height: 65px; }
.landing-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.landing-nav a {
  color: var(--c-white);
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
}
.landing-nav a:hover { color: var(--c-green); }
.hero-layout {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 48px;
  align-items: center;
  padding: 68px 0 56px;
}
.hero-copy { max-width: 760px; }
.hero-copy .subtitle,
.section-tag {
  margin: 0 0 18px;
  color: var(--c-pink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-copy .title,
.section-title {
  margin: 0;
  font-family: var(--kanit);
  font-weight: 700;
  line-height: 0.95;
}
.hero-copy .title {
  font-size: clamp(52px, 7vw, 104px);
  color: var(--c-white);
  max-width: 12ch;
}
.hero-copy .description {
  margin: 24px 0 0;
  max-width: 34rem;
  font-size: 19px;
  line-height: 1.65;
  color: rgba(255,255,255,0.86);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.btn-filed,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}
.btn-filed {
  background: var(--c-green);
  color: var(--c-black);
  padding: 15px 50px 15px 30px;
  position: relative;
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: right 20px center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.2978 15.32214'%3E%3Cpath d='M1.84756,14.61683.70839,13.47766,11.79524,2.471,9.43668,2.21433,7.8643.658l6.129.68992.65783,6.097-1.4761-1.444L12.93441,3.6423Z' style='fill: %2316161b;stroke: %2316161b;stroke-miterlimit: 10'/%3E%3C/svg%3E");
  box-shadow: 0 18px 36px rgba(125, 240, 163, 0.24);
}
.btn-outline {
  color: var(--c-white);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
  padding: 15px 28px;
}
.btn-filed:hover,
.btn-outline:hover { transform: translateY(-2px); }
.btn-outline:hover { border-color: var(--c-green); color: var(--c-green); }
.hero-chips {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  font-size: 14px;
  color: rgba(255,255,255,0.88);
}
.hero-chip::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 0 6px rgba(125, 240, 163, 0.16);
}
.hero-visual {
  position: relative;
  min-height: 560px;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 40px 30px auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 240, 163, 0.18) 0%, rgba(125, 240, 163, 0) 70%);
}
.hero-visual::after {
  content: "";
  position: absolute;
  left: 20px;
  bottom: 24px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 186, 236, 0.2) 0%, rgba(254, 186, 236, 0) 70%);
}
.hero-figure {
  position: absolute;
  inset: 0 0 40px 90px;
  border-radius: 36px;
  background: linear-gradient(160deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,0.28);
  backdrop-filter: blur(10px);
}
.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  padding: 34px;
  filter: drop-shadow(0 28px 44px rgba(0,0,0,0.46));
}
.hero-float {
  position: absolute;
  z-index: 2;
  width: min(300px, 70%);
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.96);
  color: var(--c-copy);
  box-shadow: var(--shadow-card);
}
.hero-float--top { top: 30px; right: 0; }
.hero-float--bottom { left: 0; bottom: 34px; }
.hero-float .eyebrow {
  display: block;
  margin: 0 0 8px;
  color: var(--c-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-float strong {
  display: block;
  font-family: var(--kanit);
  font-size: 28px;
  line-height: 1;
  color: var(--c-black);
  margin-bottom: 10px;
}
.hero-float span {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-copy-soft);
}
.hero-chips { display: none; }
.route-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 8px;
}
.route-card {
  position: relative;
  display: block;
  min-height: 220px;
  padding: 22px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  color: var(--c-white);
  background: linear-gradient(160deg, #050505 0%, #111111 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 54px rgba(0,0,0,0.18);
}
.route-card::before {
  content: "";
  position: absolute;
  inset: auto -30px -30px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125,240,163,0.22) 0%, rgba(125,240,163,0) 72%);
}
.route-card__body {
  position: relative;
  z-index: 1;
  min-height: 174px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.route-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.route-card__tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.08);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.route-card__thumb {
  width: 80px;
  height: 80px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 26px rgba(0,0,0,0.34));
  flex: none;
}
.route-card__title {
  margin: 16px 0 8px;
  font-family: var(--kanit);
  font-size: 30px;
  line-height: 0.95;
}
.route-card__text {
  margin: 0;
  max-width: 18rem;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.84);
}
.route-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(125,240,163,0.14);
  color: var(--c-green);
  font-size: 22px;
  font-weight: 800;
}
.route-card:hover { transform: translateY(-4px); }
.landing-main { padding: 76px 0 94px; }
.section + .section { margin-top: 28px; }
.section-card {
  border-radius: var(--radius-xxl);
  background: var(--c-white);
  box-shadow: var(--shadow-soft);
}
.intro-section .section-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 22px;
  padding: 34px;
}
.section-title {
  font-size: clamp(38px, 4.6vw, 66px);
  color: var(--c-black);
}
.section-body,
.intro-copy p {
  margin: 18px 0 0;
  color: var(--c-copy-soft);
  font-size: 18px;
  line-height: 1.78;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.metric-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
  border: 1px solid rgba(28, 20, 104, 0.08);
}
.metric-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--kanit);
  font-size: 28px;
  line-height: 1;
  color: var(--c-blue);
}
.metric-card span {
  display: block;
  color: var(--c-copy-soft);
  font-size: 14px;
  line-height: 1.65;
}
.benefit-section .section-card { padding: 34px; }
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}
.benefit-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border: 1px solid rgba(0,0,0,0.06);
}
.benefit-card h3,
.step-card h3 {
  margin: 0 0 14px;
  font-family: var(--kanit);
  font-size: 30px;
  line-height: 1;
  color: var(--c-black);
}
.benefit-card p,
.step-card p { margin: 0; color: var(--c-copy-soft); font-size: 16px; line-height: 1.7; }
.flow-section .section-card {
  background:
    radial-gradient(circle at top right, rgba(125, 240, 163, 0.12), transparent 28%),
    linear-gradient(180deg, #060606 0%, #101010 100%);
  color: var(--c-white);
  padding: 34px;
}
.flow-section .section-title { color: var(--c-white); }
.flow-section .section-body { color: rgba(255,255,255,0.74); }
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}
.step-card {
  position: relative;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.step-card h3 { color: var(--c-white); }
.step-card p { color: rgba(255,255,255,0.74); }
.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--c-green);
  color: var(--c-black);
  font-weight: 900;
}
.faq-section .section-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  padding: 34px;
}
.faq-list { display: grid; gap: 14px; }
.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.08);
  background: #fafafa;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 700;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--c-copy-soft);
  line-height: 1.72;
}
.faq-side .section-body { margin-bottom: 26px; }
.footer-cta {
  margin-top: 28px;
  padding: 30px 34px;
  border-radius: var(--radius-xxl);
  background:
    radial-gradient(circle at top right, rgba(254, 186, 236, 0.16), transparent 32%),
    linear-gradient(180deg, #000000 0%, #0d0d0d 100%);
  color: var(--c-white);
  box-shadow: 0 24px 54px rgba(0,0,0,0.24);
}
.footer-cta__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-cta .section-title { color: var(--c-white); font-size: clamp(34px, 4vw, 56px); }
.footer-cta .section-body { color: rgba(255,255,255,0.74); max-width: 40rem; }
.footer-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
#footer {
  margin-top: 30px;
  background: var(--c-white);
  border-top: 1px solid var(--c-green);
  padding: 44px 0 54px;
}
#footer .footer-inner {
  width: var(--shell-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 32px;
}
#footer .title {
  margin: 0 0 14px;
  color: var(--c-black);
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
}
#footer .title-big {
  margin: 0 0 14px;
  color: var(--c-black);
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
}
.footer-copy,
.footer-links a,
.footer-note {
  color: var(--c-black);
  font-size: 15px;
  line-height: 1.7;
}
.footer-links { display: grid; gap: 10px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--c-blue); }
.footer-note { margin-top: 12px; }
@media (max-width: 1240px) {
  .route-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-layout,
  .intro-section .section-card,
  .faq-section .section-card,
  #footer .footer-inner,
  .footer-cta__row { grid-template-columns: 1fr; display: grid; }
  .hero-visual { min-height: 500px; }
  .hero-float--top { display: none; }
}
@media (max-width: 920px) {
  .page-hero::before,
  .page-hero::after { display: none; }
  #header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .landing-nav { gap: 14px 18px; }
  .hero-layout,
  .benefit-grid,
  .step-grid,
  .metrics-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 500px; }
  .hero-float--top { display: none; }
  .hero-figure { inset: 0 20px 28px 20px; }
  .hero-float--top,
  .hero-float--bottom {
    position: absolute;
    width: calc(100% - 28px);
  }
  .hero-float--top { top: 18px; right: 14px; }
  .hero-float--bottom { left: 14px; bottom: 16px; }
  .route-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 0; }
  .route-card { min-height: 188px; padding: 18px; }
  .route-card__body { min-height: 146px; }
  .route-card__thumb { width: 60px; height: 60px; }
  .route-card__title { font-size: 24px; margin: 12px 0 6px; }
  .route-card__text { font-size: 13px; line-height: 1.5; }
  .route-card__arrow { width: 32px; height: 32px; font-size: 18px; }
}
@media (max-width: 640px) {
  .page-hero { padding-bottom: 56px; }
  .landing-nav { display: none; }
  #header .logo img { height: 54px; }
  .hero-layout { padding: 28px 0 22px; gap: 20px; }
  .hero-copy .title { font-size: clamp(40px, 12vw, 58px); line-height: 0.98; max-width: 11ch; }
  .hero-copy .description,
  .section-body,
  .intro-copy p { font-size: 15px; line-height: 1.65; }
  .hero-actions,
  .footer-cta__actions { flex-direction: column; align-items: stretch; }
  .btn-filed,
  .btn-outline { width: 100%; }
  .hero-visual { min-height: 270px; }
  .hero-figure { inset: 0 20px 0 20px; }
  .route-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .route-card { min-height: 164px; padding: 16px; }
  .route-card__top { gap: 10px; }
  .route-card__thumb { width: 48px; height: 48px; }
  .route-card__tag { padding: 6px 10px; font-size: 9px; }
  .route-card__title { font-size: 22px; }
  .route-card__text { font-size: 12px; }
  .section-card,
  .footer-cta,
  .benefit-card,
  .step-card,
  .metric-card { padding-left: 22px !important; padding-right: 22px !important; }
}
