/* ============================================
   NextGen Studio — Freepik-Inspired Design
   Dark dense layout, subtle glows, bento cards
   ============================================ */

/* Hide scrollbar */
html { scrollbar-width: none; /* Firefox */ }
html::-webkit-scrollbar { display: none; /* Chrome, Safari, Edge */ }

:root {
  --black: #000000;
  --black-pure: #000000;
  --surface: #0f0f0f;
  --surface-2: #151515;
  --surface-3: #1c1c1c;
  --white: #f5f5f5;
  --white-pure: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #e8e8e8;
  --gray-200: #d1d1d1;
  --gray-300: #b0b0b0;
  --gray-400: #888888;
  --gray-500: #6b6b6b;
  --gray-600: #4a4a4a;
  --gray-700: #333333;
  --gray-800: #262626;
  --gray-900: #171717;
  --primary: #336aea;
  --primary-hover: #4a7df5;
  --primary-dim: rgba(51, 106, 234, 0.12);
  --primary-glow: rgba(51, 106, 234, 0.06);
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.14);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-thai: 'Kanit', 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
.thai { font-family: var(--font-thai); }
.hidden { display: none !important; }

/* ——— Layout ——— */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 0; position: relative; }

/* ——— Scroll Reveal ——— */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }

/* ============ NAVBAR ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,13,13,0.8); backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  transition: transform 0.3s ease;
}
.nav.hide { transform: translateY(-100%); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; max-width: 1280px; margin: 0 auto; padding: 0 32px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 700; }
.nav-logo img { width: 32px; height: 32px; border-radius: 8px; }
.nav-logo em { font-style: normal; color: var(--gray-400); font-weight: 400; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 16px; border-radius: var(--radius-full);
  font-size: 14px; color: var(--gray-400); transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  padding: 8px 22px !important; border-radius: var(--radius-full) !important;
  background: var(--primary) !important; color: var(--white-pure) !important;
  font-weight: 600 !important; font-size: 14px !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--primary-hover) !important; transform: translateY(-1px); }
.nav-mobile-btn { display: none; color: var(--white); padding: 8px; }
.nav-mobile-btn svg { width: 24px; height: 24px; }
.mobile-menu {
  display: none; position: absolute; top: 64px; left: 0; right: 0;
  background: rgba(13,13,13,0.96); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border); padding: 12px 24px;
  flex-direction: column; gap: 2px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block; padding: 14px 16px; border-radius: var(--radius);
  color: var(--gray-400); font-size: 16px;
}
.mobile-menu a:hover { color: var(--white); background: rgba(255,255,255,0.04); }

/* ============ HERO ============ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 64px; position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute; top: 10%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 500px; border-radius: 50%;
  background: radial-gradient(ellipse, var(--primary-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  text-align: center; width: 100%;
  padding: 60px 0 40px; position: relative; z-index: 1;
}

/* Announcement Pill */
.hero-announce {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 6px 6px 6px; border-radius: var(--radius-full);
  background: var(--surface-2); border: 1px solid var(--border);
  font-size: 14px; color: var(--gray-300); margin-bottom: 32px;
  transition: border-color 0.2s;
}
.hero-announce:hover { border-color: var(--border-hover); }
.hero-announce-badge {
  padding: 3px 10px; border-radius: var(--radius-full);
  background: var(--primary); color: var(--white-pure);
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.hero-announce-text { padding: 0 10px; }
.hero-announce-arrow { color: var(--gray-500); margin-right: 4px; }

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 700;
  line-height: 1.08; letter-spacing: -2.5px; margin-bottom: 20px;
  color: var(--white);
}
.hero h1 .line2 {
  display: block; color: var(--white);
}
.hero-sub {
  max-width: 660px; margin: 0 auto; line-height: 1.5; text-align: center;
}
.hero-sub-main {
  font-size: clamp(1rem, 1.9vw, 1.2rem); color: var(--gray-300);
  margin-bottom: 8px; font-weight: 400;
}
.hero-sub-features {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem); color: var(--gray-500);
  margin-bottom: 32px; letter-spacing: 0.3px;
}

/* Trust Strip (AI models like Freepik) */
.trust-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap; margin-bottom: 32px;
  padding: 0 20px;
}
.trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--gray-500); font-weight: 500;
  white-space: nowrap;
}
.trust-item svg { width: 16px; height: 16px; opacity: 0.5; }
.trust-item svg.trust-icon { width: 14px; height: 14px; opacity: 0.5; stroke: var(--gray-400); flex-shrink: 0; }

/* Hero CTA */
.hero-cta-wrap { margin-bottom: 48px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-full);
  background: var(--primary); color: var(--white-pure);
  font-size: 15px; font-weight: 600;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(51, 106, 234, 0.25);
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(51, 106, 234, 0.35);
}
.btn-primary .arrow { transition: transform 0.2s; }
.btn-primary:hover .arrow { transform: translateX(3px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-full);
  border: 1px solid var(--border); color: var(--gray-300); font-size: 15px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--border-hover); color: var(--white); }
.btn-secondary svg { width: 16px; height: 16px; fill: currentColor; }

/* Showcase Image Gallery (Freepik style) */
.showcase-gallery {
  display: flex; gap: 8px; overflow: hidden;
  margin: 0 -32px; padding: 0 32px;
}
.showcase-row {
  display: flex; gap: 8px; width: max-content;
  animation: showcase-scroll 40s linear infinite;
}
.showcase-row:hover { animation-play-state: paused; }
@keyframes showcase-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.showcase-item {
  width: 220px; height: 160px; border-radius: var(--radius);
  overflow: hidden; flex-shrink: 0;
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
}
.showcase-item:hover { border-color: var(--border-hover); transform: scale(1.02); }
.showcase-item img {
  width: 100%; height: 100%; object-fit: cover;
}

/* ============ BENTO FEATURES ============ */
.bento-section { padding: 80px 0; }
.bento-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px;
}
.bento-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 600;
  letter-spacing: -1px; line-height: 1.2;
}
.bento-header-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: var(--radius-full);
  border: 1px solid var(--border); font-size: 13px; color: var(--gray-400);
  transition: border-color 0.2s, color 0.2s;
}
.bento-header-link:hover { border-color: var(--border-hover); color: var(--white); }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.bento-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 380px; display: flex; flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
  cursor: pointer;
}
.bento-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.bento-card-bg {
  position: absolute; inset: 0; z-index: 0;
}
.bento-card-bg img, .bento-card-bg video {
  width: 100%; height: 100%; object-fit: cover;
}
.bento-card-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
}
.bento-card-content {
  position: relative; z-index: 2;
  padding: 28px; display: flex; flex-direction: column;
  height: 100%; justify-content: space-between;
}
.bento-card-title {
  font-size: 1.3rem; font-weight: 600; line-height: 1.3;
  margin-bottom: 8px; max-width: 240px;
}
.bento-card-desc {
  font-size: 0.85rem; color: var(--gray-300); line-height: 1.6;
  max-width: 280px; opacity: 0.9;
}
.bento-card-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: var(--radius-full);
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white); font-size: 13px; font-weight: 600;
  transition: background 0.2s;
  width: fit-content;
  border: 1px solid rgba(255,255,255,0.15);
}
.bento-card-cta:hover { background: rgba(255,255,255,0.2); }
.bento-card-cta .arrow { transition: transform 0.2s; }
.bento-card:hover .bento-card-cta .arrow { transform: translateX(3px); }

/* Bento Feature Detail Cards (Below Bento) */
.bento-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-top: 12px;
}
.bento-detail-card {
  padding: 28px 24px; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.2s;
}
.bento-detail-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.bento-detail-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 20px;
  background: var(--primary-dim);
}
.bento-detail-title {
  font-size: 0.95rem; font-weight: 600; margin-bottom: 6px;
}
.bento-detail-desc {
  font-size: 0.82rem; color: var(--gray-500); line-height: 1.6;
}

/* ============ PROCESS (How it works) ============ */
.process-section { padding: 80px 0; border-top: 1px solid var(--border); }
.process-header { text-align: center; margin-bottom: 56px; }
.process-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600;
  letter-spacing: -1px; margin-bottom: 12px;
}
.process-header p { color: var(--gray-500); font-size: 1rem; }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border); border-radius: var(--radius-lg);
  overflow: hidden;
}
.process-step {
  padding: 40px 28px; background: var(--surface);
  text-align: center;
  transition: background 0.3s;
}
.process-step:hover { background: var(--surface-2); }
.process-step-num {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  background: var(--primary-dim); color: var(--primary);
  font-size: 14px; font-weight: 700;
}
.process-step-num.done {
  background: var(--primary); color: var(--white-pure);
}
.process-step-title { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.process-step-desc { font-size: 0.82rem; color: var(--gray-500); line-height: 1.5; }

/* ============ VIDEO DEMOS ============ */
.demos-section { padding: 80px 0; border-top: 1px solid var(--border); }
.demos-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px;
}
.demos-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 600;
  letter-spacing: -1px;
}
.video-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px; margin-bottom: 40px;
}
.vid-card { position: relative; }
.vid-card video {
  width: 100%; aspect-ratio: 9/16; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--border);
  display: block; transition: border-color 0.3s, transform 0.3s;
}
.vid-card:hover video { border-color: var(--border-hover); transform: scale(1.02); }
.vid-label {
  text-align: center; margin-top: 10px;
  font-size: 12px; color: var(--gray-500); font-weight: 500;
}
.vid-card.hl video { border-color: rgba(51, 106, 234, 0.3); }
.vid-label.hl { color: var(--gray-300); }

/* Walkthrough */
.walk-section { margin-top: 16px; }
.walk-label {
  font-size: 1rem; font-weight: 600; margin-bottom: 6px;
}
.walk-sublabel { color: var(--gray-500); font-size: 0.88rem; margin-bottom: 20px; }
.walk-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); position: relative;
  transition: border-color 0.3s;
}
.walk-wrap:hover { border-color: var(--border-hover); }
.walk-wrap video { width: 100%; aspect-ratio: 16/9; display: block; background: var(--black); }
.play-ov {
  position: absolute; inset: 0; display: flex; align-items: center;
  justify-content: center; background: rgba(0,0,0,0.35); cursor: pointer;
  transition: background 0.3s;
}
.play-ov:hover { background: rgba(0,0,0,0.2); }
.play-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease;
}
.play-ov:hover .play-circle { transform: scale(1.1); }
.play-circle svg { width: 24px; height: 24px; fill: var(--white); margin-left: 3px; }

/* Preview Tabs */
.preview-tabs {
  display: flex; gap: 8px; margin-bottom: 16px;
  flex-wrap: wrap;
}
.preview-tab {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 100px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--gray-500); font-size: 0.88rem; font-weight: 500;
  cursor: pointer; transition: all 0.3s ease;
  white-space: nowrap;
}
.preview-tab:hover {
  border-color: var(--border-hover);
  color: var(--gray-200);
  background: rgba(255,255,255,0.06);
}
.preview-tab.active {
  border-color: var(--accent);
  color: var(--white);
  background: rgba(168,85,247,0.12);
  box-shadow: 0 0 20px rgba(168,85,247,0.15);
}
.preview-tab svg { flex-shrink: 0; }

.preview-display {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card-bg);
  transition: border-color 0.3s;
}
.preview-display:hover { border-color: var(--border-hover); }

.preview-panel {
  display: none;
  animation: panelFadeIn 0.4s ease;
}
.preview-panel.active { display: block; }

@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.preview-img-wrap {
  width: 100%; overflow: hidden;
  background: var(--black);
}
.preview-img-wrap img {
  width: 100%; display: block;
  aspect-ratio: 16/9; object-fit: cover;
}

.preview-info {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  background: linear-gradient(to bottom, rgba(168,85,247,0.04), transparent);
}
.preview-info h3 {
  font-size: 1.05rem; font-weight: 600;
  margin-bottom: 8px; color: var(--white);
}
.preview-info p {
  font-size: 0.88rem; color: var(--gray-400);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .preview-tabs { gap: 6px; }
  .preview-tab { padding: 8px 14px; font-size: 0.8rem; }
  .preview-tab svg { width: 14px; height: 14px; }
  .preview-info { padding: 16px; }
  .preview-info h3 { font-size: 0.95rem; }
  .preview-info p { font-size: 0.82rem; }
}
@media (max-width: 480px) {
  .preview-tabs { gap: 4px; }
  .preview-tab { padding: 7px 10px; font-size: 0.75rem; gap: 5px; }
}

/* ============ SOCIAL PROOF / TESTIMONIALS (Horizontal Slider) ============ */
.social-proof-section {
  padding: 80px 0; border-top: 1px solid var(--border);
  overflow: hidden;
}
.social-proof-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px; padding: 0 32px;
  max-width: 1280px; margin-left: auto; margin-right: auto;
}
.social-proof-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 600;
  letter-spacing: -0.5px;
}
.slider-nav { display: flex; gap: 8px; }
.slider-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--surface);
  color: var(--gray-400); display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.slider-btn:hover { border-color: var(--border-hover); color: var(--white); background: var(--surface-2); }
.slider-btn svg { width: 18px; height: 18px; }

.slider-wrapper {
  max-width: 1280px; margin: 0 auto;
  overflow: hidden;
}
.slider-track {
  display: flex; gap: 16px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.slider-track:hover { animation-play-state: paused; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.rev-card {
  min-width: 340px; max-width: 400px; flex-shrink: 0;
  padding: 28px; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.2s;
  scroll-snap-align: start;
}
.rev-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.rev-tag {
  display: inline-block; padding: 3px 10px; border-radius: var(--radius-full);
  font-size: 11px; font-weight: 600; color: var(--primary);
  background: var(--primary-dim); margin-bottom: 14px;
}
.rev-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.rev-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: var(--surface-3);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.rev-name { font-size: 13px; font-weight: 600; }
.rev-stars { font-size: 11px; color: #facc15; letter-spacing: 1px; }
.rev-body {
  font-size: 14px; color: var(--gray-400); font-style: italic; line-height: 1.7;
}

/* ============ COMPARISON ============ */
.comp-section { padding: 80px 0; border-top: 1px solid var(--border); }
.comp-header { text-align: center; margin-bottom: 40px; }
.comp-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 600;
  letter-spacing: -0.5px; margin-bottom: 8px;
}
.comp-header p { color: var(--gray-500); font-size: 0.9rem; }
.comp-table-wrap {
  max-width: 720px; margin: 0 auto; overflow-x: auto;
  border-radius: var(--radius-lg); border: 1px solid var(--border);
}
.comp-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  min-width: 540px;
}
.comp-table th, .comp-table td { padding: 16px 24px; text-align: left; font-size: 14px; }
.comp-table thead th {
  background: var(--surface); border-bottom: 1px solid var(--border);
  font-weight: 600; color: var(--gray-400); font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.comp-table thead th:last-child { color: var(--primary); }
.comp-table tbody td { border-bottom: 1px solid var(--border); color: var(--gray-400); }
.comp-table tbody td:last-child { color: var(--white); }
.comp-table tbody tr:last-child td { border-bottom: none; }
.comp-table tbody tr { transition: background 0.2s; }
.comp-table tbody tr:hover { background: var(--surface); }
.t-green { color: #22c55e !important; font-weight: 600; }
.t-red { color: #ef4444 !important; }
.t-bold { font-weight: 600; color: var(--white) !important; }
.comp-note {
  text-align: center; margin-top: 20px; color: var(--gray-500); font-size: 0.88rem;
}

/* ============ PRICING ============ */
.price-section { padding: 100px 0; border-top: 1px solid var(--border); }
.price-header { text-align: center; margin-bottom: 48px; }
.price-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600;
  letter-spacing: -1px; margin-bottom: 8px;
}
.price-header p { color: var(--gray-500); font-size: 0.95rem; }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 820px; margin: 0 auto; }
.price-card {
  padding: 36px; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--border);
  display: flex; flex-direction: column; transition: border-color 0.3s, transform 0.2s;
  position: relative;
}
.price-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.price-card.pop { border-color: rgba(51, 106, 234, 0.3); }
.price-card.pop::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg);
  box-shadow: 0 0 60px var(--primary-glow); pointer-events: none;
}
.price-badge {
  position: absolute; top: -12px; right: 20px;
  padding: 5px 14px; border-radius: var(--radius-full);
  background: var(--primary); color: var(--white-pure);
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
}
.price-name { font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; }
.price-tagline { color: var(--gray-500); font-size: 0.85rem; margin-bottom: 20px; }
.price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; flex-wrap: wrap; }
.price-old { color: var(--gray-600); text-decoration: line-through; font-size: 0.95rem; }
.price-amount { font-size: 2.8rem; font-weight: 700; letter-spacing: -2px; }
.price-per { color: var(--gray-500); font-size: 0.9rem; }
.price-save { font-size: 0.82rem; color: #22c55e; font-weight: 500; margin-bottom: 20px; }
.price-list { list-style: none; flex: 1; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.price-list li { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--gray-400); }
.price-list li svg { width: 16px; height: 16px; color: var(--gray-600); flex-shrink: 0; }
.price-card.pop .price-list li svg { color: var(--primary); }
.price-req {
  padding: 14px; border-radius: var(--radius); margin-bottom: 20px;
  border: 1px solid var(--border); font-size: 0.78rem; color: var(--gray-500); line-height: 1.7;
}
.price-req strong { color: var(--gray-300); font-weight: 600; }
.price-req a { color: var(--gray-400); text-decoration: underline; }
.price-btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 14px; border-radius: var(--radius-full); font-size: 14px; font-weight: 600;
  transition: all 0.2s;
}
.price-btn.outline { border: 1px solid var(--border); color: var(--white); background: none; }
.price-btn.outline:hover { border-color: var(--border-hover); background: rgba(255,255,255,0.03); }
.price-btn.fill {
  background: var(--primary); color: var(--white-pure); border: none;
  box-shadow: 0 4px 20px rgba(51, 106, 234, 0.2);
}
.price-btn.fill:hover { background: var(--primary-hover); transform: translateY(-1px); }
.proof-line { margin-top: 40px; text-align: center; font-size: 13px; color: var(--gray-600); }
.proof-line strong { color: var(--gray-400); }

/* ============ FAQ ============ */
.faq-section { padding: 80px 0; border-top: 1px solid var(--border); }
.faq-header { text-align: center; margin-bottom: 40px; }
.faq-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 600;
  letter-spacing: -0.5px; margin-bottom: 8px;
}
.faq-list { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 6px; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; background: var(--surface);
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 18px 22px; font-size: 14px; font-weight: 500; color: var(--white);
  text-align: left; cursor: pointer;
}
.faq-q svg { width: 16px; height: 16px; color: var(--gray-600); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(45deg); color: var(--primary); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.3s; padding: 0 22px; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 22px 18px; }
.faq-a p { font-size: 13px; color: var(--gray-500); line-height: 1.7; }

/* ============ CONTACT ============ */
.contact-section { padding: 80px 0; border-top: 1px solid var(--border); }
.contact-header { text-align: center; margin-bottom: 40px; }
.contact-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 600;
  letter-spacing: -0.5px; margin-bottom: 8px;
}
.contact-header p { color: var(--gray-500); font-size: 0.9rem; }
.contact-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.c-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 28px; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--border);
  color: var(--white); font-size: 14px; transition: border-color 0.2s, transform 0.2s;
}
.c-btn:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.c-btn svg { width: 24px; height: 24px; fill: currentColor; }
.c-btn small { display: block; font-size: 11px; color: var(--gray-500); font-weight: 400; }
.c-btn strong { display: block; font-weight: 600; }

/* ============ BOTTOM CTA ============ */
.bottom-cta {
  border-top: 1px solid var(--border); text-align: center;
  padding: 120px 0; position: relative;
}
.bottom-cta::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px; border-radius: 50%;
  background: radial-gradient(ellipse, var(--primary-glow) 0%, transparent 70%);
  pointer-events: none;
}
.bottom-cta h2 {
  font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700;
  line-height: 1.1; letter-spacing: -2px; margin-bottom: 20px;
  position: relative;
}
.bottom-cta .cta-sub { color: var(--gray-500); font-size: 1rem; margin-bottom: 32px; position: relative; }
.bottom-cta .cta-btns { position: relative; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.footer-wrap {
  background: var(--black); border-top: none;
  padding: 48px 0 32px;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
}
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 24px; border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.footer-logo { font-weight: 700; font-size: 16px; display: flex; align-items: center; gap: 8px; }
.footer-logo em { font-style: normal; color: var(--gray-400); font-weight: 400; }
.footer-logo-img { width: 24px; height: 24px; border-radius: 6px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border); display: flex;
  align-items: center; justify-content: center;
  color: var(--gray-500); transition: border-color 0.2s, color 0.2s;
}
.footer-socials a:hover { border-color: var(--border-hover); color: var(--white); }
.footer-socials a svg { width: 16px; height: 16px; fill: currentColor; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 12px; color: var(--gray-600); }
.footer-links { display: flex; gap: 16px; }
.footer-links a { font-size: 12px; color: var(--gray-500); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

/* ============ SECTION LABELS (Freepik style) ============ */
.section-label {
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 12px; display: block;
}

/* ============ MODAL ============ */
.modal-bg {
  position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px); display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-bg.open { display: flex; }
.modal-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); max-width: 460px; width: 100%;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6); animation: m-in 0.25s ease;
  display: flex; flex-direction: column; max-height: 90vh;
}
@keyframes m-in { from { opacity:0; transform:scale(0.96) translateY(16px); } to { opacity:1; transform:scale(1) translateY(0); } }
.modal-body { padding: 28px 32px; overflow-y: auto; flex: 1; min-height: 0; }
.modal-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
.modal-title .accent { color: var(--gray-400); }
.modal-sub { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 20px; }
.m-form { display: flex; flex-direction: column; gap: 14px; }
.m-form label { font-size: 0.8rem; color: var(--gray-500); display: block; margin-bottom: 4px; }
.m-form input {
  width: 100%; padding: 11px 14px; border-radius: 8px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  color: var(--white); font-size: 14px; outline: none; transition: border-color 0.2s;
  font-family: inherit;
}
.m-form input:focus { border-color: var(--primary); }
.m-form input::placeholder { color: var(--gray-700); }
.m-form input.input-error { border-color: #ef4444; animation: fieldShake 0.35s ease; }
.field-error {
  display: block; font-size: 0.78rem; color: #f87171;
  margin-top: 5px; min-height: 0;
  opacity: 0; max-height: 0; overflow: hidden;
  transition: opacity 0.25s ease, max-height 0.25s ease, margin 0.25s ease;
}
.field-error.show { opacity: 1; max-height: 30px; }
@keyframes fieldShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-4px); }
  40% { transform: translateX(4px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(2px); }
}
.modal-foot {
  padding: 14px 32px; border-top: 1px solid var(--border);
  display: flex; gap: 10px; justify-content: flex-end;
}
.m-btn { padding: 10px 22px; border-radius: var(--radius-full); font-size: 14px; font-weight: 600; border: none; }
.m-btn-ghost { background: none; color: var(--gray-500); }
.m-btn-ghost:hover { color: var(--white); }
.m-btn-primary { background: var(--primary); color: var(--white-pure); }
.m-btn-primary:hover { background: var(--primary-hover); }
/* Payment Step */
.pay-qr { text-align: center; margin-bottom: 14px; }
.pay-qr img { width: 180px; margin: 0 auto; border-radius: 8px; border: 2px solid var(--white); }
.pay-info { text-align: center; padding: 12px; border-radius: 8px; border: 1px solid var(--border); margin-bottom: 16px; }
.pay-info .bank { font-size: 0.8rem; color: var(--gray-500); }
.pay-info .acct { font-size: 1rem; font-weight: 700; font-family: 'Inter', monospace; letter-spacing: 2px; margin: 4px 0; }
.pay-info .name { font-size: 0.8rem; color: var(--gray-500); }
.pay-amount-box { padding: 14px; border-radius: 8px; border: 1px solid var(--border); margin-bottom: 16px; }
.pay-amount-label { font-size: 0.8rem; color: var(--gray-500); }
.pay-amount-val { font-size: 1.5rem; font-weight: 700; }
.slip-area {
  display: flex; flex-direction: column; align-items: center;
  margin-top: 12px; border: 2px dashed rgba(255,255,255,0.15); border-radius: 10px;
  padding: 24px 16px; text-align: center; cursor: pointer; transition: border-color 0.2s, background 0.2s;
  background: rgba(255,255,255,0.02);
}
.slip-area:hover { border-color: var(--primary); background: rgba(51, 106, 234, 0.04); }
.slip-area svg { width: 28px; height: 28px; color: var(--gray-500); margin: 0 auto 8px; }
.slip-area p { font-size: 0.8rem; color: var(--gray-500); }
.slip-area p span { color: var(--white); font-weight: 600; }
.slip-area .hint { font-size: 0.7rem; color: var(--gray-600); margin-top: 4px; }
.slip-area img { max-height: 100px; margin: 0 auto; border-radius: 6px; }
.upload-status { text-align: center; font-size: 0.8rem; margin-top: 6px; }
.upload-status.loading { color: var(--gray-400); }
.upload-status.error { color: #ef4444; }
.slip-steps { font-size: 0.75rem; color: var(--gray-600); margin: 12px 0 0; line-height: 1.7; }
/* Success */
.suc-icon {
  width: 56px; height: 56px; border-radius: 50%; background: #22c55e;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.suc-icon svg { width: 28px; height: 28px; color: var(--white); }
.suc-title { font-size: 1.3rem; font-weight: 700; text-align: center; margin-bottom: 6px; }
.suc-sub { text-align: center; color: var(--gray-500); font-size: 0.9rem; margin-bottom: 20px; }
.lic-box { padding: 16px; border-radius: 8px; border: 1px solid var(--border); margin-bottom: 16px; text-align: center; }
.lic-label { font-size: 0.65rem; color: var(--gray-600); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.lic-row { display: flex; gap: 6px; }
.lic-val {
  flex: 1; padding: 10px; border-radius: 6px; background: rgba(255,255,255,0.03);
  border: 1px solid var(--border); color: var(--white); font-family: 'Inter', monospace;
  font-size: 0.8rem; font-weight: 600; word-break: break-all;
}
.lic-copy {
  padding: 10px; border-radius: 6px; border: 1px solid var(--border); background: none;
  color: var(--white); display: flex; align-items: center;
}
.lic-copy:hover { background: rgba(255,255,255,0.04); }
.lic-copy svg { width: 16px; height: 16px; }
.lic-sent { font-size: 0.75rem; color: #22c55e; margin-top: 6px; }
.dl-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px; border-radius: var(--radius-full);
  background: var(--primary); color: var(--white-pure);
  font-weight: 600; margin-bottom: 12px; transition: background 0.2s;
}
.dl-btn:hover { background: var(--primary-hover); }
.dl-btn svg { width: 18px; height: 18px; }
.suc-links { text-align: center; font-size: 0.75rem; color: var(--gray-600); }
.suc-links a { color: var(--gray-500); text-decoration: underline; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-mobile-btn { display: flex; }
  .nav-inner { padding: 0 20px; }
  .hero h1 { letter-spacing: -1.5px; }
  .trust-strip { gap: 16px; }
  .trust-item { font-size: 11px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card { min-height: 300px; }
  .bento-detail-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .video-row { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 420px; }
  .contact-btns { flex-direction: column; max-width: 340px; margin: 0 auto; }
  .footer-top { flex-direction: column; gap: 16px; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .bottom-cta { padding: 80px 0; }
  .showcase-item { width: 160px; height: 120px; }
  .slider-track { padding: 0 20px; }
  .social-proof-header { padding: 0 20px; }
  .bento-header { flex-direction: column; gap: 12px; align-items: flex-start; }
  .demos-header { flex-direction: column; gap: 12px; align-items: flex-start; }
  .rev-card { min-width: 280px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; letter-spacing: -1px; }
  .showcase-item { width: 140px; height: 100px; }
  .bento-card { min-height: 260px; }
  .price-amount { font-size: 2.2rem; }
}

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }



